@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  --teal-950: #063c3a;
  --teal-900: #075752;
  --teal-800: #087f75;
  --teal-700: #0b9b8d;
  --teal-100: #dff5f0;
  --green-700: #4f9418;
  --green-600: #68ad24;
  --green-100: #eaf7d9;
  --orange-700: #e95010;
  --orange-600: #ff681b;
  --orange-500: #ff7b22;
  --orange-100: #fff0e2;
  --cream: #fffaf1;
  --paper: #fffefa;
  --ink: #143131;
  --muted: #58706f;
  --line: #dce8e5;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(5, 67, 63, 0.09);
  --shadow-lg: 0 28px 70px rgba(5, 67, 63, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1160px;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a { -webkit-tap-highlight-color: transparent; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: white;
  background: var(--teal-950);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 82px 0; }

.offer-strip {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 18px;
  color: white;
  background: var(--teal-950);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
}
.offer-strip span { color: #bdf25e; font-weight: 800; text-transform: uppercase; }
.offer-strip a { border-bottom: 1px solid rgba(255,255,255,.7); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 250, 0.9);
  border-bottom: 1px solid rgba(7, 87, 82, .08);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-900); }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; color: white; background: var(--green-600); border-radius: 50% 50% 46% 54%; transform: rotate(-6deg); }
.brand-mark svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.brand b { font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 800; }
.brand small { margin-top: 5px; color: var(--orange-600); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.desktop-nav { display: none; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: var(--muted); font-size: 14px; font-weight: 700; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--teal-800); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .faq-item button:focus-visible, a:focus-visible { outline: 3px solid rgba(255, 104, 27, .35); outline-offset: 3px; }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 42px; padding: 11px 17px; background: var(--teal-800); color: white; font-size: 12px; border-radius: 10px; }
.button-primary { color: white; background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); box-shadow: 0 12px 26px rgba(233, 80, 16, .27); }
.button-primary:hover { box-shadow: 0 16px 32px rgba(233, 80, 16, .34); }
.button-large { width: 100%; min-height: 60px; padding: 18px 24px; font-size: 16px; border-radius: 14px; }
.button-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 58px;
  background:
    radial-gradient(circle at 50% 26%, rgba(168, 222, 89, .21), transparent 31%),
    linear-gradient(180deg, #fbfff8 0%, #f0faf5 100%);
}
.hero::before, .hero::after { content: ""; position: absolute; z-index: 0; width: 260px; height: 260px; opacity: .19; background-image: radial-gradient(var(--green-700) 1.2px, transparent 1.2px); background-size: 18px 18px; border-radius: 50%; }
.hero::before { left: -140px; top: 190px; }
.hero::after { right: -140px; bottom: 100px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 300px; height: 300px; top: -150px; right: -100px; background: rgba(255, 118, 31, .12); }
.hero-orb-two { width: 240px; height: 240px; bottom: -120px; left: -100px; background: rgba(9, 158, 144, .12); }
.hero-inner { position: relative; z-index: 1; text-align: center; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { padding: 9px 13px; background: white; border: 1px solid rgba(8, 127, 117, .14); border-radius: 99px; box-shadow: var(--shadow-sm); }
.eyebrow span { color: var(--orange-500); }
.hero h1, .section-heading h2, .pain-copy h2, .solution-copy h2, .benefits-sticky h2, .offer-intro h2, .faq-intro h2, .final-inner h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.hero h1 { max-width: 940px; margin: 19px auto 0; font-size: clamp(34px, 7.4vw, 66px); }
.hero h1 span { position: relative; color: var(--orange-600); white-space: nowrap; }
.hero h1 span::after { content: ""; position: absolute; left: 2%; bottom: -3px; width: 96%; height: 6px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='8' viewBox='0 0 300 8'%3E%3Cpath d='M2 6C68 1 192 1 298 4' fill='none' stroke='%2368ad24' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat; }

.hero-preview { position: relative; width: min(100%, 780px); height: 380px; margin: 44px auto 32px; perspective: 1400px; }
.preview-glow { position: absolute; inset: 22% 16% 0; background: rgba(104, 173, 36, .19); border-radius: 50%; filter: blur(36px); }
.preview-page { position: absolute; top: 50%; left: 50%; width: 158px; aspect-ratio: .75; margin: 0; overflow: hidden; background: white; border: 5px solid white; border-radius: 7px; box-shadow: 0 18px 45px rgba(3, 59, 56, .22); transform-origin: 50% 100%; transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease; }
.preview-page img { width: 100%; height: 100%; object-fit: contain; }
.preview-page-1 { z-index: 1; transform: translate(-118%, -47%) rotate(-13deg) scale(.84); }
.preview-page-2 { z-index: 2; transform: translate(-82%, -51%) rotate(-7deg) scale(.92); }
.preview-cover { z-index: 5; width: 188px; transform: translate(-50%, -54%) scale(1.06); border-width: 6px; }
.preview-page-4 { z-index: 2; transform: translate(-18%, -51%) rotate(7deg) scale(.92); }
.preview-page-5 { z-index: 1; transform: translate(18%, -47%) rotate(13deg) scale(.84); }
.hero-preview:hover .preview-page-1 { transform: translate(-129%, -49%) rotate(-17deg) scale(.86); }
.hero-preview:hover .preview-page-2 { transform: translate(-86%, -53%) rotate(-9deg) scale(.94); }
.hero-preview:hover .preview-page-4 { transform: translate(-14%, -53%) rotate(9deg) scale(.94); }
.hero-preview:hover .preview-page-5 { transform: translate(29%, -49%) rotate(17deg) scale(.86); }
.hero-preview:hover .preview-cover { transform: translate(-50%, -57%) scale(1.09); box-shadow: 0 26px 55px rgba(3, 59, 56, .3); }
.pdf-badge { position: absolute; z-index: 3; top: 12px; right: 10px; display: grid; place-items: center; width: 52px; height: 52px; color: white; background: var(--orange-600); border: 3px solid white; border-radius: 50%; font-size: 8px; font-weight: 700; line-height: 1.1; box-shadow: 0 6px 16px rgba(0,0,0,.2); transform: rotate(8deg); }
.pdf-badge b { font-size: 13px; }
.hero-copy { max-width: 760px; margin: 0 auto; }
.hero-subtitle { margin: 0 auto 24px; color: var(--muted); font-size: 17px; }
.hero-subtitle strong { color: var(--teal-900); }
.hero-copy .button { max-width: 420px; }
.button-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px 14px; margin: 14px 0 0; color: #68807d; font-size: 11px; font-weight: 600; }
.button-note span::first-letter { color: var(--green-600); }
.quick-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 620px; margin: 36px auto 0; padding: 18px 10px; background: rgba(255,255,255,.74); border: 1px solid rgba(8,127,117,.12); border-radius: 18px; box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.quick-proof div { display: flex; flex-direction: column; align-items: center; padding: 0 7px; }
.quick-proof div + div { border-left: 1px solid var(--line); }
.quick-proof b { color: var(--teal-800); font-family: "Manrope"; font-size: 20px; line-height: 1; }
.quick-proof span { margin-top: 5px; color: var(--muted); font-size: 9px; }

.section-kicker-orange { color: var(--orange-600); }
.section-kicker-light { color: #bdf25e; }
.section-heading { max-width: 680px; margin: 0 auto 42px; text-align: center; }
.section-heading h2, .pain-copy h2, .solution-copy h2, .benefits-sticky h2, .offer-intro h2, .faq-intro h2 { margin: 12px 0 14px; font-size: clamp(30px, 5vw, 48px); }
.section-heading em, .pain-copy em, .solution-copy em, .benefits-sticky em, .offer-intro em, .faq-intro em { color: var(--orange-600); font-style: normal; }
.section-heading p, .pain-copy > p, .solution-copy > p, .benefits-sticky > p, .offer-intro > p, .faq-intro > p { margin: 0; color: var(--muted); font-size: 16px; }

.pain-section { background: var(--cream); }
.pain-grid { display: grid; gap: 36px; }
.pain-copy h2 { font-size: clamp(30px, 6vw, 48px); }
.truth-card { display: flex; align-items: flex-start; gap: 14px; margin-top: 28px; padding: 18px; background: white; border: 1px solid #f6ddc7; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.truth-card > span { display: grid; place-items: center; flex: 0 0 42px; height: 42px; background: var(--orange-100); border-radius: 50%; }
.truth-card p { margin: 0; color: var(--muted); font-size: 13px; }
.truth-card strong { color: var(--ink); }
.pain-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.pain-list li { display: flex; align-items: center; gap: 16px; padding: 17px 18px; background: white; border: 1px solid #ece4d8; border-radius: 14px; box-shadow: 0 5px 16px rgba(84, 61, 38, .04); transition: transform .2s ease, border-color .2s ease; }
.pain-list li:hover { transform: translateX(5px); border-color: #ffc7a5; }
.pain-list span { display: grid; place-items: center; flex: 0 0 37px; height: 37px; color: var(--orange-600); background: var(--orange-100); border-radius: 10px; font-size: 11px; font-weight: 800; }
.pain-list p { margin: 0; color: var(--muted); font-size: 13px; }
.pain-list strong { color: var(--ink); }

.solution-section { overflow: hidden; background: white; }
.solution-grid { display: block; }
.solution-copy { max-width: 780px; margin-inline: auto; }
.check-list { display: grid; gap: 12px; margin: 25px 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 14px; }
.check-list span { display: grid; place-items: center; flex: 0 0 25px; height: 25px; color: white; background: var(--green-600); border-radius: 50%; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-800); font-weight: 800; border-bottom: 2px solid #c3e6de; }
.text-link span { font-size: 20px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.receive-section { background: #f3faf7; }
.receive-grid { display: grid; gap: 14px; }
.feature-card { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; padding: 24px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(5,67,63,.12); }
.feature-icon { display: grid; place-items: center; width: 47px; height: 47px; margin-bottom: 18px; border-radius: 13px; }
.feature-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-orange { color: var(--orange-600); background: var(--orange-100); }
.icon-teal { color: var(--teal-800); background: var(--teal-100); }
.icon-green { color: var(--green-700); background: var(--green-100); }
.feature-card strong { display: block; font-family: "Manrope"; font-size: 17px; line-height: 1.25; }
.feature-card p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.feature-number { position: absolute; right: -7px; bottom: -28px; color: rgba(104,173,36,.08); font: 800 110px/1 "Manrope"; }
.file-pill { position: absolute; top: 25px; right: 24px; padding: 5px 9px; color: white; background: var(--orange-600); border-radius: 6px; font-size: 10px; font-weight: 800; }

.modules-section { background: var(--teal-950); }
.light-heading h2, .light-heading p { color: white; }
.light-heading p { opacity: .72; }
.light-heading em { color: #bdf25e; }
.modules-grid { display: grid; gap: 14px; }
.module-card { position: relative; overflow: hidden; min-height: 250px; display: flex; flex-direction: column; align-items: flex-start; padding: 25px; border-radius: 20px; transition: transform .25s ease; }
.module-card:hover { transform: translateY(-5px) rotate(-.4deg); }
.module-card::after { content: ""; position: absolute; width: 140px; height: 140px; right: -50px; bottom: -60px; border: 24px solid rgba(255,255,255,.12); border-radius: 50%; }
.module-index { font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.module-emoji { display: grid; place-items: center; width: 52px; height: 52px; margin: 14px 0; background: rgba(255,255,255,.78); border-radius: 15px; font-size: 28px; box-shadow: 0 8px 20px rgba(0,0,0,.08); transform: rotate(-4deg); }
.module-card h3 { margin: 0; font: 800 21px/1.2 "Manrope"; letter-spacing: -.025em; }
.module-card p { margin: 8px 0 18px; font-size: 12px; opacity: .78; }
.module-tag { margin-top: auto; padding: 6px 10px; background: rgba(255,255,255,.38); border-radius: 99px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.module-orange { color: #411c0f; background: #ffb06f; }
.module-green { color: #17340b; background: #aade69; }
.module-cream { color: #41310c; background: #f6df8c; }
.module-teal { color: white; background: #169c91; }
.module-lime { color: #20350f; background: #c4e98b; }
.module-coral { color: #4c1812; background: #ff8e76; }

.benefits-section { background: white; }
.benefits-layout { display: grid; gap: 38px; }
.benefits-sticky .button { margin-top: 25px; }
.benefit-list { display: grid; }
.benefit-row { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 21px 0; border-top: 1px solid var(--line); }
.benefit-row:last-child { border-bottom: 1px solid var(--line); }
.benefit-row > span { display: grid; place-items: center; width: 40px; height: 40px; color: var(--teal-800); background: var(--teal-100); border-radius: 50%; font: 800 11px "Manrope"; }
.benefit-row h3 { margin: 0 0 5px; font: 800 17px/1.3 "Manrope"; }
.benefit-row p { margin: 0; color: var(--muted); font-size: 13px; }

.gallery-section { overflow: hidden; background: var(--cream); }
.gallery-marquee { width: 100vw; overflow: hidden; margin-inline: calc(50% - 50vw); padding: 10px 0 34px; -webkit-mask-image: linear-gradient(to right, transparent, #000 2.5%, #000 97.5%, transparent); mask-image: linear-gradient(to right, transparent, #000 2.5%, #000 97.5%, transparent); }
.gallery-track { display: flex; width: max-content; will-change: transform; }
.gallery-track.is-ready { animation: gallery-marquee 52s linear infinite; }
.gallery-set { --gallery-gap: 15px; display: flex; flex: none; align-items: flex-start; gap: var(--gallery-gap); padding-left: var(--gallery-gap); }
.gallery-card { flex: 0 0 min(72vw, 300px); align-self: flex-start; margin: 0; padding: 8px; background: white; border: 1px solid #e1e9e6; border-radius: 16px; box-shadow: 0 14px 30px rgba(5,67,63,.13); }
.gallery-card img { width: 100%; max-width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 10px; }
.gallery-card figcaption { padding: 12px 7px 6px; color: var(--teal-900); font-size: 12px; font-weight: 800; text-align: center; }
@keyframes gallery-marquee { to { transform: translate3d(-50%, 0, 0); } }

.offer-section { background: var(--teal-950); }
.offer-wrap { display: grid; align-items: center; gap: 40px; }
.offer-intro { color: white; }
.offer-intro h2 { font-size: clamp(34px, 6vw, 54px); }
.offer-intro h2 em { color: #bdf25e; }
.offer-intro > p { color: rgba(255,255,255,.7); }
.offer-quote { display: flex; align-items: flex-start; gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.offer-quote > span { color: var(--orange-500); font: 800 46px/.8 Georgia, serif; }
.offer-quote p { margin: 0; color: rgba(255,255,255,.72); }
.offer-quote strong { color: white; }
.pricing-card { position: relative; padding: 33px 24px 24px; background: white; border: 3px solid #bdf25e; border-radius: 24px; box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.best-choice { position: absolute; top: 0; left: 50%; padding: 8px 14px; color: var(--teal-950); background: #bdf25e; border-radius: 0 0 10px 10px; font-size: 8px; font-weight: 800; letter-spacing: .08em; white-space: nowrap; transform: translateX(-50%); }
.pricing-top { display: grid; grid-template-columns: 75px 1fr; align-items: center; gap: 16px; padding: 14px 0 19px; border-bottom: 1px solid var(--line); }
.mini-cover { overflow: hidden; padding: 3px; background: white; border: 1px solid var(--line); border-radius: 7px; box-shadow: var(--shadow-sm); transform: rotate(-3deg); }
.mini-cover img { border-radius: 4px; }
.pricing-top span { color: var(--orange-600); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pricing-top h3 { margin: 4px 0 0; font: 800 17px/1.25 "Manrope"; }
.offer-list { display: grid; gap: 10px; margin: 20px 0; padding: 0; list-style: none; }
.offer-list li { display: flex; align-items: flex-start; gap: 9px; color: #3f5b59; font-size: 13px; }
.offer-list li span { display: grid; place-items: center; flex: 0 0 20px; width: 20px; min-width: 20px; height: 20px; margin-top: 1px; color: white; background: var(--green-600); border-radius: 50%; font-size: 9px; font-weight: 800; line-height: 1; }
.price-block { padding: 18px; background: #f2faf6; border: 1px solid #dcefe6; border-radius: 14px; text-align: center; }
.price-block > span { color: var(--muted); font-size: 12px; }
.price-comparison { display: block; font-weight: 700; }
.price-comparison s { color: #8a9a98; text-decoration-color: var(--orange-600); text-decoration-thickness: 2px; }
.price-block > div { display: flex; align-items: flex-start; justify-content: center; color: var(--teal-900); font-family: "Manrope"; line-height: .9; }
.price-block small { margin: 11px 5px 0 0; font-size: 18px; font-weight: 800; }
.price-block strong { font-size: 66px; letter-spacing: -.07em; }
.price-block sup { margin-top: 8px; font-size: 24px; font-weight: 800; }
.price-block p { margin: 5px 0 0; color: var(--green-700); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.pricing-card .button { margin-top: 15px; }
.secure-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px 10px; margin: 13px 0 0; color: #6b7e7c; font-size: 9px; }

.safety-section { padding: 82px 0; background: #f3faf7; }
.safety-card { display: grid; gap: 18px; padding: 26px; color: white; background: linear-gradient(135deg, var(--teal-900), var(--teal-800)); border-radius: 22px; box-shadow: var(--shadow-lg); }
.safety-card .section-kicker { color: #bdf25e; }
.safety-card h2 { margin: 8px 0; font: 800 23px/1.2 "Manrope"; letter-spacing: -.03em; }
.safety-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; }
.safety-icon { display: grid; place-items: center; width: 58px; height: 58px; color: var(--teal-900); background: #bdf25e; border-radius: 18px; transform: rotate(-4deg); }
.safety-icon svg { width: 32px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.faq-section { background: white; }
.faq-layout { display: grid; gap: 38px; }
.faq-intro { position: relative; }
.faq-decoration { position: absolute; z-index: -1; top: 75px; right: 0; color: rgba(104,173,36,.08); font: 800 190px/1 "Manrope"; }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; background: #fbfdfc; border: 1px solid var(--line); border-radius: 14px; transition: border-color .2s ease, background .2s ease; }
.faq-item:has(button[aria-expanded="true"]) { background: #f3faf7; border-color: #b8ddd5; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px; color: var(--ink); background: transparent; border: 0; font-weight: 800; text-align: left; cursor: pointer; }
.faq-item i { position: relative; flex: 0 0 28px; height: 28px; background: white; border: 1px solid var(--line); border-radius: 50%; }
.faq-item i::before, .faq-item i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 2px; background: var(--teal-800); transform: translate(-50%,-50%); transition: transform .2s ease; }
.faq-item i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-answer p { margin: -3px 0 0; padding: 0 18px 19px; color: var(--muted); font-size: 13px; }

.final-cta { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg, var(--orange-700), var(--orange-500)); text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.25) 1px, transparent 1px); background-size: 20px 20px; mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent); }
.final-leaf { position: absolute; width: 180px; height: 90px; border: 3px solid rgba(255,255,255,.16); border-radius: 100% 0 100% 0; }
.final-leaf-one { top: -30px; left: -60px; transform: rotate(25deg); }
.final-leaf-two { right: -70px; bottom: -30px; transform: rotate(-155deg); }
.final-inner { position: relative; z-index: 1; max-width: 850px; }
.final-tag { display: inline-block; padding: 8px 13px; color: #ffeab9; background: rgba(128,42,8,.26); border: 1px solid rgba(255,255,255,.22); border-radius: 99px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.final-inner h2 { margin: 18px 0 14px; font-size: clamp(34px, 7vw, 60px); }
.final-inner p { max-width: 650px; margin: 0 auto 24px; color: rgba(255,255,255,.85); font-size: 16px; }
.final-inner p strong { color: white; }
.button-light { max-width: 340px; color: var(--teal-900); background: white; box-shadow: 0 15px 35px rgba(96,32,8,.24); }
.final-inner small { display: block; margin-top: 13px; color: rgba(255,255,255,.72); }

.site-footer { padding: 50px 0; color: #b7cecb; background: #042d2b; }
.footer-main { display: grid; gap: 24px; }
.footer-brand { color: white; }
.footer-main > p { max-width: 470px; margin: 0; font-size: 11px; }
.footer-bottom { display: flex; flex-direction: column; flex-wrap: wrap; gap: 6px 18px; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; line-height: 1.5; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 600px) {
  .container { width: min(calc(100% - 56px), var(--container)); }
  .section { padding: 100px 0; }
  .offer-strip { font-size: 13px; }
  .hero { padding-top: 76px; }
  .hero-preview { height: 485px; }
  .preview-page { width: 210px; }
  .preview-cover { width: 250px; }
  .button-large { width: auto; min-width: 370px; }
  .hero-subtitle { font-size: 18px; }
  .quick-proof { padding: 20px; }
  .quick-proof b { font-size: 25px; }
  .quick-proof span { font-size: 11px; }
  .receive-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 18px; }
  .feature-card-wide .feature-icon { margin: 0; flex: 0 0 52px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-card { grid-template-columns: auto 1fr; align-items: center; padding: 34px; }
  .footer-main { grid-template-columns: 1fr 1.5fr; align-items: center; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 820px) {
  .desktop-nav { display: flex; }
  .header-inner > .button { display: inline-flex; }
  .pain-grid, .offer-wrap, .faq-layout { grid-template-columns: 1fr 1fr; }
  .pain-grid { align-items: center; gap: 75px; }
  .receive-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card-wide { grid-column: span 2; }
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-layout { grid-template-columns: .8fr 1.2fr; gap: 100px; }
  .benefits-sticky { position: sticky; top: 120px; align-self: start; }
  .gallery-card { flex-basis: 300px; }
  .offer-wrap { gap: 100px; }
  .pricing-card { padding: 42px 36px 30px; }
  .faq-layout { gap: 100px; }
  .faq-intro { position: sticky; top: 120px; align-self: start; }
}

@media (max-width: 599px) {
  .hero-preview {
    width: min(100%, 360px);
    height: 320px;
    margin: 30px auto 24px;
  }
  .preview-page { width: 128px; }
  .preview-cover { width: 156px; }
  .gallery-marquee { padding-top: 6px; padding-bottom: 28px; }
  .gallery-track.is-ready { animation-duration: 44s; }
  .gallery-set { --gallery-gap: 12px; }
  .gallery-card { flex-basis: min(72vw, 260px); }
  .gallery-card figcaption { padding-top: 10px; }
  .mini-cover { width: 68px; justify-self: center; }
}

@media (max-width: 420px) {
  .offer-strip span, .offer-strip a { display: none; }
  .header-inner { min-height: 64px; }
  .header-inner > .button { display: none; }
  .hero { padding-top: 46px; }
  .hero h1 { font-size: 32px; }
  .hero h1 span { white-space: normal; }
  .hero-preview { width: min(100%, 340px); height: 300px; margin: 28px auto 22px; }
  .preview-page { width: 116px; }
  .preview-cover { width: 142px; }
  .preview-page-1 { transform: translate(-117%, -44%) rotate(-13deg) scale(.8); }
  .preview-page-2 { transform: translate(-82%, -48%) rotate(-7deg) scale(.88); }
  .preview-page-4 { transform: translate(-18%, -48%) rotate(7deg) scale(.88); }
  .preview-page-5 { transform: translate(17%, -44%) rotate(13deg) scale(.8); }
  .gallery-card { flex-basis: min(74vw, 250px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .gallery-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; scrollbar-width: thin; scrollbar-color: var(--teal-700) #dcece7; }
  .gallery-track.is-ready { animation: none; }
  .gallery-set[aria-hidden="true"] { display: none; }
}
