:root{
  --ink:#151322; --paper:#ffffff; --surface:#F6F4F9; --surface-2:#EBE7F1; --line:#E4DFEC; --muted:#6B6880;
  --accent:#CA0288; --accent-text:#A80270; --accent-soft:#FBE7F3;
  --band:#0C0B15; --band-ink:#FBFAFF; --band-muted:#A9A4BE; --band-line:rgba(255,255,255,.14);
  --card:#ffffff; --card-line:#E7E2F0; --mint:#5ECEA0;
  --shadow:0 1px 2px rgba(21,19,34,.05),0 14px 36px rgba(21,19,34,.07);
  --shadow-sm:0 1px 2px rgba(21,19,34,.05),0 6px 16px rgba(21,19,34,.05);
  --shadow-lg:0 2px 4px rgba(21,19,34,.04),0 24px 60px rgba(40,24,70,.14);
  --shadow-cta:0 10px 26px rgba(202,2,136,.32);
  --shadow-cta-hover:0 16px 34px rgba(202,2,136,.42);
  --spectrum:linear-gradient(90deg,#E766CA 0%,#8879D4 28%,#5F70E6 52%,#55B3B5 78%,#5ECEA0 100%);
  --radius:20px;
  --display:'Figtree',"Helvetica Neue",Arial,sans-serif;
  --data:'Archivo',"Helvetica Neue",Arial,sans-serif;
  --ease-out:cubic-bezier(0.23,1,0.32,1);
  --header-h:72px;
}
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:calc(var(--header-h) + 8px); }
body{ margin:0; background:var(--paper); color:var(--ink); font-family:var(--display); -webkit-font-smoothing:antialiased; overflow-x:hidden; }
h1,h2,h3,h4,p,ul,ol,li,figure{ margin:0; padding:0; }
ul,ol{ list-style:none; }
a{ color:var(--accent-text); text-decoration:none; transition:color .2s ease; }
a:hover{ color:var(--accent); }
img{ display:block; max-width:100%; }
button{ font-family:inherit; }
:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:6px; }
::selection{ color:#fff; background:var(--accent); }

.wrap{ max-width:1200px; margin:0 auto; padding:0 24px; }
.wrap-narrow{ max-width:860px; margin:0 auto; padding:0 24px; }
.sec{ padding:clamp(56px,7vw,96px) 0; }
.bg-paper{ background:var(--paper); }
.bg-surface{ background:var(--surface); }
.bg-band{ background:var(--band); color:var(--band-ink); }

.bar{ height:4px; border-radius:99px; background:var(--spectrum); width:72px; }
.h2{ margin-top:22px; font-size:clamp(30px,4vw,46px); font-weight:800; letter-spacing:-.02em; line-height:1.1; text-wrap:balance; max-width:22ch; }
.grad-text{ background:var(--spectrum); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* Buttons */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px; font-family:var(--display); font-weight:700; border-radius:99px; background:var(--accent); color:#fff; border:none; cursor:pointer; white-space:nowrap; box-shadow:var(--shadow-cta); transition:transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background-color .2s ease; }
.btn:hover{ color:#fff; }
.btn:active{ transform:scale(.97); transition-duration:.12s; }
.btn-lg{ font-size:16.5px; padding:17px 30px; }
.btn-md{ font-size:15.5px; padding:15px 26px; }
.btn-sm{ font-size:14.5px; padding:11px 22px; box-shadow:0 8px 20px rgba(202,2,136,.32); }
.btn svg{ transition:transform .2s var(--ease-out); }
.btn-ghost{ background:transparent; color:var(--ink); border:1px solid var(--line); box-shadow:none; }
@media (hover:hover) and (pointer:fine){
  .btn:hover{ transform:translateY(-2px); box-shadow:var(--shadow-cta-hover); background:#B8027C; }
  .btn:hover svg{ transform:translateX(2px); }
  .btn-ghost:hover{ background:var(--surface); box-shadow:var(--shadow-sm); }
  .btn:active{ transform:translateY(0) scale(.97); }
}
.micro{ font-size:14px; color:var(--muted); font-weight:500; text-align:center; }

/* Example tag */
.tag-ex{ display:inline-flex; align-items:center; font-size:11.5px; font-weight:700; letter-spacing:.02em; color:var(--accent-text); background:var(--accent-soft); border-radius:99px; padding:4px 10px; line-height:1; }
.bg-band .tag-ex{ background:rgba(231,102,202,.16); color:#F3A6DE; }

/* Header */
.hdr{ position:sticky; top:0; z-index:60; background:rgba(12,11,21,.92); -webkit-backdrop-filter:blur(16px) saturate(160%); backdrop-filter:blur(16px) saturate(160%); color:var(--band-ink); border-bottom:1px solid var(--band-line); }
.hdr-in{ display:flex; align-items:center; gap:28px; height:var(--header-h); }
.logo{ display:flex; flex-direction:column; line-height:1; text-decoration:none; flex:0 0 auto; color:var(--band-ink); }
.logo:hover{ color:var(--band-ink); }
.logo-w{ font-size:25px; font-weight:800; letter-spacing:-.03em; }
.logo-w svg{ display:inline-block; vertical-align:super; margin-left:1px; }
.logo-d{ font-size:9.5px; letter-spacing:.42em; font-weight:600; opacity:.82; margin-top:3px; }
.nav{ display:flex; gap:6px; margin-left:auto; align-items:center; }
.nav a{ position:relative; font-size:15px; font-weight:500; color:var(--band-muted); white-space:nowrap; padding:8px 10px; border-radius:10px; transition:color .2s ease, background-color .2s ease; }
.nav a:hover{ color:var(--band-ink); background:rgba(255,255,255,.06); }
.nav a.is-active{ color:var(--band-ink); }
.nav a.is-active::after{ content:''; position:absolute; left:10px; right:10px; bottom:2px; height:2px; border-radius:99px; background:var(--spectrum); }
.hdr-right{ display:flex; align-items:center; gap:16px; flex:0 0 auto; }
.hdr-phone{ font-size:15px; font-weight:600; color:var(--band-ink); white-space:nowrap; }
.hdr-phone:hover{ color:#fff; }
.burger{ display:none; width:42px; height:42px; border-radius:12px; border:1px solid var(--band-line); background:transparent; color:var(--band-ink); cursor:pointer; place-items:center; }
.burger span{ display:block; width:18px; height:2px; background:currentColor; border-radius:2px; position:relative; transition:transform .25s var(--ease-out), background-color .2s ease; }
.burger span::before,.burger span::after{ content:''; position:absolute; left:0; width:18px; height:2px; background:currentColor; border-radius:2px; transition:transform .25s var(--ease-out); }
.burger span::before{ top:-6px; } .burger span::after{ top:6px; }
.hdr.menu-open .burger span{ background:transparent; }
.hdr.menu-open .burger span::before{ transform:translateY(6px) rotate(45deg); }
.hdr.menu-open .burger span::after{ transform:translateY(-6px) rotate(-45deg); }
.mnav{ display:none; }
@media (max-width:1040px){
  .nav{ display:none; }
  .burger{ display:grid; }
  .hdr-right{ margin-left:auto; }
  .mnav{ display:grid; overflow:hidden; max-height:0; opacity:0; transition:max-height .3s var(--ease-out), opacity .2s ease; border-top:1px solid transparent; }
  .hdr.menu-open .mnav{ max-height:420px; opacity:1; border-top-color:var(--band-line); }
  .mnav a{ display:block; padding:15px 24px; font-size:17px; font-weight:600; color:var(--band-ink); border-bottom:1px solid var(--band-line); }
  .mnav a.is-active{ color:#F3A6DE; }
}
@media (max-width:640px){
  .hdr-phone{ display:none; }
  .hdr-in{ gap:12px; }
  .btn-sm{ padding:10px 16px; font-size:14px; }
  .show{ display:none; }
}
@media (max-width:350px){ .hdr .btn-sm{ display:none; } }

/* Hero */
.hero{ position:relative; overflow:hidden; background:#F3EFF8; padding:clamp(56px,7vw,92px) 0 clamp(48px,6vw,84px); }
.hero-glow{ position:absolute; inset:-25%; z-index:0; filter:blur(60px); opacity:.85; pointer-events:none; }
.hero-glow span{ position:absolute; border-radius:50%; }
.hero-glow span:nth-child(1){ width:52%; height:58%; left:2%; top:6%; background:radial-gradient(circle,#E766CA,rgba(231,102,202,0) 68%); }
.hero-glow span:nth-child(2){ width:56%; height:62%; left:34%; top:0; background:radial-gradient(circle,#6F72E8,rgba(111,114,232,0) 68%); }
.hero-glow span:nth-child(3){ width:50%; height:56%; left:56%; top:34%; background:radial-gradient(circle,#55B3B5,rgba(85,179,181,0) 68%); }
.hero-grid{ position:relative; z-index:1; display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr); gap:48px; align-items:center; }
.h1{ font-size:clamp(32px,5.6vw,64px); font-weight:900; letter-spacing:-.03em; line-height:1.06; max-width:16ch; text-wrap:balance; }
.ul{ position:relative; white-space:nowrap; z-index:0; }
.ul::after{ content:''; position:absolute; left:0; right:0; bottom:.04em; height:.12em; border-radius:99px; background:var(--spectrum); z-index:-1; }
.hero-sub{ margin-top:24px; font-size:clamp(17px,1.6vw,20px); max-width:54ch; color:var(--ink); opacity:.82; line-height:1.55; }
.hero-cta{ margin-top:34px; display:inline-flex; flex-direction:column; align-items:center; gap:12px; }
.ratings{ margin-top:36px; display:flex; flex-wrap:wrap; gap:12px; }
.rating{ background:var(--card); border:1px solid var(--card-line); border-radius:14px; padding:11px 18px; display:flex; align-items:center; gap:10px; box-shadow:var(--shadow-sm); }
.rating b{ font-size:14.5px; font-weight:800; }
.rating span{ font-family:var(--data); font-size:14px; font-weight:700; color:var(--accent-text); }

/* Hero showcase: Google search mock */
.show{ position:relative; background:var(--card); border:1px solid var(--card-line); border-radius:24px; padding:22px; box-shadow:var(--shadow-lg); }
.show .tag-ex{ position:absolute; top:-11px; right:20px; box-shadow:var(--shadow-sm); }
.srch{ height:40px; border:1px solid var(--line); border-radius:999px; display:flex; align-items:center; gap:10px; padding:0 16px; font-size:14px; background:var(--surface); }
.srch svg{ flex:0 0 auto; color:var(--muted); }
.caret{ width:1.5px; height:16px; background:var(--ink); margin-left:-6px; animation:blink 1.1s steps(1) infinite; }
@keyframes blink{ 50%{ opacity:0; } }
.ad{ margin-top:16px; padding:14px 16px; border:1px solid var(--line); border-radius:14px; }
.ad-top{ display:flex; align-items:center; gap:8px; font-size:12px; color:var(--muted); }
.ad-top b{ color:var(--ink); font-weight:700; }
.ad-fav{ width:22px; height:22px; border-radius:50%; background:var(--accent-soft); display:grid; place-items:center; color:var(--accent-text); }
.ad h4{ margin-top:8px; font-size:16px; font-weight:700; color:#3544B8; line-height:1.3; }
.ad p{ margin-top:4px; font-size:13px; color:var(--muted); line-height:1.45; }
.ad-links{ margin-top:10px; display:flex; flex-wrap:wrap; gap:6px; }
.ad-links span{ font-size:12px; font-weight:600; color:#3544B8; background:#F1F3FD; border-radius:99px; padding:5px 10px; }
.maps{ margin-top:12px; border:1px solid var(--line); border-radius:14px; overflow:hidden; }
.map-img{ height:92px; background:#EEF1F4; position:relative; }
.map-img svg{ position:absolute; inset:0; width:100%; height:100%; }
.pl{ display:grid; }
.pl-row{ display:flex; align-items:center; gap:12px; padding:11px 14px; border-top:1px solid var(--line); }
.pl-row.is-you{ background:linear-gradient(90deg,rgba(251,231,243,.9),rgba(251,231,243,0)); }
.pl-pin{ flex:0 0 auto; width:22px; height:22px; border-radius:50%; display:grid; place-items:center; font-size:11px; font-weight:800; color:#fff; background:#9A97AC; }
.is-you .pl-pin{ background:var(--accent); }
.pl-main{ flex:1; min-width:0; }
.pl-name{ font-size:13.5px; font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.pl-meta{ margin-top:2px; font-size:12px; color:var(--muted); }
.pl-meta i{ font-style:normal; color:#E6A700; letter-spacing:.04em; }
.pl-act{ flex:0 0 auto; font-size:12px; font-weight:700; color:var(--accent-text); border:1px solid var(--line); border-radius:99px; padding:6px 11px; background:#fff; }
.notes{ margin-top:16px; display:grid; gap:9px; }
.notes p{ display:flex; gap:10px; align-items:flex-start; font-size:13.5px; opacity:.85; line-height:1.5; }
.notes p::before{ content:''; flex:0 0 auto; width:6px; height:6px; margin-top:7px; border-radius:50%; background:var(--accent); }
@media (max-width:900px){
  .hero-grid{ grid-template-columns:minmax(0,1fr); gap:44px; }
  .h1{ font-size:clamp(32px,8.4vw,52px); }
  .show{ max-width:560px; }
}

/* Stats band */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); }
.stat{ min-width:0; padding:38px 28px; border-right:1px solid var(--band-line); }
.stat:last-child{ border-right:none; }
.stat-n{ font-family:var(--data); font-size:clamp(26px,4vw,52px); font-weight:700; letter-spacing:-.03em; line-height:1; font-variant-numeric:tabular-nums; }
.stat-l{ margin-top:12px; font-size:15px; color:var(--band-muted); line-height:1.4; }
@media (max-width:860px){
  .stats{ grid-template-columns:repeat(2,1fr); }
  .stat{ padding:28px 20px; border-bottom:1px solid var(--band-line); }
  .stat:nth-child(2n){ border-right:none; }
}
@media (max-width:480px){ .stats{ grid-template-columns:1fr; } .stat{ border-right:none; } }

/* Logos */
.logos-sec{ background:var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.logos-cap{ padding-top:44px; text-align:center; font-size:15px; font-weight:600; color:var(--muted); }
.marq{ overflow:hidden; width:100%; padding:28px 0 44px; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.marq-track{ display:flex; align-items:center; gap:14px; width:max-content; animation:logoscroll 34s linear infinite; }
.marq:hover .marq-track{ animation-play-state:paused; }
@keyframes logoscroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.logo-card{ background:#fff; border:1px solid var(--card-line); border-radius:14px; height:88px; width:150px; flex:0 0 auto; display:flex; align-items:center; justify-content:center; padding:14px; box-shadow:var(--shadow-sm); }
.logo-card img{ max-height:42px; width:auto; max-width:120px; object-fit:contain; }

/* Cards */
.grid{ margin-top:36px; display:grid; gap:16px; }
.g-320{ grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr)); }
.g-260{ grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr)); }
.card{ background:var(--card); border:1px solid var(--card-line); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow-sm); transition:transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
@media (hover:hover) and (pointer:fine){
  .card.lift:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
}
.pain{ display:flex; gap:16px; align-items:flex-start; padding:24px 26px; }
.pain .q{ flex:0 0 auto; width:26px; height:26px; margin-top:1px; border-radius:50%; background:var(--accent-soft); color:var(--accent-text); font-weight:800; font-size:15px; display:grid; place-items:center; }
.pain p{ font-size:16.5px; line-height:1.55; }
.center-cta{ margin-top:32px; display:flex; justify-content:center; }

.journey{ display:flex; flex-direction:column; gap:10px; }
.j-num{ font-family:var(--data); font-size:14px; font-weight:700; color:var(--accent-text); }
.card h3{ font-size:19px; font-weight:700; line-height:1.3; }
.card p.b{ font-size:15.5px; color:var(--muted); line-height:1.55; }
.ico{ width:44px; height:44px; border-radius:13px; display:grid; place-items:center; margin-bottom:8px; background:linear-gradient(135deg,rgba(231,102,202,.16),rgba(95,112,230,.14) 55%,rgba(94,206,160,.16)); color:#5F3FB8; }
.bundle{ display:flex; flex-direction:column; }
.bundle h3{ font-size:20px; font-weight:800; letter-spacing:-.01em; }
.bundle > p.b{ margin-top:8px; padding-bottom:18px; border-bottom:1px solid var(--line); font-size:15px; color:var(--muted); line-height:1.5; min-height:2.8em; }
.bundle-list{ margin-top:16px; display:grid; gap:2px; }
.bundle-list li{ display:flex; align-items:center; gap:11px; padding:9px 0; font-size:15px; font-weight:600; color:var(--ink); }
.bundle-list li svg{ flex:0 0 auto; }
.bundle-list li.off{ font-weight:500; color:var(--muted); opacity:.6; }
.callout{ margin-top:20px; background:var(--ink); color:#fff; border-radius:var(--radius); padding:28px 32px; display:flex; gap:18px; align-items:flex-start; }
.callout svg{ flex:0 0 auto; margin-top:2px; }
.callout p{ font-size:17.5px; line-height:1.55; max-width:70ch; }

/* Chips */
.treat-grid{ margin-top:36px; display:grid; grid-template-columns:repeat(auto-fit,minmax(min(220px,100%),1fr)); gap:16px; }
.treat{ background:var(--card); border:1px solid var(--card-line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
@media (hover:hover) and (pointer:fine){
  .treat:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
  .treat:hover .treat-img img{ transform:scale(1.05); }
}
.treat-img{ aspect-ratio:4/3; overflow:hidden; background:var(--surface-2); }
.treat-img img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s var(--ease-out); }
.treat h3{ padding:16px 18px; font-size:15.5px; font-weight:700; line-height:1.3; }
.chips{ margin-top:28px; display:flex; flex-wrap:wrap; gap:10px; }
.chips li{ background:var(--surface-2); border-radius:999px; padding:10px 18px; font-size:14.5px; font-weight:600; }
.note{ margin-top:24px; font-size:16px; color:var(--muted); line-height:1.6; max-width:60ch; }

/* Numbered lists */
.split{ display:grid; grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr)); gap:clamp(32px,4vw,64px); }
.split.center{ align-items:center; }
.nlist li{ display:flex; gap:18px; padding:18px 0; border-bottom:1px solid var(--line); font-size:16px; line-height:1.55; }
.nlist li span:first-child{ font-family:var(--data); color:var(--accent-text); font-weight:700; font-size:13px; padding-top:4px; }
.months{ margin-top:44px; }
.months .bar-full{ height:4px; border-radius:99px; background:var(--spectrum); margin-bottom:28px; }
.months-g{ display:grid; grid-template-columns:repeat(auto-fit,minmax(min(220px,100%),1fr)); gap:24px; }
.months h3{ font-family:var(--data); font-size:15px; font-weight:700; color:var(--accent-text); }
.months p{ margin-top:10px; font-size:15.5px; color:var(--muted); line-height:1.55; }
.checks{ display:grid; gap:4px; }
.checks li{ display:flex; gap:12px; align-items:flex-start; padding:16px 0; border-bottom:1px solid var(--line); font-size:16px; line-height:1.55; }
.checks svg{ flex:0 0 auto; margin-top:2px; }
.checks.two{ margin-top:32px; grid-template-columns:repeat(auto-fit,minmax(min(300px,100%),1fr)); gap:4px 48px; }
.fig{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--card-line); }
.fig img{ width:100%; height:auto; }
.cap{ margin-top:14px; font-size:13.5px; color:var(--muted); line-height:1.55; }

/* Testimonials */
.stars{ color:#E6A700; font-size:16px; letter-spacing:.12em; }

/* Testimonial video cards (Shopping-page pattern: thumb + tinted overlay + play, then quote) */
.tvid{ display:block; background:var(--card); border:1px solid var(--card-line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
@media (hover:hover) and (pointer:fine){ .tvid.lift:hover{ transform:translateY(-3px); box-shadow:var(--shadow); } }
.tvid-thumb{ position:relative; aspect-ratio:16/9; overflow:hidden; background:#000; }
.vid-embed{ position:relative; display:block; width:100%; height:100%; padding:0; border:none; background:var(--surface-2); cursor:pointer; }
.vid-embed img{ width:100%; height:100%; object-fit:cover; display:block; }
.tvid-thumb iframe{ width:100%; height:100%; display:block; }
.tvid-overlay{ position:absolute; inset:0; background:rgba(12,11,21,.25); display:grid; place-items:center; }
.tvid-play{ width:60px; height:60px; border-radius:50%; background:rgba(255,255,255,.9); box-shadow:var(--shadow); display:grid; place-items:center; transition:transform .2s var(--ease-out); }
.tvid-tri{ width:0; height:0; border-style:solid; border-width:9px 0 9px 15px; border-color:transparent transparent transparent var(--accent); margin-left:3px; }
@media (hover:hover) and (pointer:fine){ .vid-embed:hover .tvid-play{ transform:scale(1.08); } }
.tvid-body{ padding:22px 24px 26px; }
.tvid-body blockquote{ margin:10px 0 0; font-size:15px; line-height:1.6; color:var(--ink); }
.tvid-client{ margin-top:12px; font-size:13px; color:var(--muted); }

.certs-cap{ margin-top:56px; text-align:center; font-size:15px; font-weight:600; color:var(--muted); }
.certs{ margin-top:20px; display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:14px; }
.cert{ background:#fff; border:1px solid var(--card-line); border-radius:16px; padding:16px; height:110px; display:grid; place-items:center; box-shadow:var(--shadow-sm); }
.cert img{ max-width:100%; max-height:64px; width:auto; height:auto; object-fit:contain; }

/* FAQ */
.faq{ margin-top:32px; border-top:1px solid var(--line); }
.faq details{ border-bottom:1px solid var(--line); }
.faq summary{ cursor:pointer; list-style:none; padding:22px 44px 22px 0; position:relative; font-size:17px; font-weight:700; line-height:1.4; transition:color .2s ease; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:''; position:absolute; right:8px; top:27px; width:10px; height:10px; border-right:2.5px solid var(--accent-text); border-bottom:2.5px solid var(--accent-text); transform:rotate(45deg); transition:transform .25s var(--ease-out); }
.faq details[open] summary::after{ transform:translateY(4px) rotate(-135deg); }
@media (hover:hover) and (pointer:fine){ .faq summary:hover{ color:var(--accent-text); } }
.faq .ans{ padding:0 44px 24px 0; color:var(--muted); font-size:16px; line-height:1.6; max-width:70ch; }
.faq details[open] .ans{ animation:ansIn .3s var(--ease-out); }
@keyframes ansIn{ from{ opacity:0; transform:translateY(-4px); } to{ opacity:1; transform:none; } }

/* Final CTA */
.final{ position:relative; overflow:hidden; text-align:center; }
.final .wrap{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; }
.final-glow{ position:absolute; left:50%; bottom:-60%; width:900px; max-width:140%; height:520px; transform:translateX(-50%); background:radial-gradient(closest-side,rgba(111,114,232,.32),rgba(231,102,202,.16) 55%,transparent); pointer-events:none; }
.final h2{ font-size:clamp(30px,4.4vw,50px); font-weight:800; letter-spacing:-.02em; line-height:1.12; max-width:20ch; text-wrap:balance; }
.final .btn{ margin-top:32px; font-size:17px; padding:18px 34px; box-shadow:0 12px 30px rgba(202,2,136,.4); }
.final .micro{ margin-top:14px; color:var(--band-muted); }

/* Footer */
.ftr{ background:var(--band); color:var(--band-ink); padding:64px 0 40px; border-top:1px solid var(--band-line); }
.ftr-g{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; }
.ftr-about{ display:flex; flex-direction:column; gap:16px; }
.ftr-about p{ font-size:15px; color:var(--band-muted); max-width:34ch; line-height:1.5; }
.ftr h4{ font-size:14px; font-weight:700; color:var(--band-muted); margin-bottom:4px; }
.ftr-col{ display:flex; flex-direction:column; gap:12px; }
.ftr-col a,.ftr-col address{ font-size:15px; color:var(--band-ink); font-style:normal; line-height:1.5; }
.ftr-col a:hover{ color:#F3A6DE; }
.ftr-bot{ height:1px; background:var(--band-line); margin:44px 0 20px; }
.ftr-legal{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px 24px; font-size:13.5px; color:var(--band-muted); }
.ftr-legal nav{ display:flex; gap:20px; }
.ftr-legal a{ color:var(--band-muted); }
.ftr-legal a:hover{ color:var(--band-ink); }
@media (max-width:860px){ .ftr-g{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .ftr-g{ grid-template-columns:1fr; } }

/* Sticky bar */
.sbar{ position:fixed; left:0; right:0; bottom:0; z-index:45; background:rgba(255,255,255,.94); -webkit-backdrop-filter:blur(14px) saturate(160%); backdrop-filter:blur(14px) saturate(160%); border-top:3px solid transparent; border-image:var(--spectrum) 1; padding:12px 20px; display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:12px 18px; box-shadow:0 -12px 32px rgba(21,19,34,.12); transform:translateY(110%); transition:transform .3s var(--ease-out); }
.sbar.is-on{ transform:translateY(0); }
.sbar p{ font-size:14px; font-weight:500; }
.sbar .btn{ padding:11px 20px; font-size:14px; }
@media (max-width:640px){ .sbar p{ display:none; } .sbar .btn{ width:100%; } }

/* Modal */
.modal{ position:fixed; inset:0; z-index:90; display:flex; align-items:center; justify-content:center; padding:20px; visibility:hidden; pointer-events:none; }
.modal.is-open{ visibility:visible; pointer-events:auto; }
.modal-bg{ position:absolute; inset:0; background:rgba(12,11,21,.55); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); opacity:0; transition:opacity .25s var(--ease-out); }
.modal-panel{ position:relative; background:var(--card); border-radius:24px; padding:34px; box-shadow:0 30px 80px rgba(12,11,21,.35); max-width:560px; width:100%; max-height:90vh; overflow-y:auto; opacity:0; transform:scale(.96); transition:opacity .25s var(--ease-out), transform .25s var(--ease-out); }
.modal.is-open .modal-bg{ opacity:1; }
.modal.is-open .modal-panel{ opacity:1; transform:scale(1); }
.modal .x{ position:absolute; top:18px; right:18px; width:34px; height:34px; border-radius:50%; border:none; background:var(--surface-2); color:var(--ink); font-size:15px; cursor:pointer; transition:background-color .2s ease; }
.modal .x:hover{ background:var(--line); }
.modal h3{ font-size:23px; font-weight:800; letter-spacing:-.01em; padding-right:36px; line-height:1.25; }
.modal .intro{ margin-top:10px; font-size:14.5px; line-height:1.6; color:var(--muted); }
.form{ display:grid; gap:14px; margin-top:20px; }
.fld{ display:flex; flex-direction:column; gap:6px; }
.fld label{ font-size:13.5px; font-weight:600; }
.fld input{ border:1px solid var(--line); border-radius:12px; padding:13px 14px; font-size:15px; font-family:inherit; background:var(--paper); color:var(--ink); transition:border-color .2s ease, box-shadow .2s ease; }
.fld input:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 4px rgba(202,2,136,.12); }
.row2{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:14px; }
.consent{ display:flex; gap:10px; align-items:flex-start; font-size:13px; line-height:1.45; color:var(--muted); }
.consent input{ accent-color:var(--accent); margin-top:2px; flex:0 0 auto; }
.form .btn{ width:100%; padding:16px; font-size:16px; }
.form .btn[disabled]{ opacity:.7; cursor:progress; }
.err{ font-size:13px; color:#c0334d; text-align:center; }
.ok{ padding:18px 0 4px; }
.ok p:first-child{ font-size:19px; font-weight:700; }
.ok p + p{ margin-top:10px; font-size:15px; line-height:1.65; color:var(--muted); }
.ok .btn-ghost{ margin-top:20px; padding:13px 24px; font-size:15px; }
[hidden]{ display:none !important; }

/* Reveal */
.rv{ opacity:0; transform:translateY(14px); transition:opacity .6s var(--ease-out), transform .6s var(--ease-out); transition-delay:var(--d,0ms); }
.rv.in{ opacity:1; transform:none; }
.no-js .rv{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .rv{ transform:none; transition:opacity .3s ease; }
  .marq-track{ animation:none; }
  .caret{ animation:none; }
  .modal-panel{ transform:none; }
  .sbar{ transition:opacity .2s ease; transform:none; opacity:0; pointer-events:none; }
  .sbar.is-on{ opacity:1; pointer-events:auto; }
  .btn,.card,.res{ transition:background-color .2s ease, box-shadow .2s ease; }
  .btn:hover,.card.lift:hover,.res:hover{ transform:none !important; }
  .faq details[open] .ans{ animation:none; }
}
@media (prefers-reduced-transparency:reduce){
  .hdr{ background:var(--band); backdrop-filter:none; }
  .sbar{ background:#fff; backdrop-filter:none; }
}
