
:root {
  --ink: #04070c;
  --surface: #0b111b;
  --surface-2: #111a27;
  --line: rgba(255,255,255,.10);
  --line-2: rgba(255,255,255,.18);
  --paper: #f4f6f8;
  --white: #ffffff;
  --dim: rgba(233,240,248,.66);
  --dim-2: rgba(233,240,248,.60);
  --blue: #2f8fef;
  --cyan: #35d6f2;
  --grad: linear-gradient(100deg, #1b64e0 0%, #2f8fef 45%, #35d6f2 100%);
  --edge: clamp(20px, 5vw, 64px);
  --u: 28px;
  --half: 14px;
  --measure: 56ch;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--ink); color: var(--white);
  font-family: Archivo, system-ui, sans-serif; font-size: 17px; line-height: var(--u);
  -webkit-font-smoothing: antialiased; text-wrap: pretty;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--white); }
::selection { background: var(--blue); color: var(--white); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 var(--edge); }
.kicker { display: block; font-size: 12px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cyan); margin: 0 0 var(--half); }
.kicker.on-light { color: #1163c9; }
h1, h2, h3 { font-weight: 800; letter-spacing: -.02em; margin: 0; }
.h-display { font-size: clamp(40px, 5.4vw, 74px); line-height: 1.03; }
.h-sec { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.06; max-width: 22ch; }
.grad-text { color: var(--cyan); }
}
.lede { font-size: 17px; line-height: var(--u); color: var(--dim); max-width: var(--measure); margin: var(--u) 0 0; }
.sec { padding: clamp(56px, 7vw, 104px) 0; }
.sec-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: var(--u); margin-bottom: calc(1.5 * var(--u)); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; font: inherit; font-weight: 700;
  font-size: 15px; letter-spacing: .04em; text-transform: uppercase; padding: 15px 26px;
  border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease; }
.btn-primary { background: var(--grad); color: var(--white); box-shadow: 0 12px 34px -14px rgba(47,143,239,.9); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -14px rgba(53,214,242,.85); color: var(--white); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-lg { padding: 19px 32px; font-size: 16px; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--blue); color: var(--white); }

/* nav */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(4,7,12,.86);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: clamp(16px, 3vw, 44px);
  padding: 14px var(--edge); max-width: 1240px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto;
  flex: none; padding-right: clamp(18px, 2.5vw, 40px); }
.brand img { height: 42px; width: auto; }
.brand-name { display: flex; align-items: baseline; gap: .32em; white-space: nowrap; }
.brand-name b { font-size: 16px; font-weight: 800; letter-spacing: .06em; line-height: 1; color: #fff;
  white-space: nowrap; transition: color .25s ease; }
.brand-name b em { font-style: normal; background: var(--grad); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
.brand:hover .brand-name b { color: #fff; }
@media (max-width: 1180px) { .brand-name b { font-size: 15px; } }
@media (max-width: 420px) { .brand-name { display: none; } }
.brand:hover .brand-name b { color: var(--cyan); }
.brand-name span { font-size: 10px; font-weight: 600; letter-spacing: .3em; white-space: nowrap;
  text-transform: uppercase; color: var(--dim-2); }
.nav-links { display: flex; gap: clamp(14px, 2.2vw, 32px); flex: none; }
.nav-links a { color: var(--dim); font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  flex: none; white-space: nowrap; }
.nav-links a:hover { color: var(--white); }
.nav-inner > .btn { flex: none; }
.nav-toggle { display: none; width: 44px; height: 44px; flex: none; place-items: center;
  background: transparent; border: 1px solid var(--line-2); color: #fff; cursor: pointer;
  transition: border-color .2s ease, color .2s ease; }
.nav-toggle svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.nav-toggle:hover { border-color: var(--cyan); color: var(--cyan); }
@media (max-width: 1060px) {
  .nav-inner { position: relative; }
  .nav-toggle { display: grid; }
  .nav-links { display: none; }
  .nav-links.open { display: grid; position: absolute; left: 0; right: 0; top: 100%; gap: 0;
    background: rgba(4,7,12,.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); padding: 0 var(--edge) 12px; }
  .nav-links.open a { padding: 15px 0; border-top: 1px solid var(--line); font-size: 15px; }
}
@media (max-width: 460px) { .nav-inner > .btn { padding: 13px 16px; font-size: 13px; } }

/* hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: -30% -10% auto -20%; height: 130%;
  background: radial-gradient(60% 55% at 20% 20%, rgba(27,100,224,.42), transparent 70%),
              radial-gradient(45% 45% at 85% 10%, rgba(53,214,242,.22), transparent 70%); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100% 84px, 84px 100%; mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 75%); }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding: clamp(56px, 7vw, 104px) 0 clamp(56px, 7vw, 96px); }
.hero-sub { border-left: 3px solid var(--cyan); padding-left: 18px; color: var(--dim);
  font-size: 17px; max-width: 50ch; margin: calc(1.2 * var(--u)) 0 0; }
.hero-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: calc(1.4 * var(--u)); }
.micro { font-size: 13px; letter-spacing: .06em; color: var(--dim-2); margin: var(--half) 0 0; }
.hero-shot { position: relative; }
.hero-shot .frame { border: 1px solid var(--line-2); background: var(--surface);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9); }
.hero-shot .bar { display: flex; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.hero-shot .bar i { width: 9px; height: 9px; background: var(--line-2); display: block; }
.hero-badge { position: absolute; left: -14px; bottom: -18px; background: var(--grad);
  padding: 12px 18px; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-badge { left: 0; } }

/* trust strip */
.strip { border-bottom: 1px solid var(--line); background: var(--surface); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip-grid > div { padding: clamp(24px, 3vw, 40px) clamp(16px, 3vw, 40px); }
.strip-grid > div + div { border-left: 1px solid var(--line); }
.strip svg { width: 26px; height: 26px; stroke: var(--cyan); fill: none; stroke-width: 1.7; }
.strip b { display: block; font-size: 19px; font-weight: 800; margin-top: 12px; }
.strip span { display: block; font-size: 14px; color: var(--dim); }
@media (max-width: 760px) { .strip-grid { grid-template-columns: 1fr; }
  .strip-grid > div + div { border-left: 0; border-top: 1px solid var(--line); } }

/* pain cards */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
.cards > div { background: var(--surface); padding: clamp(24px, 3vw, 36px); }
.cards > div:hover { background: var(--surface-2); }
.cards > div:nth-child(4) { grid-column: span 2; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, minmax(0,1fr)); } .cards > div:nth-child(4) { grid-column: auto; } .cards > div:nth-child(5) { grid-column: span 2; } }
@media (max-width: 600px) { .cards, .cards > div:nth-child(n) { grid-template-columns: 1fr; grid-column: auto; } }
.cards .n { font-size: 13px; font-weight: 800; letter-spacing: .18em; color: var(--cyan); }
.cards p { margin: var(--half) 0 0; color: var(--dim); font-size: 16px; }

/* poster */
.poster { background: var(--grad); color: var(--white); }
.poster .wrap { padding: clamp(56px, 7vw, 96px) 0; }
.poster p.big { font-size: clamp(26px, 3.4vw, 44px); font-weight: 800; letter-spacing: -.02em;
  line-height: 1.1; max-width: 30ch; margin: 0; }
.poster p.small { font-size: 17px; margin: var(--u) 0 0; max-width: 52ch; color: rgba(255,255,255,.9); }

/* split with photo */
.split { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.rev { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
.photo { position: relative; border: 1px solid var(--line-2); overflow: hidden;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.9); }
.photo img { display: block; width: 100%; height: auto; aspect-ratio: 1000 / 1502; object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(.98);
  transition: filter .5s ease; }
.photo:hover img { filter: grayscale(0) contrast(1.02) brightness(1); }
.photo::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(4,7,12,.30), transparent 30%);
  transition: opacity .5s ease; }
.photo:hover::after { opacity: .45; }
@media (max-width: 900px) { .split, .split.rev { grid-template-columns: 1fr; } }

/* light section (process) */
.light { background: var(--paper); color: #0b111b; }
.light .h-sec, .light b { color: #0b111b; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  background: rgba(11,17,27,.14); border: 1px solid rgba(11,17,27,.14); }
.steps > div { background: var(--paper); padding: clamp(24px, 3vw, 36px); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.steps .num { font-size: 46px; font-weight: 800; line-height: 1; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1.5px #1163c9; }
.steps h3 { font-size: 20px; margin: 18px 0 0; }
.steps p { font-size: 15.5px; line-height: 26px; color: rgba(11,17,27,.72); margin: 10px 0 0; }
.light .lede { color: rgba(11,17,27,.72); }

/* benefits */
.blist { list-style: none; margin: 0; padding: 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 clamp(24px, 4vw, 64px); }
.blist li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start;
  padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--dim); font-size: 16px; }
.blist svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 2; margin-top: 4px; }

/* pricing */
.plans { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1040px) { .plans { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .plans { grid-template-columns: 1fr; } }
.plan { border: 1px solid var(--line); background: var(--surface); padding: clamp(22px, 2.4vw, 30px);
  display: grid; align-content: start; gap: 12px; }
.plan.feat { border-color: transparent; background:
  linear-gradient(var(--surface-2), var(--surface-2)) padding-box, var(--grad) border-box;
  border: 1px solid transparent; box-shadow: 0 30px 60px -34px rgba(47,143,239,.7); position: relative; }
.plan .tagline { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--dim-2); }
.plan.feat .tagline { color: var(--cyan); }
.plan h3 { font-size: 21px; }
.plan .btn { margin-top: 6px; justify-content: flex-start; }
.plan .btn { white-space: normal; min-width: 0; text-align: left; }
.plan .amt { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.plan .amt sup { font-size: 16px; font-weight: 700; vertical-align: super; }
.plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.plan li { font-size: 15px; line-height: 24px; color: var(--dim); padding-left: 16px; position: relative; }
.plan li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--cyan); }
.maint { margin-top: 18px; border: 1px solid var(--line); background: var(--surface);
  padding: clamp(22px, 2.4vw, 30px); display: flex; flex-wrap: wrap; gap: var(--u);
  align-items: center; justify-content: space-between; }
.maint .amt { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.maint p { margin: 6px 0 0; color: var(--dim); font-size: 15.5px; max-width: 62ch; }
.note { font-size: 15px; color: var(--dim-2); margin: var(--u) 0 0; max-width: 56ch; }

.plans-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1040px) { .plans-3 { grid-template-columns: 1fr; } }
.plan .amt-row { display: flex; align-items: baseline; gap: 6px; }
.plan .amt-row .per { font-size: 14px; font-weight: 700; color: var(--dim-2); letter-spacing: .04em; text-transform: uppercase; }

.social { display: flex; gap: 10px; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border: 1px solid var(--line-2); color: var(--white); transition: border-color .2s ease, color .2s ease, background .2s ease; }
.social a:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(53,214,242,.08); }
.social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social svg path { fill: currentColor; stroke: none; }
.social svg circle:last-of-type { fill: currentColor; stroke: none; }

.capbox { margin: 2px 0 20px; height: 70px; }
.capbox .h-captcha { transform: scale(.82); transform-origin: 0 0; filter: saturate(.85) brightness(.95); }
.capbox iframe { max-width: 100%; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 30px); margin-top: clamp(32px, 4vw, 54px); align-items: start; }
@media (max-width: 720px) { .ba { grid-template-columns: 1fr; } }
.ba figure { margin: 0; min-width: 0; display: grid; gap: 16px; }
.ba .side { display: grid; gap: 10px; justify-items: start; }
.ba .tag { font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; padding: 7px 13px; }
.ba .before .tag { background: #3a4250; color: #fff; }
.ba .after .tag { background: var(--grad); color: #061018; }
.ba figcaption { min-width: 0; font-size: 15px; line-height: 25px; color: rgba(255,255,255,.88); text-wrap: pretty; }
.ba .shot { position: relative; overflow: hidden; min-width: 0; border: 1px solid var(--line-2); background: #0a0e14;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.9); transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .4s ease; }
.ba figure:hover .shot { transform: translateY(-4px); }
.ba .shot img { display: block; width: 100%; height: auto; }
.ba .after .shot { border-color: rgba(47,143,239,.55); box-shadow: 0 30px 60px -38px rgba(47,143,239,.5); }
.ba .before .shot img { filter: grayscale(1) brightness(.82) contrast(1.05); }
.hero-shot .frame { min-width: 0; }

/* testimonials */
.tcards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 980px) { .tcards { grid-template-columns: 1fr; } }
.tcard { border: 1px solid var(--line); background: var(--surface); padding: clamp(24px, 2.6vw, 32px);
  display: grid; align-content: start; gap: 18px; min-width: 0; }
.tcard .stars { display: flex; gap: 4px; }
.tcard .stars svg { width: 16px; height: 16px; fill: var(--cyan); stroke: none; }
.tcard blockquote { margin: 0; font-size: 17px; line-height: 28px; font-weight: 500; }
.tcard .who { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 18px; }
.tslider { position: relative; overflow: hidden; }
.ttrack { display: flex; gap: 18px; transition: transform .7s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.ttrack > .tcard { flex: 0 0 calc((100% - 36px) / 3); }
@media (max-width: 1040px) { .ttrack > .tcard { flex-basis: calc((100% - 18px) / 2); } }
@media (max-width: 760px) { .ttrack > .tcard { flex-basis: 100%; } }
.tnav { display: flex; align-items: center; gap: 10px; margin-top: 26px; }
.tdots { display: flex; gap: 8px; margin-right: auto; }
.tdot { width: 26px; height: 3px; border: 0; padding: 0; background: var(--line); cursor: pointer; transition: background .3s ease, width .3s ease; }
.tdot.on { background: var(--cyan); width: 44px; }
.tarrow { width: 44px; height: 44px; display: grid; place-items: center; background: transparent; cursor: pointer;
  border: 1px solid var(--line); color: #fff; transition: border-color .25s ease, color .25s ease; }
.tarrow:hover { border-color: var(--cyan); color: var(--cyan); }
.tarrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.tcard .who b { display: block; font-size: 17px; font-weight: 700; }
.tcard .who span { display: block; font-size: 13px; color: var(--dim-2); }

/* google lsa + calculator */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--u); }
.chips span { font-size: 13.5px; font-weight: 600; color: var(--dim); border: 1px solid var(--line-2);
  padding: 7px 12px; letter-spacing: .01em; }
.figbox { margin-top: 18px; border: 1px solid var(--line-2); background: var(--surface);
  padding: clamp(22px, 2.4vw, 30px); display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: baseline; }
.figbox .fig { font-size: clamp(36px, 4vw, 48px); font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--cyan); }
.figbox b { display: block; font-size: 17px; }
.figbox p { margin: 6px 0 0; color: var(--dim-2); font-size: 14.5px; max-width: 60ch; }
.calc { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 18px; margin-top: clamp(28px, 3.4vw, 44px); align-items: start; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc-in, .calc-out { border: 1px solid var(--line); background: var(--surface); padding: clamp(22px, 2.4vw, 32px); }
.calc-in { display: grid; gap: 22px; align-content: start; }
.calc-out { border-color: transparent; background:
  linear-gradient(var(--surface-2), var(--surface-2)) padding-box, var(--grad) border-box;
  border: 1px solid transparent; }
.calc-row { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: baseline;
  justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); }
.calc-row:last-of-type { border-bottom: 0; }
.calc-row .k { font-size: 15.5px; color: var(--dim); }
.calc-row .v { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -.02em;
  line-height: 1; text-align: right; }
.calc-row .v small { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0;
  color: var(--dim-2); margin-top: 7px; }
.calc-out .disc { font-size: 13.5px; line-height: 22px; color: var(--dim-2); margin: 20px 0 0; }

.hl { display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin-top: 12px;
  border: 1px solid rgba(53,214,242,.45); background: rgba(53,214,242,.09);
  padding: 9px 14px; font-size: 14.5px; color: rgba(255,255,255,.92); }
.hl b { color: var(--cyan); font-size: 17px; font-weight: 800; letter-spacing: -.01em;
  flex: none; white-space: nowrap; }
.hl span { flex: 1 1 auto; min-width: 0; }
.hl s { color: var(--dim-2); text-decoration-thickness: 1px; }
.input.flash { border-bottom-color: var(--cyan); box-shadow: 0 6px 20px -14px var(--cyan); }

.story { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 64px); margin-top: clamp(28px, 3.4vw, 44px); }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } }
.story .lede { max-width: none; }
.story .lede + .lede { margin-top: 20px; }
#story { padding-bottom: clamp(18px, 2.2vw, 34px); }
/* four cards, so a 2x2 block leaves no uncovered cell at any width */
#lsa .qa { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 600px) { #lsa .qa { grid-template-columns: 1fr; } }
.stat3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-top: 18px; }
.stat3 > div { background: var(--surface); padding: clamp(22px, 2.6vw, 32px); }
@media (max-width: 760px) { .stat3 { grid-template-columns: 1fr; } }
.stat3 .fig { display: block; font-size: clamp(30px, 3.4vw, 40px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1; color: var(--cyan); }
.stat3 b { display: block; font-size: 16px; margin-top: 14px; }
.stat3 p { margin: 6px 0 0; color: var(--dim-2); font-size: 14.5px; line-height: 23px; }

/* objections + faq */
.qa { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
.qa > div { background: var(--surface); padding: clamp(22px, 2.6vw, 32px); }
.qa h3 { font-size: 18px; line-height: 26px; }
.qa p { margin: 12px 0 0; color: var(--dim); font-size: 15.5px; line-height: 26px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; gap: 20px; justify-content: space-between;
  align-items: center; padding: 20px 0; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--cyan); font-size: 22px; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--cyan); }
.faq details p { margin: 0 0 22px; color: var(--dim); font-size: 16px; max-width: var(--measure); }

/* guarantee */
.guar { display: flex; gap: 20px; align-items: flex-start; border: 1px solid var(--line-2);
  background: var(--surface); padding: clamp(24px, 3vw, 36px); margin-top: calc(1.5 * var(--u)); }
.guar svg { width: 34px; height: 34px; stroke: var(--cyan); fill: none; stroke-width: 1.6; flex: none; }
.guar b { display: block; font-size: 20px; font-weight: 800; }
.guar p { margin: 8px 0 0; color: var(--dim); font-size: 16px; max-width: 56ch; }

/* form */
.consent { grid-column: 1 / -1; display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.disclose { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 6px; margin: -6px 0 0; padding: 0 0 0 32px; }
.disclose p { margin: 0; font-size: 11.5px; line-height: 17px; letter-spacing: .01em; color: var(--dim-2); text-wrap: pretty; }
.callrow { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.consent input[type="checkbox"] { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--cyan); cursor: pointer; }
.consent label { text-transform: none; letter-spacing: .01em; font-size: 13px; font-weight: 400; line-height: 21px;
  color: var(--dim); text-wrap: pretty; cursor: pointer; }

.form-sec { border-top: 1px solid var(--line); background:
  radial-gradient(70% 90% at 15% 0%, rgba(27,100,224,.28), transparent 70%), var(--ink); }
.form-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px); align-items: start; }
form.card { border: 1px solid var(--line-2); background: var(--surface); padding: clamp(24px, 3vw, 40px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
form.card .full { grid-column: 1 / -1; }
label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dim-2); margin-bottom: 8px; }
.input { width: 100%; font: inherit; font-size: 16px; color: var(--white); background: transparent;
  border: 0; border-bottom: 1px solid var(--line-2); padding: 10px 0; }
.input:focus { outline: none; border-bottom-color: var(--cyan); }
select.input { color: var(--white); }
select.input option { background: var(--surface); color: var(--white); }
textarea.input { resize: vertical; min-height: 84px; }
@media (max-width: 900px) { .form-grid, form.card { grid-template-columns: 1fr; } }

/* close + footer */
.close-poster { background: var(--grad); }
.close-poster .wrap { padding: clamp(56px, 7vw, 96px) 0; }
.close-poster h2 { font-size: clamp(32px, 4.6vw, 60px); line-height: 1.04; max-width: 24ch; }
.close-poster .ps { margin: var(--u) 0 0; max-width: 56ch; color: rgba(255,255,255,.92); font-size: 16px; }
.close-poster .btn { margin-top: calc(1.2 * var(--u)); }
footer { background: var(--ink); border-top: 1px solid var(--line); padding: calc(1.6 * var(--u)) 0; }
.foot { display: flex; flex-wrap: wrap; gap: var(--u); justify-content: space-between; align-items: center; }
.foot img { height: 46px; width: auto; }
.foot .meta { font-size: 14px; color: var(--dim-2); }
.foot a { color: var(--white); font-weight: 700; }
.foot a:hover { color: var(--cyan); }

/* ═══ motion + 3d layer ═══ */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 40;
  transform: scaleX(0); transform-origin: 0 50%; background: var(--grad); will-change: transform; }
.nav { transition: padding .3s ease, background .3s ease, box-shadow .3s ease; }
.nav.compact { box-shadow: 0 14px 40px -26px rgba(0,0,0,.9); }
.nav.compact .nav-inner { padding-top: 8px; padding-bottom: 8px; }
.nav.compact .brand img { height: 34px; transition: height .3s ease; }
.brand img { transition: height .3s ease; }

/* whatsapp float */
.wa { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 60;
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; text-decoration: none;
  background: var(--surface-2); border: 1px solid var(--line);
  box-shadow: 0 24px 50px -26px rgba(0,0,0,.95); transition: border-color .25s ease, transform .25s ease; }
.wa svg { width: 28px; height: 28px; fill: var(--cyan); }
.wa:hover { border-color: var(--cyan); transform: translateY(-3px) scale(1.04); }

/* hero canvas mesh */
#mesh { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
  opacity: .55; pointer-events: none; }

/* staggered word reveal */
.w { display: inline-block; opacity: 0; transform: translate3d(0, 0.55em, 0) rotateX(-40deg);
  transform-origin: 50% 100%; animation: wIn .85s cubic-bezier(.2,.8,.2,1) both; }
.h-display.shown .w { opacity: 1; transform: none; }
@keyframes wIn { to { opacity: 1; transform: none; } }

/* generic scroll reveal */
[data-reveal] { opacity: 0; transform: translate3d(0, 22px, 0); }
[data-reveal].in { opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms); }

/* hero 3d stage */
.hero-shot { perspective: 1400px; perspective-origin: 50% 40%; }
.hero-shot .frame { transform-style: preserve-3d; will-change: transform;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease; }
.hero-shot .frame::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.16), transparent 42%);
  opacity: 0; transition: opacity .4s ease; }
.hero-shot:hover .frame::after { opacity: 1; }
.hero-shot .frame > * { transform: translateZ(0.01px); }
.hero-badge { transform: translateZ(70px); will-change: transform;
  box-shadow: 0 24px 50px -20px rgba(27,100,224,.8); }
.float-chip { position: absolute; z-index: 3; background: rgba(11,17,27,.86);
  border: 1px solid var(--line-2); backdrop-filter: blur(10px); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.float-chip svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; stroke-width: 2.2; }
.float-chip.a { top: -22px; right: -12px; animation: bob 7s ease-in-out infinite; }
.float-chip.b { bottom: 22%; left: -34px; animation: bob 9s ease-in-out infinite reverse; }
@keyframes bob { 50% { transform: translateY(-12px); } }
@keyframes sway {
  0%   { transform: rotateY(-9deg) rotateX(3deg); }
  50%  { transform: rotateY(-3deg) rotateX(-1deg); }
  100% { transform: rotateY(-9deg) rotateX(3deg); }
}
.hero-shot .frame.idle { animation: sway 9s ease-in-out infinite; }
@media (max-width: 900px) {
  .float-chip { font-size: 11px; padding: 9px 12px; }
  .float-chip.a { top: -16px; right: -4px; }
  .float-chip.b { bottom: 14%; left: -8px; }
}

/* marquee */
.marquee { border-bottom: 1px solid var(--line); background: var(--ink); overflow: hidden;
  padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 0; animation: slide 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: flex; align-items: center; gap: 26px; padding: 0 26px;
  font-size: clamp(15px, 1.5vw, 19px); font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim-2); white-space: nowrap; }
.marquee-track span i { width: 7px; height: 7px; background: var(--cyan); display: block; flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }

/* interactive spotlight cards + tilt */
.tilt { will-change: transform; transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .45s ease; }
.spot { position: relative; overflow: hidden; }
.spot::before { content: ""; position: absolute; width: 420px; height: 420px; left: var(--mx, 50%); top: var(--my, 50%);
  transform: translate(-50%, -50%); pointer-events: none; opacity: 0; transition: opacity .35s ease;
  background: radial-gradient(circle, rgba(53,214,242,.16), transparent 65%); }
.spot:hover::before { opacity: 1; }
.spot > * { position: relative; }
.plan.tilt:hover, .tcard.tilt:hover { border-color: var(--line-2); }
@media (hover: none) {
  .plan, .tcard, .cards > div, .steps > div, .qa > div {
    transition: transform .25s ease, border-color .25s ease; }
  .plan:active, .tcard:active, .cards > div:active, .steps > div:active, .qa > div:active {
    transform: scale(.985); border-color: var(--line-2); }
  .btn:active { transform: scale(.97); }
  /* touch devices: the portrait stays black and white */
  .photo img { filter: grayscale(1) contrast(1.06) brightness(.98); transition: none; }
  .photo::after { opacity: 1; }
}
.light .spot::before { background: radial-gradient(circle, rgba(17,99,201,.13), transparent 65%); }
.steps .num { transition: -webkit-text-stroke-color .3s ease, color .3s ease; }
.steps > div:hover .num { color: #1163c9; -webkit-text-stroke: 0; }

/* shine sweep on primary buttons */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg); transition: left .6s cubic-bezier(.2,.8,.2,1); }
.btn-primary:hover::after { left: 130%; }
.btn-primary > * { position: relative; }

/* aurora drift on the gradient fields */
.poster, .close-poster { position: relative; overflow: hidden; }
.poster::before, .close-poster::before { content: ""; position: absolute; inset: -40%;
  background: radial-gradient(38% 42% at 25% 30%, rgba(255,255,255,.30), transparent 65%),
              radial-gradient(34% 38% at 78% 68%, rgba(53,214,242,.42), transparent 65%);
  animation: drift 20s ease-in-out infinite alternate; }
@keyframes drift { to { transform: translate3d(6%, -5%, 0) scale(1.14); } }
.poster .wrap, .close-poster .wrap { position: relative; z-index: 1; }

/* blist tick draw-in */
.blist li svg path { stroke-dasharray: 30; stroke-dashoffset: 30;
  transition: stroke-dashoffset .5s cubic-bezier(.2,.8,.2,1); }
.blist li.in svg path { stroke-dashoffset: 0; }

/* faq smooth open */
.faq details p { animation: fade .45s ease both; }
@keyframes fade { from { opacity: 0; transform: translateY(-6px); } }

/* form field glow */
.input { transition: border-color .3s ease, box-shadow .3s ease; }
.input:focus { box-shadow: 0 8px 24px -18px rgba(53,214,242,.9); }

@media (prefers-reduced-motion: reduce) {
  .w, [data-reveal], .marquee-track, .poster::before, .close-poster::before,
  .float-chip.a, .float-chip.b { animation: none !important; opacity: 1 !important; transform: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .tilt { transform: none !important; }
}


.lead-pop { position: fixed; z-index: 60; right: 20px; bottom: 20px; width: min(288px, calc(100vw - 40px));
  background: #0d1218; border: 1px solid rgba(255,255,255,.14); border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55); padding: 14px 15px 13px;
  display: none; grid-template-columns: 1fr; gap: 12px; }
.lead-pop.show { display: grid; animation: leadIn .42s cubic-bezier(.2,.8,.3,1) both; }
@keyframes leadIn { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.lead-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lead-tag { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); }
.lead-tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); flex: none;
  animation: leadBlink 1.4s ease-in-out infinite; }
@keyframes leadBlink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.lead-x { width: 26px; height: 26px; flex: none; display: grid; place-items: center; border: 0;
  background: none; border-radius: 8px; cursor: pointer; color: rgba(233,240,248,.55); }
.lead-x:hover { color: #fff; background: rgba(255,255,255,.07); }
.lead-x svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.lead-who { display: flex; align-items: center; gap: 11px; }
.lead-av { width: 38px; height: 38px; flex: none; border-radius: 50%; background: #1c2530;
  display: grid; place-items: center; color: rgba(233,240,248,.5); position: relative; }
.lead-av svg { width: 18px; height: 18px; fill: currentColor; }
.lead-av::after { content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(53,214,242,.4); animation: leadRing 1.8s ease-out infinite; }
@keyframes leadRing { 0% { transform: scale(.85); opacity: .9; } 100% { transform: scale(1.15); opacity: 0; } }
.lead-name { font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: #fff; margin: 0; }
.lead-sub { font-size: 12.5px; color: rgba(233,240,248,.55); margin: 2px 0 0; }
.lead-acts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.lead-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 8px;
  border: 0; border-radius: 9px; font-family: inherit; font-size: 11.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer; color: #fff; }
.lead-btn svg { width: 13px; height: 13px; flex: none; fill: currentColor; }
.lead-yes { background: var(--grad); box-shadow: 0 10px 26px -14px rgba(47,143,239,.9); }
.lead-yes:hover { color: #fff; filter: brightness(1.1); }
.lead-no { background: transparent; border: 1px solid var(--line-2); color: var(--dim); }
.lead-no:hover { border-color: rgba(255,255,255,.34); color: #fff; background: rgba(255,255,255,.05); }
@media (prefers-reduced-motion: reduce) {
  .lead-pop.show { animation: none; }
  .lead-tag i, .lead-av::after { animation: none; }
  .lead-av::after { opacity: 0; }
}


/* ═══ site-level (multi-page) ═══ */
.nav-links a.on { color: #fff; }
.nav-links a.on::after { content: ""; display: block; height: 2px; margin-top: 4px; background: var(--grad); }
@media (max-width: 1060px) { .nav-links.open a.on::after { display: none; } }

/* page hero */
.phero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 92px) 0 clamp(44px, 5vw, 80px); }
.phero::before { content: ""; position: absolute; inset: -40% -10% auto -20%; height: 150%;
  background: radial-gradient(55% 50% at 18% 24%, rgba(27,100,224,.40), transparent 70%),
              radial-gradient(42% 42% at 88% 6%, rgba(53,214,242,.20), transparent 70%);
  animation: drift 24s ease-in-out infinite alternate; }
.phero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100% 84px, 84px 100%;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 80%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 80%); }
.phero .wrap { position: relative; z-index: 1; }
.phero h1 { font-size: clamp(34px, 4.6vw, 62px); line-height: 1.04; max-width: 26ch; }
.phero .lede { font-size: 18px; max-width: 60ch; }
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 12px;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--dim-2); margin: 0 0 var(--half); }
.crumb a { color: var(--dim-2); }
.crumb a:hover { color: var(--cyan); }
.crumb i { width: 4px; height: 4px; background: var(--line-2); display: block; }

/* service teasers on the home page */
.tease { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .tease { grid-template-columns: 1fr; } }
.tease > a { display: grid; align-content: start; gap: 14px; background: var(--surface);
  padding: clamp(26px, 3vw, 38px); color: var(--white);
  transition: background .3s ease, transform .4s cubic-bezier(.2,.8,.2,1); }
.tease > a:hover { background: var(--surface-2); color: var(--white); }
.tease .ico { width: 34px; height: 34px; stroke: var(--cyan); fill: none; stroke-width: 1.6; }
.tease h3 { font-size: 23px; }
.tease .from { font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); }
.tease p { margin: 0; color: var(--dim); font-size: 16px; }
.tease .go { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--white); }
.tease .go svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform .3s ease; }
.tease > a:hover .go svg { transform: translateX(6px); }

/* count-up figures */
.cnt { font-variant-numeric: tabular-nums; }

/* pricing table */
.ptable { border: 1px solid var(--line); background: var(--surface); }
.prow { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) auto;
  gap: 12px clamp(18px, 3vw, 40px); align-items: center; padding: clamp(18px, 2vw, 26px) clamp(18px, 2.4vw, 32px);
  border-bottom: 1px solid var(--line); transition: background .25s ease; }
.prow:last-child { border-bottom: 0; }
.prow:hover { background: var(--surface-2); }
.prow b { display: block; font-size: 18px; }
.prow span.d { display: block; font-size: 14.5px; line-height: 23px; color: var(--dim); margin-top: 4px; }
.prow .pv { font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; letter-spacing: -.02em; color: var(--cyan); }
.prow .pv small { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--dim-2); margin-top: 5px; }
@media (max-width: 760px) { .prow { grid-template-columns: 1fr; } .prow .btn { justify-self: start; } }
.phead { display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 16px clamp(18px, 2.4vw, 32px); border-bottom: 2px solid var(--line-2); background: var(--surface-2); }
.phead b { font-size: 13px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.phead span { font-size: 13px; color: var(--dim-2); }

/* blog */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
.posts > a { background: var(--surface); padding: clamp(26px, 3vw, 36px); display: grid;
  align-content: start; gap: 14px; color: var(--white); transition: background .3s ease; }
.posts > a:hover { background: var(--surface-2); color: var(--white); }
.posts time { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); }
.posts h3 { font-size: 22px; line-height: 1.18; }
.posts p { margin: 0; font-size: 15.5px; line-height: 25px; color: var(--dim); }
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(24px, 2.6vw, 32px); margin: calc(1.6 * var(--u)) 0 var(--half); }
.prose h3 { font-size: 20px; margin: var(--u) 0 8px; }
.prose p { margin: 0 0 var(--u); color: var(--dim); font-size: 17px; line-height: 30px; }
.prose ul { margin: 0 0 var(--u); padding-left: 20px; color: var(--dim); }
.prose li { font-size: 17px; line-height: 30px; margin-bottom: 8px; }
.prose strong { color: var(--white); }
.prose .pull { border-left: 3px solid var(--cyan); padding-left: 20px; margin: 0 0 var(--u);
  font-size: 19px; line-height: 31px; color: #fff; font-weight: 600; }

/* closing band used on every inner page */
.band { border-top: 1px solid var(--line); background:
  radial-gradient(65% 90% at 12% 0%, rgba(27,100,224,.26), transparent 70%), var(--ink); }
.band .wrap { padding: clamp(48px, 6vw, 88px) var(--edge); display: flex; flex-wrap: wrap;
  gap: var(--u) clamp(28px, 4vw, 64px); align-items: center; justify-content: space-between; }
.band h2 { font-size: clamp(26px, 3.2vw, 42px); line-height: 1.08; max-width: 24ch; }
.band p { margin: var(--half) 0 0; color: var(--dim); font-size: 16.5px; max-width: 52ch; }
.band .acts { display: flex; flex-wrap: wrap; gap: 14px; }

/* ═══ home rhythm: proof numbers, service grid, testimonial columns, FAQ tabs ═══ */
.proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
@media (max-width: 860px) { .proof { grid-template-columns: 1fr; } }
.proof > div { background: var(--surface); padding: clamp(26px, 3vw, 38px); display: grid;
  align-content: start; gap: 10px; }
.proof .pf { font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; letter-spacing: -.04em;
  line-height: 1; color: var(--cyan); font-variant-numeric: tabular-nums; }
.proof b { font-size: 16px; font-weight: 700; color: #fff; }
.proof p { margin: 0; font-size: 14.5px; line-height: 23px; color: var(--dim); }
.proof-note { font-size: 13.5px; line-height: 22px; color: var(--dim-2); margin: 16px 0 0; max-width: 76ch; }

.svc { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
@media (max-width: 1000px) { .svc { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .svc { grid-template-columns: 1fr; } }
.svc > a { background: var(--surface); padding: clamp(24px, 2.6vw, 32px); display: grid;
  align-content: start; gap: 12px; color: var(--white); position: relative;
  transition: background .3s ease; }
.svc > a:hover { background: var(--surface-2); color: var(--white); }
.svc > a.hi { background: var(--surface-2); }
.svc > a.wide { grid-column: 1 / -1; }
.svc .tagrow { display: flex; align-items: center; gap: 9px; }
.svc .tagrow svg { width: 17px; height: 17px; stroke: var(--cyan); fill: none; stroke-width: 1.7; flex: none; }
.svc .tagrow span { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); }
.svc h3 { font-size: 19px; letter-spacing: -.015em; }
.svc p { margin: 0; font-size: 14.5px; line-height: 23px; color: var(--dim); }
.svc .more { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dim-2); display: inline-flex; align-items: center; gap: 7px; margin-top: 2px;
  transition: color .25s ease, gap .25s ease; }
.svc > a:hover .more { color: #fff; gap: 12px; }
.svc > a.hi .more { color: var(--cyan); }

.tcols { columns: 3; column-gap: 16px; }
@media (max-width: 1000px) { .tcols { columns: 2; } }
@media (max-width: 680px) { .tcols { columns: 1; } }
.tcols > figure { break-inside: avoid; margin: 0 0 16px; border: 1px solid var(--line);
  background: var(--surface); padding: 24px; display: grid; gap: 14px;
  transition: border-color .3s ease, background .3s ease; }
.tcols > figure:hover { border-color: var(--line-2); background: var(--surface-2); }
.tcols blockquote { margin: 0; font-size: 15px; line-height: 25px; color: var(--dim); }
.tcols figcaption { display: grid; gap: 2px; }
.tcols figcaption b { font-size: 14.5px; color: #fff; }
.tcols figcaption span { font-size: 12.5px; color: var(--dim-2); }
.tcols .stars svg { width: 14px; height: 14px; fill: var(--cyan); }
.tcols .stars { display: flex; gap: 3px; }

.fq-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
.fq-tab { border: 1px solid var(--line-2); background: transparent; color: var(--dim);
  font-family: inherit; font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: 10px 16px; cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background .25s ease; }
.fq-tab:hover { color: #fff; border-color: rgba(255,255,255,.34); }
.fq-tab[aria-selected="true"] { background: var(--grad); border-color: transparent; color: #fff; }
.faq details[hidden] { display: none; }

/* ═══ home: service pill rail, stats band ═══ */
.hero-copy .rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin: 20px 0 0; font-size: 13px; color: var(--dim-2); }
.hero-copy .rating .stars { display: flex; gap: 3px; }
.hero-copy .rating .stars svg { width: 14px; height: 14px; fill: var(--cyan); }
.hero-copy .rating b { color: #fff; font-weight: 700; }

.rail { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--surface); }
.rail-in { max-width: 1240px; margin: 0 auto; padding: 0 var(--edge);
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.rail-in > a { display: flex; align-items: center; gap: 9px;
  padding: 16px 18px; font-size: 11.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim); white-space: nowrap;
  border-left: 1px solid var(--line); transition: color .25s ease, background .25s ease; }
.rail-in > a:hover { color: #fff; background: var(--surface-2); }
.rail-in > a i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex: none; opacity: .7; }
.rail-in > a:nth-child(6n + 1) { border-left: 0; }
@media (max-width: 1160px) {
  .rail-in { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rail-in > a { border-left: 1px solid var(--line); }
  .rail-in > a:nth-child(3n + 1) { border-left: 0; }
  .rail-in > a:nth-child(n + 4) { border-top: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .rail-in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail-in > a { border-left: 1px solid var(--line); white-space: normal; }
  .rail-in > a:nth-child(2n + 1) { border-left: 0; }
  .rail-in > a:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

.band3 { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); }
.band3-in { max-width: 1240px; margin: 0 auto; padding: clamp(30px, 3.5vw, 46px) var(--edge);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 44px); }
@media (max-width: 860px) { .band3-in { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.band3-in > div { display: grid; align-content: start; gap: 6px; }
.band3 .bg { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.035em;
  line-height: 1; color: #fff; }
.band3 .bg em { font-style: normal; background: var(--grad); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
.band3 span { font-size: 13px; line-height: 21px; color: var(--dim-2); }

/* ── hero mockup under the centred copy ── */
.hero-mock { position: relative; width: 100%; margin: 0; }
@media (max-width: 980px) { .hero-mock { margin-top: clamp(28px, 4vw, 44px); } }
.hero-mock img { display: block; width: 100%; height: auto;
  filter: drop-shadow(0 50px 90px rgba(0,0,0,.7)) drop-shadow(0 0 70px rgba(47,143,239,.18)); }
.hero-mock .float-chip { position: absolute; }
.hero-mock .float-chip.a { top: 2%; right: -4%; }
.hero-mock .float-chip.b { bottom: 30%; left: -8%; }
.hero-mock .hero-badge { position: absolute; bottom: 4%; right: 2%; left: auto; top: auto;
  width: auto; transform: none; display: inline-flex; align-items: center;
  border-radius: 9999px; padding: 11px 20px; white-space: nowrap; }
@media (max-width: 860px) {
  .hero-mock .float-chip.a { top: 2%; right: 0; }
  .hero-mock .float-chip.b { bottom: 18%; left: 0; }
  .hero-mock .hero-badge { bottom: 2%; right: 0; }
}
@media (max-width: 620px) {
  .hero-mock .float-chip, .hero-mock .hero-badge { display: none; }
}

/* ── hero headline fits its column; mockup floats like the old one ── */
.hero-copy .h-display { font-size: clamp(38px, 4.2vw, 60px); max-width: 15ch; }
.hero-copy .hero-sub { max-width: 46ch; }
@media (max-width: 980px) { .hero-copy .h-display { max-width: 22ch; } }

@keyframes mockFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-.4deg); }
}
.hero-mock img { animation: mockFloat 7s ease-in-out infinite; will-change: transform; }
.hero-mock .float-chip.a { animation: chipA 5.5s ease-in-out infinite; }
.hero-mock .float-chip.b { animation: chipB 6.5s ease-in-out infinite; }
@keyframes chipA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes chipB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) {
  .hero-mock img, .hero-mock .float-chip.a, .hero-mock .float-chip.b { animation: none; }
}

/* ── service rail: three across, labels allowed to wrap ── */
.rail-in { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rail-in > a { white-space: normal; padding: 15px 16px; letter-spacing: .12em; align-items: flex-start; }
.rail-in > a i { margin-top: 6px; }
.rail-in > a:nth-child(3n + 1) { border-left: 0; }
.rail-in > a:nth-child(n + 4) { border-top: 1px solid var(--line); }
@media (max-width: 620px) {
  .rail-in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail-in > a:nth-child(2n + 1) { border-left: 0; }
  .rail-in > a:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

/* ── the SMS disclosure scrolls inside its own box; the form runs tighter ── */
.disclose {
  max-height: 92px; overflow-y: auto; overscroll-behavior: contain;
  padding: 12px 14px; margin: 0; border: 1px solid var(--line);
  background: rgba(255,255,255,.02); gap: 8px;
}
.disclose::-webkit-scrollbar { width: 8px; }
.disclose::-webkit-scrollbar-track { background: transparent; }
.disclose::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.disclose:hover::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); }
.disclose { scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.disclose p { font-size: 11px; line-height: 16px; }

form.card { gap: 16px; padding: clamp(22px, 2.4vw, 30px); }
form.card label { font-size: 10.5px; }
form.card .input { padding: 9px 0; font-size: 15px; }
form.card textarea.input { min-height: 64px; }
.consent { gap: 10px; }
.consent input[type="checkbox"] { width: 17px; height: 17px; }
.consent label { font-size: 12px; line-height: 19px; }
.capbox { margin-top: 2px; }

/* ── language switcher ── */
.lang { display: flex; align-items: center; gap: 2px; flex: none;
  border: 1px solid rgba(255,255,255,.14); border-radius: 9999px; padding: 3px; }
.lang a { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9999px;
  font-size: 15px; line-height: 1; opacity: .5; transition: opacity .25s ease, background .25s ease; }
.lang a:hover { opacity: 1; background: rgba(255,255,255,.07); }
.lang a[aria-current="true"] { opacity: 1; background: rgba(53,214,242,.14); }
.lang a img { width: 20px; height: 15px; display: block; border-radius: 2px; }
@media (max-width: 1359px) { .lang { display: none; } }
.nav-links .lang-m { display: none; }
@media (max-width: 1359px) {
  .nav-links .lang-m { display: flex; gap: 14px; align-items: center; padding-top: 6px;
    border-top: 1px solid var(--line); margin-top: 6px; }
  .nav-links .lang-m a { font-size: 13px; opacity: .6; }
  .nav-links .lang-m a[aria-current="true"] { opacity: 1; color: var(--cyan); }
}

/* ── phone: the two fixed bottom elements must not sit on top of each other ── */
@media (max-width: 620px) {
  .lead-pop { left: 12px; right: 12px; bottom: 12px; width: auto; }
  body.has-langbar .lead-pop { bottom: 96px; }
  .lead-acts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .lead-btn { font-size: 11px; letter-spacing: .04em; padding: 10px 6px; }
}

/* ── phone: tighten the pieces that were laid out for a desktop column ── */
@media (max-width: 620px) {
  :root { --edge: 18px; }
  .h-display { font-size: clamp(30px, 9vw, 40px); }
  .hero-copy .h-display { max-width: none; }
  .hero-sub { font-size: 16px; }
  .hero-row { display: grid; gap: 10px; }
  .hero-row .btn { width: 100%; justify-content: center; }
  .callrow { display: grid; gap: 10px; }
  .callrow .btn { width: 100%; justify-content: center; }
  .rating { font-size: 12px; }
  .h-sec { font-size: clamp(24px, 7vw, 32px); }
  .sec-head { display: grid; gap: 14px; }
  .band3-in { grid-template-columns: 1fr; gap: 18px; }
  .foot { display: grid; gap: 22px; }
  .tnav { flex-wrap: wrap; }
  .capbox .h-captcha { transform: scale(.72); }
  .form-sec form.card { padding: 20px 16px; }
  .prow .pv { font-size: 24px; }
}

/* ── phone hero order: kicker, headline, mockup, then the copy ── */
@media (max-width: 980px) {
  .hero-grid { display: flex; flex-direction: column; }
  .hero-copy { display: contents; }
  .hero-copy .kicker { order: 1; }
  .hero-copy .h-display { order: 2; }
  .hero-mock { order: 3; margin: clamp(22px, 5vw, 34px) 0 clamp(4px, 2vw, 14px); }
  .hero-copy .hero-sub { order: 4; }
  .hero-copy .hero-row { order: 5; margin-top: var(--u); }
  .hero-copy .rating { order: 6; }
  .hero-copy .micro { order: 7; }
}

/* ── phone: the gradient poster panels get real side padding ── */
@media (max-width: 620px) {
  .poster .wrap, .close-poster .wrap { padding-left: var(--edge); padding-right: var(--edge); }
  .poster .big { font-size: clamp(24px, 6.6vw, 32px); max-width: none; }
  .poster .small { font-size: 15px; line-height: 25px; max-width: none; }
  .close-poster h2 { font-size: clamp(24px, 6.6vw, 32px); max-width: none; }
  .close-poster .ps { font-size: 15px; line-height: 25px; max-width: none; }
  .poster .hero-row { display: grid; gap: 10px; }
  .poster .hero-row .btn, .close-poster .btn { width: 100%; justify-content: center; }
}

/* the brand name stays visible at every phone width */
@media (max-width: 420px) { .brand-name { display: block; } }

/* ── phone: force single-column even where a page sets columns inline ── */
@media (max-width: 760px) {
  .plans, .plans-3, .qa, .calc, .calc-in, .proof, .svc, .cards, .steps,
  .band3-in, .stat3, .ba, .form-grid, .split, .story {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .plan, .qa > div, .calc-in > div { min-width: 0; }
  .hl { flex-wrap: wrap; }
  .hl s { white-space: nowrap; }
  .amt-row { flex-wrap: wrap; row-gap: 4px; }
  .per { white-space: normal; }
}

/* ── phone: long CTA labels wrap instead of being clipped ── */
@media (max-width: 620px) {
  .hero-row .btn, .callrow .btn, .band .acts .btn, .poster .btn, .close-poster .btn,
  .plan .btn, .calc-out .btn, .maint .btn, .prow .btn {
    white-space: normal; text-align: center; line-height: 1.25;
    height: auto; min-height: 46px; padding-top: 12px; padding-bottom: 12px;
  }
  .band .acts { display: grid; gap: 10px; }
  .band .acts .btn { width: 100%; }
  .plan .btn, .maint .btn { width: 100%; }
}

/* ── phone: testimonial rail clips its cards instead of spilling off-screen ── */
@media (max-width: 760px) {
  .tslider { overflow: hidden; }
  .ttrack { flex-wrap: nowrap; }
  .ttrack > .tcard { flex: 0 0 100%; min-width: 0; }
}

/* ── phone: blog cards may go narrower than their 320px minimum ── */
@media (max-width: 760px) {
  .posts { grid-template-columns: minmax(0, 1fr) !important; }
  .posts > a { min-width: 0; }
}

/* ── meta-ads: the note above the figures kept its desktop negative margin ── */
@media (max-width: 760px) {
  .stat3 { margin-top: var(--u); }
  .note + .stat3 { margin-top: var(--u); }
}

/* ── phone: the reviews link and slider controls wrap instead of forcing width ── */
@media (max-width: 620px) {
  .btn { max-width: 100%; }
  .sec .btn-ghost { white-space: normal; text-align: center; line-height: 1.25;
    height: auto; min-height: 44px; padding-top: 11px; padding-bottom: 11px; }
  .tnav { flex-wrap: wrap; row-gap: 12px; }
  .tdots { flex-wrap: wrap; }
}

/* ── phone: the closing band lays out as one full-width column (no label-driven overflow) ── */
@media (max-width: 620px) {
  .band .wrap { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .band .wrap > div { min-width: 0; max-width: 100%; }
  .band h2 { font-size: clamp(24px, 7vw, 32px); max-width: none; }
  .band p { max-width: none; }
  .band .acts { grid-template-columns: minmax(0, 1fr); }
  .band .acts .btn { min-width: 0; max-width: 100%; justify-content: center; }
}

/* ══════════ step-by-step lead wizard ══════════ */
.wiz {
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(18px, 2.2vw, 26px); display: grid; gap: 18px; align-content: start;
  position: relative; overflow: hidden;
}
.wiz::before { content: ''; position: absolute; inset: 0 0 auto; height: 2px; background: var(--grad); }

.wiz-top { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 14px; }
.wiz-count { font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--dim-2); font-variant-numeric: tabular-nums; white-space: nowrap; }
.wiz-count b { color: var(--white); }
.wiz-track { display: block; height: 2px; background: var(--line); overflow: hidden; }
.wiz-fill { display: block; height: 100%; background: var(--grad); transition: width .3s cubic-bezier(.22,.8,.3,1); }
@media (prefers-reduced-motion: reduce) { .wiz-fill { transition: none; } }

.wiz-body { display: grid; gap: 13px; align-content: start; }
.wiz-q { font-size: clamp(19px, 2.1vw, 24px); line-height: 1.2; margin: 0; letter-spacing: -.018em; max-width: 30ch; }
.wiz-help { margin: -3px 0 0; color: var(--dim); font-size: 14px; line-height: 21px; max-width: 48ch; }

.wiz-opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 8px; }
.wiz-opt {
  display: grid; grid-template-columns: 15px minmax(0, 1fr); gap: 11px; align-items: center;
  min-height: 46px; padding: 10px 13px; cursor: pointer;
  background: var(--surface-2); border: 1px solid var(--line);
  font-size: 14.5px; line-height: 20px; font-weight: 400; text-transform: none;
  letter-spacing: 0; color: var(--white);
  transition: border-color .14s ease, background .14s ease, transform .14s ease;
}
.wiz-opt:hover { border-color: var(--line-2); background: #16202f; transform: translateY(-1px); }
.wiz-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.wiz-opt:focus-within { outline: 2px solid var(--cyan); outline-offset: 2px; }
.wiz-tick { width: 15px; height: 15px; border: 1px solid var(--line-2); display: block; position: relative; }
.wiz-opt.is-on { border-color: var(--blue); background: rgba(47,143,239,.11); }
.wiz-opt.is-on .wiz-tick { border-color: var(--blue); background: var(--blue); }
.wiz-opt.is-on .wiz-tick::after {
  content: ''; position: absolute; left: 3px; top: 3px; width: 7px; height: 4px;
  border-left: 2px solid var(--white); border-bottom: 2px solid var(--white); transform: rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) { .wiz-opt:hover { transform: none; } }
.wiz-opt.has-sub { min-height: 62px; align-items: start; }
.wiz-opt.has-sub .wiz-tick { margin-top: 2px; }
.wiz-opt em { display: block; font-style: normal; font-size: 12.5px; line-height: 17px; color: var(--dim-2); margin-top: 3px; }
.wiz-other, .wiz-text { max-width: 380px; }

.wiz-seg { display: inline-grid; grid-auto-flow: column; border: 1px solid var(--line); background: var(--surface-2); }
.wiz-seg button {
  font: inherit; font-size: 13.5px; font-weight: 600; color: var(--dim);
  background: none; border: 0; padding: 0 18px; min-height: 42px; cursor: pointer;
  transition: background .14s ease, color .14s ease;
}
.wiz-seg button.is-on { background: var(--white); color: var(--ink); }

.wiz-money { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 2px; }
.wiz-step {
  width: 42px; height: 42px; flex: none; font: inherit; font-size: 20px; line-height: 1;
  color: var(--white); background: var(--surface-2); border: 1px solid var(--line-2); cursor: pointer;
}
.wiz-step:hover { border-color: var(--cyan); color: var(--cyan); }
.wiz-amount { display: flex; align-items: baseline; gap: 4px; min-width: 0; }
.wiz-amount i {
  font-style: normal; font-size: 20px; font-weight: 600; color: var(--dim);
  align-self: flex-start; margin-top: 4px;
}
.wiz-amount input {
  font: inherit; font-size: clamp(32px, 5vw, 42px); font-weight: 700; letter-spacing: -.035em;
  line-height: 1; color: var(--white); background: none; border: 0; padding: 0;
  width: 4.4ch; min-width: 0; font-variant-numeric: tabular-nums;
  background-image: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.wiz-amount input::-webkit-outer-spin-button, .wiz-amount input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.wiz-amount input[type=number] { -moz-appearance: textfield; }
.wiz-amount > span { color: var(--dim); font-size: 14px; }

.wiz-range { -webkit-appearance: none; appearance: none; width: 100%; max-width: 440px; height: 28px; background: none; margin: 0; }
.wiz-range::-webkit-slider-runnable-track { height: 2px; background: var(--line-2); }
.wiz-range::-moz-range-track { height: 2px; background: var(--line-2); }
.wiz-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); border: 0; margin-top: -9px; cursor: pointer;
}
.wiz-range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 0; cursor: pointer; }
.wiz-note { margin: -6px 0 0; color: var(--dim-2); font-size: 13px; line-height: 20px; max-width: 52ch; }

.wiz-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; align-items: start; }
.wiz-fields > div { display: block; }
.wiz-fields .input { width: 100%; }
.wiz-fields label {
  display: block; align-self: end; font-size: 11.5px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--dim-2); margin-bottom: 6px;
}
.wiz .consent { gap: 10px; align-items: start; }
.wiz .consent label { font-size: 12.5px; line-height: 19px; letter-spacing: 0; text-transform: none; color: var(--dim); }
.wiz .consent + .consent { margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--line); }
.wiz .capbox { margin: 4px 0 2px; min-height: 80px; }
.wiz .h-captcha { max-width: 100%; overflow: hidden; }
.wiz .h-captcha iframe { max-width: 100%; }

.wiz-foot { display: grid; grid-template-columns: auto 1fr; gap: 10px 14px; align-items: center; }
.wiz-foot [data-next] { justify-self: start; }
.wiz-msg { grid-column: 1 / -1; margin: 0; min-height: 18px; font-size: 13px; }


@media (max-width: 620px) {
  .wiz { padding: 18px 16px; gap: 16px; }
  .wiz-opts { grid-template-columns: minmax(0, 1fr); }
  .wiz-fields { grid-template-columns: minmax(0, 1fr); }
  .wiz-fields > div { grid-template-rows: auto auto; }
  .wiz-foot { grid-template-columns: minmax(0, 1fr); }
  .wiz-foot > .btn { width: 100%; justify-content: center; }
  .wiz-foot [data-next] { justify-self: stretch; }
  .wiz-seg { display: grid; grid-auto-flow: row; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .wiz-money { gap: 10px; }
}
