:root {
  --navy-950: #050d18;
  --navy-900: #07111f;
  --navy-800: #0c1a2b;
  --ink: #142033;
  --ink-soft: #536176;
  --silver: #667386;
  --silver-light: #c7cfda;
  --line: #dce3ec;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --cyan: #08c9ef;
  --blue: #087cff;
  --violet: #8424f2;
  --green: #0a9d73;
  --danger: #d94b63;
  --gradient: linear-gradient(110deg, var(--cyan), var(--blue) 54%, var(--violet));
  --shadow-sm: 0 12px 35px rgba(12, 26, 43, 0.09);
  --shadow-lg: 0 28px 80px rgba(5, 13, 24, 0.2);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(8, 124, 255, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 15px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.narrow { width: min(780px, 100%); }
.center { margin-inline: auto; text-align: center; }

section { padding: clamp(68px, 8vw, 112px) 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--navy-900); color: white; }
.section-dark p { color: #bdc8d8; }

h1, h2, h3, h4 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.55rem, 6.1vw, 5.3rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.55rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: -0.02em; }
p { margin: 0 0 18px; color: var(--ink-soft); }
.lead { max-width: 64ch; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.section-dark .lead { color: #cad4e2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #057aa1;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--gradient);
  content: "";
}

.section-dark .eyebrow { color: #7ce7fa; }
.gradient-text {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 58px); }
.section-head.center { margin-inline: auto; }

/* Header */
.announcement {
  padding: 8px 20px;
  color: white;
  background: linear-gradient(90deg, #056586, #087cff 50%, #6720b8);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
}

.announcement a { margin-left: 8px; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  transform: rotate(45deg);
  border: 5px solid transparent;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  box-shadow: 0 0 18px rgba(8, 124, 255, 0.28);
}

.brand-word { font-family: "Space Grotesk", sans-serif; font-size: 1.5rem; font-weight: 780; letter-spacing: -0.055em; }
.brand-remedy { color: var(--silver); }
.brand-labz { background: linear-gradient(100deg, #00a9d4, var(--blue)); background-clip: text; -webkit-background-clip: text; color: transparent; }

.primary-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.primary-nav a { position: relative; color: #344155; text-decoration: none; font-size: 0.91rem; font-weight: 650; }
.primary-nav a:not(.btn)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; transform: scaleX(0); background: var(--gradient); content: ""; transition: transform 180ms ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--ink); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
}

.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); }

/* Buttons */
.btn-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 29px; }
.btn {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #03131c; background: var(--cyan); box-shadow: 0 10px 28px rgba(8, 201, 239, 0.24); }
.btn-primary:hover { box-shadow: 0 15px 38px rgba(8, 201, 239, 0.34); }
.btn-dark { color: white; background: var(--navy-900); box-shadow: 0 10px 28px rgba(5, 13, 24, 0.18); }
.btn-outline { border-color: #aeb9c8; color: var(--ink); background: rgba(255, 255, 255, 0.76); }
.btn-outline:hover { border-color: var(--blue); }
.btn-light { color: var(--navy-900); background: white; }
.btn-sm { min-height: 42px; padding: 10px 16px; font-size: 0.85rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #0667bd; font-weight: 800; text-decoration: none; }
.text-link::after { content: "→"; transition: transform 160ms ease; }
.text-link:hover::after { transform: translateX(4px); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(3, 11, 22, .98) 0%, rgba(3, 11, 22, .9) 38%, rgba(3, 11, 22, .28) 68%, rgba(3, 11, 22, .08) 100%),
    image-set(url('/assets/home-hero-brand-v4.webp') type('image/webp'), url('/assets/home-hero-brand-v4.png') type('image/png')) center / cover no-repeat,
    var(--navy-950);
}

.hero::before, .hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(75px);
  pointer-events: none;
}

.hero::before { top: -180px; right: 8%; width: 360px; height: 360px; background: rgba(8, 201, 239, 0.13); animation: drift 9s ease-in-out infinite alternate; }
.hero::after { bottom: -190px; left: 38%; width: 330px; height: 330px; background: rgba(132, 36, 242, 0.12); animation: drift 11s ease-in-out infinite alternate-reverse; }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.hero-copy { grid-column: 1; }
.hero p { color: #c5d0df; }
.hero-world-map {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -5%;
  left: 0;
  display: block;
  height: 68%;
  overflow: hidden;
  opacity: .27;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.2) 22%, #000 66%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.2) 22%, #000 66%);
  animation: map-pulse 6s ease-in-out infinite alternate;
}
.hero-world-map img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; mix-blend-mode: screen; }
.hero-art { position: relative; align-self: end; opacity: .96; filter: saturate(.96); mask-image: linear-gradient(to left, transparent 0%, #000 8%, #000 94%, transparent 100%); -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 8%, #000 94%, transparent 100%); }
.hero-art img { border: 0; border-radius: 20px; box-shadow: none; mix-blend-mode: normal; }
.hero-art::after { position: absolute; right: 12%; bottom: 0; left: 12%; height: 18%; border-radius: 50%; background: rgba(8, 124, 255, 0.2); content: ""; filter: blur(34px); }
.trust-line { display: flex; align-items: center; gap: 9px; margin-top: 25px; color: #9fb0c5; font-size: 0.86rem; }
.trust-line::before { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); content: ""; box-shadow: 0 0 0 5px rgba(8, 201, 239, 0.1); }

.page-hero {
  display: flex;
  min-height: clamp(430px, 43vw, 610px);
  align-items: center;
  padding: clamp(58px, 7vw, 88px) 0;
  color: white;
  background-color: var(--navy-950);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body[data-page="services"] .page-hero {
  background-image: linear-gradient(90deg, rgba(3,11,22,.98) 0%, rgba(3,11,22,.88) 40%, rgba(3,11,22,.16) 64%, rgba(3,11,22,.04) 100%), image-set(url('/assets/services-cars-hero-v2.webp') type('image/webp'), url('/assets/services-cars-hero-v2.png') type('image/png'));
}
body[data-page="solutions"] .page-hero {
  background-image: linear-gradient(90deg, rgba(3,11,22,.99) 0%, rgba(3,11,22,.92) 43%, rgba(3,11,22,.32) 59%, rgba(3,11,22,.12) 100%), image-set(url('/assets/solutions-business-hero-v4.webp') type('image/webp'), url('/assets/solutions-business-hero-v4.png') type('image/png'));
  background-position: center;
  background-size: cover;
}
body[data-page="products"] .page-hero {
  background-image: linear-gradient(90deg, rgba(3,11,22,.99) 0%, rgba(3,11,22,.92) 43%, rgba(3,11,22,.32) 59%, rgba(3,11,22,.12) 100%), image-set(url('/assets/products-system-hero-v4.webp') type('image/webp'), url('/assets/products-system-hero-v4.png') type('image/png'));
  background-position: center;
  background-size: cover;
}
.page-hero h1 { max-width: 15ch; font-size: clamp(2.5rem, 5vw, 4.75rem); }
.page-hero .lead { max-width: 55ch; color: #c8d3e1; }

/* Grids and cards */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(38px, 7vw, 94px); align-items: center; }

.card {
  position: relative;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.card:hover { transform: translateY(-5px); border-color: #b7c9dd; box-shadow: var(--shadow-sm); }
.card p:last-child { margin-bottom: 0; }
.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(8, 124, 255, 0.17);
  border-radius: 14px;
  color: #0576c9;
  background: linear-gradient(145deg, rgba(8, 201, 239, 0.11), rgba(132, 36, 242, 0.07));
  font-family: "Space Grotesk", sans-serif;
  font-weight: 850;
}

.problem-card { padding-left: 66px; }
.problem-card::before { position: absolute; top: 29px; left: 28px; display: grid; width: 25px; height: 25px; place-items: center; border-radius: 8px; color: var(--danger); background: rgba(217, 75, 99, 0.1); content: "×"; font-weight: 900; }

.dark-card { border-color: rgba(255,255,255,.11); color: white; background: linear-gradient(150deg, #10223a, #091527); }
.dark-card p { color: #afbdd0; }

/* Steps */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps::before { position: absolute; top: 20px; right: 12%; left: 12%; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--gradient); content: ""; opacity: 0.55; transition: transform 1.1s ease; }
.steps.is-visible::before { transform: scaleX(1); }
.step { position: relative; z-index: 1; }
.step-num { display: grid; width: 42px; height: 42px; margin-bottom: 22px; place-items: center; border: 1px solid rgba(8, 201, 239, 0.32); border-radius: 50%; color: var(--cyan); background: var(--navy-900); font-size: 0.82rem; font-weight: 850; }

/* Proof */
.status-list { display: grid; gap: 2px; margin: 20px 0 0; }
.status-row { display: grid; grid-template-columns: 13px 1fr auto; gap: 13px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: 0; }
.status-dot { width: 9px; height: 9px; margin-top: 8px; border-radius: 50%; }
.status-dot.bad { background: var(--danger); box-shadow: 0 0 0 4px rgba(217,75,99,.1); }
.status-dot.good { background: var(--green); box-shadow: 0 0 0 4px rgba(10,157,115,.1); }
.status-pill { padding: 4px 9px; border-radius: 99px; font-size: .72rem; font-weight: 800; }
.status-pill.bad { color: #b72c47; background: #fff0f3; }
.status-pill.good { color: #087a5a; background: #e9faf4; }

/* Plans */
.plan { display: flex; flex-direction: column; }
.plan.featured { border: 2px solid var(--blue); box-shadow: 0 22px 65px rgba(8,124,255,.13); }
.plan-label { align-self: flex-start; margin: -42px 0 19px; padding: 6px 11px; border-radius: 99px; color: white; background: var(--gradient); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.plan-kicker { color: #0872c3; font-size: .79rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.plan-price { display: inline-flex; align-self: flex-start; align-items: baseline; gap: 6px; margin: 2px 0 13px; padding: 8px 12px; border: 1px solid rgba(8,124,255,.22); border-radius: 10px; color: #075f9e; background: linear-gradient(135deg, rgba(8,201,239,.1), rgba(132,36,242,.06)); font-size: .88rem; font-weight: 750; }
.plan-price strong { color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; }
.plan ul, .check-list { margin: 8px 0 25px; padding: 0; list-style: none; }
.plan li, .check-list li { position: relative; padding: 8px 0 8px 26px; color: var(--ink-soft); }
.plan li::before, .check-list li::before { position: absolute; top: 10px; left: 0; color: #078cb5; content: "✓"; font-weight: 900; }
.plan .btn { width: 100%; margin-top: auto; }

/* CTA */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(38px, 6vw, 70px); color: white; background: radial-gradient(circle at 90% 0%, rgba(8,201,239,.2), transparent 35%), linear-gradient(125deg, #07111f, #0e2850 68%, #201145); box-shadow: var(--shadow-lg); }
.cta-band::after { position: absolute; right: -60px; bottom: -100px; width: 250px; height: 250px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; content: ""; }
.cta-band p { max-width: 62ch; color: #c6d1df; }

/* Forms */
.form-shell { padding: clamp(25px, 4vw, 45px); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .group-label { color: #26354a; font-size: .87rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,124,255,.1); outline: 0; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; }
.check { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: .91rem; }
.check input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--blue); }
.form-section { margin: 0 0 32px; padding: 0 0 31px; border: 0; border-bottom: 1px solid var(--line); }
.form-section legend { margin-bottom: 19px; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 1.23rem; font-weight: 750; }
.form-note { font-size: .78rem; color: #66758a; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 21px 45px 21px 0; cursor: pointer; list-style: none; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 20px; right: 8px; color: var(--blue); content: "+"; font-size: 1.45rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 75ch; padding: 0 42px 18px 0; }

/* Footer */
.site-footer { padding: 65px 0 25px; color: white; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 45px; }
.site-footer p, .site-footer a { color: #9eacc0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: white; }
.footer-title { margin-bottom: 14px; color: white; font-family: "Space Grotesk", sans-serif; font-weight: 800; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 47px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); color: #78879c; font-size: .78rem; }

/* Popup */
.popup-backdrop { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; background: rgba(5,13,24,.68); backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: opacity 200ms ease, visibility 200ms ease; }
.popup-backdrop.show { opacity: 1; visibility: visible; }
.popup { position: relative; width: min(540px, 100%); padding: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); color: white; background: radial-gradient(circle at 80% 0%, rgba(8,124,255,.25), transparent 35%), var(--navy-900); box-shadow: 0 30px 100px rgba(0,0,0,.42); transform: translateY(18px) scale(.98); transition: transform 220ms ease; }
.popup-backdrop.show .popup { transform: none; }
.popup p { color: #b9c5d6; }
.popup-close { position: absolute; top: 13px; right: 13px; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: white; background: transparent; cursor: pointer; font-size: 1.3rem; }
.popup-form { display: flex; gap: 10px; }
.popup-form input { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: 12px 14px; color: white; background: rgba(255,255,255,.07); }
.popup .form-note { margin-top: 12px; color: #8393a9; }

.mobile-quote { position: fixed; right: 15px; bottom: 15px; left: 15px; z-index: 90; display: none; }

/* Animations */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 620ms ease, transform 620ms cubic-bezier(.22,.61,.36,1); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.stagger > * { transition-delay: calc(var(--i, 0) * 85ms); }
.hero-copy > * { opacity: 0; animation: rise-in 650ms ease forwards; }
.hero-copy > *:nth-child(2) { animation-delay: 80ms; }
.hero-copy > *:nth-child(3) { animation-delay: 170ms; }
.hero-copy > *:nth-child(4) { animation-delay: 250ms; }
.hero-copy > *:nth-child(5) { animation-delay: 330ms; }
.hero-art { opacity: 0; animation: art-in 850ms 180ms cubic-bezier(.22,.61,.36,1) forwards; }
@keyframes rise-in { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }
@keyframes art-in { to { opacity: 1; transform: translateX(0) scale(1); } from { opacity: 0; transform: translateX(25px) scale(.98); } }
@keyframes drift { to { transform: translate3d(30px, 22px, 0) scale(1.08); } }
@keyframes map-pulse { from { opacity: .21; transform: scale(1); } to { opacity: .31; transform: scale(1.015); } }

/* Utility */
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.pill { display: inline-flex; padding: 6px 11px; border-radius: 99px; color: #05698c; background: #eafaff; font-size: .74rem; font-weight: 800; }
.divider { height: 1px; margin: 26px 0; background: var(--line); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 28px; }

@media (max-width: 980px) {
  .primary-nav { position: fixed; inset: 109px 0 auto; display: none; max-height: calc(100vh - 109px); overflow: auto; padding: 26px 20px 35px; flex-direction: column; align-items: stretch; gap: 0; border-top: 1px solid var(--line); background: white; box-shadow: 0 25px 50px rgba(5,13,24,.14); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 5px; font-size: 1rem; }
  .primary-nav .btn { margin-top: 13px; }
  .menu-toggle { display: block; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { background-position: 62% center; }
  .hero-art { width: min(740px, 100%); margin-top: 10px; }
  .hero-world-map { height: 54%; opacity: .2; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { width: min(100% - 30px, var(--max-width)); }
  .announcement { padding: 7px 12px; font-size: .75rem; }
  .announcement a { display: inline-block; }
  .nav-shell { min-height: 68px; }
  .primary-nav { inset: 99px 0 auto; max-height: calc(100vh - 99px); }
  .brand-word { font-size: 1.3rem; }
  .brand-mark { width: 26px; height: 26px; border-width: 4px; }
  .hero { padding-top: 52px; background-image: linear-gradient(90deg, rgba(3,11,22,.98), rgba(3,11,22,.78)), image-set(url('/assets/home-hero-brand-v4.webp') type('image/webp'), url('/assets/home-hero-brand-v4.png') type('image/png')); background-position: 68% center; }
  .page-hero { min-height: 520px; background-position: 68% center; }
  body[data-page="services"] .page-hero,
  body[data-page="solutions"] .page-hero,
  body[data-page="products"] .page-hero { background-image: linear-gradient(90deg, rgba(3,11,22,.97), rgba(3,11,22,.72)), var(--page-hero-image); }
  body[data-page="services"] .page-hero { --page-hero-image: image-set(url('/assets/services-cars-hero-v2.webp') type('image/webp'), url('/assets/services-cars-hero-v2.png') type('image/png')); }
  body[data-page="solutions"] .page-hero { --page-hero-image: image-set(url('/assets/solutions-business-hero-v4.webp') type('image/webp'), url('/assets/solutions-business-hero-v4.png') type('image/png')); }
  body[data-page="products"] .page-hero { --page-hero-image: image-set(url('/assets/products-system-hero-v4.webp') type('image/webp'), url('/assets/products-system-hero-v4.png') type('image/png')); }
  body[data-page="solutions"] .page-hero,
  body[data-page="products"] .page-hero { background-image: linear-gradient(90deg, rgba(3,11,22,.98), rgba(3,11,22,.8)), var(--page-hero-image); background-position: center; background-size: cover; }
  .hero-art img { border-radius: 17px; }
  .hero-world-map { height: 42%; bottom: 0; opacity: .16; }
  .grid-2, .grid-3, .grid-4, .form-grid, .checks, .steps, .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 23px; }
  .problem-card { padding-left: 59px; }
  .problem-card::before { left: 23px; }
  .form-shell { padding: 22px; }
  .field.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .popup { padding: 31px 22px 24px; }
  .popup-form { flex-direction: column; }
  .popup-form .btn { width: 100%; }
  .mobile-quote.visible { display: flex; }
}

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