/* ============================================================
   GTA ELECTRIC — Design System
   Dark premium engineering · volt-green · blueprint motif
   Spectral (serif display) · IBM Plex Mono · IBM Plex Sans
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #070a0f;
  --bg-1:      #0b1017;
  --bg-2:      #10161f;
  --bg-3:      #161e29;
  --line:      rgba(255,255,255,0.09);
  --line-2:    rgba(255,255,255,0.05);
  --grid:      rgba(120,170,230,0.06);
  --grid-2:    rgba(120,170,230,0.12);

  /* ink */
  --ink:       #eef3f7;
  --ink-2:     #c3ccd6;
  --ink-3:     #8a96a3;
  --muted:     #6b7785;

  /* accent — electric blue (primary) + orange (signal), from logo */
  --acc:       #2f86ff;
  --acc-br:    #5ea6ff;
  --acc-deep:  #1565cc;
  --acc-glow:  rgba(47,134,255,0.20);
  --acc-dim:   rgba(47,134,255,0.11);
  --orange:    #ff8c2b;
  --orange-br: #ffa64d;
  --orange-dim:rgba(255,140,43,0.12);
  --amber:     #ffb43c;
  --ink-on-acc:#04121f;

  /* geometry */
  --r:         5px;
  --r-lg:      9px;
  --maxw:      1240px;
  --gutter:    clamp(20px, 5vw, 64px);

  /* type */
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --mono:  'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --sans:  'IBM Plex Sans', system-ui, -apple-system, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- blueprint background ---------- */
.blueprint {
  position: relative;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(var(--grid-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-2) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px, 140px 140px, 140px 140px;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
}
.blueprint--soft {
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 940px; }
section { position: relative; }
.sec { padding-block: clamp(64px, 9vw, 132px); }
.sec--tight { padding-block: clamp(48px, 6vw, 84px); }

.hr-tech {
  border: 0; height: 1px;
  background: var(--line);
  position: relative;
}
.hr-tech::before {
  content: ''; position: absolute; left: 0; top: -2px;
  width: 56px; height: 5px; background: var(--acc);
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acc-br);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--acc);
  display: inline-block;
}
.eyebrow--plain::before { display: none; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.06; letter-spacing: -0.01em; }
.display {
  font-size: clamp(2.7rem, 6.2vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
}
h2.h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); letter-spacing: -0.02em; }
h3.h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.lede { font-size: clamp(1.06rem, 1.5vw, 1.28rem); color: var(--ink-2); line-height: 1.6; }
.serif-accent { font-style: italic; color: var(--acc-br); }
.serif-orange { font-style: italic; color: var(--orange-br); }
.txt-orange { color: var(--orange-br); }
.eyebrow--orange { color: var(--orange-br); }
.eyebrow--orange::before { background: var(--orange); }
p { text-wrap: pretty; }
.measure { max-width: 64ch; }
.measure-sm { max-width: 52ch; }

/* direct-answer block (AEO/GEO) */
.answer {
  border-left: 2px solid var(--acc);
  padding: 4px 0 4px 22px;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.62;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  max-width: 68ch;
}

/* ---------- mono utilities ---------- */
.mono { font-family: var(--mono); }
.kbd-label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.coord {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--ink-3);
  opacity: .7;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--mono); font-weight: 500;
  font-size: .82rem; letter-spacing: .06em;
  padding: 14px 22px; border-radius: var(--r);
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--acc-br); outline-offset: 3px; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn-accent {
  background: var(--acc); color: var(--ink-on-acc); font-weight: 600;
  box-shadow: 0 0 0 1px var(--acc), 0 10px 30px -12px var(--acc-glow);
}
.btn-accent:hover { background: var(--acc-br); transform: translateY(-1px); box-shadow: 0 0 0 1px var(--acc-br), 0 14px 34px -10px var(--acc-glow); }

.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,0.01); }
.btn-ghost:hover { border-color: var(--acc); color: var(--acc-br); background: var(--acc-dim); }

.btn-sm { padding: 10px 15px; font-size: .76rem; }
.btn-block { width: 100%; justify-content: center; }

.link-mono {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .04em;
  color: var(--acc-br); display: inline-flex; align-items: center; gap: .5em;
}
.link-mono .arr { transition: transform .2s ease; }
.link-mono:hover .arr { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(7,10,15,0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-2);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--acc); border-radius: var(--r);
  background: var(--acc-dim);
  position: relative;
}
.brand-mark svg { width: 17px; height: 17px; }
.brand-name { font-family: var(--mono); font-weight: 600; letter-spacing: .12em; font-size: .92rem; color: var(--ink); }
.brand-name b { color: var(--acc-br); font-weight: 600; }
.brand-sub { font-family: var(--mono); font-size: .58rem; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .03em;
  color: var(--ink-2); padding: 9px 13px; border-radius: var(--r);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--acc-br); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-family: var(--mono); font-size: .82rem; color: var(--ink); display: inline-flex; align-items: center; gap: .5em; }
.nav-phone svg { width: 14px; height: 14px; color: var(--acc-br); }

.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); color: var(--ink); align-items: center; justify-content: center; }
.nav-toggle svg { width: 20px; height: 20px; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 280px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s, transform .16s, visibility .16s;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.8);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 11px 12px; border-radius: var(--r); }
.drop a strong { display: block; font-family: var(--sans); font-size: .92rem; color: var(--ink); font-weight: 600; }
.drop a span { font-family: var(--mono); font-size: .68rem; color: var(--muted); letter-spacing: .03em; }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 70px 0 0; z-index: 79;
  background: var(--bg); padding: 24px var(--gutter);
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--mono); font-size: 1.05rem; padding: 15px 4px; border-bottom: 1px solid var(--line-2); color: var(--ink); }
.mobile-menu .btn { margin-top: 20px; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin: 18px 0 24px; }
.hero .lede { max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

/* trust strip */
.trust {
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center;
  margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-item svg { width: 17px; height: 17px; color: var(--acc-br); flex: none; }
.trust-item span { font-family: var(--mono); font-size: .73rem; letter-spacing: .04em; color: var(--ink-2); line-height: 1.3; }
.trust-item b { color: var(--ink); font-weight: 600; }

/* ---------- image placeholder ---------- */
.ph {
  position: relative; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.022) 0 2px, transparent 2px 11px),
    var(--bg-2);
  display: grid; place-items: center; min-height: 220px;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  padding: 7px 13px; border: 1px dashed var(--line);
  border-radius: 100px; background: rgba(7,10,15,.5);
}
.ph .corner { position: absolute; width: 12px; height: 12px; border-color: var(--acc); opacity: .55; }
.ph .corner.tl { top: 9px; left: 9px; border-top: 1.5px solid; border-left: 1.5px solid; }
.ph .corner.tr { top: 9px; right: 9px; border-top: 1.5px solid; border-right: 1.5px solid; }
.ph .corner.bl { bottom: 9px; left: 9px; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.ph .corner.br { bottom: 9px; right: 9px; border-bottom: 1.5px solid; border-right: 1.5px solid; }
.ph-tag {
  position: absolute; top: 11px; left: 11px; z-index: 2;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--acc-br); background: rgba(7,10,15,.7); padding: 4px 8px; border: 1px solid var(--acc-dim); border-radius: 4px;
}
.hero-ph { min-height: clamp(320px, 42vw, 520px); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--bg-1); padding: 30px 26px; position: relative; }
.stat .num { font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 3.4rem); color: var(--ink); font-weight: 600; line-height: 1; letter-spacing: -.02em; }
.stat .num .suf { color: var(--acc-br); }
.stat .lab { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 12px; line-height: 1.4; }

/* ---------- cards / services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px; position: relative;
  transition: border-color .2s, transform .2s, background .2s;
  display: flex; flex-direction: column;
}
.card:hover { border-color: var(--acc); transform: translateY(-3px); background: var(--bg-2); }
.card-num { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; color: var(--muted); }
.card-icon {
  width: 50px; height: 50px; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--acc-dim);
  display: grid; place-items: center; margin: 0 0 22px;
}
.card-icon svg { width: 25px; height: 25px; color: var(--acc-br); stroke-width: 1.5; }
.card h3 { margin-bottom: 11px; }
.card p { font-size: .98rem; color: var(--ink-2); }
.card .card-list { list-style: none; padding: 0; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.card .card-list li { font-family: var(--mono); font-size: .76rem; color: var(--ink-3); display: flex; gap: 9px; align-items: baseline; }
.card .card-list li::before { content: '+'; color: var(--acc); font-weight: 600; }
.card .card-foot { margin-top: auto; }

/* feature row */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.feature-row.flip .feature-media { order: -1; }
.spec-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec-list li { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec-list .k { font-family: var(--mono); font-size: .76rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.spec-list .v { color: var(--ink); font-weight: 500; text-align: right; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--line); }
.step .step-n { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; color: var(--acc-br); margin-bottom: 14px; }
.step h4 { font-size: 1.18rem; margin-bottom: 9px; }
.step p { font-size: .92rem; color: var(--ink-3); }

/* ---------- areas ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px,1fr)); gap: 10px; }
.area-chip {
  font-family: var(--mono); font-size: .82rem; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: border-color .18s, color .18s, background .18s;
}
.area-chip:hover { border-color: var(--acc); color: var(--acc-br); background: var(--acc-dim); }
.area-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); flex: none; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--ink);
  font-family: var(--serif); font-size: clamp(1.08rem,1.7vw,1.4rem); font-weight: 500;
  padding: 26px 48px 26px 0; position: relative; display: block; line-height: 1.3;
}
.faq-q:hover { color: var(--acc-br); }
.faq-q .ico { position: absolute; right: 4px; top: 28px; width: 18px; height: 18px; transition: transform .25s; color: var(--acc-br); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 48px 28px 0; color: var(--ink-2); max-width: 72ch; }
.faq-a-inner p + p { margin-top: 14px; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; color: var(--amber); }
.review p { font-family: var(--serif); font-size: 1.08rem; color: var(--ink); line-height: 1.5; }
.review .rv-by { margin-top: auto; padding-top: 20px; font-family: var(--mono); font-size: .74rem; color: var(--muted); letter-spacing: .04em; }
.review .rv-by b { color: var(--ink-2); display: block; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(180deg, var(--bg-1), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }

/* ---------- breadcrumb ---------- */
.crumb { font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; color: var(--muted); padding-top: 22px; display: flex; gap: 9px; flex-wrap: wrap; }
.crumb a:hover { color: var(--acc-br); }
.crumb .sep { color: var(--ink-3); }
.crumb span[aria-current] { color: var(--ink-2); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-1); padding-block: clamp(48px,6vw,80px) 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-col h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 18px; }
.foot-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: .92rem; color: var(--ink-2); }
.foot-col a:hover { color: var(--acc-br); }
.foot-nap { font-style: normal; font-size: .92rem; color: var(--ink-2); line-height: 1.8; }
.foot-nap a { color: var(--ink); }
.foot-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.badge { font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line); border-radius: 4px; padding: 6px 9px; display: inline-flex; gap: 7px; align-items: center; }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); }
.foot-social { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line); border-radius: 6px; padding: 8px 13px; transition: border-color .2s, color .2s; width: fit-content; }
.foot-social:hover { color: var(--ink); border-color: var(--acc); }
.foot-social svg { width: 17px; height: 17px; color: var(--acc-br); flex: none; }
.foot-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.foot-bottom p, .foot-bottom a { font-family: var(--mono); font-size: .7rem; letter-spacing: .04em; color: var(--muted); }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border-top: 1px solid var(--acc-dim);
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,.7);
}
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-family: var(--mono); font-size: .82rem; font-weight: 500; }
.sticky-cta .s-call { background: var(--bg-2); color: var(--ink); }
.sticky-cta .s-quote { background: var(--acc); color: var(--ink-on-acc); font-weight: 600; }
.sticky-cta svg { width: 16px; height: 16px; }

/* ---------- section header ---------- */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 48px; }
.sec-head .sh-left { max-width: 60ch; }
.sec-head h2 { margin-top: 16px; }
.sec-head p { margin-top: 16px; }

/* ---------- chips / pills ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: var(--ink-2); border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px; }
.pill--acc { color: var(--acc-br); border-color: var(--acc-dim); background: var(--acc-dim); }

/* fade-in on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.field .req { color: var(--acc-br); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 15px; transition: border-color .16s, box-shadow .16s;
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-dim); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* card selector */
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.choice {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px;
  background: var(--bg-2); cursor: pointer; transition: border-color .18s, background .18s, transform .18s;
  display: flex; flex-direction: column; gap: 12px; position: relative; text-align: left;
}
.choice:hover { border-color: var(--acc); transform: translateY(-2px); }
.choice.sel { border-color: var(--acc); background: var(--acc-dim); box-shadow: 0 0 0 1px var(--acc); }
.choice .ci { width: 42px; height: 42px; border-radius: var(--r); background: var(--acc-dim); display: grid; place-items: center; }
.choice .ci svg { width: 22px; height: 22px; color: var(--acc-br); stroke-width: 1.5; }
.choice strong { font-family: var(--sans); color: var(--ink); font-size: 1.05rem; }
.choice span { font-family: var(--mono); font-size: .72rem; color: var(--muted); letter-spacing: .03em; }
.choice .check { position: absolute; top: 16px; right: 16px; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; }
.choice.sel .check { background: var(--acc); border-color: var(--acc); }
.choice.sel .check svg { width: 12px; height: 12px; color: var(--ink-on-acc); opacity: 1; }
.choice .check svg { opacity: 0; }

/* progress */
.progress { display: flex; gap: 4px; margin-bottom: 8px; }
.progress .pstep { flex: 1; height: 4px; border-radius: 2px; background: var(--bg-3); overflow: hidden; }
.progress .pstep.done, .progress .pstep.active { background: var(--acc); }
.progress-labels { display: flex; justify-content: space-between; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.progress-labels span.cur { color: var(--acc-br); }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.step-head { margin-bottom: 26px; }
.step-head h3 { font-size: 1.5rem; margin-bottom: 8px; }
.step-head p { font-size: .92rem; color: var(--ink-3); }
.form-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 30px; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 4px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--acc); flex: none; }
.consent label { font-family: var(--sans); font-size: .82rem; color: var(--ink-3); text-transform: none; letter-spacing: 0; line-height: 1.5; }

.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success.show { display: block; animation: fadeUp .5s ease; }
.success-mark { width: 68px; height: 68px; border-radius: 50%; background: var(--acc-dim); border: 1px solid var(--acc); display: grid; place-items: center; margin: 0 auto 24px; }
.success-mark svg { width: 32px; height: 32px; color: var(--acc-br); }

/* trust strip near form */
.form-trust { display: grid; gap: 14px; }
.form-trust .ft-item { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-1); }
.form-trust .ft-item svg { width: 20px; height: 20px; color: var(--acc-br); flex: none; margin-top: 2px; }
.form-trust .ft-item strong { display: block; font-family: var(--sans); color: var(--ink); font-size: .94rem; }
.form-trust .ft-item span { font-family: var(--mono); font-size: .72rem; color: var(--muted); letter-spacing: .02em; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 960px) {
  .nav-links, .nav-phone span, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-ph { min-height: 320px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .cards { grid-template-columns: 1fr; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; }
  .feature-row.flip .feature-media { order: 0; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .reviews { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .sticky-cta { display: grid; }
  body { padding-bottom: 54px; }
}
@media (max-width: 620px) {
  .field-row, .choice-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}

/* ---------- form submit error ---------- */
.form-error {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--orange);
  border-radius: var(--r-lg);
  background: var(--orange-dim);
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.6;
}
.form-error strong { color: var(--orange-br); font-family: var(--sans); }
.form-error a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

