:root {
  --ink: #1f2933;
  --muted: #637083;
  --paper: #fffdf7;
  --white: #ffffff;
  --line: #e6e2d8;
  --green: #00a86b;
  --green-dark: #008f5c;
  --blue: #1769d6;
  --sky: #dff6fb;
  --sky-soft: #f0fbfd;
  --orange: #ff6b2c;
  --yellow: #ffd948;
  --lavender: #eee2f6;
  --mint: #dff7ea;
  --peach: #ffe6d8;
  --cream: #fff3cf;
  --radius: 8px;
  --shadow: 0 12px 30px rgba(31, 41, 51, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.promo-bar {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 16px;
  color: white;
  background: #4b4b4b;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(31, 41, 51, 0.06);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  font-size: 14px;
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
}

.logo strong,
.logo small {
  display: block;
}

.logo strong {
  font-size: 20px;
  line-height: 1;
}

.logo small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a,
.site-footer a,
.text-link {
  font-weight: 800;
  text-decoration: none;
}

.main-nav a {
  color: #29333d;
  font-size: 14px;
}

.main-nav a:not(.nav-cta):hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--green);
}

.nav-cta {
  padding: 9px 16px;
  color: white;
  background: var(--green);
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: min(650px, calc(100vh - 94px));
  display: grid;
  place-items: center start;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 253, 247, 0.86) 36%, rgba(255, 253, 247, 0.22) 64%, rgba(255, 253, 247, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(650px, calc(100% - 36px));
  margin-left: clamp(20px, 8vw, 128px);
  padding: 70px 0;
  color: var(--ink);
  text-align: left;
  text-shadow: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5.8vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: #42505f;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  text-wrap: balance;
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 26px;
}

.hero-facts {
  margin-top: 18px;
}

.hero-facts span {
  padding: 8px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(230, 226, 216, 0.9);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 6px;
  color: white;
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.18);
}

.button.primary {
  color: white;
  background: var(--green);
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--green-dark);
}

.button.light {
  color: var(--ink);
  background: var(--yellow);
}

.button.small {
  min-height: 38px;
  width: 100%;
  margin-top: 12px;
  padding: 9px 12px;
  background: var(--blue);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.steps-strip {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  padding-bottom: 34px;
}

.steps-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.steps-layout div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: start;
  min-height: 86px;
  padding: 14px;
  border-radius: 8px;
}

.steps-layout div:nth-child(1) {
  background: var(--sky-soft);
}

.steps-layout div:nth-child(2) {
  background: var(--mint);
}

.steps-layout div:nth-child(3) {
  background: var(--cream);
}

.steps-layout span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.steps-layout strong {
  font-size: 18px;
  line-height: 1.15;
}

.steps-layout p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-band,
.inside-section,
.benefits,
.color-section,
.trust-section,
.faq,
.order-section,
.seo-links {
  padding: clamp(56px, 8vw, 92px) 0;
}

.product-band {
  margin-top: -1px;
  background: var(--paper);
}

.inside-section {
  background: white;
}

.product-layout,
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.86fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.section-copy {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 40px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(31, 41, 51, 0.05);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.product-showcase {
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-product-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: white;
  border-radius: 6px;
}

.mini-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.mini-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.section-heading .section-copy {
  margin-right: auto;
  margin-left: auto;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  text-align: center;
}

.inside-grid article {
  display: grid;
  justify-items: center;
}

.inside-grid img {
  width: min(170px, 72%);
  aspect-ratio: 1;
  padding: 14px;
  object-fit: contain;
  background: var(--sky-soft);
  border: 8px solid white;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.13);
}

.inside-grid article:nth-child(2) img {
  background: var(--cream);
}

.inside-grid article:nth-child(3) img {
  background: var(--lavender);
}

.inside-grid article:nth-child(4) img {
  background: var(--mint);
}

.inside-grid h3 {
  margin-top: 18px;
}

.inside-grid p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
}

.benefits {
  background: #faf7f0;
}

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

.benefit-grid article,
.seo-card,
.lead-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.benefit-grid article {
  padding: 26px;
}

.benefit-grid article:nth-child(1) {
  background: var(--sky-soft);
}

.benefit-grid article:nth-child(2) {
  background: var(--mint);
}

.benefit-grid article:nth-child(3) {
  background: #fff1f7;
}

.benefit-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
}

.benefit-grid p,
.product-card p,
.story-content p,
.faq p,
.site-footer p {
  color: var(--muted);
  margin: 0;
}

.color-section {
  background: var(--sky);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.08);
}

.product-card:nth-child(1) {
  background: linear-gradient(180deg, #e8fbff 0 50%, #fff 50%);
}

.product-card:nth-child(2) {
  background: linear-gradient(180deg, #fff3bf 0 50%, #fff 50%);
}

.product-card:nth-child(3) {
  background: linear-gradient(180deg, #ffe7f1 0 50%, #fff 50%);
}

.product-card:nth-child(4) {
  background: linear-gradient(180deg, #eee2f6 0 50%, #fff 50%);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: contain;
  padding: 8px;
  background: #f7fbff;
}

.product-card div {
  padding: 18px;
}

.product-card h3 {
  font-size: 20px;
}

.product-card strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
}

.trust-section {
  background: white;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-grid article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  background: var(--sky-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.06);
}

.trust-grid article:nth-child(2) {
  background: var(--mint);
}

.trust-grid article:nth-child(3) {
  background: var(--cream);
}

.trust-grid article:nth-child(4) {
  background: var(--lavender);
}

.trust-grid strong {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  background: white;
}

.story-media {
  min-height: 520px;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-content {
  align-self: center;
  padding: clamp(38px, 7vw, 82px);
}

.story-content p {
  margin-top: 18px;
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--green);
}

.seo-links {
  background: var(--lavender);
}

.seo-card {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  padding: 24px;
}

.seo-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.seo-card a {
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-card a:hover {
  color: var(--green);
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.09);
}

.faq {
  background-color: #f0fbff;
  background-image:
    linear-gradient(#d6eef7 1px, transparent 1px),
    linear-gradient(90deg, #d6eef7 1px, transparent 1px);
  background-size: 24px 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(820px, 100%);
  margin: 0 auto;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(31, 41, 51, 0.05);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
}

.order-section {
  color: white;
  background: var(--green);
}

.order-section .eyebrow.dark {
  color: var(--yellow);
}

.order-section .section-copy {
  color: rgba(255, 255, 255, 0.9);
}

.order-note {
  margin-top: 24px;
  padding: 18px;
  color: var(--ink);
  background: white;
  border-radius: 8px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid #cdd6df;
  border-radius: 6px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.form-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 42px 0 98px;
  color: var(--ink);
  background: white;
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.site-footer p {
  max-width: 560px;
  margin-top: 8px;
}

.mobile-cta {
  display: none;
}

.page-hero {
  padding: clamp(68px, 10vw, 112px) 0 54px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 217, 72, 0.4) 0 12%, transparent 13%),
    linear-gradient(180deg, var(--sky) 0%, #f4fdff 100%);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: center;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 64px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero img.page-photo {
  padding: 0;
  object-fit: cover;
}

.page-proof {
  padding: 26px 0;
  background: white;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article {
  min-height: 142px;
  padding: 22px;
  background: var(--sky-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.06);
}

.proof-grid article:nth-child(2) {
  background: var(--mint);
}

.proof-grid article:nth-child(3) {
  background: var(--cream);
}

.proof-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

.article-section {
  padding: 58px 0;
  background: white;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 42px;
  align-items: start;
}

.article-content h2 {
  margin-top: 38px;
  font-size: clamp(26px, 4vw, 40px);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 18px;
}

.article-content li {
  margin-bottom: 10px;
}

.side-offer {
  position: sticky;
  top: 96px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.side-offer img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.side-offer h3 {
  margin-top: 16px;
}

.article-cta {
  padding: 44px 0 76px;
  background: var(--lavender);
}

.article-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-cta-box h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.thank-you {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 48px 18px;
  background: var(--sky);
}

.thank-you-box {
  max-width: 720px;
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .main-nav {
    gap: 12px;
  }

  .product-layout,
  .order-layout,
  .story-section,
  .trust-layout,
  .page-hero .section-inner,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .inside-grid,
  .product-grid,
  .seo-card,
  .trust-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-media {
    min-height: 0;
  }

  .story-media img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .side-offer {
    position: static;
  }
}

@media (max-width: 720px) {
  .promo-bar {
    font-size: 12px;
  }

  .site-header {
    position: static;
    align-items: flex-start;
  }

  .logo strong {
    font-size: 18px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 610px;
    place-items: end start;
  }

  .hero-bg {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(255, 253, 247, 0.97) 0%, rgba(255, 253, 247, 0.84) 52%, rgba(255, 253, 247, 0.08) 100%);
  }

  .hero-content {
    align-self: end;
    width: min(100% - 36px, 620px);
    margin-left: 18px;
    padding-top: 68px;
    padding-bottom: 96px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-facts {
    display: none;
  }

  .check-list,
  .benefit-grid,
  .seo-card,
  .steps-layout,
  .trust-grid,
  .proof-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

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

  .product-card img {
    aspect-ratio: 0.86;
    padding: 6px;
  }

  .product-card div {
    padding: 12px;
  }

  .product-card h3 {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .product-card p {
    font-size: 12px;
  }

  .product-card strong {
    margin-top: 8px;
    font-size: 18px;
  }

  .product-card .button.small {
    min-height: 34px;
    margin-top: 10px;
    padding: 7px 8px;
    font-size: 13px;
  }

  .steps-strip {
    margin-top: -44px;
  }

  .steps-layout {
    gap: 10px;
    padding: 12px;
  }

  .inside-grid {
    gap: 18px 12px;
  }

  .inside-grid img {
    width: min(132px, 82%);
    padding: 12px;
    border-width: 6px;
  }

  .inside-grid h3 {
    margin-top: 12px;
    font-size: 18px;
  }

  .inside-grid p {
    font-size: 13px;
  }

  .page-hero {
    padding-top: 50px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .page-hero img {
    padding: 8px;
  }

  .article-cta-box {
    display: grid;
  }

  .article-cta-box .button {
    width: 100%;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .section-copy {
    margin-left: 0;
  }

  .footer-layout {
    display: grid;
  }

  .site-footer nav {
    display: grid;
    gap: 10px;
  }

  .mobile-cta {
    display: none;
  }

  summary {
    font-size: 17px;
  }
}
