:root {
  --navy: #12304a;
  --navy-deep: #0b2336;
  --teal: #2f8783;
  --teal-dark: #216b68;
  --teal-light: #a9cfca;
  --coral: #f58d72;
  --coral-dark: #dd7058;
  --cream: #fff8ee;
  --cream-deep: #f4e7d4;
  --paper: #fffdf9;
  --ink: #172d3c;
  --muted: #60727d;
  --line: rgba(18, 48, 74, .12);
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(18, 48, 74, .08);
  --shadow-lg: 0 28px 70px rgba(18, 48, 74, .14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.promo-bar { background: var(--navy-deep); color: var(--white); }
.promo-bar__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
}
.promo-bar__label { font-weight: 800; letter-spacing: .02em; }
.promo-bar__deadline { color: var(--teal-light); }
.countdown { display: flex; align-items: center; gap: 6px; }
.countdown > span { display: flex; align-items: baseline; gap: 3px; }
.countdown strong { font-size: 17px; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown small { color: rgba(255,255,255,.72); font-size: 10px; }
.countdown i { color: var(--coral); font-style: normal; font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.site-header__inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); text-decoration: none; font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.brand strong { color: var(--teal-dark); }
.brand__mark {
  width: 38px;
  height: 29px;
  position: relative;
  display: inline-block;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  box-shadow: 0 7px 16px rgba(47, 135, 131, .22);
}
.brand__mark::before { content: ""; position: absolute; left: 6px; right: 6px; top: 7px; height: 3px; border-radius: 4px; background: rgba(255,255,255,.78); }
.brand__mark i { position: absolute; left: 7px; bottom: 6px; width: 9px; height: 5px; border-radius: 2px; background: var(--cream); }
.brand__mark b { position: absolute; right: -4px; bottom: -3px; width: 14px; height: 14px; border: 3px solid var(--paper); border-radius: 50%; background: var(--coral); }
.header-cta { padding: 10px 18px; border-radius: 12px; background: var(--navy); color: var(--white); font-weight: 800; text-decoration: none; font-size: 14px; transition: .2s ease; }
.header-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

.hero { position: relative; overflow: hidden; padding: 76px 0 0; background: linear-gradient(135deg, var(--cream) 0%, #fffdf9 62%, #f7eee2 100%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 56px; }
.hero__copy { position: relative; z-index: 3; padding-bottom: 78px; }
.hero__orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__orb--one { width: 420px; height: 420px; right: -190px; top: -120px; background: rgba(245, 141, 114, .18); }
.hero__orb--two { width: 300px; height: 300px; left: -180px; bottom: -140px; background: rgba(169, 207, 202, .38); }
.eyebrow, .overline { color: var(--teal-dark); font-size: 13px; line-height: 1.25; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid rgba(47, 135, 131, .28); border-radius: 999px; background: rgba(255,255,255,.55); }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(245,141,114,.15); }
.hero h1 { margin: 22px 0 20px; color: var(--navy); font-size: clamp(46px, 5.2vw, 70px); line-height: .98; letter-spacing: -.055em; }
.hero h1 em { display: block; color: var(--teal); font-style: normal; }
.hero__lead { max-width: 600px; margin: 0; color: #405a69; font-size: 19px; line-height: 1.62; }
.hero__actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }
.button { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; min-height: 58px; padding: 13px 24px; border: 0; border-radius: 15px; font-size: 16px; line-height: 1.2; font-weight: 900; text-align: center; text-decoration: none; box-shadow: 0 14px 30px rgba(18,48,74,.14); transition: .2s ease; }
.button small { margin-top: 5px; font-size: 11px; font-weight: 600; opacity: .78; }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(18,48,74,.2); }
.button--primary { min-width: 298px; background: var(--teal); color: var(--white); }
.button--primary:hover, .button--secondary:hover { background: var(--teal-dark); }
.button--secondary { background: var(--navy); color: var(--white); }
.button--coral { background: var(--coral); color: var(--navy-deep); box-shadow: 0 14px 32px rgba(245,141,114,.22); }
.button--coral:hover { background: #ff9c83; }
.text-link { color: var(--navy); font-weight: 850; text-underline-offset: 5px; text-decoration-thickness: 2px; }
.hero__reassurance { display: flex; flex-wrap: wrap; gap: 14px 18px; margin: 24px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; font-weight: 700; }
.hero__reassurance span { display: inline-grid; width: 20px; height: 20px; margin-right: 5px; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal); font-size: 11px; }

.hero__visual { position: relative; min-width: 0; align-self: end; }
.hero-showcase { position: relative; width: 100%; aspect-ratio: 1.46 / 1; }
.hero-showcase img { position: relative; left: clamp(190px, 14vw, 220px); width: 100%; height: 100%; max-width: none; object-fit: contain; object-position: right bottom; transform: scale(1.42); transform-origin: right bottom; filter: drop-shadow(0 26px 24px rgba(18,48,74,.13)); }

.quick-proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.quick-proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-proof__grid > div { display: flex; flex-direction: column; min-height: 102px; justify-content: center; padding: 18px 24px; border-right: 1px solid var(--line); }
.quick-proof__grid > div:last-child { border-right: 0; }
.quick-proof strong { color: var(--navy); font-size: 15px; }
.quick-proof span { color: var(--muted); font-size: 12px; }

.section-heading { display: flex; align-items: flex-start; gap: 18px; }
.section-heading--center { max-width: 780px; margin: 0 auto 52px; justify-content: center; text-align: center; }
.section-number { flex: 0 0 auto; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--cream-deep); color: var(--teal-dark); font-size: 12px; font-weight: 900; }
.section-heading h2, .offer h2, .final-cta h2 { margin: 9px 0 0; color: var(--navy); font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.section-lead { color: var(--muted); font-size: 18px; line-height: 1.65; }
.overline { margin: 0; }
.overline--coral { color: var(--coral); }

.pain { overflow: hidden; background: var(--navy-deep); color: var(--white); }
.section-heading--light h2 { color: var(--white); }
.section-heading--light .overline { color: var(--teal-light); }
.section-heading--light .section-number { background: rgba(255,255,255,.08); color: var(--coral); }
.pain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.pain-card { min-height: 260px; padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.pain-card--accent { background: var(--teal); border-color: var(--teal); transform: translateY(-13px); }
.pain-card__icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 34px; border-radius: 13px; background: rgba(255,255,255,.09); color: var(--coral); font-size: 12px; font-weight: 900; }
.pain-card--accent .pain-card__icon { background: rgba(255,255,255,.16); color: var(--white); }
.pain-card h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.25; }
.pain-card p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }
.pain-card--accent p { color: rgba(255,255,255,.86); }
.anchor-quote { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 64px auto 0; text-align: center; }
.anchor-quote > span { color: var(--coral); font-family: Georgia, serif; font-size: 86px; line-height: .5; }
.anchor-quote p { margin: 0; color: rgba(255,255,255,.72); font-size: 22px; line-height: 1.5; }
.anchor-quote strong { color: var(--white); }

.mechanism { background: var(--cream); }
.mechanism__grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 72px; align-items: center; }
.steps { margin: 34px 0; padding: 0; list-style: none; }
.steps li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.steps li > span { flex: 0 0 auto; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: var(--navy); color: var(--white); font-size: 13px; font-weight: 900; }
.steps strong { display: block; color: var(--navy); font-size: 17px; }
.steps p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.phone-stage { position: relative; width: min(100%, 520px); margin: auto; padding: 40px; }
.phone-stage::before { content: ""; position: absolute; inset: 8% 1% 7%; border-radius: 48% 52% 46% 54%; background: linear-gradient(135deg, rgba(169,207,202,.6), rgba(245,141,114,.28)); transform: rotate(-5deg); }
.phone-stage img { position: relative; z-index: 2; width: 80%; margin: auto; filter: drop-shadow(0 28px 28px rgba(18,48,74,.18)); }
.phone-stage__note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border-radius: 13px; background: var(--white); box-shadow: var(--shadow-sm); color: var(--navy); font-size: 12px; font-weight: 800; }
.phone-stage__note span { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 11px; }
.phone-stage__note--one { top: 20%; left: 0; }
.phone-stage__note--two { top: 48%; right: -5%; }
.phone-stage__note--three { bottom: 18%; left: -2%; }

.purchase-demo { overflow: hidden; background: var(--navy-deep); color: var(--white); }
.purchase-demo__heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.purchase-demo__heading .overline { color: var(--teal-light); }
.purchase-demo__heading h2 { margin: 8px 0 14px; color: var(--white); font-size: clamp(34px, 4vw, 54px); line-height: 1.03; letter-spacing: -.045em; }
.purchase-demo__heading > p:last-child { margin: 0 auto; max-width: 610px; color: rgba(255,255,255,.7); font-size: 17px; }
.demo-frame { overflow: hidden; max-width: 1050px; margin: auto; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: #f5f8fb; box-shadow: 0 32px 70px rgba(5,20,32,.36); color: var(--navy); }
.demo-frame__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; padding: 12px 22px; background: var(--navy); color: var(--white); }
.demo-frame__brand { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 900; }
.demo-frame__brand span { width: 26px; height: 18px; border: 2px solid var(--teal-light); border-radius: 6px; box-shadow: inset 0 -5px 0 rgba(169,207,202,.24); }
.demo-frame__tag { padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.1); color: var(--teal-light); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.demo-frame__content { display: grid; grid-template-columns: .78fr 1.22fr; gap: 22px; padding: 24px; }
.demo-form-card, .demo-result-card { min-width: 0; border: 1px solid #dbe5ec; border-radius: 22px; background: var(--white); }
.demo-form-card { padding: 25px; }
.demo-card__eyebrow { margin: 0 0 7px; color: var(--teal-dark); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.demo-form-card h3 { margin: 0 0 22px; color: var(--navy); font-size: 22px; line-height: 1.2; }
.demo-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.demo-field { padding: 13px 14px; border: 1px solid #d9e4eb; border-radius: 12px; background: #f8fafc; }
.demo-field--wide { grid-column: 1 / -1; }
.demo-field span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 10px; }
.demo-field strong { display: block; color: var(--navy); font-size: 14px; }
.demo-action { width: 100%; margin-top: 18px; padding: 14px 18px; border: 0; border-radius: 12px; background: var(--coral); color: var(--navy-deep); cursor: pointer; font: inherit; font-size: 14px; font-weight: 900; transition: transform .2s ease, opacity .2s ease; }
.demo-action:hover { transform: translateY(-2px); }
.demo-action:disabled { cursor: wait; opacity: .72; transform: none; }
.demo-result-card { display: grid; min-height: 345px; padding: 25px; }
.demo-result__waiting, .demo-result__calculating { align-self: center; justify-self: center; max-width: 300px; text-align: center; }
.demo-result__waiting[hidden], .demo-result__calculating[hidden], .demo-result__complete[hidden] { display: none; }
.demo-result__icon { display: grid; width: 62px; height: 62px; place-items: center; margin: 0 auto 16px; border-radius: 19px; background: var(--teal-light); color: var(--teal-dark); font-size: 20px; font-weight: 950; }
.demo-result__waiting strong, .demo-result__calculating strong { display: block; color: var(--navy); font-size: 19px; }
.demo-result__waiting p, .demo-result__calculating p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.demo-spinner { display: block; width: 52px; height: 52px; margin: 0 auto 17px; border: 5px solid var(--teal-light); border-top-color: var(--coral); border-radius: 50%; animation: demo-spin .8s linear infinite; }
.demo-result__complete { align-self: stretch; animation: demo-reveal .42s ease both; }
.demo-result__summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid #e1e9ee; }
.demo-result__summary span { display: block; color: var(--muted); font-size: 11px; }
.demo-result__summary strong { display: block; margin-top: 2px; color: var(--navy); font-size: 28px; letter-spacing: -.035em; }
.demo-result__summary .demo-result__period { padding: 8px 11px; border-radius: 999px; background: #e5f1ef; color: var(--teal-dark); font-size: 11px; font-weight: 900; }
.demo-result__label { margin: 0 0 12px; color: var(--navy); font-size: 12px; font-weight: 900; }
.demo-months { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.demo-months > span { display: flex; min-width: 0; flex-direction: column; align-items: center; padding: 9px 3px 7px; border-radius: 10px; background: #f2f6f8; }
.demo-months i { display: block; width: 12px; height: 28px; margin-bottom: 6px; border-radius: 7px 7px 3px 3px; background: linear-gradient(180deg, var(--coral), #f6b19e); transform-origin: bottom; animation: demo-bar .48s ease both; }
.demo-months b { color: var(--navy); font-size: 9px; }
.demo-months small { margin-top: 2px; color: var(--teal-dark); font-size: 8px; font-weight: 800; white-space: nowrap; }
.demo-insight { display: flex; align-items: flex-start; gap: 9px; margin-top: 16px; padding: 12px 13px; border-radius: 12px; background: #fff1ed; }
.demo-insight > span { display: grid; flex: 0 0 20px; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--coral); color: var(--navy-deep); font-size: 11px; font-weight: 900; }
.demo-insight p { margin: 0; color: var(--navy); font-size: 11px; line-height: 1.45; }
.demo-replay { display: block; margin: 12px auto 0; padding: 4px; border: 0; background: transparent; color: var(--teal-dark); cursor: pointer; font: inherit; font-size: 11px; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.demo-frame__disclaimer { margin: 0; padding: 0 24px 20px; color: #687b8a; font-size: 10px; text-align: center; }
@keyframes demo-spin { to { transform: rotate(360deg); } }
@keyframes demo-reveal { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@keyframes demo-bar { from { transform: scaleY(.15); opacity: .25; } to { transform: scaleY(1); opacity: 1; } }

.benefits { background: var(--paper); }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { position: relative; min-height: 232px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 6px 22px rgba(18,48,74,.04); }
.benefit-card--featured { background: var(--navy); color: var(--white); }
.benefit-card__number { display: block; margin-bottom: 40px; color: var(--coral); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.benefit-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 20px; line-height: 1.25; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; }
.benefit-card--featured h3 { color: var(--white); }
.benefit-card--featured p { color: rgba(255,255,255,.7); }

.privacy { background: #edf5f3; }
.privacy__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 72px; }
.privacy__visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.privacy__visual::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: var(--teal-light); opacity: .52; }
.privacy-phone { position: relative; z-index: 2; width: 72%; }
.privacy-phone img { filter: drop-shadow(0 28px 30px rgba(18,48,74,.18)); }
.privacy-seal { position: absolute; z-index: 3; right: 0; bottom: 12%; display: flex; align-items: center; gap: 10px; max-width: 215px; padding: 14px 16px; border-radius: 15px; background: var(--white); box-shadow: var(--shadow-lg); color: var(--navy); font-size: 12px; line-height: 1.35; }
.privacy-seal > span { color: #36b66c; font-size: 23px; }
.check-list { margin: 34px 0 26px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 14px; margin-bottom: 22px; }
.check-list li > span { flex: 0 0 auto; display: grid; width: 30px; height: 30px; place-items: center; margin-top: 2px; border-radius: 10px; background: var(--teal); color: var(--white); font-size: 13px; }
.check-list strong { color: var(--navy); }
.check-list p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.important-note { padding: 17px 19px; border-left: 4px solid var(--coral); border-radius: 0 14px 14px 0; background: rgba(255,255,255,.65); color: var(--muted); font-size: 13px; }
.important-note strong { color: var(--navy); }

.offer { background: var(--navy-deep); }
.offer-card { display: grid; grid-template-columns: 1.15fr .85fr; gap: 58px; align-items: center; padding: 62px; border-radius: var(--radius-lg); background: var(--cream); box-shadow: var(--shadow-lg); }
.offer-card__copy > p:not(.overline) { color: var(--muted); font-size: 17px; }
.offer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin: 28px 0 0; padding: 0; list-style: none; color: var(--navy); font-size: 14px; font-weight: 750; }
.offer-list span { color: var(--teal); font-weight: 900; }
.price-box { padding: 34px; border-radius: 28px; background: var(--navy); color: var(--white); text-align: center; box-shadow: 0 24px 48px rgba(18,48,74,.24); }
.price-box__tag { display: inline-block; padding: 7px 12px; border-radius: 999px; background: var(--coral); color: var(--navy-deep); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.price-box__after { margin: 15px 0 0; color: var(--teal-light); font-size: 13px; }
.price-box__value { display: flex; align-items: flex-start; justify-content: center; margin: 4px 0 4px; }
.price-box__value small { margin: 24px 5px 0 0; font-size: 23px; font-weight: 800; }
.price-box__value strong { font-size: 88px; line-height: 1; letter-spacing: -.07em; }
.price-box__condition { margin: 0 0 22px; color: rgba(255,255,255,.62); font-size: 13px; }
.price-box .button { width: 100%; }
.price-box__security { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 18px; color: rgba(255,255,255,.64); font-size: 10px; }
.price-box__security span { color: var(--teal-light); }
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: 25px; align-items: center; max-width: 780px; margin: 38px auto 0; color: var(--white); }
.guarantee__seal { display: grid; width: 100px; height: 100px; place-content: center; border: 2px solid var(--teal-light); border-radius: 50%; text-align: center; }
.guarantee__seal strong { font-size: 37px; line-height: .9; }
.guarantee__seal span { color: var(--teal-light); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.guarantee h3 { margin: 4px 0; font-size: 23px; }
.guarantee p:last-child { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; }

.faq { background: var(--paper); }
.faq__grid { max-width: 900px; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; border: 0; background: transparent; color: var(--navy); font: inherit; font-size: 17px; font-weight: 850; text-align: left; cursor: pointer; }
.accordion__button i { position: relative; flex: 0 0 auto; width: 22px; height: 22px; }
.accordion__button i::before, .accordion__button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; border-radius: 2px; background: var(--teal); transform: translate(-50%, -50%); transition: .2s ease; }
.accordion__button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__button[aria-expanded="true"] i::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.accordion__panel { padding: 0 42px 22px 0; }
.accordion__panel p { margin: 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 0 0 90px; background: var(--paper); }
.final-cta__card { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 34px 38px; overflow: hidden; border-radius: 28px; background: var(--navy); color: var(--white); }
.final-cta__card img { width: 104px; height: 104px; border-radius: 24px; object-fit: cover; }
.final-cta h2 { margin-top: 5px; color: var(--white); font-size: clamp(30px, 3vw, 42px); }
.final-cta p:not(.overline) { margin: 7px 0 0; color: rgba(255,255,255,.68); }
.final-cta .button { min-width: 280px; }

.site-footer { padding: 58px 0 26px; background: #081b2a; color: var(--white); }
.brand--footer { color: var(--white); }
.site-footer__grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.site-footer__grid p { color: rgba(255,255,255,.5); font-size: 13px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer nav a { color: rgba(255,255,255,.72); font-size: 13px; text-underline-offset: 4px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.4); font-size: 11px; }
.site-footer__bottom p { margin: 0; max-width: 550px; }

.mobile-buy-bar { display: none; }
.noscript { position: fixed; inset: auto 12px 12px; z-index: 1000; padding: 12px; border-radius: 10px; background: var(--navy); color: var(--white); text-align: center; font-size: 13px; }

.legal-hero { padding: 68px 0 46px; background: var(--cream); border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 760px; margin: 14px 0 12px; color: var(--navy); font-size: clamp(42px, 6vw, 68px); line-height: 1; letter-spacing: -.05em; }
.legal-hero p { max-width: 760px; margin: 0; color: var(--muted); }
.legal-content { padding: 64px 0 90px; }
.legal-content__inner { max-width: 850px; }
.legal-content h2 { margin: 46px 0 10px; color: var(--navy); font-size: 25px; line-height: 1.2; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #506571; font-size: 15px; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--teal-dark); font-weight: 800; text-underline-offset: 4px; }
.legal-alert { margin: 30px 0; padding: 18px 20px; border-left: 4px solid var(--coral); border-radius: 0 14px 14px 0; background: var(--cream); color: var(--muted); font-size: 14px; }

@media (max-width: 980px) {
  .section { padding: 86px 0; }
  .hero { padding-top: 64px; }
  .hero__grid, .mechanism__grid, .privacy__grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 34px; }
  .hero__copy { max-width: 720px; }
  .hero__visual { width: min(100%, 760px); margin: auto; }
  .hero-showcase img { left: 0; transform: scale(1.08); }
  .quick-proof__grid { grid-template-columns: 1fr 1fr; }
  .quick-proof__grid > div:nth-child(2) { border-right: 0; }
  .quick-proof__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .mechanism__copy { order: 1; }
  .mechanism__visual { order: 2; }
  .privacy__visual { min-height: 520px; }
  .privacy-phone { width: 42%; }
  .offer-card { grid-template-columns: 1fr; }
  .price-box { max-width: 500px; width: 100%; margin: auto; }
  .final-cta__card { grid-template-columns: auto 1fr; }
  .final-cta .button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 720px) {
  body { padding-bottom: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .promo-bar__inner { min-height: 62px; flex-wrap: wrap; gap: 2px 13px; padding: 8px 0; }
  .promo-bar__label { width: 100%; text-align: center; font-size: 11px; }
  .promo-bar__deadline { display: none; }
  .countdown strong { font-size: 15px; }
  .site-header__inner { min-height: 62px; }
  .brand { font-size: 15px; }
  .brand__mark { width: 32px; height: 24px; }
  .header-cta { display: none; }
  .hero { padding: 48px 0 0; }
  .hero__copy { padding-bottom: 42px; }
  .hero h1 { margin-top: 18px; font-size: clamp(42px, 13vw, 58px); }
  .hero__lead { font-size: 17px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .button--primary { width: 100%; min-width: 0; }
  .text-link { text-align: center; }
  .hero__visual { width: calc(100% + 12px); margin-left: -6px; }
  .hero-showcase { aspect-ratio: 1.46 / 1; }
  .hero-showcase img { transform: scale(1.04); }
  .quick-proof__grid { grid-template-columns: 1fr 1fr; }
  .quick-proof__grid > div { min-height: 88px; padding: 15px 13px; }
  .quick-proof strong { font-size: 13px; }
  .quick-proof span { font-size: 10px; }
  .section { padding: 72px 0; }
  .section-heading { gap: 12px; }
  .section-number { width: 34px; height: 34px; }
  .section-heading h2 { font-size: 30px; line-height: 1.12; letter-spacing: -.035em; }
  .offer h2 { font-size: 34px; }
  .section-heading--center { padding-inline: 10px; }
  .pain .section-heading, .privacy__copy .section-heading { padding-right: 10px; }
  .section-lead { font-size: 16px; }
  .pain__grid, .benefits__grid { grid-template-columns: 1fr; }
  .pain-card--accent { transform: none; }
  .pain-card { min-height: 0; }
  .anchor-quote { align-items: flex-start; text-align: left; }
  .anchor-quote > span { margin-top: 13px; }
  .anchor-quote p { font-size: 18px; }
  .phone-stage { padding-inline: 18px; }
  .phone-stage__note { font-size: 10px; }
  .phone-stage__note--one { left: -2%; }
  .phone-stage__note--two { right: -2%; }
  .purchase-demo__heading { margin-bottom: 28px; padding-inline: 8px; }
  .purchase-demo__heading h2 { font-size: 30px; line-height: 1.1; }
  .purchase-demo__heading > p:last-child { font-size: 15px; }
  .demo-frame { border-radius: 22px; }
  .demo-frame__bar { min-height: 56px; padding: 10px 15px; }
  .demo-frame__tag { font-size: 8px; }
  .demo-frame__content { grid-template-columns: 1fr; padding: 14px; }
  .demo-form-card, .demo-result-card { padding: 19px; border-radius: 17px; }
  .demo-form-card h3 { font-size: 19px; }
  .demo-result-card { min-height: 305px; }
  .demo-result__summary strong { font-size: 25px; }
  .demo-months { grid-template-columns: repeat(4, 1fr); }
  .demo-frame__disclaimer { padding: 0 18px 17px; }
  .privacy__visual { min-height: 490px; }
  .privacy__visual::before { width: 380px; height: 380px; }
  .privacy-phone { width: 70%; }
  .privacy-seal { right: 4%; }
  .benefit-card { min-height: 0; padding: 25px; }
  .benefit-card__number { margin-bottom: 10px; }
  .offer-card { padding: 28px 20px; border-radius: 26px; }
  .offer-list { grid-template-columns: 1fr; }
  .price-box { padding: 28px 20px; }
  .price-box__value strong { font-size: 78px; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee__seal { margin: auto; }
  .accordion__button { font-size: 15px; }
  .final-cta { padding-bottom: 62px; }
  .final-cta__card { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 28px 20px; }
  .final-cta__card img { margin: auto; }
  .final-cta__card > div { width: 100%; }
  .final-cta__card p:not(.overline) { max-width: 280px; margin-inline: auto; }
  .final-cta .button { width: auto; min-width: 0; max-width: 290px; padding: 11px 18px; font-size: 14px; }
  .site-footer__grid, .site-footer__bottom { flex-direction: column; }
  .site-footer nav { gap: 14px 18px; }
  .mobile-buy-bar { position: fixed; z-index: 200; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; padding: 7px 14px; border-top: 1px solid rgba(255,255,255,.14); background: rgba(11,35,54,.97); color: var(--white); box-shadow: 0 -12px 30px rgba(8,27,42,.18); backdrop-filter: blur(14px); }
  .mobile-buy-bar > div { display: flex; flex-direction: column; justify-content: center; line-height: 1.08; }
  .mobile-buy-bar small { color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; }
  .mobile-buy-bar strong { font-size: 23px; letter-spacing: -.03em; }
  .mobile-buy-bar a { padding: 8px 16px; border-radius: 11px; background: var(--coral); color: var(--navy-deep); font-size: 14px; font-weight: 900; text-decoration: none; }
  .legal-hero { padding: 48px 0 38px; }
  .legal-content { padding: 46px 0 70px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
