/* ============================================================
   FleetPRO marketing site — dark premium, aurora + glass
   ============================================================ */
:root {
  --bg: #07090e;
  --bg2: #0b0e16;
  --card: rgba(255, 255, 255, 0.035);
  --card-solid: #10141d;
  --border: rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 255, 255, 0.16);
  --text: #f2f4f8;
  --text2: #9aa3b5;
  --indigo: #5b63e6;
  --indigo-hi: #7d84ff;
  --teal: #2dd4bf;
  --teal-deep: #0ea88e;
  --green: #34d399;
  --amber: #fbbf24;
  --radius: 20px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Roboto, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
::selection { background: rgba(91, 99, 230, 0.45); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---------- Aurora background ---------- */
.aurora {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background: radial-gradient(1200px 800px at 70% -10%, rgba(91, 99, 230, 0.16), transparent 60%),
              radial-gradient(1000px 700px at 10% 20%, rgba(14, 168, 142, 0.10), transparent 55%),
              var(--bg);
}
.aurora .blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
  will-change: transform;
}
.aurora .b1 { width: 560px; height: 560px; background: rgba(91, 99, 230, 0.30); top: -180px; right: -80px; animation: drift1 26s ease-in-out infinite alternate; }
.aurora .b2 { width: 460px; height: 460px; background: rgba(14, 168, 142, 0.22); top: 30%; left: -180px; animation: drift2 32s ease-in-out infinite alternate; }
.aurora .b3 { width: 400px; height: 400px; background: rgba(125, 132, 255, 0.16); bottom: -160px; right: 20%; animation: drift1 38s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-90px, 70px) scale(1.15); } }
@keyframes drift2 { from { transform: translate(0, 0) scale(1); } to { transform: translate(110px, -60px) scale(1.1); } }
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.028 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 9, 14, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 66px; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.nav .btn { white-space: nowrap; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand .pro { color: var(--teal); }
.nav-links { display: flex; gap: 26px; margin-left: 12px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--text2); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-spacer { flex: 1; }
.sign-in { font-size: 14.5px; font-weight: 600; color: var(--text2); transition: color 0.2s; white-space: nowrap; }
.sign-in:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; cursor: pointer; border: none;
  border-radius: 14px; transition: transform 0.18s, box-shadow 0.25s, background 0.2s, border-color 0.2s;
  font-size: 15px; padding: 12px 22px; position: relative; overflow: hidden;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--indigo) 0%, #6a5ae0 55%, var(--teal-deep) 140%);
  box-shadow: 0 8px 28px rgba(91, 99, 230, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(91, 99, 230, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.7s;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost {
  color: var(--text); background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.btn-lg { font-size: 16.5px; padding: 16px 30px; border-radius: 16px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { padding: 150px 0 40px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--teal); background: rgba(45, 212, 191, 0.09); border: 1px solid rgba(45, 212, 191, 0.28);
  padding: 7px 14px; border-radius: 99px; margin-bottom: 22px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.55); } 60% { box-shadow: 0 0 0 8px rgba(45, 212, 191, 0); } }
h1 {
  font-size: clamp(38px, 5.4vw, 62px); line-height: 1.06; font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.grad-text {
  background: linear-gradient(100deg, var(--indigo-hi) 0%, #a5aaff 40%, var(--teal) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { font-size: 18.5px; color: var(--text2); max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: var(--text2); margin-top: 16px; display: flex; align-items: center; gap: 7px; }
.hero-note svg { color: var(--green); flex-shrink: 0; }

/* rotating word */
.rotate-wrap { display: inline-block; position: relative; }
.rotate-word { display: inline-block; transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease; }
.rotate-word.out { opacity: 0; transform: translateY(0.45em); filter: blur(5px); }
@keyframes wordIn { from { opacity: 0; transform: translateY(0.6em); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }

/* ---------- Phone mockup ---------- */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 540px; }
.phone {
  width: 292px; border-radius: 44px; padding: 11px; position: relative; z-index: 2;
  background: linear-gradient(160deg, #2a2f3d, #12151d 60%);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.1),
              0 0 80px rgba(91, 99, 230, 0.22);
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(0.5deg); } }
.phone .screen { border-radius: 34px; overflow: hidden; background: #07090e; }
.phone .notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 26px; border-radius: 16px; background: #07090e; z-index: 3;
}
/* floating chips around phone */
.float-card {
  position: absolute; z-index: 3; border-radius: 16px; padding: 12px 15px;
  background: rgba(16, 20, 29, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-hi); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 600;
  animation: chipFloat 6s ease-in-out infinite;
}
.float-card .fc-ic {
  width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-card small { display: block; font-size: 11px; color: var(--text2); font-weight: 500; }
.fc1 { top: 6%; left: -4%; animation-delay: 0.6s; }
.fc2 { top: 38%; right: -7%; animation-delay: 1.8s; }
.fc3 { bottom: 9%; left: -9%; animation-delay: 3s; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Marquee ---------- */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; margin: 46px 0 0; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee { display: flex; gap: 44px; width: max-content; animation: marquee 36s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee span { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--text2); white-space: nowrap; }
.marquee span svg { color: var(--teal); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 58px 0 10px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(30px, 4vw, 46px); font-weight: 900; letter-spacing: -0.03em; }
.stat .num em { font-style: normal; color: var(--teal); }
.stat .lbl { font-size: 13.5px; color: var(--text2); margin-top: 4px; font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--indigo-hi); margin-bottom: 14px;
}
.eyebrow.teal { color: var(--teal); }
.h-section { font-size: clamp(30px, 4vw, 44px); font-weight: 850; letter-spacing: -0.025em; line-height: 1.12; margin-bottom: 16px; }
.lead { font-size: 17px; color: var(--text2); max-width: 640px; }
.lead.center { margin: 0 auto 12px; }

/* ---------- Showcase rows (screenshot + copy) ---------- */
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 84px); align-items: center; margin-top: 84px; }
.show-row:first-of-type { margin-top: 56px; }
.show-row.flip .show-copy { order: 2; }
.show-copy h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.18; }
.show-copy p { color: var(--text2); font-size: 16px; margin-bottom: 20px; }
.show-copy ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.show-copy li { display: flex; gap: 11px; font-size: 14.5px; color: var(--text); font-weight: 500; align-items: flex-start; }
.show-copy li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.chip-num {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--indigo-hi); margin-bottom: 12px;
}
.chip-num i { font-style: normal; width: 26px; height: 26px; border-radius: 8px; background: rgba(91, 99, 230, 0.16); border: 1px solid rgba(125, 132, 255, 0.35); display: inline-flex; align-items: center; justify-content: center; font-size: 12.5px; }

/* framed screenshots */
.shot { position: relative; perspective: 1400px; }
.shot .glow { position: absolute; inset: 8% 4%; border-radius: 40px; filter: blur(56px); opacity: 0.42; z-index: 0; }
.shot-phone { display: flex; justify-content: center; }
.shot-phone .device {
  width: min(300px, 78vw); border-radius: 42px; padding: 10px; position: relative; z-index: 1;
  background: linear-gradient(160deg, #272c39, #11141c 60%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.09);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
  transform-style: preserve-3d;
}
.shot .device .scr { border-radius: 33px; overflow: hidden; }
.shot-browser .device {
  border-radius: 16px; overflow: hidden; position: relative; z-index: 1;
  background: #171b26; border: 1px solid var(--border-hi);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
  transform-style: preserve-3d;
}
.shot-browser .bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.shot-browser .bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.shot-browser .bar i:nth-child(1) { background: #ff5f57; }
.shot-browser .bar i:nth-child(2) { background: #febc2e; }
.shot-browser .bar i:nth-child(3) { background: #28c840; }
.shot-browser .bar .url {
  flex: 1; margin-left: 8px; font-size: 11.5px; color: var(--text2); background: rgba(255, 255, 255, 0.05);
  border-radius: 7px; padding: 5px 12px; max-width: 380px;
}

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; text-align: left; position: relative; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden; transition: transform 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(125, 132, 255, 0.4); }
.step .num {
  width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800; margin-bottom: 18px; color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--teal-deep));
  box-shadow: 0 8px 22px rgba(91, 99, 230, 0.35);
}
.step h3 { font-size: 18.5px; font-weight: 750; margin-bottom: 9px; letter-spacing: -0.01em; }
.step p { font-size: 14.5px; color: var(--text2); }

/* ---------- Feature grid ---------- */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; text-align: left; }
.fcard {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; transition: transform 0.3s, border-color 0.3s, background 0.3s; position: relative; overflow: hidden;
}
.fcard::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s;
  background: radial-gradient(420px 200px at var(--mx, 50%) var(--my, 0%), rgba(91, 99, 230, 0.13), transparent 65%);
  pointer-events: none;
}
.fcard:hover { transform: translateY(-5px); border-color: var(--border-hi); }
.fcard:hover::before { opacity: 1; }
.fcard .ic {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--teal); background: rgba(45, 212, 191, 0.1); border: 1px solid rgba(45, 212, 191, 0.22); margin-bottom: 16px;
}
.fcard:nth-child(2n) .ic { color: var(--indigo-hi); background: rgba(91, 99, 230, 0.12); border-color: rgba(125, 132, 255, 0.26); }
.fcard h3 { font-size: 16.5px; font-weight: 750; margin-bottom: 7px; }
.fcard p { font-size: 14px; color: var(--text2); }

/* ---------- Pricing ---------- */
.bill-toggle {
  display: inline-flex; align-items: center; gap: 4px; margin: 26px auto 0; padding: 5px;
  background: var(--card); border: 1px solid var(--border); border-radius: 99px;
}
.bill-toggle button {
  font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text2);
  background: none; border: none; padding: 9px 20px; border-radius: 99px; cursor: pointer; transition: all 0.25s;
}
.bill-toggle button.on { background: var(--indigo); color: #fff; box-shadow: 0 6px 18px rgba(91, 99, 230, 0.4); }
.bill-toggle .save { font-size: 11.5px; font-weight: 800; color: var(--teal); background: rgba(45, 212, 191, 0.12); padding: 3px 9px; border-radius: 99px; margin-left: 6px; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; text-align: left; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 28px 24px;
  display: flex; flex-direction: column; transition: transform 0.3s, border-color 0.3s; position: relative;
}
.plan:hover { transform: translateY(-6px); border-color: var(--border-hi); }
.plan.pop {
  border-color: rgba(125, 132, 255, 0.55);
  background: linear-gradient(180deg, rgba(91, 99, 230, 0.13), rgba(91, 99, 230, 0.04) 45%), var(--card);
  box-shadow: 0 24px 60px rgba(91, 99, 230, 0.22);
}
.plan .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--teal-deep)); padding: 5px 14px; border-radius: 99px; white-space: nowrap;
}
.plan .pn { font-size: 15px; font-weight: 750; color: var(--text2); margin-bottom: 10px; }
.plan .pp { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; min-height: 44px; }
.plan .cur { font-size: 19px; font-weight: 700; color: var(--text2); }
.plan .amt { font-size: 38px; font-weight: 900; letter-spacing: -0.03em; }
.plan .per { font-size: 14px; color: var(--text2); }
.plan .pd { font-size: 13.5px; color: var(--text2); margin-bottom: 20px; min-height: 40px; }
.plan .yr-note { font-size: 12px; color: var(--teal); font-weight: 700; min-height: 18px; margin-bottom: 8px; }
.plan .btn { margin-bottom: 22px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.8px; color: var(--text); }
.plan li svg { color: var(--teal); flex-shrink: 0; margin-top: 2.5px; }
.price-note { font-size: 12.5px; color: var(--text2); margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-top: 44px; }
.qa { border-bottom: 1px solid var(--border); }
.qa button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; color: var(--text); font-family: var(--font);
  font-size: 16.5px; font-weight: 650; text-align: left; padding: 22px 4px; cursor: pointer;
}
.qa .chev { transition: transform 0.35s; color: var(--text2); flex-shrink: 0; }
.qa.open .chev { transform: rotate(180deg); color: var(--teal); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.3, 0.8, 0.3, 1); }
.qa .ans p { font-size: 15px; color: var(--text2); padding: 0 4px 22px; max-width: 660px; }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden; text-align: center; border-radius: 30px;
  padding: clamp(48px, 7vw, 88px) 28px;
  background: linear-gradient(140deg, rgba(91, 99, 230, 0.2), rgba(14, 168, 142, 0.13) 70%), var(--card-solid);
  border: 1px solid rgba(125, 132, 255, 0.34);
}
.cta::before {
  content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 99, 230, 0.32), transparent 65%);
  top: -320px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.cta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 870; letter-spacing: -0.025em; margin-bottom: 14px; position: relative; }
.cta p { color: var(--text2); font-size: 16.5px; margin-bottom: 30px; position: relative; }
.cta .hero-cta { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 44px 0 54px; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot .links { display: flex; gap: 22px; }
.foot a { font-size: 13.5px; color: var(--text2); transition: color 0.2s; }
.foot a:hover { color: var(--text); }
.foot .copy { font-size: 13px; color: var(--text2); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.3, 1); }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.3, 1); }
.reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1); }
[data-stagger].in > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-l, .reveal-r, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding-top: 120px; }
  .hero-visual { min-height: 0; }
  .show-row, .show-row.flip { grid-template-columns: 1fr; gap: 34px; }
  .show-row.flip .show-copy { order: 0; }
  .steps, .fgrid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-links { display: none; }
  .fc1 { left: 0; } .fc2 { right: 0; } .fc3 { left: 0; }
}
@media (max-width: 600px) {
  .steps, .fgrid, .price-grid { grid-template-columns: 1fr; }
  .nav-inner { gap: 14px; }
  .nav .btn { padding: 10px 16px; font-size: 14px; }
  .float-card { display: none; }
  .section { padding: 72px 0; }
}

/* ---------- Old way vs FleetPRO ---------- */
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; margin-top: 52px; text-align: left; }
.vs-card { border-radius: 22px; padding: 26px 24px; border: 1px solid var(--border); background: var(--card); display: flex; flex-direction: column; }
.vs-card.old { border-color: rgba(251, 113, 133, 0.28); background: linear-gradient(180deg, rgba(251, 113, 133, 0.06), transparent 55%), var(--card); }
.vs-card.new { border-color: rgba(45, 212, 191, 0.35); background: linear-gradient(180deg, rgba(45, 212, 191, 0.07), transparent 55%), var(--card); box-shadow: 0 22px 60px rgba(14, 168, 142, 0.14); }
.vs-head h3 { font-size: 19px; font-weight: 800; margin: 10px 0 18px; letter-spacing: -0.01em; }
.vs-badge { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; padding: 5px 11px; border-radius: 99px; }
.vs-badge.bad { color: #fb7185; background: rgba(251, 113, 133, 0.12); border: 1px solid rgba(251, 113, 133, 0.3); }
.vs-badge.good { color: var(--teal); background: rgba(45, 212, 191, 0.12); border: 1px solid rgba(45, 212, 191, 0.32); }
.vs-arrow { display: flex; align-items: center; color: var(--teal); }
.sheet { border: 1px solid var(--border); border-radius: 13px; overflow: hidden; font-size: 12.5px; margin-bottom: 20px; background: rgba(0, 0, 0, 0.25); }
.vs-card.old .sheet { font-family: "Comic Sans MS", "Bradley Hand", cursive; transform: rotate(-0.6deg); }
.sheet-row { display: grid; grid-template-columns: 1.1fr 1fr 0.7fr 1.1fr; gap: 6px; padding: 9px 13px; border-bottom: 1px solid var(--border); align-items: center; }
.sheet-row:last-child { border-bottom: none; }
.sheet-row.head { font-weight: 700; color: var(--text2); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(255, 255, 255, 0.04); font-family: var(--font); }
.sheet-row.miss { background: rgba(251, 113, 133, 0.07); }
.sheet-row.ok { background: rgba(45, 212, 191, 0.05); }
.scribble { color: #fb7185; font-style: italic; }
.pillg, .pillb, .pilln { font-family: var(--font); font-size: 9.5px; font-weight: 800; letter-spacing: 0.05em; padding: 3px 8px; border-radius: 99px; display: inline-block; }
.pillg { color: #34d399; background: rgba(52, 211, 153, 0.13); }
.pillb { color: var(--indigo-hi); background: rgba(125, 132, 255, 0.15); }
.pilln { color: var(--text2); background: rgba(255, 255, 255, 0.07); }
.vs-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.vs-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text); font-weight: 500; }
.vs-list li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.vs-list .x { color: #fb7185; font-weight: 800; flex-shrink: 0; line-height: 1.4; }
.vs-card.old .vs-list li { color: var(--text2); }
@media (max-width: 960px) {
  .vs-grid { grid-template-columns: 1fr; }
  .vs-arrow { justify-content: center; transform: rotate(90deg); }
}
