/* ============================================================
   SAFA GPS — landing styles
   Dark, professional SaaS look. No external deps (offline-safe).
   ============================================================ */

:root {
  --bg:        #0b1220;
  --bg-2:      #0e1626;
  --surface:   #111c30;
  --surface-2: #16233a;
  --border:    rgba(148, 163, 184, 0.14);
  --border-2:  rgba(148, 163, 184, 0.22);

  --text:      #e8eefb;
  --muted:     #9db0cc;
  --muted-2:   #6f819e;

  --primary:   #3b82f6;
  --primary-2: #38bdf8;
  --accent:    #22c55e;
  --danger:    #f87171;

  --grad: linear-gradient(120deg, #38bdf8 0%, #3b82f6 45%, #22c55e 110%);

  --radius:   16px;
  --radius-lg: 22px;
  --shadow:   0 20px 50px -20px rgba(0, 0, 0, 0.65);
  --shadow-sm: 0 8px 24px -12px rgba(0, 0, 0, 0.6);

  --maxw: 1160px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle page background */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(56, 189, 248, 0.12), transparent 60%),
    radial-gradient(800px 460px at 8% 12%, rgba(59, 130, 246, 0.10), transparent 55%),
    var(--bg);
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 14px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200;
}
.skip:focus { left: 0; }

/* ───────────────── Buttons ───────────────── */
.btn {
  --pad-y: 11px; --pad-x: 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 12px; border: 1px solid transparent;
  font-size: 15px; font-weight: 650; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { --pad-y: 14px; --pad-x: 24px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad); color: #04121f;
  box-shadow: 0 12px 30px -12px rgba(56, 189, 248, 0.6);
  font-weight: 750;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(56, 189, 248, 0.7); }

.btn-ghost {
  background: rgba(148, 163, 184, 0.06);
  border-color: var(--border-2); color: var(--text);
}
.btn-ghost:hover { background: rgba(148, 163, 184, 0.12); border-color: var(--primary-2); }

/* ───────────────── Header ───────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.72);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }
.brand b { color: var(--primary-2); font-weight: 800; }
.brand img { filter: drop-shadow(0 4px 10px rgba(56, 189, 248, 0.35)); }

.nav { display: flex; gap: 26px; margin-left: 10px; margin-right: auto; }
.nav a { color: var(--muted); font-size: 15px; font-weight: 550; transition: color .15s; }
.nav a:hover { color: var(--text); }

.header-cta { display: flex; gap: 10px; }

.burger { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; padding: 10px; }
.burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; margin: 4px 0; transition: .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 6px; padding: 14px 22px 22px; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.mobile-nav a { padding: 12px 10px; border-radius: 10px; color: var(--muted); font-weight: 600; }
.mobile-nav a:hover { background: rgba(148,163,184,.08); color: var(--text); }
.mobile-nav .btn { margin-top: 8px; color: #04121f; }

/* ───────────────── Hero ───────────────── */
.hero { position: relative; padding: 74px 0 84px; overflow: hidden; }
.hero-glow {
  position: absolute; width: 700px; height: 700px; right: -180px; top: -260px; z-index: 0;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin: 6px 0 18px; font-weight: 820; }
.lead { font-size: 18px; color: var(--muted); max-width: 540px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 18px 26px; padding: 0; margin: 30px 0 0; }
.hero-badges li { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 14.5px; font-weight: 550; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted-2); display: inline-block; }
.dot-live { background: var(--accent); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5);} 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0);} 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0);} }

/* Dashboard mockup */
.hero-visual { position: relative; }
.mock {
  border: 1px solid var(--border-2); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  box-shadow: var(--shadow); transform: perspective(1400px) rotateY(-8deg) rotateX(3deg);
}
.mock-top { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); }
.tl { width: 11px; height: 11px; border-radius: 50%; }
.tl.red { background: #ff5f57; } .tl.yellow { background: #febc2e; } .tl.green { background: #28c840; }
.mock-url { margin-left: 12px; font-size: 12.5px; color: var(--muted-2); font-family: ui-monospace, monospace; }
.mock-body { display: grid; grid-template-columns: 1.7fr 1fr; gap: 0; }
.mock-map { position: relative; background: var(--bg); min-height: 240px; }
.mock-map svg { width: 100%; height: 100%; display: block; }
.route-path { stroke-dasharray: 620; stroke-dashoffset: 620; animation: draw 3.2s ease forwards .3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.pin-pulse { transform-origin: 400px 40px; animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { r: 9; opacity: .8; } 100% { r: 24; opacity: 0; } }
.mock-side { border-left: 1px solid var(--border); padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.mock-stat { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; }
.mock-stat span { display: block; font-size: 11.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; }
.mock-stat b { font-size: 20px; font-weight: 750; }
.mock-stat b i { font-size: 12px; font-weight: 500; color: var(--muted); font-style: normal; }
.mock-stat b.ok { color: var(--accent); }

.hero-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(17, 28, 48, 0.92); border: 1px solid var(--border-2); backdrop-filter: blur(8px);
  padding: 9px 13px; border-radius: 12px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-sm);
}
.chip-1 { left: -14px; bottom: 46px; }
.chip-2 { right: -10px; top: 30px; }

/* ───────────────── Stats ───────────────── */
.stats { padding: 10px 0 6px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), transparent); padding: 26px;
}
.stat { text-align: center; }
.stat b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.stat span { color: var(--muted); font-size: 14px; }

/* ───────────────── Sections ───────────────── */
.section { padding: 84px 0; }
.section-alt { background: linear-gradient(180deg, rgba(14, 22, 38, 0.6), transparent); }
.section-head { max-width: 680px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: clamp(27px, 3.4vw, 38px); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 12px; font-weight: 800; }
.section-sub { color: var(--muted); font-size: 17px; margin: 0; }

/* Feature cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.card h3 { margin: 16px 0 8px; font-size: 19px; font-weight: 720; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }

.ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(56, 189, 248, 0.12); border: 1px solid var(--border-2); position: relative; }
.ic::after { content: ""; position: absolute; inset: 0; background: var(--primary-2); -webkit-mask: center/24px no-repeat var(--svg); mask: center/24px no-repeat var(--svg); }
.ic-map  { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6'/%3E%3Cline x1='8' y1='2' x2='8' y2='18'/%3E%3Cline x1='16' y1='6' x2='16' y2='22'/%3E%3C/svg%3E"); }
.ic-route { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='19' r='3'/%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Cpath d='M6 16V9a4 4 0 0 1 4-4h4'/%3E%3C/svg%3E"); }
.ic-fence { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.ic-fuel { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='22' x2='15' y2='22'/%3E%3Cline x1='4' y1='9' x2='14' y2='9'/%3E%3Cpath d='M14 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v18'/%3E%3Cpath d='M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 2 2a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L18 5'/%3E%3C/svg%3E"); }
.ic-lock { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E"); }
.ic-bell { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9'/%3E%3Cpath d='M13.73 21a2 2 0 0 1-3.46 0'/%3E%3C/svg%3E"); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #04121f; font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.step h3 { margin: 0 0 8px; font-size: 19px; }
.step p { color: var(--muted); margin: 0; }

/* Hardware */
.hw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hw { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s, border-color .2s; }
.hw:hover { transform: translateY(-4px); border-color: var(--border-2); }
.hw.featured { border-color: rgba(56, 189, 248, 0.4); box-shadow: 0 0 0 1px rgba(56,189,248,.15), var(--shadow-sm); }
.hw-render { height: 180px; position: relative; background: radial-gradient(400px 200px at 50% 0%, rgba(56,189,248,.14), transparent 70%), var(--bg); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); }
.hw-render::before {
  content: ""; width: 92px; height: 128px; border-radius: 14px;
  background: linear-gradient(160deg, #1f2b41, #0f1828);
  border: 1px solid var(--border-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), var(--shadow-sm);
}
.hw-render::after { content: attr(data-model); position: absolute; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .1em; color: var(--muted); top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.35); padding: 3px 8px; border-radius: 6px; border: 1px solid var(--border); }
.hw-body { padding: 22px 22px 26px; position: relative; }
.hw-best { position: absolute; top: -13px; right: 18px; background: var(--grad); color: #04121f; font-size: 12px; font-weight: 750; padding: 4px 12px; border-radius: 999px; }
.hw-body h3 { margin: 0 0 4px; font-size: 21px; }
.hw-tag { color: var(--primary-2); font-size: 14px; font-weight: 600; margin: 0 0 14px; }
.hw-body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.hw-body li { color: var(--muted); font-size: 15px; padding-left: 24px; position: relative; }
.hw-body li::before { content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px; display: flex; flex-direction: column; }
.plan-hot { border-color: rgba(56, 189, 248, 0.5); box-shadow: 0 0 0 1px rgba(56,189,248,.2), var(--shadow); transform: translateY(-6px); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #04121f; font-size: 12.5px; font-weight: 750; padding: 5px 14px; border-radius: 999px; }
.plan h3 { margin: 0 0 4px; font-size: 22px; }
.plan-for { color: var(--muted); margin: 0 0 18px; font-size: 14.5px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.plan-price b { font-size: 44px; font-weight: 820; letter-spacing: -0.02em; }
.plan-price span { color: var(--muted); font-size: 15px; }
.plan-feats { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 11px; flex: 1; }
.plan-feats li { color: var(--text); font-size: 15px; padding-left: 26px; position: relative; }
.plan-feats li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--primary-2); border-bottom: 2px solid var(--primary-2); transform: rotate(-45deg); }
.price-note { text-align: center; color: var(--muted); margin: 26px auto 0; max-width: 640px; font-size: 14.5px; }

/* Lead */
.lead-section { padding-top: 70px; }
.lead-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 46px; background: linear-gradient(140deg, var(--surface), var(--bg-2)); box-shadow: var(--shadow); }
.lead-copy h2 { font-size: clamp(24px, 3vw, 32px); margin: 6px 0 14px; letter-spacing: -0.02em; }
.lead-copy p { color: var(--muted); margin: 0 0 22px; }
.lead-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--text); }
.lead-points li { color: var(--muted); }

.lead-form { display: grid; gap: 15px; }
.field { display: grid; gap: 7px; }
.field label, .field-label { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.field label i { font-weight: 400; color: var(--muted-2); }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border-2); border-radius: 12px;
  padding: 13px 14px; color: var(--text); font-size: 15px; font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary-2); box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16); }
.field textarea { resize: vertical; min-height: 54px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; }
.seg span { display: block; text-align: center; padding: 12px; border: 1px solid var(--border-2); border-radius: 12px; color: var(--muted); font-weight: 600; font-size: 14.5px; transition: .15s; }
.seg input:checked + span { border-color: var(--primary-2); background: rgba(56, 189, 248, 0.12); color: var(--text); }
.seg input:focus-visible + span { box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2); }

.form-msg { margin: 4px 0 0; font-size: 14.5px; font-weight: 600; min-height: 20px; }
.form-msg.ok { color: var(--accent); }
.form-msg.err { color: var(--danger); }
.form-fine { margin: 0; font-size: 12.5px; color: var(--muted-2); text-align: center; }

/* FAQ */
.faq-wrap { max-width: 820px; }
.faq { display: grid; gap: 12px; }
.faq details { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); border-radius: 14px; padding: 4px 20px; transition: border-color .2s; }
.faq details[open] { border-color: var(--border-2); }
.faq summary { list-style: none; cursor: pointer; padding: 16px 30px 16px 0; font-weight: 650; font-size: 16.5px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 400; color: var(--primary-2); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { color: var(--muted); margin: 0 0 18px; }

/* Final CTA */
.cta { padding: 40px 0 90px; }
.cta-inner { text-align: center; border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 56px 30px; background: radial-gradient(700px 300px at 50% -20%, rgba(56,189,248,.18), transparent 70%), linear-gradient(180deg, var(--surface), var(--bg-2)); }
.cta-inner h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 12px; letter-spacing: -0.02em; }
.cta-inner p { color: var(--muted); margin: 0 0 26px; font-size: 17px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 280px; margin: 14px 0 0; }
.footer-col h4 { margin: 0 0 14px; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 13.5px; flex-wrap: wrap; gap: 8px; }

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

/* ───────────────── Responsive ───────────────── */
@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; margin-left: auto; }
  .mobile-nav { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .cards, .steps, .hw-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .lead-wrap { grid-template-columns: 1fr; gap: 30px; padding: 34px; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .plan-hot { transform: none; }
}
@media (max-width: 620px) {
  .cards, .steps, .hw-grid, .price-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .hero { padding: 48px 0 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mock { transform: none; }
  .chip-1, .chip-2 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .route-path { stroke-dashoffset: 0; }
}
