:root {
  --green: #07933f;
  --green-dark: #006f31;
  --green-deep: #003b25;
  --green-soft: #eaf7ed;
  --ink: #101b1e;
  --muted: #566063;
  --quiet: #7f888a;
  --line: #e5ebe7;
  --surface: #ffffff;
  --page: #f7faf7;
  --shadow: 0 14px 40px rgba(23, 61, 38, 0.08);
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(10, 157, 70, 0.08), transparent 28rem),
    linear-gradient(180deg, #fbfdfb, var(--page));
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 28px), 920px);
  margin: 0 auto;
  padding: 20px 0 28px;
}

.surface {
  border: 1px solid rgba(224, 234, 227, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  min-height: 310px;
  padding: 32px 58px 32px 38px;
  overflow: hidden;
}

.success-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
}

.success-ring {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #07aa4e, #007d38);
  box-shadow:
    0 0 0 18px rgba(87, 191, 102, 0.11),
    0 0 0 31px rgba(87, 191, 102, 0.065),
    inset -18px -16px 30px rgba(0, 69, 35, 0.18),
    0 12px 28px rgba(0, 133, 58, 0.2);
  font-size: 82px;
  font-weight: 700;
  line-height: 1;
}

.confetti {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.confetti-one {
  top: 8px;
  left: 6px;
  background: #0faa58;
}

.confetti-two {
  top: 42px;
  right: 3px;
  background: #f3bf00;
}

.confetti-three {
  right: 30px;
  bottom: 3px;
  background: #91d0af;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-text {
  margin: 17px 0 19px;
  color: #4b5658;
  font-size: 18px;
  line-height: 1.48;
}

.phone-reminder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 18px;
  border-radius: 14px;
  color: #0a7631;
  background: linear-gradient(90deg, #eaf7ea, #e1f2e5);
  font-size: 16px;
  font-weight: 700;
}

.phone-reminder span {
  font-size: 21px;
}

.hero-brush {
  position: absolute;
  z-index: 1;
  right: -100px;
  bottom: -30px;
  width: 420px;
  opacity: 0.11;
  mix-blend-mode: multiply;
  transform: rotate(-18deg);
  pointer-events: none;
}

.details {
  margin-top: 18px;
  padding: 24px 34px 22px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.section-heading h2,
.offers-heading h2,
.final-note h2 {
  margin: 0;
  letter-spacing: -0.025em;
}

.section-heading h2 {
  font-size: 24px;
}

.demo-chip {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid #cce8d3;
  border-radius: 999px;
  color: #0b7432;
  background: #f1faf3;
  font-size: 12px;
  font-weight: 700;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-item {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 82px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.detail-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  margin-right: 13px;
  border-radius: 50%;
  color: #101919;
  background: var(--green-soft);
  font-size: 17px;
}

.detail-icon:not(.detail-icon-phone)::after {
  content: "";
  position: absolute;
  bottom: 11px;
  width: 27px;
  height: 13px;
  border-radius: 16px 16px 8px 8px;
  background: currentColor;
}

.detail-icon:not(.detail-icon-phone) {
  padding-bottom: 17px;
}

.detail-icon-phone {
  font-size: 29px;
}

.detail-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.detail-copy span {
  color: var(--muted);
  font-size: 13px;
}

.detail-copy strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 19px;
}

.privacy-note {
  margin: 17px 0 0;
  color: var(--quiet);
  font-size: 13px;
  text-align: center;
}

.progress {
  display: flex;
  align-items: center;
  min-height: 84px;
  margin-top: 18px;
  padding: 16px 36px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5b6466;
  font-size: 14px;
  white-space: nowrap;
}

.step-dot {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border-radius: 50%;
  color: #333;
  background: #edf0ee;
  font-weight: 800;
}

.progress-step.is-complete,
.progress-step.is-current {
  color: var(--green);
  font-weight: 700;
}

.progress-step.is-complete .step-dot,
.progress-step.is-current .step-dot {
  color: #fff;
  background: linear-gradient(135deg, #27ae48, #007f38);
  box-shadow: 0 6px 15px rgba(0, 145, 61, 0.18);
}

.progress-line {
  flex: 1 1 auto;
  height: 2px;
  margin: 0 18px;
  background: #d7dcda;
}

.progress-line.is-complete {
  background: #bde0c6;
}

.offer-banner {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 27px;
  background: var(--green-deep);
  box-shadow: 0 13px 30px rgba(0, 76, 40, 0.14);
}

.offer-banner img {
  width: 100%;
}

.offers {
  padding-top: 28px;
}

.offers-heading {
  padding: 0 18px;
}

.offers-heading .eyebrow {
  margin-bottom: 7px;
  font-size: 12px;
}

.offers-heading h2 {
  font-size: 28px;
}

.offers-heading > p:last-child {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: 44% minmax(0, 56%);
  min-width: 0;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(225, 234, 227, 0.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(24, 63, 39, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #003f28;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0, 30, 19, 0.16));
  pointer-events: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(90deg, #04a148, #007d37);
  box-shadow: 0 4px 12px rgba(0, 50, 29, 0.25);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 17px 16px 12px;
}

.product-info h3 {
  min-height: 43px;
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.27;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.price-row span {
  color: #858d8f;
  font-size: 13px;
  text-decoration: line-through;
}

.price-row strong {
  color: var(--green);
  font-size: 22px;
  white-space: nowrap;
}

.saving {
  align-self: flex-start;
  margin: 7px 0 10px;
  padding: 5px 8px;
  border-radius: 8px;
  color: #0d7430;
  background: #eaf7e9;
  font-size: 11px;
  font-weight: 700;
}

.add-button {
  width: 100%;
  min-height: 41px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(100deg, #05a349, #007d38);
  box-shadow: 0 6px 14px rgba(0, 134, 57, 0.16);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease, background 200ms ease;
}

.add-button:hover,
.add-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.add-button.is-added,
.add-button:disabled {
  background: #55ad71;
  cursor: default;
  filter: none;
  transform: none;
}

.safe-note {
  margin: 8px 0 0;
  color: var(--quiet);
  font-size: 9px;
  text-align: center;
}

.final-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 26px;
  border-radius: 22px;
}

.final-check {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  flex: 0 0 53px;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #08a64a, #007b36);
  box-shadow: 0 0 0 8px rgba(70, 183, 99, 0.11);
  font-size: 28px;
  font-weight: 800;
}

.final-note h2 {
  font-size: 20px;
}

.final-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.demo-footer {
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  border-radius: 12px;
  color: #fff;
  background: #103f29;
  box-shadow: 0 12px 30px rgba(0, 42, 24, 0.22);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .product-card:hover {
    box-shadow: 0 14px 34px rgba(24, 63, 39, 0.1);
    transform: translateY(-2px);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 18px), 680px);
    padding-top: 9px;
  }

  .surface {
    border-radius: 22px;
  }

  .hero {
    grid-template-columns: 29% minmax(0, 1fr);
    min-height: 220px;
    padding: 22px 28px 22px 18px;
  }

  .success-visual {
    width: 25vw;
    height: 25vw;
    max-width: 150px;
    max-height: 150px;
  }

  .success-ring {
    width: min(19vw, 116px);
    height: min(19vw, 116px);
    border-width: 4px;
    box-shadow:
      0 0 0 12px rgba(87, 191, 102, 0.11),
      0 0 0 21px rgba(87, 191, 102, 0.065),
      0 8px 20px rgba(0, 133, 58, 0.18);
    font-size: min(11vw, 65px);
  }

  .hero h1 {
    font-size: clamp(20px, 5vw, 30px);
  }

  .hero-text {
    margin: 11px 0 13px;
    font-size: clamp(13px, 2.8vw, 17px);
  }

  .phone-reminder {
    padding: 9px 12px;
    font-size: clamp(11px, 2.6vw, 15px);
  }

  .details {
    padding: 21px 20px 18px;
  }

  .section-heading h2 {
    font-size: 21px;
  }

  .details-grid {
    gap: 10px;
  }

  .detail-item {
    min-height: 72px;
    padding: 9px 10px;
  }

  .detail-icon {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
    margin-right: 10px;
  }

  .detail-copy strong {
    font-size: 16px;
  }

  .progress {
    padding-inline: 20px;
  }

  .progress-step {
    gap: 6px;
    font-size: 12px;
  }

  .step-dot {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .progress-line {
    margin-inline: 8px;
  }
}

@media (max-width: 620px) {
  .hero {
    grid-template-columns: 25% minmax(0, 1fr);
    min-height: 180px;
    padding: 18px 18px 18px 13px;
  }

  .eyebrow {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(17px, 4.8vw, 25px);
  }

  .hero-text {
    margin: 8px 0 10px;
    font-size: clamp(10px, 2.7vw, 14px);
  }

  .phone-reminder {
    gap: 6px;
    padding: 7px 9px;
    border-radius: 10px;
    font-size: clamp(9px, 2.4vw, 13px);
  }

  .phone-reminder span {
    font-size: 16px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .progress {
    min-height: 70px;
    padding: 12px 10px;
  }

  .progress-step {
    flex-direction: column;
    gap: 4px;
    font-size: 9px;
  }

  .step-dot {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .progress-line {
    margin: 0 4px 13px;
  }

  .offer-banner {
    border-radius: 17px;
  }

  .offers {
    padding-top: 22px;
  }

  .offers-heading {
    padding-inline: 8px;
  }

  .offers-heading h2 {
    font-size: 22px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 14px;
  }

  .product-card {
    grid-template-columns: 43% minmax(0, 57%);
    min-height: 218px;
  }

  .product-media img {
    min-height: 218px;
  }

  .product-info {
    padding: 14px 13px 10px;
  }

  .product-info h3 {
    min-height: 37px;
    font-size: 15px;
  }

  .final-note {
    padding: 15px 17px;
  }

  .final-check {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .final-note h2 {
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .hero {
    grid-template-columns: 22% minmax(0, 1fr);
  }

  .success-ring {
    width: 16vw;
    height: 16vw;
    font-size: 9vw;
  }

  .hero h1 {
    font-size: 16px;
  }

  .hero-text {
    font-size: 10px;
  }

  .product-card {
    grid-template-columns: 40% minmax(0, 60%);
  }

  .price-row strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
