:root{
  --bg:#0b1220;
  --bg2:#0e1628;
  --card:#0f1b31;
  --text:#eaf0ff;
  --muted:#a9b6d6;
  --line:rgba(255,255,255,.10);
  --primary:#5b8cff;
  --primary2:#7c5cff;
  --ok:#2ee59d;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(91,140,255,.35), transparent 60%),
              radial-gradient(1000px 700px at 100% 10%, rgba(124,92,255,.25), transparent 55%),
              linear-gradient(180deg, var(--bg), #070b14 70%);
  color:var(--text);
}

a{color:inherit}

.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.topbar__left{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.topbar__right{display:flex; align-items:center; gap:10px; flex-shrink:0}
.topbar__phones{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width: min(320px, max-content);
  flex-shrink: 0;
}
.topbar__phones .link{
  padding:2px 0;
  line-height:1.1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  font-variant-numeric: tabular-nums;
}
.topbar__tag{
  font-size:14px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  white-space: nowrap;
}

/* Narrow desktop / small laptop: avoid squeezing phones between long left copy and CTA */
@media (min-width: 721px) and (max-width: 1040px){
  .topbar__inner{
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .topbar__left{
    flex: 1 1 100%;
    min-width: 0;
  }
  .topbar__right{
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 8px;
  }
}

/* Mobile: horizontal topbar overflows; tel link was shrinking to a few px (vertical digit stack). */
@media (max-width: 720px){
  .topbar{
    position: static;
  }
  .topbar__inner{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    gap:12px;
    padding:10px 0;
  }
  .topbar__left{
    flex-direction:column;
    align-items:center;
    gap:10px;
    width:100%;
    max-width:100%;
    text-align:center;
  }
  .brand{
    min-width:0;
    max-width:100%;
    justify-content:center;
  }
  .brand__logo{
    width: min(180px, calc(100vw - 64px));
  }
  .topbar__tag{
    text-align:center;
  }
  .topbar__right{
    display:flex !important;
    flex-direction:column !important;
    gap:8px;
    width:100%;
    align-items:center !important;
  }
  .topbar__phones{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center;
    width:100%;
    gap:4px;
  }
  .topbar__phones > a[href^="tel"]{
    display:block !important;
    text-align:center !important;
    white-space:nowrap !important;
    word-break:keep-all !important;
    overflow-wrap:normal !important;
    padding:4px 12px !important;
    width:auto;
    min-width: 220px;
    font-size:17px !important;
    line-height:1.15 !important;
    letter-spacing:0 !important;
  }
  .topbar__right > a[href="#faq"],
  .topbar__right > .btn--topbar{
    width:100%;
    max-width:320px;
    text-align:center;
    font-size:14px;
    padding:10px 12px;
    line-height:1.25;
  }
}
@media (max-width: 380px){
  .topbar__phones > a[href^="tel"]{
    font-size:15px !important;
    min-width: 200px;
  }
}

.brand{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  font-weight:650;
  letter-spacing:.2px;
}
.brand__logo{
  display:block;
  width: clamp(120px, 20vw, 180px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.link{ text-decoration:none; font-size:14px; padding:8px 10px; border-radius:10px}
.link--muted{ color:var(--muted) }
.link:hover{ background: rgba(255,255,255,.06) }
a{ color: #cdd9ff }
a:hover{ color: #ffffff }

/* Телефон — ровные цифры */
a[href^="tel"]{
  font-weight:750;
  letter-spacing:.03em;
  font-variant-numeric: tabular-nums;
}
.qa__a a[href^="tel"],
.footer a[href^="tel"]{
  font-size: clamp(20px, 3vw, 26px);
}
.thanks a[href^="tel"]{
  font-size: clamp(20px, 3vw, 26px);
}

.hero{
  padding: 44px 0 22px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:start;
}
@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.92);
  font-size:14px;
}
.pill--sro{
  margin-top: 10px;
  border-color: rgba(46,229,157,.45);
  background: rgba(46,229,157,.10);
}
.pill__icon{
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background: rgba(46,229,157,.15);
  color: var(--ok);
  font-weight:800;
}

.h1{
  font-size: clamp(30px, 3.6vw, 48px);
  line-height:1.05;
  margin:14px 0 12px;
  letter-spacing:-.6px;
}
.h1__accent{
  display:inline-block;
  background: linear-gradient(90deg, rgba(91,140,255,1), rgba(124,92,255,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.h1__sro{
  display:block;
  margin-top: 10px;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.15;
  color: var(--ok);
  letter-spacing: -0.2px;
}
.lead{
  margin:0 0 18px;
  color: rgba(234,240,255,.86);
  font-size: 17px;
  line-height:1.55;
  max-width: 58ch;
}

.hero__cta{ display:flex; gap:10px; flex-wrap:wrap; margin: 14px 0 14px }
.hero__faq-link{
  margin: 0;
  border-color: rgba(91,140,255,.55);
  background: rgba(91,140,255,.14);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(91,140,255,.16);
}
.hero__faq-link:hover{
  border-color: rgba(124,92,255,.75);
  background: rgba(124,92,255,.20);
  color: #fff;
}
.quiz-inline{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 12px;
  margin: 0 0 14px;
}
.quiz-inline__head{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-bottom: 10px;
}
.quiz-inline__q{
  font-weight:700;
  margin-bottom: 8px;
}
.quiz-inline__options{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.quiz-opt{
  font-size: 13px;
  padding: 10px 12px;
  transition: transform .12s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease, color .16s ease;
}
.quiz-opt:hover{
  transform: translateY(-1px);
  border-color: rgba(91,140,255,.55);
  background: rgba(91,140,255,.12);
  box-shadow: 0 8px 20px rgba(91,140,255,.18);
}
.quiz-opt:focus-visible{
  outline: none;
  border-color: rgba(46,229,157,.72);
  box-shadow: 0 0 0 3px rgba(46,229,157,.18), 0 8px 20px rgba(91,140,255,.18);
}
.quiz-opt:active{
  transform: translateY(0);
}

.btn{
  appearance:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  text-decoration:none;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight:650;
  font-size: 14px;
  line-height: 1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08) }
.btn:active{ transform: translateY(0) }
.btn--full{ width:100% }
.btn--primary{
  border-color: rgba(91,140,255,.55);
  background: linear-gradient(135deg, rgba(91,140,255,1), rgba(124,92,255,1));
  box-shadow: 0 14px 30px rgba(91,140,255,.18);
  color:#fff;
}
.btn--primary:hover{ background: linear-gradient(135deg, rgba(91,140,255,.92), rgba(124,92,255,.92)) }
.btn--soft{
  border-color: rgba(46,229,157,.30);
  background: rgba(46,229,157,.10);
}
.btn--ghost{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
}

/* Header CTA: reads as a real button on light/dark topbar */
.btn.btn--topbar{
  border-color: rgba(91,140,255,.65);
  background: linear-gradient(135deg, rgba(91,140,255,1), rgba(124,92,255,1));
  color: #fff;
  box-shadow: 0 8px 22px rgba(91,140,255,.28);
  transition: transform .12s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn.btn--topbar:hover{
  background: linear-gradient(135deg, rgba(72,118,230,1), rgba(108,78,230,1));
  border-color: rgba(124,160,255,.95);
  box-shadow: 0 10px 28px rgba(91,140,255,.42);
  color: #fff;
}
.btn.btn--topbar:active{
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(91,140,255,.3);
}

.bullets{
  list-style:none;
  padding:0;
  margin: 0 0 16px;
  display:grid;
  gap:10px;
  max-width: 60ch;
}
.bullets li{
  padding-left: 26px;
  position:relative;
  color: rgba(234,240,255,.82);
  line-height:1.45;
}
.bullets li:before{
  content:"";
  width:10px;
  height:10px;
  border-radius: 3px;
  position:absolute;
  left:0;
  top: 6px;
  background: linear-gradient(135deg, var(--ok), var(--primary));
}

.trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top: 16px;
}
@media (max-width: 520px){
  .trust{ grid-template-columns: 1fr; }
}
.trust__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 12px 12px;
}
.trust__kpi{ font-weight:800; letter-spacing:-.4px }
.trust__text{ color: var(--muted); font-size: 13px; margin-top: 4px; line-height:1.25 }

.hero__card{ position: sticky; top: 74px }
@media (max-width: 920px){
  .hero__card{ position: static }
}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(15,27,49,.92), rgba(15,27,49,.75));
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__head{ padding: 18px 18px 0 }
.h2{ margin:0; font-size: 22px; letter-spacing:-.2px }
.h3{ margin:0 0 6px; font-size: 16px; letter-spacing:-.1px }
.muted{ color: var(--muted) }

.form{ padding: 14px 18px 18px }
.field{ margin-top: 12px }
.field--contact{
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  margin-bottom: 14px;
}
.label{ display:block; font-weight:650; font-size: 13px; margin-bottom: 6px; color: rgba(234,240,255,.92) }
.req{ color: rgba(255, 117, 147, .95) }
.input{
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.35);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
  transition: border-color .12s ease, background .12s ease;
}
.input:focus{
  border-color: rgba(91,140,255,.55);
  background: rgba(7,11,20,.48);
}
.textarea{ resize: vertical; min-height: 92px }
.help{ font-size: 12px; margin-top: 6px; color: rgba(169,182,214,.95) }
.quiz-result-hint{
  margin-top: 12px;
  border: 1px solid rgba(46,229,157,.35);
  background: rgba(46,229,157,.10);
  color: rgba(234,240,255,.95);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
}
.input--quiz-focus{
  border-color: rgba(46,229,157,.70) !important;
  box-shadow: 0 0 0 3px rgba(46,229,157,.18);
}
.fineprint{ font-size: 12px; margin-top: 10px; color: rgba(169,182,214,.92); line-height:1.35 }
.form__status{ margin-top: 10px; font-size: 13px; min-height: 18px }
.status--ok{ color: rgba(46,229,157,.95) }
.status--err{ color: rgba(255, 117, 147, .95) }
.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.microproof{
  margin: 4px 0 14px;
  font-size: 13px;
  line-height:1.35;
}

.hero__note{ padding-top: 16px }
.note{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 14px 14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.note__icon{
  width:22px;
  height:22px;
  border-radius: 8px;
  display:grid;
  place-items:center;
  background: rgba(91,140,255,.14);
  color: rgba(234,240,255,.95);
  font-weight:900;
}
.note__text{ color: rgba(234,240,255,.82); line-height:1.4 }

.section{ padding: 46px 0 }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 70%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section--proof{
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(46,229,157,.05), transparent 68%);
}
.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom: 18px; flex-wrap:wrap }
.section__head .muted{ max-width: 68ch; line-height:1.4 }

.scenarios{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 920px){
  .scenarios{ grid-template-columns: 1fr; }
}
.scenario{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.scenario .muted{
  margin:0;
  line-height:1.45;
}
.scenario .btn{
  align-self:flex-start;
}

.proof{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  align-items: stretch;
}
@media (max-width: 920px){
  .proof{ grid-template-columns: 1fr; }
}
.proof__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 10px;
  text-decoration: none;
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height: 100%;
}
.proof__thumb{
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 360px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: hidden;
}
.proof__item img{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position: center;
  display:block;
}
/* Fallback for cached/old markup without .proof__thumb wrapper */
.proof > .proof__item > img{
  width:100% !important;
  height:360px !important;
  object-fit: contain !important;
  object-position:center !important;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background:#fff;
  display:block;
}
.proof__item span{
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  line-height:1.35;
}
.proof__cta{
  margin-top: 14px;
  display:flex;
  justify-content:flex-start;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 920px){
  .grid3{ grid-template-columns: 1fr; }
}
.tile{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px 16px;
}
.tile__head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 10px;
}
.tile__num{
  width:34px;
  height:34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(46,229,157,.14);
  color: var(--ok);
  font-weight:900;
  flex: 0 0 auto;
}
.tile__head .h3{ margin:0; }

.price{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items:start;
}
@media (max-width: 920px){
  .price{ grid-template-columns: 1fr; }
}
.price__card{
  border:1px solid rgba(91,140,255,.35);
  background: linear-gradient(180deg, rgba(15,27,49,.92), rgba(15,27,49,.70));
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.price__value{ font-size: 34px; font-weight:900; letter-spacing:-.8px }
.price__subtitle{ color: rgba(234,240,255,.84); margin-top: 6px; line-height:1.35 }
.checklist{ margin: 14px 0 14px; padding:0; list-style:none; display:grid; gap:10px }
.checklist li{ position:relative; padding-left: 26px; color: rgba(234,240,255,.84); line-height:1.35 }
.checklist li:before{
  content:"✓";
  position:absolute;
  left:0;
  top: 0;
  width:18px;
  height:18px;
  border-radius:6px;
  display:grid;
  place-items:center;
  background: rgba(46,229,157,.14);
  color: rgba(46,229,157,.95);
  font-weight:900;
  font-size: 12px;
}

.aside{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px;
}
.aside + .aside{ margin-top: 12px }
.aside--highlight{
  border-color: rgba(46,229,157,.28);
  background: rgba(46,229,157,.08);
}
.aside__badge{
  display:inline-block;
  font-size: 12px;
  font-weight:800;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(46,229,157,.30);
  color: rgba(46,229,157,.95);
  margin-bottom: 10px;
}
.qa{ margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,.12) }
.qa:first-of-type{ border-top: none; padding-top: 0 }
.qa__q{ font-weight:750 }
.qa__a{ margin-top: 6px; line-height:1.4 }

.faq{ display:grid; gap:10px }
.faq__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
}
.faq__item summary::-webkit-details-marker{ display:none }
.faq__content{ margin-top: 10px; line-height:1.45 }

.final-cta{
  margin-top: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(91,140,255,.14), rgba(124,92,255,.10));
  border-radius: calc(var(--radius) + 10px);
  padding: 16px;
}
.final-cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.sticky{
  position: fixed;
  left:0; right:0; bottom:0;
  z-index:60;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(7,11,20,.80);
  backdrop-filter: blur(10px);
}
.sticky__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 10px 0;
}
.sticky__text{
  color: rgba(234,240,255,.86);
  font-size: 13px;
}
@media (max-width: 520px){
  .sticky__text{ display:none }
}

.footer{
  padding: 34px 0 70px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  font-size: 13px;
}
.footer__contact{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
}
.footer__contact-label{
  display:block;
}

.thanks{
  min-height: calc(100vh - 70px);
  display:grid;
  place-items:center;
  padding: 36px 0;
}
.thanks__card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(15,27,49,.92), rgba(15,27,49,.74));
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 24px;
  max-width: 760px;
}
.thanks__title{
  margin:0 0 8px;
  font-size: clamp(26px, 4vw, 38px);
  line-height:1.1;
}

/* Light theme overrides */
body.theme-light{
  --bg:#f6f9ff;
  --bg2:#edf3ff;
  --card:#ffffff;
  --text:#0f1a2e;
  --muted:#4f607f;
  --line:rgba(10,25,57,.14);
  --shadow:0 18px 50px rgba(21,43,84,.14);
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(91,140,255,.20), transparent 60%),
    radial-gradient(1000px 700px at 100% 10%, rgba(124,92,255,.14), transparent 55%),
    linear-gradient(180deg, #f7faff, #eef4ff 70%);
}

body.theme-light .topbar{
  background: rgba(246,249,255,.88);
}
body.theme-light .topbar__tag,
body.theme-light .pill,
body.theme-light .trust__item,
body.theme-light .tile,
body.theme-light .aside,
body.theme-light .note,
body.theme-light .faq__item{
  background: rgba(255,255,255,.80);
}
body.theme-light .brand__text{ color: #1a2d4f; }
body.theme-light .pill{
  color:#1b3157;
  border-color: rgba(10,25,57,.22);
}
body.theme-light .pill__icon{
  background: rgba(46,229,157,.20);
  color:#0aa56f;
}
body.theme-light .link:hover{ background: rgba(10,25,57,.06); }
body.theme-light a{ color:#345ec9; }
body.theme-light a:hover{ color:#1f45ac; }
body.theme-light .btn{ color:#0f1a2e; }
body.theme-light .btn--primary{ color:#ffffff; }
body.theme-light .btn--topbar,
body.theme-light .btn--topbar:hover{ color:#ffffff; }
body.theme-light .btn--soft,
body.theme-light .btn--ghost{
  color:#0f1a2e;
}
body.theme-light .quiz-opt:hover{
  border-color: rgba(52,94,201,.42);
  background: rgba(52,94,201,.10);
  box-shadow: 0 8px 18px rgba(52,94,201,.14);
}
body.theme-light .quiz-opt:focus-visible{
  border-color: rgba(10,165,111,.58);
  box-shadow: 0 0 0 3px rgba(10,165,111,.16), 0 8px 18px rgba(52,94,201,.14);
}
body.theme-light .lead,
body.theme-light .bullets li,
body.theme-light .note__text,
body.theme-light .price__subtitle,
body.theme-light .checklist li{ color:#1f3359; }
body.theme-light .card,
body.theme-light .price__card,
body.theme-light .thanks__card{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,251,255,.95));
}
body.theme-light .label{ color:#1a2e4f; }
body.theme-light .input{
  border-color: rgba(10,25,57,.18);
  background: rgba(255,255,255,.95);
}
body.theme-light .input:focus{
  border-color: rgba(91,140,255,.65);
  background: #fff;
}
body.theme-light .field--contact{
  border-top: 1px solid rgba(10,25,57,.18);
  padding-top: 12px;
  margin-bottom: 16px;
}
body.theme-light .form .btn--full{
  margin-top: 8px;
}
body.theme-light .section--alt{
  background: linear-gradient(180deg, rgba(91,140,255,.06), transparent 70%);
  border-top: 1px solid rgba(10,25,57,.08);
  border-bottom: 1px solid rgba(10,25,57,.08);
}
body.theme-light .sticky{
  border-top:1px solid rgba(10,25,57,.14);
  background: rgba(246,249,255,.92);
}
body.theme-light .sticky__text{ color:#1d3156; }
body.theme-light .footer{
  border-top: 1px solid rgba(10,25,57,.10);
}

/* Dark theme contrast tuning */
body.theme-dark{
  --muted:#b7c7ea;
}
body.theme-dark .btn--primary{
  color:#ffffff;
  border-color: rgba(132,166,255,.75);
  box-shadow: 0 16px 34px rgba(91,140,255,.28);
}
body.theme-dark .btn--soft{
  color:#e9fff6;
  border-color: rgba(46,229,157,.55);
  background: rgba(46,229,157,.20);
}
body.theme-dark .btn--ghost{
  color:#eef3ff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
}
body.theme-dark .quiz-opt:hover{
  border-color: rgba(132,166,255,.62);
  background: rgba(91,140,255,.20);
  box-shadow: 0 10px 22px rgba(91,140,255,.22);
}
body.theme-dark .quiz-opt:focus-visible{
  border-color: rgba(76,232,171,.72);
  box-shadow: 0 0 0 3px rgba(46,229,157,.18), 0 10px 22px rgba(91,140,255,.22);
}
body.theme-dark .topbar__tag,
body.theme-dark .pill,
body.theme-dark .trust__item,
body.theme-dark .tile,
body.theme-dark .aside,
body.theme-dark .note,
body.theme-dark .faq__item{
  border-color: rgba(255,255,255,.16);
}
body.theme-dark .input{
  border-color: rgba(255,255,255,.24);
  background: rgba(7,11,20,.44);
}
body.theme-dark .input:focus{
  border-color: rgba(118,164,255,.78);
  background: rgba(7,11,20,.58);
}

