/* Servicedly v5 – Stripe success redirect + logging + dynamic micro-urgency + cookie banner (when analytics enabled) */
:root{
  --bg:#070A14; --bg2:#0B1020;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.60);
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius2:26px;
  --container:1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(167,139,250,.25), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(110,231,255,.18), transparent 55%),
    linear-gradient(180deg,var(--bg) 0%,var(--bg2) 100%);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
.container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
.dot{opacity:.6;padding:0 6px}


/* Micro inline links (Option A) */
.hero__learn{margin:14px 0 0;color:var(--muted);font-weight:800}
.hero__learn a{
  color:var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.hero__learn a:hover{opacity:.92}
.hero__learn .dot{margin:0 8px;opacity:.55}

/* Step label styling inside CTA buttons */
.step-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:900;
  font-size:12px;
  letter-spacing:-0.01em;
  margin-right:10px;
  line-height:1;
}
.step-text{display:inline-flex;align-items:center}

/* Mobile: keep reading links clean and tappable */
@media (max-width: 560px){
  .hero__learn{display:flex;flex-direction:column;gap:8px}
  .hero__learn .dot{display:none}
  .hero__learn a{text-decoration-thickness:1px}
}
/* Header */
.header{
  position:sticky;top:0;z-index:999;
  backdrop-filter: blur(14px);
  background: rgba(7,10,20,.6);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;padding:16px 0;gap:14px}
.brand{display:flex;flex-direction:column;gap:2px}
.brand__name{font-weight:900;letter-spacing:-0.03em;font-size:28px}
.brand__tag{font-weight:700;color:var(--muted2);font-size:12px}
.brand--footer .brand__name{font-size:20px}
.header__cta{display:flex;gap:10px;align-items:center}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  text-decoration:none;font-weight:800;color:var(--text);
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px);border-color: rgba(255,255,255,.22);background: rgba(255,255,255,.06)}
.btn--primary{
  border-color: rgba(110,231,255,.30);
  background: linear-gradient(135deg, rgba(110,231,255,.95), rgba(167,139,250,.92));
  color: #060813;
  box-shadow: 0 14px 40px rgba(110,231,255,.10);
}
.btn--primary:hover{box-shadow: 0 20px 56px rgba(110,231,255,.14)}
.btn--ghost{background: rgba(255,255,255,.03)}
.btn--xl{padding:14px 18px;border-radius:18px;font-size:16px}
.btn--full{width:100%}

/* Hero */
.hero{position:relative;padding:54px 0 28px;overflow:hidden}
.hero__grid{display:grid;grid-template-columns: 1.05fr .95fr;gap:26px;align-items:start}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--muted);font-weight:800;font-size:12px;
}
.pill__dot{opacity:.6}
h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;letter-spacing:-0.04em;
  margin:14px 0 10px;
}
.accent{
  background: linear-gradient(135deg, rgba(110,231,255,.95), rgba(167,139,250,.95));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead{color:var(--muted);font-size:16px;max-width: 60ch;margin:0 0 16px;font-weight:700}
.hero__actions{display:flex;gap:10px;flex-wrap:wrap;margin:12px 0 12px}
.micro{color:var(--muted2);font-size:13px;margin: 10px 0 0}
.micro--hero{margin-top:8px;max-width:72ch}
.trust-badges{display:flex;gap:10px;flex-wrap:wrap;margin: 14px 0 4px}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.82);
  font-weight:800;font-size:12px;
}

/* Panel */
.hero__panel{position:relative}
.panel{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  overflow:hidden;
}
.panel__top{display:flex;align-items:center;gap:10px;padding:12px 14px;border-bottom:1px solid rgba(255,255,255,.08)}
.panel__dot{width:10px;height:10px;border-radius:50%;display:inline-block;opacity:.9}
.panel__dot--r{background:#F87171}
.panel__dot--y{background:#FBBF24}
.panel__dot--g{background:#34D399}
.panel__tag{
  margin-left:auto;font-weight:800;font-size:12px;color:rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.12);padding:6px 10px;border-radius:999px;background: rgba(255,255,255,.03);
}
.panel__body{padding:16px 16px 18px}
.panel__row{display:flex;justify-content:space-between;gap:16px;padding:10px 0;border-bottom:1px dashed rgba(255,255,255,.10)}
.k{color:rgba(255,255,255,.65);font-weight:800;font-size:13px;min-width:160px}
.v{color:rgba(255,255,255,.88);font-weight:800;font-size:13px;text-align:right}
.ok{color: rgba(52,211,153,.95)}
.panel__note{margin-top:12px;padding:12px;border-radius:14px;border:1px solid rgba(255,255,255,.10);background: rgba(255,255,255,.03);color: rgba(255,255,255,.72);font-size:13px;font-weight:700}
.glass{margin-top:14px;border-radius: var(--radius2);border:1px solid rgba(255,255,255,.12);background: linear-gradient(135deg, rgba(110,231,255,.10), rgba(167,139,250,.08));padding:14px}
.glass__title{margin:0 0 6px;font-weight:900;letter-spacing:-0.02em}
.glass__list{margin:0;color:var(--muted);font-weight:800;font-size:13px}
.hero__bg{
  position:absolute;inset:-120px -120px auto -120px;height:460px;
  background:
    radial-gradient(260px 260px at 15% 35%, rgba(110,231,255,.24), transparent 60%),
    radial-gradient(320px 320px at 70% 20%, rgba(167,139,250,.22), transparent 60%),
    radial-gradient(260px 260px at 85% 55%, rgba(52,211,153,.12), transparent 60%);
  filter: blur(18px);pointer-events:none;opacity:.95;
}

/* Sections */
.section{padding:60px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{display:flex;flex-direction:column;gap:10px;margin-bottom:22px}
h2{margin:0;font-size: clamp(24px, 2.6vw, 34px);letter-spacing:-0.03em}
.section__sub{margin:0;color:var(--muted);max-width:70ch;font-weight:800}

/* Steps */
.steps{display:grid;grid-template-columns: repeat(3, 1fr);gap:14px}
.step{
  padding:18px;border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.step__icon{
  width:44px;height:44px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:12px;
}
.step__icon svg{width:22px;height:22px;color: rgba(255,255,255,.92)}
.step__icon--blue{background: linear-gradient(135deg, rgba(110,231,255,.22), rgba(110,231,255,.06))}
.step__icon--purple{background: linear-gradient(135deg, rgba(167,139,250,.22), rgba(167,139,250,.06))}
.step__icon--green{background: linear-gradient(135deg, rgba(52,211,153,.20), rgba(52,211,153,.06))}
.step h3{margin:0 0 8px;letter-spacing:-0.02em}
.step p{margin:0;color:var(--muted);font-weight:800;font-size:14px}

/* Urgency */
.urgency{
  margin-top:16px;
  padding:16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
}
.urgency__left h3{margin:0 0 6px;letter-spacing:-0.02em}
.urgency__left p{margin:0;color:var(--muted);font-weight:800}

/* Pricing */
.pricing{display:grid;grid-template-columns: .95fr 1.05fr;gap:14px;align-items:start}
.price-card{
  padding:20px;border-radius: 28px;
  border:1px solid rgba(110,231,255,.18);
  background: linear-gradient(135deg, rgba(110,231,255,.11), rgba(167,139,250,.08));
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.price{margin:0;font-size:42px;font-weight:900;letter-spacing:-0.04em}
.price span{font-size:14px;color:var(--muted);font-weight:900;margin-left:8px}
.price-card__sub{margin:8px 0 0;color:var(--muted);font-weight:800}
.price-card__list{margin:16px 0 16px;padding-left:18px;color: rgba(255,255,255,.82);font-weight:900}
.price-card__list li{margin:8px 0}
.price-side{
  padding:18px;border-radius: 28px;border:1px solid rgba(255,255,255,.10);background: rgba(255,255,255,.03);
}
.price-side h3{margin:0 0 8px;letter-spacing:-0.02em}
.price-side p{margin:0;color:var(--muted);font-weight:800}
.note{margin-top:14px;padding:12px;border-radius: 18px;border:1px solid rgba(255,255,255,.10);background: rgba(255,255,255,.03);color: rgba(255,255,255,.78);font-weight:800}
.ticks{margin:10px 0 0;padding-left:0;list-style:none}
.ticks li{position:relative;padding-left:26px;margin:10px 0;color: rgba(255,255,255,.84);font-weight:900}
.ticks li::before{content:"";position:absolute;left:0;top:6px;width:16px;height:16px;border-radius:6px;background: rgba(52,211,153,.18);border:1px solid rgba(52,211,153,.28);box-shadow: 0 10px 24px rgba(52,211,153,.10)}
.ticks li::after{content:"";position:absolute;left:5px;top:10px;width:6px;height:3px;border-left:2px solid rgba(52,211,153,.9);border-bottom:2px solid rgba(52,211,153,.9);transform: rotate(-45deg)}

/* Testimonials */
.testimonials{display:grid;grid-template-columns: repeat(3, 1fr);gap:14px}
.tcard{
  padding:18px;border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.tquote{margin:0;color: rgba(255,255,255,.84);font-weight:800}
.tauthor{margin:12px 0 0;color: var(--muted);font-weight:800}

/* FAQ */
.faq{display:grid;gap:10px}
.faq__item{
  border-radius: 18px;border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
}
.faq__item summary{cursor:pointer;font-weight:900;letter-spacing:-0.02em}
.faq__content{margin-top:10px;color: var(--muted);font-weight:800}

/* Final CTA */
.final-cta{
  margin-top:22px;padding:18px;border-radius: 28px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
}
.final-cta h3{margin:0;letter-spacing:-0.02em}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 0;
  background: rgba(0,0,0,.14);
}
.footer__inner{display:flex;justify-content:space-between;align-items:flex-end;gap:12px;flex-wrap:wrap}
.footer__right{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.footer__link{text-decoration:none;color: var(--muted);font-weight:900}
.footer__link:hover{color: var(--text)}

/* Cookie banner (hidden unless analytics enabled) */
.cookie{
  position:fixed;left:18px;right:18px;bottom:18px;z-index:1000;
  display:none;
}
.cookie.is-visible{display:block}
.cookie__inner{
  width:min(980px, 100%);
  margin:0 auto;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,10,20,.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  padding: 14px 14px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
}
.cookie__copy p{margin:4px 0 0;color: var(--muted);font-weight:800}
.cookie__actions{display:flex;gap:10px}



@media (max-width: 560px){
  .cookie__inner{padding:14px 14px;gap:10px}
  .cookie__copy{flex:1 1 100%}
  .cookie__actions{width:100%;display:flex;gap:10px}
  .cookie__actions .btn{flex:1 1 0;padding:14px 14px;border-radius:18px}
}
/* Subtle motion */
.reveal{opacity:0;transform: translateY(10px);transition: opacity .6s ease, transform .6s ease}
.reveal.is-visible{opacity:1;transform: translateY(0)}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .btn{transition:none}
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .testimonials{grid-template-columns: 1fr}
  .brand__tag{display:none}
}

/* New conversion sections */
.split{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:stretch}
.card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding:18px 18px 16px;
}
.card--soft{background: rgba(255,255,255,.03)}
.card h3{margin:0 0 10px;letter-spacing:-0.02em}
.bullets{margin:0;padding-left:18px;color: rgba(255,255,255,.82);font-weight:700}
.bullets li{margin:8px 0}

.stageband{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.stageband__row{display:grid;grid-template-columns:120px 140px 1fr;gap:14px;padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.08)}
.stageband__row:last-child{border-bottom:none}
.stageband__label{font-weight:900;color: rgba(255,255,255,.70);font-size:12px}
.stageband__name{font-weight:900;letter-spacing:-0.02em}
.stageband__desc{color: rgba(255,255,255,.75);font-weight:700}

.downloads{display:grid;grid-template-columns:repeat(3, 1fr);gap:14px}
.dcard{
  display:flex;flex-direction:column;gap:10px;
  text-decoration:none;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding:18px;
}
.dcard:hover{transform: translateY(-1px)}
.dcard__top{display:flex;align-items:center;gap:10px;justify-content:space-between}
.dtag{font-weight:900;font-size:11px;letter-spacing:.04em;color: rgba(255,255,255,.75);border:1px solid rgba(255,255,255,.14);padding:6px 10px;border-radius:999px;background: rgba(255,255,255,.03)}
.dcard p{margin:0;color: rgba(255,255,255,.76);font-weight:700}
.dcard__cta{margin-top:auto;font-weight:900;color: rgba(110,231,255,.92)}
.center-cta{margin-top:16px;display:flex;flex-direction:column;align-items:flex-start;gap:8px}

.steps--tight{margin-top:14px}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr;}
  .split{grid-template-columns:1fr;}
  .downloads{grid-template-columns:1fr;}
  .k{min-width: 140px}
  .stageband__row{grid-template-columns:110px 130px 1fr}
}

/* Cookie settings modal + switches */
.cookieModal{
  position:fixed;inset:0;z-index:1001;
  display:none;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  padding: 18px;
}
.cookieModal.is-visible{display:flex;align-items:flex-end;justify-content:center}
.cookieModal__panel{
  width:min(860px, 100%);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,10,20,.94);
  box-shadow: 0 24px 70px rgba(0,0,0,.65);
  padding: 16px 16px 14px;
}
.cookieModal__head{display:flex;align-items:center;justify-content:space-between;gap:12px}
.cookieModal__rows{display:flex;flex-direction:column;gap:12px;margin-top:10px}
.cookieRow{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 12px 12px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
}
.cookieModal__foot{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:14px}

/* Toggle switch */
.switch{position:relative;display:inline-block;width:48px;height:28px}
.switch input{opacity:0;width:0;height:0}
.slider{
  position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;
  background: rgba(255,255,255,.18);
  transition: .2s;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.18);
}
.slider:before{
  position:absolute;content:"";
  height:22px;width:22px;left:3px;bottom:2px;
  background:white;transition:.2s;border-radius:999px;
}
.switch input:checked + .slider{background: rgba(110,231,255,.22)}
.switch input:checked + .slider:before{transform: translateX(19px)}

/* Footer compliance disclosure */
.footer__disclosure{max-width:720px;margin-top:10px;color:var(--muted2);font-weight:700}
.nowrap{white-space:nowrap}
.footer__btn{
  background:none;border:none;padding:0;margin:0;
  color: var(--muted);
  font: inherit;
  cursor:pointer;
}
.footer__btn:hover{color: var(--text)}


/* Cookie settings modal */
.cookie-modal{
  position:fixed;inset:0;z-index:1100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background: rgba(0,0,0,.55);
}
.cookie-modal.is-visible{display:flex}
.cookie-modal__card{
  width:min(720px, 100%);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,10,20,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0,0,0,.65);
  padding: 16px 16px;
}
.cookie-modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 6px;
}
.cookie-modal__close{
  appearance:none;border:0;background:transparent;color:var(--text);
  font-size: 22px;line-height:1;cursor:pointer;
  padding: 6px 10px;border-radius: 12px;
}
.cookie-modal__close:hover{background: rgba(255,255,255,.06)}
.cookie-modal__intro{margin: 8px 0 14px;color: var(--muted);font-weight:800}
.cookie-modal__row{
  display:flex;align-items:flex-start;justify-content:space-between;gap:14px;
  padding: 12px 12px;border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  margin: 10px 0;
}
.cookie-modal__text strong{display:block;margin-bottom:2px}
.cookie-modal__text span{display:block;color: var(--muted);font-weight:800;max-width: 52ch}
.cookie-modal__actions{display:flex;justify-content:flex-end;gap:10px;margin-top: 14px;flex-wrap:wrap}

/* Simple switch */
.switch{position:relative;display:inline-flex;align-items:center;gap:10px}
.switch input{position:absolute;opacity:0;pointer-events:none}
.switch__track{
  width: 46px;height: 28px;border-radius: 99px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  position:relative;
  transition: transform .2s ease, background .2s ease;
}
.switch__track::after{
  content:"";
  width: 22px;height: 22px;border-radius: 99px;
  position:absolute;top:2px;left:2px;
  background: rgba(255,255,255,.88);
  transition: transform .2s ease;
}
.switch input:checked + .switch__track{background: rgba(130,200,255,.25)}
.switch input:checked + .switch__track::after{transform: translateX(18px)}


/* v19.3 — subtle internal authority links */
.hero__learn{margin:14px 0 0;color:var(--muted);}
.hero__learn a{color:inherit;text-decoration:underline;text-underline-offset:3px;}
.hero__learn a:hover{color:var(--text);}
.hero__learn .dot{margin:0 8px;opacity:.6;}


/* Layout stability audit fixes */
body{overflow-x:hidden;}
.hero__content{max-width:760px;}
.hero__grid > *{min-width:0;}
.footer__left,.footer__right{min-width:0;}
.footer__disclosure{
  width:min(var(--container),calc(100% - 40px));
  margin:10px auto 0;
}
.center-cta{align-items:center;text-align:center;}

@media (max-width: 720px){
  .header__inner,.footer__inner{align-items:flex-start;}
  .footer__right{width:100%;justify-content:flex-start;}
  .footer__disclosure{width:min(var(--container),calc(100% - 32px));}
}


/* v20 - centring and conversion polish audit */
main, section, footer, header { width: 100%; }
.container { position: relative; }
.hero__copy, .lp-hero__grid > div:first-child { max-width: 760px; }
.hero__fit, .lp-fit {
  margin: 0 0 12px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  max-width: 58ch;
}
.hero__price, .lp-price-line {
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.hero__reassure { max-width: 68ch; }
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0 28px;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  text-align: right;
}
.footer__link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
.footer__link:hover { color: var(--text); }
.footer__disclosure {
  display: block;
  margin: 14px 0 0;
  max-width: 100%;
}
.lp-header__inner, .lp-footer .container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.lp-hero__grid, .hero__grid { justify-content: center; }
.lp-actions .btn, .hero__actions .btn { white-space: normal; }
@media (max-width: 980px) {
  .footer__inner { flex-direction: column; }
  .footer__right { justify-content: flex-start; text-align: left; }
}


/* v21 - final alignment fixes */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.hero__grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.hero__copy {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions,
.trust-badges {
  justify-content: flex-start;
}
.footer .container {
  width: min(var(--container), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.footer__inner {
  width: 100%;
}
.footer__disclosure {
  width: 100%;
  max-width: 100%;
  margin: 14px 0 0;
}
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

/* v22 - definitive hero alignment fix */
.hero > .container.hero__grid {
  display: block !important;
  width: min(var(--container), calc(100% - 40px)) !important;
  max-width: var(--container) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero__grid {
  display: block !important;
  grid-template-columns: none !important;
  justify-content: initial !important;
  gap: 0 !important;
}
.hero__copy {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 !important;
}
.hero h1,
.hero .hero__fit,
.hero .lead,
.hero .hero__price,
.hero .hero__learn,
.hero .hero__reassure,
.hero .micro,
.hero .trust-badges,
.hero .hero__actions {
  max-width: 760px;
}
@media (max-width: 720px) {
  .hero > .container.hero__grid {
    width: min(var(--container), calc(100% - 32px)) !important;
  }
  .hero__copy,
  .hero h1,
  .hero .hero__fit,
  .hero .lead,
  .hero .hero__price,
  .hero .hero__learn,
  .hero .hero__reassure,
  .hero .micro,
  .hero .trust-badges,
  .hero .hero__actions {
    max-width: 100%;
  }
}


/* v23 - widen hero content to align with section body */
.hero__copy { max-width: 980px !important; }
.hero h1,
.hero .hero__fit,
.hero .lead,
.hero .hero__price,
.hero .hero__learn,
.hero .hero__reassure,
.hero .micro,
.hero .trust-badges,
.hero .hero__actions {
  max-width: 980px !important;
}
.hero .lead, .hero .hero__reassure { max-width: 72ch !important; }
@media (max-width: 720px) {
  .hero__copy,
  .hero h1,
  .hero .hero__fit,
  .hero .lead,
  .hero .hero__price,
  .hero .hero__learn,
  .hero .hero__reassure,
  .hero .micro,
  .hero .trust-badges,
  .hero .hero__actions {
    max-width: 100% !important;
  }
}

/* ── Pricing tiers ────────────────────────────────────── */
.pricing-tiers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:start;
  margin-top:32px;
}
@media(max-width:860px){
  .pricing-tiers{grid-template-columns:1fr}
}
.tier-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:28px 24px;
  position:relative;
}
.tier-card--featured{
  background:rgba(167,139,250,.08);
  border-color:rgba(167,139,250,.45);
  box-shadow:0 0 40px rgba(167,139,250,.18);
  transform:translateY(-6px);
}
.tier-popular-badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:linear-gradient(90deg,#a78bfa,#6ee7ff);
  color:#070A14;
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
  padding:4px 14px;
  border-radius:999px;
  white-space:nowrap;
}
.tier-card__head{margin-bottom:20px}
.tier-card__head h3{margin:0 0 6px;font-size:1.2rem;font-weight:800}
.tier-price{margin:0 0 8px;font-size:2rem;font-weight:900;letter-spacing:-.04em}
.tier-price span{font-size:1rem;font-weight:600;opacity:.7}
.tier-tag{margin:0;font-size:.88rem;opacity:.72;line-height:1.5}
.tier-list{
  list-style:none;
  margin:0 0 22px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:9px;
}
.tier-list li{
  font-size:.9rem;
  padding-left:20px;
  position:relative;
  opacity:.88;
  line-height:1.45;
}
.tier-list li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:#a78bfa;
  font-weight:700;
}
.tier-subnote{font-size:.8rem;opacity:.55;margin:0 0 18px;font-style:italic}
.tier-btn--dark{border-color:rgba(255,255,255,.25)!important}
