/* ── FleetOS Pro — Marketing Website Styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #c4912a;
  --gold-lt: #f5d07a;
  --gold-dk: #8a6420;
  --navy:    #0d1b2a;
  --navy2:   #162033;
  --navy3:   #1c2b44;
  --ink:     #1e293b;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --cream:   #faf8f5;
  --white:   #ffffff;
  --blue:    #2563eb;
  --green:   #16a34a;
  --purple:  #7c3aed;
  --red:     #dc2626;
  --r:       16px;
  --shadow:  0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 16px 60px rgba(13,27,42,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.06; letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; line-height: 1.1; letter-spacing: -0.8px; }
h3 { font-size: 20px; font-weight: 700; line-height: 1.3; }
p  { font-size: 16px; line-height: 1.75; color: var(--muted); }

.text-gold { color: var(--gold); }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }

.gradient-text {
  background: linear-gradient(90deg, #f5d07a 0%, #e8b84b 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 40px; }

section { padding: 100px 0; }
.section-dark { background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 100%); }
.section-cream { background: var(--cream); }
.section-white { background: #fff; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 66px;
  display: flex; align-items: center;
  background: rgba(13,27,42,0.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s, box-shadow 0.25s;
}
.nav.scrolled {
  background: rgba(13,27,42,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  border-bottom-color: rgba(196,145,42,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px;
  gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
}
.nav-logo-text { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.nav-logo-text span { color: rgba(255,255,255,0.42); font-weight: 400; }
.nav-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(196,145,42,0.45);
  border-radius: 4px; padding: 2px 6px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block; padding: 8px 14px; border-radius: 7px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.68);
  text-decoration: none; transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-signin {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65);
  text-decoration: none; padding: 8px 14px; transition: color 0.15s;
}
.nav-signin:hover { color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 9px; font-size: 14px; font-weight: 700;
  font-family: inherit; cursor: pointer; text-decoration: none;
  border: none; transition: all 0.2s; letter-spacing: 0.1px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e8b84b 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--navy); box-shadow: 0 4px 20px rgba(196,145,42,0.35);
}
.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 8px 36px rgba(196,145,42,0.5);
  transform: translateY(-1px);
}
.btn-gold-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-outline {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }
.btn-outline-lg { padding: 15px 35px; font-size: 16px; border-radius: 10px; }
.btn-navy {
  background: var(--navy); color: #f5d07a;
  border: 1px solid rgba(196,145,42,0.3);
}
.btn-navy:hover { background: var(--navy2); box-shadow: 0 4px 20px rgba(13,27,42,0.4); }
.btn-nav { padding: 8px 18px; font-size: 13px; }

/* ── Pill / Badge ── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 20px; font-size: 11px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.pill-gold { background: rgba(196,145,42,0.12); border: 1px solid rgba(196,145,42,0.25); color: #c4912a; }
.pill-blue { background: rgba(37,99,235,0.10); border: 1px solid rgba(37,99,235,0.22); color: #2563eb; }
.pill-green { background: rgba(22,163,74,0.10); border: 1px solid rgba(22,163,74,0.22); color: #16a34a; }
.pill-purple { background: rgba(124,58,237,0.10); border: 1px solid rgba(124,58,237,0.22); color: #7c3aed; }
.pill-white { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); color: rgba(255,255,255,0.85); }

/* ── Hero ── */
.hero {
  min-height: 100vh; padding-top: 66px;
  background: radial-gradient(ellipse at 20% 50%, rgba(196,145,42,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(37,99,235,0.08) 0%, transparent 60%),
              linear-gradient(160deg, #050d1e 0%, #0d1b2a 40%, #09142a 100%);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,145,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,145,42,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-body { flex: 1; display: flex; align-items: center; padding: 80px 40px 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { margin-bottom: 24px; }
.hero-title { margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.52); max-width: 500px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.36); }
.trust-item i { font-size: 13px; color: rgba(196,145,42,0.6); }
.hero-visual { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Stats ribbon */
.stats-ribbon {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 40px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-item { display: flex; align-items: center; gap: 14px; }
.stat-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(196,145,42,0.15); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.stat-icon i { font-size: 21px; color: var(--gold); }
.stat-val { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -0.8px; line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 3px; }

/* ── Trusted by ── */
.trusted { padding: 28px 0; border-bottom: 1px solid var(--border); }
.trusted-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trusted-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #94a3b8; flex-shrink: 0; }
.trusted-logos { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.trusted-logo { font-size: 12px; font-weight: 600; color: #94a3b8; padding: 5px 14px; border-radius: 20px; border: 1px solid var(--border); white-space: nowrap; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin: 12px 0; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 17px; }

/* ── Feature cards ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  background: #fff; border-radius: var(--r); padding: 28px 24px;
  border: 1.5px solid var(--border); transition: all 0.22s;
  cursor: default;
}
.feat-card:hover { border-color: rgba(196,145,42,0.45); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feat-icon i { font-size: 22px; }
.feat-card h3 { font-size: 15px; margin-bottom: 8px; }
.feat-card p { font-size: 13.5px; line-height: 1.65; }

/* Feature groups (features page) */
.feat-group { margin-bottom: 72px; }
.feat-group-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.feat-group-title { font-size: 22px; font-weight: 700; }
.feat-group-line { flex: 1; height: 1px; background: var(--border); }
.feat-group-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Platform preview ── */
.preview-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(196,145,42,0.22);
}

/* ── How it works ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 44px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--green), var(--purple));
  opacity: 0.3; z-index: 0;
}
.step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.step-circle i { font-size: 32px; }
.step-num {
  position: absolute; top: -8px; right: -8px;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.step h3 { font-size: 16px; margin-bottom: 10px; }
.step p { font-size: 13px; }

/* ── Platform capabilities ── */
.platform-caps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.platform-cap { display: flex; align-items: flex-start; gap: 14px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.platform-cap:nth-child(n+4) { }
.cap-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(196,145,42,0.14); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.cap-icon i { font-size: 18px; color: var(--gold); }
.cap-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cap-desc { font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.6; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: #fff; border-radius: 18px; padding: 36px 30px;
  border: 2px solid var(--border); display: flex; flex-direction: column;
  transition: all 0.22s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-popular {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy3) 100%);
  border-color: var(--gold);
  box-shadow: 0 24px 72px rgba(13,27,42,0.4);
}
.pricing-badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 20px; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(196,145,42,0.2); border: 1px solid rgba(196,145,42,0.4);
  color: var(--gold); margin-bottom: 18px; align-self: flex-start;
}
.pricing-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.pricing-price .amount { font-size: 46px; font-weight: 900; letter-spacing: -1.2px; }
.pricing-price .period { font-size: 14px; }
.pricing-desc { font-size: 13px; margin-bottom: 26px; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pricing-feat { display: flex; align-items: flex-start; gap: 10px; }
.pricing-feat-check {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.pricing-feat-check i { font-size: 10px; }
.pricing-feat-text { font-size: 13px; line-height: 1.4; }
.pricing-cta { display: flex; justify-content: center; }
.btn-pricing {
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; font-family: inherit; border: none;
  transition: all 0.2s;
}
.btn-pricing-gold {
  background: linear-gradient(135deg, var(--gold), #e8b84b);
  color: var(--navy);
}
.btn-pricing-gold:hover { box-shadow: 0 6px 24px rgba(196,145,42,0.45); transform: translateY(-1px); }
.btn-pricing-outline { background: transparent; border: 2px solid; }

/* ── Toggle switch ── */
.toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 48px; }
.toggle-label { font-size: 14px; font-weight: 600; }
.toggle-switch { position: relative; width: 52px; height: 28px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute; inset: 0; background: var(--border);
  border-radius: 14px; transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-track { background: var(--gold); }
.toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked ~ .toggle-thumb { transform: translateX(24px); }
.toggle-save { font-size: 11px; font-weight: 700; color: var(--green); background: rgba(22,163,74,0.1); border-radius: 4px; padding: 2px 7px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 15px; font-weight: 600; font-family: inherit;
  color: var(--ink); text-align: left; gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--gold); }
.faq-q i { font-size: 18px; flex-shrink: 0; transition: transform 0.25s; color: var(--muted); }
.faq-q.open i { transform: rotate(45deg); color: var(--gold); }
.faq-a { display: none; padding: 0 0 20px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-a.open { display: block; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: #fff; border-radius: 14px; padding: 28px 26px;
  border: 1.5px solid var(--border); transition: box-shadow 0.22s;
}
.testi-card:hover { box-shadow: var(--shadow-lg); }
.testi-quote { font-size: 32px; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.testi-text { font-size: 14.5px; color: var(--ink); line-height: 1.75; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--navy3) 100%);
  padding: 100px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: 20%; left: 10%; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,145,42,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  bottom: 10%; right: 5%; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section h2 { color: #fff; margin-bottom: 20px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.50); max-width: 500px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-fine { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { background: #fff; border-radius: 16px; padding: 40px; border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; border-radius: 8px;
  border: 1.5px solid var(--border); font-size: 14px; font-family: inherit;
  background: #fff; color: var(--ink); outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,145,42,0.14);
}
.form-input::placeholder, .form-textarea::placeholder { color: #94a3b8; }
.form-textarea { height: 130px; resize: vertical; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 9px; font-size: 15px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #e8b84b);
  color: var(--navy); border: none; cursor: pointer; font-family: inherit;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { box-shadow: 0 6px 28px rgba(196,145,42,0.45); transform: translateY(-1px); }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--cream); border-radius: 12px;
  border: 1px solid var(--border); margin-bottom: 14px;
}
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon i { font-size: 20px; }

/* ── Footer ── */
.footer { background: #060d1c; padding: 64px 0 32px; color: rgba(255,255,255,0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 270px; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: background 0.15s; text-decoration: none;
}
.social-btn:hover { background: rgba(255,255,255,0.14); }
.social-btn i { font-size: 15px; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px; letter-spacing: 0.5px; }
.footer-launch { font-size: 12px; color: var(--gold); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.footer-launch:hover { text-decoration: underline; }
.footer-copy { font-size: 12px; }

/* ── About page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-stat { text-align: center; padding: 28px; background: #fff; border-radius: 14px; border: 1.5px solid var(--border); }
.about-stat .num { font-size: 42px; font-weight: 900; letter-spacing: -1px; color: var(--navy); }
.about-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { text-align: center; padding: 28px 20px; background: #fff; border-radius: 14px; border: 1.5px solid var(--border); transition: box-shadow 0.2s; }
.team-card:hover { box-shadow: var(--shadow-lg); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; }
.team-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--muted); }
.value-card { padding: 24px; background: var(--cream); border-radius: 12px; border: 1px solid var(--border); }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }

/* ── Animations ── */
@keyframes fadein { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadein-left { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:translateX(0); } }
.animate { opacity: 0; }
.animate.visible { animation: fadein 0.6s ease both; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .container, .container-sm { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .platform-caps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   NEW COMPONENT STYLES (matching index/features/pricing/contact HTML)
   ══════════════════════════════════════════════════════ */

/* ── Gradient text ── */
.grad-text {
  background: linear-gradient(90deg, #f5d07a 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section common ── */
.section { padding: 80px 0; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  background: rgba(196,145,42,0.10); border: 1px solid rgba(196,145,42,0.25);
  color: var(--gold); margin-bottom: 14px;
}
.section-title { font-size: clamp(26px,3vw,42px); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -0.6px; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-cta { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 48px; flex-wrap: wrap; }

/* ── Nav logo — exact replica of FleetOSLockup size=28 ── */
.nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.nav-logo-lockup { display: flex; align-items: baseline; gap: 0; }
.logo-fleet { color: #fff; font-size: 22px; font-weight: 700; letter-spacing: -0.4px; line-height: 1; font-family: inherit; }
.logo-os    { color: rgba(255,255,255,0.55); font-size: 22px; font-weight: 400; letter-spacing: -0.3px; line-height: 1; font-family: inherit; }
.logo-pro-badge {
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 5px; font-size: 11px; font-weight: 800; letter-spacing: 0.8px;
  color: #c4912a; border: 1px solid rgba(196,145,42,0.31);
  border-radius: 3px; padding: 1.5px 4px; line-height: 1;
  text-transform: uppercase; align-self: center; font-family: inherit;
}
.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.22);
  background: transparent; text-decoration: none; transition: all 0.18s; cursor: pointer;
}
.btn-outline-sm:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-gold-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 700;
  color: var(--navy); background: var(--gold); text-decoration: none;
  transition: all 0.18s; cursor: pointer; border: none;
}
.btn-gold-sm:hover { background: #d4a13a; box-shadow: 0 4px 16px rgba(196,145,42,0.4); }
.btn-lg { padding: 15px 34px; font-size: 15px; border-radius: 10px; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 9px; font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08); text-decoration: none; transition: all 0.2s; cursor: pointer;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: all 0.22s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px; padding: 14px 20px 18px;
  background: rgba(10,20,40,0.98); border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 10px 14px; border-radius: 8px; font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 500; }
.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,0.07); }

/* ── Hero (new layout) ── */
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1280px; margin: 0 auto;
  padding: 100px 40px 70px; min-height: calc(100vh - 66px);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(196,145,42,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(196,145,42,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(196,145,42,0.12); border: 1px solid rgba(196,145,42,0.3);
  color: #c4912a; margin-bottom: 22px;
}
.hero-headline { font-size: clamp(36px,4.5vw,62px); font-weight: 900; color: #fff; line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 34px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.35); }
.hero-trust i { color: rgba(196,145,42,0.6); }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-globe { width: 100%; max-width: 460px; filter: drop-shadow(0 0 40px rgba(196,145,42,0.2)); animation: hfloat 7s ease-in-out infinite; }
@keyframes hfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; }
.hero-wave svg { width: 100%; height: 100%; }

/* ── Stats ribbon (new) ── */
.stats-ribbon { background: var(--navy); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 8px; }
.stat-number { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -0.8px; line-height: 1; font-family: 'Sora', 'Inter', sans-serif; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 6px; font-weight: 500; }

/* ── Trusted by (new) ── */
.trusted { padding: 48px 0; border-bottom: 1px solid var(--border); }
.trusted-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #94a3b8; margin-bottom: 28px; }
.trusted-logos { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }
.trusted-logo-img-wrap {
  width: 120px; height: 52px; border-radius: 10px; background: #fff;
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; padding: 10px 14px; overflow: hidden;
  transition: all 0.18s; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.trusted-logo-img-wrap:hover { border-color: rgba(196,145,42,0.4); box-shadow: 0 4px 16px rgba(13,27,42,0.08); transform: translateY(-1px); }
.trusted-logo-img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1) opacity(0.65); transition: filter 0.18s; }
.trusted-logo-img-wrap:hover .trusted-logo-img { filter: grayscale(0) opacity(1); }
.tli { font-size: 13px; font-weight: 700; color: #94a3b8; }

/* ── Feature groups (homepage) ── */
.features-groups { display: flex; flex-direction: column; gap: 64px; }
.feature-group { background: #fff; border-radius: 16px; border: 1.5px solid var(--border); padding: 36px; box-shadow: 0 2px 20px rgba(13,27,42,0.05); }
.feature-group-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.feature-group-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 22px; }
.feature-group-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.feature-group-sub { font-size: 13.5px; color: var(--muted); }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 22px 20px; border-radius: 10px; border: 1px solid var(--border); background: var(--cream); transition: all 0.2s; }
.feature-card:hover { border-color: rgba(196,145,42,0.3); background: #fff; box-shadow: 0 4px 20px rgba(13,27,42,0.07); transform: translateY(-2px); }
.feature-card-icon { font-size: 22px; margin-bottom: 12px; display: block; }
.feature-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Preview section (dark bg) ── */
.preview-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.preview-copy .section-badge { background: rgba(196,145,42,0.15); color: #c4912a; border-color: rgba(196,145,42,0.3); }
.preview-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.preview-bullets li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); }
.preview-bullets i { color: #10b981; font-size: 14px; }
.preview-visual { position: relative; }
.dashboard-svg { width: 100%; border-radius: 12px; box-shadow: 0 0 0 1px rgba(196,145,42,0.2), 0 24px 80px rgba(0,0,0,0.6); }

/* ── How it works (new) ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 42px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--gold), #3b82f6, #10b981, #8b5cf6); opacity: 0.25; z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-number { font-size: 10px; font-weight: 800; color: rgba(196,145,42,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.step-icon { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 20px; background: #fff; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--gold); box-shadow: 0 4px 20px rgba(13,27,42,0.08); }
.step-item h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-item p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Testimonials (new) ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: #fff; border-radius: 14px; padding: 28px; border: 1.5px solid var(--border); display: flex; flex-direction: column; gap: 18px; transition: box-shadow 0.2s, transform 0.2s; }
.testimonial-card:hover { box-shadow: 0 12px 48px rgba(13,27,42,0.12); transform: translateY(-3px); }
.testimonial-stars { font-size: 14px; color: var(--gold); letter-spacing: 2px; }
.testimonial-text { font-size: 14.5px; color: var(--ink); line-height: 1.75; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy3)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ── Pricing teaser (homepage) ── */
.pricing-teaser-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-teaser-card { background: #fff; border-radius: 14px; padding: 28px 26px; border: 1.5px solid var(--border); transition: all 0.2s; }
.pricing-teaser-card:hover { box-shadow: 0 8px 40px rgba(13,27,42,0.1); transform: translateY(-3px); }
.pricing-teaser-popular { border-color: var(--gold); background: linear-gradient(160deg, #fffdf7, #fff); box-shadow: 0 8px 40px rgba(196,145,42,0.15); position: relative; }
.pricing-popular-badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; background: var(--gold); color: var(--navy); border-radius: 4px; padding: 3px 9px; margin-bottom: 12px; }
.pricing-plan-name { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pricing-price { font-size: 40px; font-weight: 900; color: var(--navy); letter-spacing: -1px; line-height: 1; margin-bottom: 10px; }
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.pricing-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── CTA section (new) ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #162033 50%, #1c2b44 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,145,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 20px; }
.cta-title { font-size: clamp(28px,3vw,44px); font-weight: 900; color: #fff; letter-spacing: -0.6px; line-height: 1.15; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.52); line-height: 1.7; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer (new) ── */
.footer { background: #060d1c; padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.footer-logo span { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.7); }
.footer-logo strong { color: #c4912a; font-weight: 800; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 15px; text-decoration: none; transition: background 0.15s; }
.footer-social a:hover { background: rgba(255,255,255,0.14); color: #fff; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-certifications { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-certifications span { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,0.28); font-weight: 500; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: radial-gradient(ellipse at 30% 60%, rgba(196,145,42,0.1) 0%, transparent 60%),
              linear-gradient(160deg, #050d1e 0%, var(--navy) 100%);
  padding: 120px 0 80px; text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; padding: 0 20px; }
.page-hero-title { font-size: clamp(34px,4vw,56px); font-weight: 900; color: #fff; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 18px; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 32px; }

/* ── Feature nav (sticky) ── */
.feature-nav { background: #fff; border-bottom: 1px solid var(--border); padding: 0; z-index: 90; }
.sticky-feature-nav { position: sticky; top: 66px; }
.feature-nav-links { display: flex; align-items: center; gap: 4px; padding: 0 40px; max-width: 1280px; margin: 0 auto; overflow-x: auto; }
.feature-nav-link { display: flex; align-items: center; gap: 7px; padding: 14px 16px; font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; transition: all 0.18s; }
.feature-nav-link:hover { color: var(--navy); }
.feature-nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Feature section (features page) ── */
.feature-section { padding: 80px 0; }
.feature-section-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 56px; }
.feature-section-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.feature-section-title { font-size: clamp(24px,2.5vw,36px); font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.feature-section-sub { font-size: 15px; color: var(--muted); }
.feature-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.feature-detail-reverse { direction: rtl; }
.feature-detail-reverse > * { direction: ltr; }
.feature-number { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(196,145,42,0.5); margin-bottom: 8px; }
.feature-detail-copy h3 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.feature-detail-copy p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink); }
.feature-bullets i { color: #10b981; font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.feature-bullets-sm { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.feature-bullets-sm li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--ink); }
.feature-bullets-sm i { color: #10b981; font-size: 12px; margin-top: 2px; flex-shrink: 0; }

/* Feature mock cards */
.feature-detail-visual { position: relative; }
.feature-mock-card {
  background: var(--navy); border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,27,42,0.4), 0 0 0 1px rgba(196,145,42,0.15);
}
.mock-header { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: rgba(0,0,0,0.35); border-bottom: 1px solid rgba(255,255,255,0.07); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #ff5f57; }
.mock-dot.amber { background: #ffbd2e; }
.mock-dot.green { background: #28c840; }
.mock-title { font-size: 11px; color: rgba(255,255,255,0.4); margin-left: 6px; font-weight: 500; }
.mock-map { position: relative; height: 160px; background: #162540; overflow: hidden; }
.mock-route { position: absolute; top: 42%; left: 25%; right: 20%; height: 2px; background: rgba(196,145,42,0.5); border-radius: 2px; }
.mock-pin { position: absolute; transform: translate(-50%, -100%); font-size: 18px; cursor: default; }
.mock-pin.pin-gold { color: var(--gold); }
.mock-pin.pin-blue { color: #3b82f6; }
.mock-pin.pin-green { color: #10b981; }
.mock-pin-pulse {
  position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--gold);
  animation: pulse-ring 2s ease-out infinite; pointer-events: none;
}
@keyframes pulse-ring { 0%{transform:translateX(-50%) scale(0.5);opacity:0.8} 100%{transform:translateX(-50%) scale(2);opacity:0} }
.mock-stats-row { display: grid; grid-template-columns: repeat(3,1fr); padding: 12px; gap: 8px; }
.mock-stat { text-align: center; }
.mock-stat-val { display: block; font-size: 18px; font-weight: 800; color: #fff; }
.mock-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.35); }

/* Trip playback mock */
.mock-playback { padding: 12px; }
.mock-playback-map { border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
.mock-timeline { margin-bottom: 10px; }
.mock-timeline-bar { position: relative; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 4px; }
.mock-timeline-progress { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); border-radius: 2px; }
.mock-timeline-thumb { position: absolute; top: -5px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); transform: translateX(-50%); }
.mock-timeline-labels { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.3); }
.mock-trip-stats { display: flex; gap: 14px; }
.mock-trip-stat { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,0.5); }

/* Geofence mock */
.compact-card .mock-geo-list { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.mock-geo-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: rgba(255,255,255,0.04); border-radius: 7px; }
.mock-geo-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-geo-name { flex: 1; font-size: 12px; color: rgba(255,255,255,0.7); }
.mock-geo-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }

/* Driver score mock */
.compact-card .mock-driver-list { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.mock-driver-row { display: flex; align-items: center; gap: 8px; }
.mock-rank { width: 20px; font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.35); flex-shrink: 0; }
.mock-rank.gold { color: #f5d07a; }
.mock-rank.silver { color: #94a3b8; }
.mock-rank.bronze { color: #cd7f32; }
.mock-driver-name { flex: 1; font-size: 12px; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-score-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.mock-score-fill { height: 100%; border-radius: 2px; transition: width 0.5s; }
.mock-score-val { font-size: 12px; font-weight: 800; width: 28px; text-align: right; flex-shrink: 0; }

/* Features pair layout */
.features-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
.feature-pair-card { background: #fff; border-radius: 14px; padding: 28px; border: 1.5px solid var(--border); transition: all 0.2s; }
.feature-pair-card:hover { box-shadow: 0 8px 36px rgba(13,27,42,0.09); transform: translateY(-2px); border-color: rgba(196,145,42,0.25); }
.feature-pair-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.feature-number-sm { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(196,145,42,0.45); margin-bottom: 8px; }
.feature-pair-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.feature-pair-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.pair-mockup { margin-top: 18px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(13,27,42,0.10); }

/* Analytics grid */
.analytics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.analytics-card { background: #fff; border-radius: 14px; padding: 26px; border: 1.5px solid var(--border); transition: all 0.2s; }
.analytics-card:hover { box-shadow: 0 8px 36px rgba(13,27,42,0.09); transform: translateY(-2px); }
.analytics-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.analytics-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.analytics-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* Security grid */
.security-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 40px; }
.security-card { background: #fff; border-radius: 14px; padding: 26px; border: 1.5px solid var(--border); transition: all 0.2s; }
.security-card:hover { box-shadow: 0 8px 36px rgba(13,27,42,0.09); transform: translateY(-2px); }
.security-card-icon { font-size: 28px; color: #10b981; margin-bottom: 12px; }
.security-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.security-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.security-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; padding: 4px 10px; border-radius: 4px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: #10b981; }
.certifications-bar { display: flex; align-items: center; gap: 0; justify-content: center; background: var(--navy); border-radius: 12px; padding: 18px 24px; flex-wrap: wrap; gap: 8px; }
.cert-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.6); padding: 6px 16px; border-right: 1px solid rgba(255,255,255,0.1); font-weight: 500; }
.cert-item:last-child { border-right: none; }
.cert-item i { color: var(--gold); }

/* ── Billing toggle (pricing page) ── */
.billing-toggle { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 24px; }
.billing-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.4); transition: color 0.18s; }
.billing-label.active { color: #fff; }
.toggle-switch {
  position: relative; width: 50px; height: 26px;
  background: rgba(255,255,255,0.15); border-radius: 13px;
  border: none; cursor: pointer; transition: background 0.2s; outline: none;
}
.toggle-switch.checked { background: var(--gold); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.toggle-switch.checked .toggle-knob { transform: translateX(24px); }
.billing-save-badge { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #10b981; opacity: 0; transition: opacity 0.2s; }
.billing-save-badge.visible { opacity: 1; }

/* ── Pricing cards (pricing page) ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: start; }
.pricing-card { background: #fff; border-radius: 16px; padding: 28px 24px; border: 1.5px solid var(--border); display: flex; flex-direction: column; gap: 0; transition: all 0.2s; }
.pricing-card:hover { box-shadow: 0 12px 48px rgba(13,27,42,0.12); transform: translateY(-3px); }
.pricing-card-popular { border-color: var(--gold); box-shadow: 0 12px 48px rgba(196,145,42,0.2); position: relative; }
.pricing-card-dark { background: linear-gradient(160deg, var(--navy) 0%, #0a1628 100%); border-color: rgba(196,145,42,0.3); }
.pricing-popular-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; background: rgba(196,145,42,0.12); border: 1px solid rgba(196,145,42,0.3); color: var(--gold); padding: 4px 10px; border-radius: 4px; margin-bottom: 14px; align-self: flex-start; }
.pricing-card-header { margin-bottom: 18px; }
.pricing-plan-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.pricing-card-name { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pricing-card-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.pricing-card-price { margin-bottom: 12px; }
.pricing-amount { display: flex; align-items: baseline; gap: 2px; }
.pricing-currency { font-size: 20px; font-weight: 700; color: var(--navy); margin-top: 4px; }
.pricing-num { font-size: 42px; font-weight: 900; color: var(--navy); letter-spacing: -1.5px; line-height: 1; transition: all 0.3s; }
.pricing-per { font-size: 14px; color: var(--muted); }
.pricing-billed { font-size: 12px; color: var(--muted); margin-top: 4px; }
.pricing-vehicles { font-size: 13px; color: var(--muted); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.pricing-features { margin-top: 20px; }
.pricing-feature-group-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pricing-features ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--ink); line-height: 1.5; }
.pricing-features i.ti-check { color: #10b981; font-size: 13px; margin-top: 1px; flex-shrink: 0; }
.pricing-features i.ti-minus { color: var(--muted); font-size: 13px; margin-top: 1px; flex-shrink: 0; }

/* ── Comparison table ── */
.comparison-table-wrap { overflow-x: auto; border-radius: 14px; border: 1.5px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; background: #fff; }
.comparison-table th, .comparison-table td { padding: 13px 18px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--border); }
.comparison-table thead th { font-weight: 700; font-size: 12px; color: var(--navy); background: var(--cream); }
.comparison-table thead th:first-child { width: 32%; }
.comparison-table .col-popular { background: rgba(196,145,42,0.05); }
.comparison-table thead .col-popular { background: rgba(196,145,42,0.12); color: var(--gold); }
.comparison-table .comparison-group-row td { background: #f8f7f4; font-weight: 700; font-size: 11px; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); padding: 10px 18px; border-top: 2px solid var(--border); }
.comparison-table i.check { color: #10b981; font-size: 16px; }
.comparison-table i.minus { color: #cbd5e1; font-size: 16px; }

/* ── FAQ (new) ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 15px; font-weight: 600; font-family: inherit;
  color: var(--navy); text-align: left; gap: 16px; transition: color 0.15s;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron { font-size: 16px; flex-shrink: 0; transition: transform 0.25s; color: var(--muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer { padding: 0 0 0; overflow: hidden; max-height: 0; transition: max-height 0.28s ease; }
.faq-answer p { font-size: 14.5px; color: var(--muted); line-height: 1.8; }
.faq-answer a { color: var(--gold); }

/* ── Contact page ── */
.contact-options-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 12px; }
.contact-option-card { background: #fff; border-radius: 14px; padding: 26px 22px; border: 1.5px solid var(--border); text-decoration: none; color: inherit; transition: all 0.2s; display: block; }
.contact-option-card:hover { border-color: rgba(196,145,42,0.4); box-shadow: 0 8px 36px rgba(13,27,42,0.1); transform: translateY(-2px); }
.contact-option-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.contact-option-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.contact-option-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.contact-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 40px; border: 1.5px solid var(--border); box-shadow: 0 4px 24px rgba(13,27,42,0.07); }
.contact-form-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.2px; }
.required { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border-radius: 8px; border: 1.5px solid var(--border);
  font-size: 14px; font-family: inherit; background: #fff; color: var(--ink);
  outline: none; transition: border-color 0.15s, box-shadow 0.15s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,145,42,0.12);
}
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 11px; color: #ef4444; min-height: 16px; }
.form-checkbox { flex-direction: row; align-items: flex-start; margin-top: 4px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); cursor: pointer; line-height: 1.5; }
.checkbox-label input { display: none; }
.checkbox-custom { width: 18px; height: 18px; border-radius: 4px; border: 2px solid var(--border); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.checkbox-label input:checked ~ .checkbox-custom { background: var(--gold); border-color: var(--gold); }
.checkbox-label input:checked ~ .checkbox-custom::after { content: '✓'; font-size: 11px; color: var(--navy); font-weight: 800; }
.btn-form-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 9px; font-size: 15px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #e8b84b);
  color: var(--navy); border: none; cursor: pointer; font-family: inherit;
  transition: all 0.2s; margin-top: 8px;
}
.btn-form-submit:hover { box-shadow: 0 6px 28px rgba(196,145,42,0.45); transform: translateY(-1px); }
.form-success { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: rgba(16,185,129,0.06); border: 1.5px solid rgba(16,185,129,0.25); border-radius: 10px; color: var(--ink); }
.form-success i { font-size: 24px; color: #10b981; flex-shrink: 0; }
.form-success strong { font-size: 15px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 4px; }
.form-success p { font-size: 13.5px; color: var(--muted); }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: #fff; border-radius: 14px; padding: 24px; border: 1.5px solid var(--border); }
.contact-info-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item > i { font-size: 16px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { font-size: 13px; color: var(--navy); text-decoration: none; }
.contact-info-item a:hover { color: var(--gold); }
.contact-office { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.contact-office:last-child { margin-bottom: 0; }
.contact-office-flag { font-size: 20px; flex-shrink: 0; }
.contact-office-city { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-office-address { font-size: 12px; color: var(--muted); line-height: 1.5; }
.contact-social-links { display: flex; flex-direction: column; gap: 10px; }
.contact-social-link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; background: var(--cream); border: 1px solid var(--border); text-decoration: none; color: var(--navy); font-size: 13px; font-weight: 600; transition: all 0.15s; }
.contact-social-link:hover { border-color: rgba(196,145,42,0.4); background: #fff; }
.contact-social-link i { font-size: 18px; color: var(--gold); }

/* ── About section ── */
.about-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 56px; }
.about-stat { text-align: center; padding: 24px; background: #fff; border-radius: 14px; border: 1.5px solid var(--border); }
.about-stat-num { font-size: 42px; font-weight: 900; color: var(--navy); letter-spacing: -1.5px; line-height: 1; font-family: 'Sora', 'Inter', sans-serif; }
.about-stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { background: #fff; border-radius: 14px; padding: 28px 20px; border: 1.5px solid var(--border); text-align: center; transition: all 0.2s; }
.team-card:hover { box-shadow: 0 8px 36px rgba(13,27,42,0.1); transform: translateY(-2px); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: #fff; }
.team-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 12.5px; color: var(--muted); line-height: 1.65; }

/* ── Scroll reveal ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── Responsive additions ── */
@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .feature-detail, .feature-detail-reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-detail-reverse > * { direction: ltr; }
  .preview-layout { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 80px; min-height: auto; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .feature-cards { grid-template-columns: repeat(2,1fr); }
  .features-pair { grid-template-columns: 1fr; }
  .analytics-grid, .security-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-options-grid { grid-template-columns: repeat(2,1fr); }
  .about-stats-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .comparison-table-wrap { font-size: 12px; }
}
@media (max-width: 768px) {
  .hero-inner { padding: 80px 20px 50px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .feature-cards { grid-template-columns: 1fr; }
  .feature-section-header { flex-direction: column; }
  .analytics-grid, .security-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-teaser-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .about-stats-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-options-grid { grid-template-columns: 1fr 1fr; }
  .certifications-bar { flex-direction: column; align-items: flex-start; }
  .cert-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
  .cert-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══ Feature showcase (screenshot layout) ══ */
.feature-showcase {
  display: grid; grid-template-columns: 1fr 1.75fr;
  gap: 52px; align-items: start;
  margin-bottom: 80px; padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.feature-showcase:last-child { margin-bottom: 0; border-bottom: none; }
.feature-showcase.reverse { direction: rtl; }
.feature-showcase.reverse > * { direction: ltr; }
.showcase-info { padding-top: 8px; }
.showcase-info .feat-num { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(196,145,42,0.55); margin-bottom: 10px; }
.showcase-info h3 { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.3px; }
.showcase-info > p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.showcase-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.showcase-bullets li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--ink); line-height: 1.5; }
.showcase-bullets i { color: #10b981; font-size: 13px; margin-top: 1px; flex-shrink: 0; }
.showcase-screen {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 0 rgba(255,255,255,0.9) inset,
              0 24px 64px rgba(13,27,42,0.22),
              0 0 0 1px rgba(196,145,42,0.14);
}
.showcase-screen svg { width: 100%; height: auto; display: block; }
.showcase-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px;
}
@media (max-width: 1100px) {
  .feature-showcase, .feature-showcase.reverse { grid-template-columns: 1fr; direction: ltr; }
  .showcase-screen { order: -1; }
}

/* ── Device Compatibility Section ── */
.device-cats { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.device-cat {
  padding: 7px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border); color: var(--muted); background: #fff; transition: all 0.18s;
}
.device-cat:hover, .device-cat.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
@media (max-width: 1024px) { .device-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .device-grid { grid-template-columns: repeat(2, 1fr); } }

.device-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 18px 16px; transition: all 0.2s;
}
.device-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.10); transform: translateY(-2px); border-color: rgba(196,145,42,0.3); }

.device-logo-wrap {
  width: 58px; height: 58px; border-radius: 12px; flex-shrink: 0;
  background: #fff; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.device-logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.dli { font-size: 14px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.device-info { flex: 1; min-width: 0; }
.device-brand  { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.device-models { font-size: 11.5px; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.device-tags   { display: flex; flex-wrap: wrap; gap: 4px; }

.dtag { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 10px; }
.dtag-hw     { background: rgba(13,27,42,0.07);   color: #1e293b; }
.dtag-obd    { background: rgba(59,130,246,0.10);  color: #2563eb; }
.dtag-asset  { background: rgba(196,145,42,0.12);  color: #92650a; }
.dtag-sensor { background: rgba(16,185,129,0.10);  color: #047857; }
.dtag-cam    { background: rgba(139,92,246,0.10);  color: #6d28d9; }

.protocol-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 18px 24px; background: var(--cream); border-radius: 14px;
  border: 1.5px solid var(--border); margin-bottom: 36px;
}
.protocol-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-right: 4px; }
.protocol-pill {
  font-size: 12px; font-weight: 600; color: var(--navy);
  background: #fff; border: 1px solid var(--border);
  padding: 4px 11px; border-radius: 20px;
}

/* ══ COMPREHENSIVE MOBILE / RESPONSIVE IMPROVEMENTS ════════════════════════
   Layered on top of existing breakpoints for full mobile browser compatibility
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 768px — tablet / large phone ── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; }
  section { padding: 56px 0; }
  .section { padding: 56px 0; }
  .hero-inner { padding: 70px 16px 44px; }
  .cta-section { padding: 64px 0; }
  .stats-ribbon { padding: 28px 0; }
  .page-hero { padding: 100px 0 56px; }
  .preview-layout { gap: 36px; }
  .features-groups { gap: 40px; }
  .feature-group { padding: 26px 20px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section-header { margin-bottom: 40px; }
  /* Ensure comparison table scrolls on tablet */
  .comparison-table-wrap { -webkit-overflow-scrolling: touch; }
}

/* ── 480px — small phones ── */
@media (max-width: 480px) {
  /* Base */
  .container, .container-sm { padding: 0 16px; }
  section { padding: 44px 0; }
  .section { padding: 44px 0; }

  /* Nav */
  .nav-inner { padding: 0 14px; }
  .nav-mobile a { padding: 12px 14px; font-size: 14px; }

  /* Hero */
  .hero-inner { padding: 56px 16px 36px; }
  .hero-badge { font-size: 10px; letter-spacing: 0.8px; padding: 5px 12px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn, .hero-ctas a { justify-content: center; text-align: center; }
  .hero-trust { gap: 10px; }
  .hero-trust span { font-size: 11px; }

  /* Stats ribbon */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
  .stat-number { font-size: 26px; }
  .stat-label { font-size: 10px; }

  /* Trusted logos */
  .trusted { padding: 32px 0; }
  .trusted-label { font-size: 10px; margin-bottom: 18px; }
  .trusted-logos { gap: 8px; }
  .trusted-logo-img-wrap { width: 86px; height: 38px; padding: 7px 10px; }

  /* Feature groups */
  .features-groups { gap: 28px; }
  .feature-group { padding: 20px 14px; border-radius: 12px; }
  .feature-group-header { gap: 10px; margin-bottom: 20px; padding-bottom: 16px; }
  .feature-group-icon { width: 40px; height: 40px; font-size: 18px; }
  .feature-group-title { font-size: 17px; }
  .feature-cards { grid-template-columns: 1fr; }
  .feature-card { padding: 18px 16px; }

  /* Preview / platform section */
  .preview-layout { grid-template-columns: 1fr; gap: 28px; }
  .preview-copy { order: 1; }
  .preview-visual { order: 2; }

  /* How it works steps */
  .steps-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; gap: 28px; }
  .steps-grid::before { display: none; }
  .step-item { padding: 0; }
  .step-icon { width: 72px; height: 72px; font-size: 24px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 100%; }
  .testimonial-card { padding: 22px 18px; }

  /* Pricing teaser */
  .pricing-teaser-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-card { padding: 24px 20px; }

  /* CTA section */
  .cta-section { padding: 56px 0; }
  .cta-inner { padding: 0 16px; }
  .cta-title { font-size: 28px; }
  .cta-sub { font-size: 15px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 10px; }
  .cta-buttons a, .cta-buttons button { width: 100%; max-width: 340px; justify-content: center; text-align: center; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 18px; }
  .footer-certifications { gap: 8px; }

  /* Device section */
  .device-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .device-card { padding: 12px 10px; gap: 10px; border-radius: 10px; }
  .device-logo-wrap { width: 44px; height: 44px; padding: 6px; }
  .device-brand { font-size: 12px; }
  .device-models { font-size: 10px; }

  /* Page hero */
  .page-hero { padding: 96px 0 48px; }
  .page-hero-inner { padding: 0 16px; }
  .page-hero-title { font-size: clamp(26px, 8vw, 38px); }
  .page-hero-sub { font-size: 15px; }

  /* Feature nav (sticky bar on features page) */
  .feature-nav-links { padding: 0 12px; gap: 0; }
  .feature-nav-link { padding: 12px 10px; font-size: 12px; gap: 5px; }
  .sticky-feature-nav { top: 56px; }

  /* Feature showcase */
  .feature-showcase, .feature-showcase.reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; padding-bottom: 48px; margin-bottom: 48px; }
  .showcase-screen { order: -1; }
  .feature-section-header { flex-direction: column; gap: 14px; }
  .feature-section-icon { width: 44px; height: 44px; font-size: 20px; }
  .feature-section-title { font-size: 22px; }
  .features-pair { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .feature-pair-card { padding: 20px 16px; }

  /* Analytics & security grids */
  .analytics-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .analytics-card, .security-card { padding: 20px 16px; }

  /* Contact options */
  .contact-options-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-option-card { padding: 18px 14px; }
  .contact-option-icon { width: 38px; height: 38px; font-size: 18px; margin-bottom: 10px; }
  .contact-option-card h3 { font-size: 13px; }
  .contact-layout { gap: 28px; }
  .contact-form-wrap { padding: 24px 16px; }

  /* About */
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-stat { padding: 18px 14px; }
  .about-stat-num { font-size: 32px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-card { padding: 20px 14px; }
  .team-avatar { width: 60px; height: 60px; font-size: 18px; }

  /* Section header */
  .section-header { margin-bottom: 32px; }
  .section-sub { font-size: 15px; }
  .section-badge { font-size: 10px; }

  /* Protocol bar */
  .protocol-bar { padding: 14px 16px; gap: 6px; }
  .protocol-label { font-size: 11px; }

  /* Comparison table */
  .comparison-table-wrap { -webkit-overflow-scrolling: touch; font-size: 11px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { border-radius: 12px; }
}

/* ── 360px — very small phones ── */
@media (max-width: 360px) {
  .nav-logo svg { width: 34px; height: 34px; }
  .logo-fleet, .logo-os { font-size: 18px; }
  .logo-pro-badge { font-size: 9px; padding: 1px 3px; }
  .hero-headline { letter-spacing: -0.5px; }
  .stat-number { font-size: 22px; }
  .trusted-logo-img-wrap { width: 74px; height: 34px; }
  .device-grid { grid-template-columns: 1fr; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .steps-grid { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: 24px; }
}
