:root {
  --bg: #071017;
  --bg-soft: #0a141d;
  --surface: #0d1923;
  --surface-2: #101e29;
  --surface-3: #0a151e;
  --text: #f5fbfc;
  --text-soft: #d4dde1;
  --muted: #8797a2;
  --accent: #91e5ed;
  --accent-strong: #65d2de;
  --accent-soft: rgba(145, 229, 237, .10);
  --border: rgba(255, 255, 255, .09);
  --border-strong: rgba(145, 229, 237, .22);
  --shadow: 0 30px 100px rgba(0, 0, 0, .38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% -12%, rgba(145, 229, 237, .07), transparent 33%),
    var(--bg);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

::selection { background: var(--accent); color: #041015; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 44px), var(--max)); margin-inline: auto; }
.section-pad { padding: 116px 0; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 14px;
  top: -90px;
  background: var(--accent);
  color: #061116;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
}
.skip-link:focus { top: 14px; }

.announcement {
  background: #061017;
  border-bottom: 1px solid var(--border);
  color: #b7c5ca;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.announcement-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement span { display: inline-flex; align-items: center; gap: 8px; }
.announcement i { width: 6px; height: 6px; border-radius: 99px; background: var(--accent); box-shadow: 0 0 16px rgba(145,229,237,.72); }
.announcement a { color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  background: rgba(7, 16, 23, .82);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.nav-wrap { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #061116;
  background: linear-gradient(145deg, #e8fdff 0%, var(--accent) 54%, #73d7e1 100%);
  box-shadow: 0 12px 34px rgba(145,229,237,.12), inset 0 1px 0 rgba(255,255,255,.7);
  font-family: "Bebas Neue", sans-serif;
  font-size: 23px;
  letter-spacing: .035em;
}
.brand-mark.small { width: 36px; height: 36px; border-radius: 11px; font-size: 19px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Bebas Neue", sans-serif; font-weight: 400; font-size: 25px; letter-spacing: .045em; }
.brand-copy small { margin-top: 5px; color: var(--accent); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .34em; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { position: relative; color: #b7c3c8; font-size: 11px; font-weight: 700; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--accent); transition: right .25s ease; }
.site-nav > a:not(.nav-cta):hover { color: var(--text); }
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.site-nav .nav-cta { padding: 12px 18px; border: 1px solid rgba(145,229,237,.2); border-radius: 999px; background: var(--accent); color: #061116; box-shadow: 0 10px 30px rgba(145,229,237,.08); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface); padding: 0; place-items: center; }
.menu-toggle span { position: absolute; width: 20px; height: 1.5px; border-radius: 99px; background: var(--text); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 76%, transparent);
}
.hero-orb { position: absolute; border-radius: 999px; pointer-events: none; filter: blur(2px); }
.hero-orb-a { width: 650px; height: 650px; right: -260px; top: -170px; background: radial-gradient(circle, rgba(145,229,237,.16), transparent 67%); }
.hero-orb-b { width: 520px; height: 520px; left: -300px; bottom: -260px; background: radial-gradient(circle, rgba(145,229,237,.07), transparent 65%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 74px; }
.eyebrow { margin: 0 0 16px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero h1,
.split-heading h2,
.smartcare-copy h2,
.standards-copy h2,
.faq-heading h2,
.quote-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: .012em;
  line-height: .93;
}
.hero h1 { font-size: clamp(82px, 8.2vw, 126px); }
.hero h1 span { color: var(--accent); text-shadow: 0 0 50px rgba(145,229,237,.08); }
.hero-lede { max-width: 590px; margin: 28px 0 0; color: #b9c6cc; font-size: 16px; line-height: 1.8; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 14px; padding: 0 20px; font-size: 11px; font-weight: 800; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #061116; background: var(--accent); box-shadow: 0 16px 40px rgba(145,229,237,.09); }
.btn-primary:hover { background: #a6edf3; box-shadow: 0 18px 46px rgba(145,229,237,.15); }
.btn-secondary { color: var(--text); border-color: var(--border); background: rgba(255,255,255,.025); }
.btn-secondary:hover { border-color: rgba(145,229,237,.25); background: rgba(145,229,237,.045); }
.btn-quiet { min-height: 44px; color: var(--muted); border: 0; background: transparent; }
.btn-full { width: 100%; }
.hero-proof { display: flex; align-items: stretch; gap: 22px; margin-top: 44px; }
.proof-item { display: grid; gap: 4px; }
.proof-item strong { color: var(--text); font-family: "Bebas Neue", sans-serif; font-size: 25px; font-weight: 400; letter-spacing: .03em; }
.proof-item span { color: #71828d; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.proof-divider { width: 1px; background: var(--border); }

.hero-visual { position: relative; min-width: 0; }
.visual-frame {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border: 1px solid rgba(145,229,237,.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(145,229,237,.08), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.006)),
    var(--surface-3);
  box-shadow: var(--shadow);
}
.visual-frame::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); pointer-events: none; }
.visual-frame::after { content: ""; position: absolute; width: 160%; height: 1px; top: 0; left: -30%; background: linear-gradient(90deg, transparent, rgba(145,229,237,.8), transparent); animation: scanLine 6s ease-in-out infinite; opacity: .6; }
@keyframes scanLine { 0%,100% { transform: translateY(0); opacity: .12; } 50% { transform: translateY(545px); opacity: .55; } }
.visual-topline { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 26px; color: #748690; border-bottom: 1px solid var(--border); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; color: #bbd2d7; }
.live-pill i { width: 6px; height: 6px; border-radius: 99px; background: var(--accent); box-shadow: 0 0 12px rgba(145,229,237,.72); }
.vehicle-art { position: relative; min-height: 365px; display: grid; align-items: center; padding: 18px 24px 0; }
.vehicle-glow { position: absolute; left: 50%; bottom: 65px; width: 82%; height: 120px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(145,229,237,.17), transparent 66%); filter: blur(10px); }
.vehicle-art svg { position: relative; z-index: 1; width: 100%; overflow: visible; filter: drop-shadow(0 24px 35px rgba(0,0,0,.45)); }
.car-line { fill: rgba(145,229,237,.055); stroke: url(#bodyGradient); stroke-width: 3; stroke-linejoin: round; }
.glass-line { fill: rgba(145,229,237,.035); stroke: rgba(215,249,252,.52); stroke-width: 2; }
.highlight-line { fill: none; stroke: rgba(255,255,255,.22); stroke-width: 1.5; }
.wheel { fill: #070d12; stroke: rgba(145,229,237,.36); stroke-width: 3; }
.hub { fill: rgba(145,229,237,.09); stroke: rgba(214,251,254,.42); stroke-width: 2; }
.visual-pricing { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 20px; border: 1px solid var(--border); border-radius: 18px; background: rgba(7,16,23,.76); backdrop-filter: blur(16px); }
.visual-pricing > div:first-child { display: grid; gap: 3px; }
.visual-pricing span { color: #758791; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.visual-pricing strong { font-size: 15px; }
.price-lockup { display: flex; align-items: baseline; gap: 7px; }
.price-lockup strong { color: var(--accent); font-family: "Bebas Neue", sans-serif; font-size: 32px; font-weight: 400; letter-spacing: .03em; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; min-width: 205px; padding: 13px 15px; border: 1px solid rgba(145,229,237,.17); border-radius: 15px; background: rgba(10,21,30,.9); box-shadow: 0 16px 50px rgba(0,0,0,.32); backdrop-filter: blur(16px); }
.floating-card-a { left: -34px; bottom: 114px; }
.floating-card-b { right: -26px; top: 96px; }
.floating-icon { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 9px; color: #071017; background: var(--accent); font-size: 14px; }
.floating-card div { display: grid; gap: 2px; }
.floating-card strong { font-size: 10px; }
.floating-card div span { color: #7f929d; font-size: 8px; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; color: #5c6e78; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue i { width: 34px; height: 1px; background: linear-gradient(90deg, var(--accent), transparent); }

.service-marquee { overflow: hidden; border-bottom: 1px solid var(--border); background: #08121a; }
.marquee-track { width: max-content; min-height: 52px; display: flex; align-items: center; gap: 24px; padding-inline: 24px; animation: marquee 28s linear infinite; color: #6e808a; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.marquee-track b { color: var(--accent); font-size: 12px; font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

.split-heading { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 80px; margin-bottom: 54px; }
.split-heading h2 { max-width: 760px; font-size: clamp(52px, 5.2vw, 76px); }
.split-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { min-height: 390px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,.02), transparent), var(--surface-3); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(145,229,237,.2); background: linear-gradient(180deg, rgba(145,229,237,.045), transparent), var(--surface-3); }
.service-card-featured { border-color: rgba(145,229,237,.22); background: linear-gradient(155deg, rgba(145,229,237,.075), transparent 44%), var(--surface-3); }
.service-card-top { min-height: 28px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.service-index { color: #667984; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.service-tag { padding: 5px 8px; border-radius: 999px; color: var(--accent); background: var(--accent-soft); font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-icon { width: 55px; height: 55px; margin: 36px 0 30px; display: grid; place-items: center; border: 1px solid rgba(145,229,237,.13); border-radius: 16px; background: rgba(145,229,237,.035); }
.service-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 10px; font-family: "Bebas Neue", sans-serif; font-size: 30px; font-weight: 400; letter-spacing: .03em; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.service-card-bottom { margin-top: auto; padding-top: 26px; border-top: 1px solid var(--border); display: grid; gap: 8px; }
.service-card-bottom > span { color: #80929c; font-size: 11px; }
.service-card-bottom > span strong { color: var(--text); }
.service-card-bottom a { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }


.trust-strip { border-bottom: 1px solid var(--border); background: rgba(145,229,237,.015); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip-grid > div, .trust-strip-grid > a { min-height: 92px; display: grid; align-content: center; gap: 3px; padding: 18px 22px; border-right: 1px solid var(--border); }
.trust-strip-grid > :last-child { border-right: 0; }
.trust-strip strong { font-size: 12px; }
.trust-strip span { color: #7c8f99; font-size: 10px; line-height: 1.5; }
.trust-strip a:hover strong, .trust-strip a:hover span { color: var(--accent); }

.service-details { margin-top: 18px; overflow: visible; border: 0; border-radius: 0; background: transparent; }
.service-details summary { min-height: 36px; padding: 0 28px 0 0; color: #b8c6cc; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.service-details summary::after { right: 0; font-size: 17px; }
.service-details ul { margin: 8px 0 0; padding-left: 18px; color: #8799a3; font-size: 12px; line-height: 1.65; }
.service-details li + li { margin-top: 5px; }
label em { color: var(--accent); font-style: normal; }
label small { color: #667983; font-size: .82em; font-weight: 600; }

.pricing-section { position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.008); }
.pricing-shell { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface-3); }
.pricing-tabs { display: grid; grid-template-columns: repeat(4, 1fr); padding: 8px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.01); }
.pricing-tab { min-height: 47px; border: 0; border-radius: 12px; background: transparent; color: #748690; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; transition: background .2s ease, color .2s ease; }
.pricing-tab:hover { color: var(--text); }
.pricing-tab.active { background: rgba(145,229,237,.085); color: var(--accent); }
.pricing-panel { min-height: 330px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; padding: 46px 48px; }
.pricing-panel-copy { max-width: 410px; }
.mini-label { color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.pricing-panel h3 { margin: 12px 0 12px; font-family: "Bebas Neue", sans-serif; font-size: 40px; font-weight: 400; line-height: 1; letter-spacing: .02em; }
.pricing-panel p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.pricing-rows { display: grid; }
.pricing-row { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--border); }
.pricing-row:last-child { border-bottom: 0; }
.pricing-row span { color: #9cabb3; font-size: 13px; }
.pricing-row strong { color: var(--text); font-family: "Bebas Neue", sans-serif; font-size: 29px; font-weight: 400; letter-spacing: .025em; }
.estimate-card { margin-top: 16px; display: grid; grid-template-columns: .72fr 1.2fr .76fr; gap: 30px; align-items: center; padding: 30px; border: 1px solid rgba(145,229,237,.15); border-radius: var(--radius-lg); background: linear-gradient(125deg, rgba(145,229,237,.055), transparent 40%), var(--surface-3); }
.estimate-copy h3 { margin: 0 0 7px; font-family: "Bebas Neue", sans-serif; font-size: 30px; font-weight: 400; letter-spacing: .03em; }
.estimate-copy p:last-child { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.estimate-controls { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
label { display: grid; gap: 7px; color: #9aabb4; font-size: 12px; font-weight: 700; }
label > span { padding-left: 1px; }
select, input, textarea { width: 100%; border: 1px solid var(--border); border-radius: 12px; outline: none; background: #0b1720; color: var(--text); transition: border-color .2s ease, box-shadow .2s ease; }
select, input { min-height: 48px; padding: 0 13px; }
textarea { resize: vertical; min-height: 126px; padding: 13px; line-height: 1.6; }
select:focus, input:focus, textarea:focus { border-color: rgba(145,229,237,.5); box-shadow: 0 0 0 3px rgba(145,229,237,.065); }
input::placeholder, textarea::placeholder { color: #536570; }
.estimate-result { min-height: 142px; display: grid; align-content: center; justify-items: start; padding-left: 28px; border-left: 1px solid var(--border); }
.estimate-result > span { color: #72858f; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.estimate-result > strong { margin: 2px 0 0; color: var(--accent); font-family: "Bebas Neue", sans-serif; font-size: 43px; font-weight: 400; letter-spacing: .03em; line-height: 1; }
.estimate-result small { color: #80929c; font-size: 8px; }
.estimate-result a { margin-top: 12px; color: var(--text); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }

.smartcare-section { position: relative; overflow: hidden; }
.smartcare-orb { position: absolute; width: 820px; height: 820px; right: -410px; top: -250px; border-radius: 999px; background: radial-gradient(circle, rgba(145,229,237,.11), transparent 66%); }
.smartcare-grid { position: relative; display: grid; grid-template-columns: 1fr .8fr; gap: 100px; align-items: center; }
.smartcare-copy h2 { max-width: 710px; font-size: clamp(62px, 6.4vw, 92px); }
.smartcare-copy > p:not(.eyebrow) { max-width: 620px; margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.smartcare-points { display: grid; margin: 32px 0; border-top: 1px solid var(--border); }
.smartcare-points span { min-height: 54px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--border); color: #a9b7bd; font-size: 13px; }
.smartcare-points i { color: var(--accent); font-style: normal; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.smartcare-card { position: relative; min-height: 430px; overflow: hidden; padding: 30px; border: 1px solid rgba(145,229,237,.22); border-radius: 30px; background: linear-gradient(145deg, rgba(145,229,237,.15), rgba(145,229,237,.015) 45%, rgba(255,255,255,.02)), #0c1821; box-shadow: var(--shadow); transform: rotate(2deg); }
.smartcare-card::before { content: "+"; position: absolute; right: -18px; bottom: -118px; color: rgba(145,229,237,.06); font-family: "Bebas Neue", sans-serif; font-size: 330px; line-height: 1; }
.smartcare-card::after { content: ""; position: absolute; left: -20%; top: -70px; width: 140%; height: 130px; background: linear-gradient(180deg, rgba(255,255,255,.09), transparent); transform: rotate(-10deg); }
.smartcare-card-head { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.smartcare-card-head > span { color: var(--accent); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.smartcare-card-body { position: relative; z-index: 1; margin-top: 110px; }
.smartcare-card-body p { margin: 0 0 8px; color: #758992; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.smartcare-card-body strong { font-family: "Bebas Neue", sans-serif; font-size: 54px; font-weight: 400; line-height: .95; letter-spacing: .02em; }
.smartcare-card-foot { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #647983; font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }

.process-section { border-top: 1px solid var(--border); background: rgba(255,255,255,.007); }
.process-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.process-card { position: relative; min-height: 250px; padding: 30px 28px 24px 0; }
.process-card:not(:last-child) { border-right: 1px solid var(--border); margin-right: 28px; }
.process-number { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(145,229,237,.18); border-radius: 50%; color: var(--accent); background: rgba(145,229,237,.035); font-size: 9px; font-weight: 800; }
.process-card h3 { margin: 54px 0 8px; font-family: "Bebas Neue", sans-serif; font-size: 31px; font-weight: 400; letter-spacing: .03em; }
.process-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.standards-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.standards-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.standards-copy h2 { font-size: clamp(62px, 6.2vw, 88px); }
.standards-copy h2 span { color: var(--accent); }
.standards-list { border-top: 1px solid var(--border); }
.standards-list article { min-height: 128px; display: grid; grid-template-columns: 50px 1fr; gap: 20px; align-items: center; border-bottom: 1px solid var(--border); }
.standards-list article > span { color: var(--accent); font-size: 8px; font-weight: 800; }
.standards-list h3 { margin: 0 0 6px; font-size: 15px; }
.standards-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { font-size: clamp(62px, 6vw, 86px); }
.faq-heading > p:not(.eyebrow) { max-width: 380px; margin: 20px 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.text-link { color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.faq-list { display: grid; gap: 10px; }
details { overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: var(--surface-3); }
summary { min-height: 64px; display: flex; align-items: center; padding: 0 54px 0 20px; position: relative; cursor: pointer; list-style: none; font-size: 14px; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 20px; font-weight: 400; }
details[open] { border-color: rgba(145,229,237,.16); }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 54px 20px 20px; color: var(--muted); font-size: 13px; line-height: 1.75; }

.quote-section { position: relative; overflow: hidden; border-top: 1px solid var(--border); background: linear-gradient(180deg, rgba(145,229,237,.018), transparent 45%); }
.quote-glow { position: absolute; width: 720px; height: 720px; left: -400px; bottom: -480px; border-radius: 999px; background: radial-gradient(circle, rgba(145,229,237,.10), transparent 65%); }
.quote-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.quote-copy { position: sticky; top: 120px; }
.quote-copy h2 { max-width: 570px; font-size: clamp(66px, 6.2vw, 92px); }
.quote-copy > p:not(.eyebrow) { max-width: 460px; margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.quote-policy-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--border); border-radius: 15px; background: var(--border); }
.quote-policy-grid div { min-height: 92px; display: grid; align-content: center; gap: 3px; padding: 12px; background: var(--surface-3); }
.quote-policy-grid strong { color: var(--accent); font-family: "Bebas Neue", sans-serif; font-size: 22px; font-weight: 400; }
.quote-policy-grid span { color: #71848e; font-size: 10px; line-height: 1.5; text-transform: uppercase; letter-spacing: .05em; }
.quote-form { display: grid; gap: 17px; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-3); box-shadow: 0 20px 70px rgba(0,0,0,.18); }
.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.form-heading > span { font-family: "Bebas Neue", sans-serif; font-size: 26px; letter-spacing: .04em; }
.form-heading small { color: #657983; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-help { margin: -3px 0 0; color: #6f838d; text-align: center; font-size: 10px; line-height: 1.6; }
.message-panel { position: relative; margin-top: 18px; padding: 26px; border: 1px solid rgba(145,229,237,.18); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(145,229,237,.055), transparent 45%), var(--surface-3); }
.message-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.message-panel h3 { margin: 0; font-family: "Bebas Neue", sans-serif; font-size: 30px; font-weight: 400; letter-spacing: .03em; }
.icon-button { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 10px; background: rgba(255,255,255,.02); color: #8a9aa3; font-size: 19px; }
.message-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.message-help { margin: 12px 0 0; color: #71858f; font-size: 11px; line-height: 1.6; }

.site-footer { padding: 68px 0 24px; border-top: 1px solid var(--border); background: #050c11; }
.footer-top { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; }
.footer-brand-block > p { max-width: 350px; margin: 18px 0 0; color: #7a8c95; font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 38px; }
.footer-links > div { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 7px; color: #b3c0c6; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a { color: #71848e; font-size: 12px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { margin-top: 54px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--border); color: #60747e; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 62px; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 780px; }
  .hero h1 { font-size: clamp(82px, 14vw, 118px); }
  .scroll-cue { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 360px; }
  .estimate-card { grid-template-columns: 1fr 1fr; }
  .estimate-result { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--border); padding: 24px 0 0; min-height: 0; }
  .smartcare-grid { gap: 60px; }
  .standards-grid, .faq-grid, .quote-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .section-pad { padding: 88px 0; }
  .announcement-inner { justify-content: center; }
  .announcement a { display: none; }
  .menu-toggle { display: grid; position: relative; }
  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 120px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(7,16,23,.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .site-nav > a { padding: 13px 12px; border-radius: 10px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav > a:hover { background: rgba(255,255,255,.03); }
  .site-nav .nav-cta { text-align: center; margin-top: 5px; }
  .hero { padding-top: 76px; }
  .hero-grid { gap: 48px; }
  .hero-lede { font-size: 14px; }
  .visual-frame { min-height: 480px; }
  .vehicle-art { min-height: 310px; }
  .floating-card-a { left: 14px; bottom: 105px; }
  .floating-card-b { right: 14px; top: 82px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .split-heading > p { max-width: 620px; }
  .pricing-panel { grid-template-columns: 1fr; gap: 28px; padding: 34px 28px; }
  .pricing-tabs { grid-template-columns: repeat(2, 1fr); }
  .smartcare-grid, .standards-grid, .faq-grid, .quote-grid { grid-template-columns: 1fr; gap: 52px; }
  .smartcare-card { max-width: 580px; width: 100%; transform: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 0 28px; }
  .process-card:nth-child(2) { border-right: 0; margin-right: 0; }
  .faq-heading, .quote-copy { position: static; }
}

@media (max-width: 580px) {
  :root { --header-h: 68px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 76px 0; }
  .announcement { font-size: 8px; }
  .brand-mark { width: 39px; height: 39px; border-radius: 11px; font-size: 21px; }
  .brand-copy strong { font-size: 22px; }
  .hero { padding-top: 58px; }
  .hero h1 { font-size: clamp(72px, 24vw, 102px); }
  .hero-lede { margin-top: 22px; font-size: 13px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .proof-divider { display: none; }
  .proof-item strong { font-size: 20px; }
  .proof-item span { font-size: 7px; }
  .visual-frame { min-height: 390px; border-radius: 24px; }
  .vehicle-art { min-height: 250px; padding: 8px 12px 0; }
  .visual-pricing { left: 14px; right: 14px; bottom: 14px; padding: 15px; }
  .visual-pricing strong { font-size: 12px; }
  .price-lockup strong { font-size: 27px; }
  .floating-card { display: none; }
  .split-heading h2 { font-size: clamp(48px, 15vw, 65px); }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-grid > div, .trust-strip-grid > a { min-height: 86px; border-bottom: 1px solid var(--border); }
  .trust-strip-grid > :nth-child(2n) { border-right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .pricing-tabs { padding: 6px; }
  .pricing-tab { min-height: 45px; font-size: 10px; }
  .pricing-panel { min-height: 0; padding: 30px 20px; }
  .pricing-panel h3 { font-size: 35px; }
  .pricing-row { min-height: 64px; }
  .pricing-row span { font-size: 9px; }
  .pricing-row strong { font-size: 23px; }
  .estimate-card { grid-template-columns: 1fr; padding: 22px; }
  .estimate-controls { grid-template-columns: 1fr; }
  .estimate-result { grid-column: auto; }
  .smartcare-copy h2, .standards-copy h2, .faq-heading h2, .quote-copy h2 { font-size: clamp(56px, 17vw, 76px); }
  .smartcare-card { min-height: 380px; padding: 24px; }
  .smartcare-card-body { margin-top: 95px; }
  .smartcare-card-body strong { font-size: 47px; }
  .smartcare-card-foot { left: 24px; right: 24px; bottom: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 210px; padding: 25px 0; border-bottom: 1px solid var(--border); }
  .process-card:not(:last-child) { border-right: 0; margin-right: 0; }
  .process-card h3 { margin-top: 38px; }
  .standards-list article { grid-template-columns: 34px 1fr; }
  .quote-policy-grid { grid-template-columns: 1fr; }
  .quote-policy-grid div { min-height: 76px; }
  .field-row { grid-template-columns: 1fr; }
  .quote-form { padding: 20px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 2px; }
  .message-actions { display: grid; grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
