/* =========================================================================
   TaxiDex — Main Stylesheet
   Premium Taxi & Limo Dispatch Software
   Architecture: Design tokens → Reset → Typography → Components → Sections
   ========================================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --brand-dark: #0d121a;
  --brand-darker: #060a10;
  --brand-navy: #111827;
  --brand-gold: #d4af37;
  --brand-gold-light: #e6c04f;
  --brand-gold-deep: #c89b2c;
  --brand-gold-rgb: 212, 175, 55;
  --gradient-gold: linear-gradient(90deg, #e6c04f 0%, #c89b2c 100%);
  --gradient-gold-diag: linear-gradient(135deg, #f3d27a 0%, #d4af37 45%, #b88a1f 100%);
  --gradient-dark: linear-gradient(180deg, #0d121a 0%, #1a2230 100%);
  --gradient-hero-overlay: linear-gradient(135deg, rgba(13,18,26,0.92) 0%, rgba(13,18,26,0.70) 60%, rgba(13,18,26,0.45) 100%);

  /* Neutrals */
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --bg-muted: #f3f4f6;
  --bg-dark: #0d121a;
  --surface: #ffffff;
  --surface-dark: #131a26;
  --surface-elevated: rgba(255, 255, 255, 0.04);
  --border: #e5e7eb;
  --border-soft: #f1f5f9;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Text */
  --text: #0f172a;
  --text-strong: #0b1220;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --text-inverse: #ffffff;
  --text-inverse-muted: #cbd5e1;

  /* Status */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-xs: 0.75rem;   /* 12 */
  --fs-sm: 0.875rem;  /* 14 */
  --fs-base: 1rem;    /* 16 */
  --fs-lg: 1.125rem;  /* 18 */
  --fs-xl: 1.25rem;   /* 20 */
  --fs-2xl: 1.5rem;   /* 24 */
  --fs-3xl: 1.875rem; /* 30 */
  --fs-4xl: 2.25rem;  /* 36 */
  --fs-5xl: 3rem;     /* 48 */
  --fs-6xl: 3.75rem;  /* 60 */
  --fs-7xl: 4.5rem;   /* 72 */

  /* Spacing scale (8px base) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 14px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.18);
  --shadow-gold: 0 8px 30px rgba(var(--brand-gold-rgb), 0.35);
  --shadow-gold-lg: 0 16px 50px rgba(var(--brand-gold-rgb), 0.45);
  --shadow-inset-line: inset 0 -1px 0 rgba(255,255,255,0.06);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 500ms;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --header-h: 76px;
}

/* ---------- 2. BASE / RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb {
  background: var(--brand-gold-deep);
  border-radius: 6px;
  border: 2px solid #f0f0f0;
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-gold); }

/* Selection */
::selection { background: rgba(var(--brand-gold-rgb), 0.3); color: var(--brand-dark); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brand-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-weight: 600;
  z-index: 200;
  transition: top var(--t-base) var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--sp-4);
}
h1 { font-size: clamp(2.25rem, 4.5vw, 4rem); line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.875rem, 3.2vw, 3rem); }
h3 { font-size: clamp(1.375rem, 2vw, 1.875rem); }
h4 { font-size: var(--fs-xl); font-weight: 700; }
h5 { font-size: var(--fs-lg); font-weight: 700; }
p { margin: 0 0 var(--sp-4); color: var(--text-muted); line-height: 1.7; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--text-muted); line-height: 1.65; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: rgba(var(--brand-gold-rgb), 0.1);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.2);
}
.eyebrow--dark { background: rgba(var(--brand-gold-rgb), 0.12); color: var(--brand-gold-light); border-color: rgba(var(--brand-gold-rgb), 0.25); }
.text-gradient {
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-balance { text-wrap: balance; }

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(3rem, 5vw, 5rem) 0; }
.section-dark { background: var(--brand-dark); color: var(--text-inverse); }
.section-dark p { color: var(--text-inverse-muted); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-soft { background: var(--bg-soft); }
.section-tint {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--sp-16); }
.section-header h2 { margin-top: var(--sp-4); }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { left: 125%; }
.btn-primary {
  background: var(--gradient-gold);
  color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(var(--brand-gold-rgb), 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--brand-dark);
}
.btn-outline {
  background: transparent;
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}
.btn-outline:hover {
  background: var(--brand-gold);
  color: var(--brand-dark);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-strong);
}
.btn-ghost:hover { color: var(--brand-gold-deep); }
.btn-sm { padding: 10px 18px; font-size: var(--fs-sm); }
.btn-lg { padding: 17px 32px; font-size: var(--fs-lg); }
.btn-block { width: 100%; }

/* ---------- 6. BADGES / CHIPS ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: var(--bg-muted);
  color: var(--text-muted);
}
.chip-gold { background: rgba(var(--brand-gold-rgb), 0.12); color: var(--brand-gold-deep); }
.chip-success { background: rgba(16, 185, 129, 0.12); color: var(--success); }

/* ---------- 7. CARDS ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--brand-gold-rgb), 0.4);
}
.card-dark {
  background: var(--surface-elevated);
  border: 1px solid var(--border-dark);
  color: #fff;
  backdrop-filter: blur(10px);
}
.card-dark:hover { border-color: rgba(var(--brand-gold-rgb), 0.4); }
.card-feature {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  background: var(--gradient-gold);
  color: var(--brand-dark);
  font-size: 1.4rem;
  margin-bottom: var(--sp-6);
  box-shadow: 0 8px 20px rgba(var(--brand-gold-rgb), 0.25);
}
.card-icon-soft {
  background: rgba(var(--brand-gold-rgb), 0.12);
  color: var(--brand-gold-deep);
  box-shadow: none;
}

/* ---------- 8. FORMS ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-4); }
.field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-strong);
}
.input,
.textarea,
.select {
  width: 100%;
  padding: 12px 14px;
  font-size: var(--fs-base);
  font-family: inherit;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(var(--brand-gold-rgb), 0.15);
}
.textarea { resize: vertical; min-height: 120px; }

/* ---------- 9. HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 24px rgba(15,23,42,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--sp-8);
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo img { width: 40px; height: 40px; display: block; }
@media (max-width: 1023px) { .nav-logo img { width: 36px; height: 36px; } }
@media (max-width: 479px)  { .nav-logo img { width: 32px; height: 32px; } }
.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-md);
  transition: color var(--t-base), background var(--t-base);
}
.nav-link:hover { color: var(--text-strong); background: var(--bg-muted); }
.nav-link.is-active { color: var(--text-strong); font-weight: 600; }
.nav-link.is-active::after {
  content: '';
  display: block;
  position: absolute;
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > .nav-link::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  margin-left: 4px;
  transition: transform var(--t-base) var(--ease-out);
}
.has-dropdown:hover > .nav-link::after,
.has-dropdown:focus-within > .nav-link::after { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t-base) var(--ease-out);
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  color: var(--text);
  transition: background var(--t-fast);
}
.dropdown-item:hover { background: var(--bg-muted); }
.dropdown-item i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(var(--brand-gold-rgb), 0.12);
  color: var(--brand-gold-deep);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.dropdown-title { font-weight: 600; font-size: var(--fs-sm); color: var(--text-strong); margin: 0; }
.dropdown-desc { font-size: var(--fs-xs); color: var(--text-subtle); margin: 2px 0 0; }
.dropdown-divider { height: 1px; background: var(--border-soft); margin: 6px 4px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-strong);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 100%);
  background: var(--brand-dark);
  color: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.mobile-menu-overlay.is-active { opacity: 1; pointer-events: auto; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-body { flex: 1; padding: var(--sp-6); overflow-y: auto; }
.mobile-menu-body .group-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: var(--sp-6) 0 var(--sp-2);
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: background var(--t-fast);
}
.mobile-menu-link i { color: rgba(255,255,255,0.55); width: 22px; }
.mobile-menu-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.mobile-menu-footer {
  padding: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

@media (max-width: 1023px) {
  .nav-main, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- 10. HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
  color: #fff;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-12); text-align: center; }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}
.hero .lead { color: rgba(255,255,255,0.78); max-width: 560px; }
@media (max-width: 960px) { .hero .lead { margin-left: auto; margin-right: auto; } }
.hero-cta {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}
@media (max-width: 960px) { .hero-cta { justify-content: center; } }
.hero-trust {
  margin-top: var(--sp-10);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  flex-wrap: wrap;
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  border: 2px solid var(--brand-dark);
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .stars { color: var(--brand-gold); letter-spacing: 2px; }

/* Hero visual: dashboard mockup */
.hero-visual {
  position: relative;
  perspective: 1500px;
}
.hero-mockup {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5),
              0 0 0 1px rgba(var(--brand-gold-rgb), 0.15);
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform var(--t-slow) var(--ease-out);
  animation: floatY 6s ease-in-out infinite;
}
.hero-mockup:hover { transform: rotateY(0deg) rotateX(0deg); }
.hero-mockup img { width: 100%; display: block; }

/* Floating cards on hero */
.float-card {
  position: absolute;
  background: rgba(13, 18, 26, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.25);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-xl);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-sm);
  animation: floatY 5s ease-in-out infinite;
}
.float-card .ic {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: var(--gradient-gold);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.float-card-1 { top: 12%; left: -6%; animation-delay: 0s; }
.float-card-2 { bottom: 16%; right: -4%; animation-delay: 1.5s; }
.float-card-3 { bottom: -4%; left: 18%; animation-delay: 3s; }
.float-card .num { font-weight: 800; font-size: var(--fs-lg); }
.float-card .lbl { color: rgba(255,255,255,0.6); font-size: 11px; }

@keyframes floatY {
  0%, 100% { transform: rotateY(-6deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(-6deg) rotateX(3deg) translateY(-12px); }
}
.float-card { animation-name: floatYSimple; }
@keyframes floatYSimple {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 960px) {
  .hero-mockup { transform: none; animation: none; }
  .float-card-1, .float-card-2, .float-card-3 { display: none; }
}

/* ---------- 11. LOGO STRIP (Social proof) ---------- */
.logo-strip {
  padding: var(--sp-12) 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.logo-strip-label {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-6);
  text-transform: uppercase;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-8);
  align-items: center;
  justify-items: center;
  opacity: 0.7;
}
.logo-row > div {
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  filter: grayscale(100%);
  transition: filter var(--t-base), opacity var(--t-base);
}
.logo-row > div:hover { filter: grayscale(0%); opacity: 1; }
@media (max-width: 768px) {
  .logo-row { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
}

/* ---------- 12. STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.stat {
  text-align: center;
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
}
.stat-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 500;
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 13. FEATURES GRID ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(var(--brand-gold-rgb), 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--brand-gold-rgb), 0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-card h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.feature-card p { font-size: var(--fs-base); color: var(--text-muted); margin: 0; }

/* ---------- 14. PRODUCT TABS / SUITE ---------- */
.suite-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--bg-muted);
  border-radius: var(--r-full);
  margin: 0 auto var(--sp-10);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.suite-tab {
  padding: 10px 20px;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--r-full);
  color: var(--text-muted);
  border: 0;
  background: transparent;
  white-space: nowrap;
  transition: all var(--t-base) var(--ease-out);
}
.suite-tab.is-active {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(13,18,26,0.25);
}
.suite-panel {
  display: none;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: center;
  animation: fadeUp var(--t-slow) var(--ease-out);
}
.suite-panel.is-active { display: grid; }
@media (max-width: 960px) {
  .suite-panel { grid-template-columns: 1fr; gap: var(--sp-10); }
}
.suite-list { list-style: none; padding: 0; margin: var(--sp-6) 0; }
.suite-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--fs-base);
  color: var(--text);
}
.suite-list li i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-gold-deep);
  width: 20px;
}
.suite-visual {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--gradient-dark);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-xl);
  min-height: 460px;
  max-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suite-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 50% 50%, rgba(var(--brand-gold-rgb), 0.14), transparent 60%),
    linear-gradient(rgba(var(--brand-gold-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-gold-rgb), 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px, 32px 32px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
}
.suite-visual > * { position: relative; z-index: 1; }
.suite-visual > img {
  border-radius: var(--r-lg);
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- Device mockup frames ---------- */
.phone-frame {
  position: relative;
  width: 230px;
  padding: 10px 10px 12px;
  background: linear-gradient(160deg, #2a2a32 0%, #0f0f14 100%);
  border-radius: 40px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  flex-shrink: 0;
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  background: #060608;
  border-radius: 14px;
  z-index: 3;
}
.phone-frame > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  aspect-ratio: 220 / 440;
  object-fit: cover;
  object-position: top center;
}

/* Floating UI annotations on phone */
.phone-annotation {
  position: absolute;
  background: rgba(13,18,26,0.92);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.3);
  border-radius: var(--r-md);
  padding: 8px 12px;
  backdrop-filter: blur(14px);
  font-size: 11px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  animation: floatYSimple 5s ease-in-out infinite;
}
.phone-annotation .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
  animation: chatPulse 1.6s ease-in-out infinite;
}
.phone-annotation .lbl { color: rgba(255,255,255,0.55); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.phone-annotation .val { font-weight: 700; font-size: 12px; }
.phone-annotation-1 { top: 15%; right: -10%; animation-delay: 0s; }
.phone-annotation-2 { bottom: 22%; left: -22%; animation-delay: 1.4s; }
.phone-annotation-3 { bottom: 8%; right: -16%; animation-delay: 2.8s; }
@media (max-width: 768px) {
  .phone-annotation-1, .phone-annotation-2, .phone-annotation-3 { display: none; }
}

/* Browser/desktop frame mockup */
.browser-frame {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.06);
  width: 100%;
  max-width: 520px;
  transform: rotateY(-2deg) rotateX(2deg);
  transition: transform var(--t-slow) var(--ease-out);
}
.suite-visual:hover .browser-frame { transform: rotateY(0) rotateX(0); }
.browser-frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #25252b 0%, #1a1a1e 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-frame-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.browser-frame-bar .b1 { background: #ff5f57; }
.browser-frame-bar .b2 { background: #ffbd2e; }
.browser-frame-bar .b3 { background: #28ca41; }
.browser-frame-bar .url {
  margin-left: 12px;
  flex: 1;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-family: 'SF Mono','Consolas',monospace;
  text-align: center;
}
.browser-frame-bar .live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--success);
  font-weight: 700;
  margin-left: 8px;
}
.browser-frame-bar .live-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  animation: chatPulse 1.6s ease-out infinite;
}
.browser-frame > img {
  width: 100%;
  height: auto;
  display: block;
}

/* Browser floating cards */
.browser-annotation {
  position: absolute;
  background: rgba(13,18,26,0.92);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.3);
  border-radius: var(--r-md);
  padding: 10px 14px;
  backdrop-filter: blur(14px);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xl);
  z-index: 5;
  animation: floatYSimple 5.5s ease-in-out infinite;
  font-size: var(--fs-xs);
}
.browser-annotation .ic {
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  background: var(--gradient-gold);
  color: var(--brand-dark);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.browser-annotation .lbl { color: rgba(255,255,255,0.55); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.browser-annotation .val { font-weight: 800; font-size: 13px; }
.browser-annotation-1 { top: 8%; right: -8%; animation-delay: 0s; }
.browser-annotation-2 { bottom: 12%; left: -10%; animation-delay: 1.8s; }
@media (max-width: 768px) {
  .browser-annotation-1, .browser-annotation-2 { display: none; }
  .browser-frame { transform: none; }
}

/* ---------- 15. PROCESS / STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  counter-reset: step;
}
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  opacity: 0.6;
}

/* ---------- 16. TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 960px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.testimonial .stars { color: var(--brand-gold); font-size: 14px; letter-spacing: 2px; margin-bottom: var(--sp-4); }
.testimonial blockquote {
  margin: 0 0 var(--sp-6);
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold-diag);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
}
.testimonial-author .name { font-weight: 600; font-size: var(--fs-sm); color: var(--text-strong); }
.testimonial-author .role { font-size: var(--fs-xs); color: var(--text-subtle); }

/* ---------- 17. PRICING TEASER ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan {
  position: relative;
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
}
.plan.is-featured {
  border-color: var(--brand-gold);
  background: linear-gradient(180deg, #fffbea 0%, #ffffff 60%);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--brand-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan h3 { margin-bottom: var(--sp-2); }
.plan-price { font-size: 2.5rem; font-weight: 800; color: var(--text-strong); line-height: 1; margin-bottom: 4px; }
.plan-price small { font-size: 1rem; font-weight: 500; color: var(--text-subtle); }
.plan-desc { color: var(--text-muted); margin-bottom: var(--sp-6); }
.plan-features { list-style: none; padding: 0; margin: 0 0 var(--sp-8); }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: var(--fs-sm);
  color: var(--text);
}
.plan-features li i { color: var(--brand-gold-deep); margin-top: 4px; }

/* ---------- 18. FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-3);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item.is-open { border-color: rgba(var(--brand-gold-rgb), 0.4); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-strong);
  background: transparent;
  border: 0;
}
.faq-q i { color: var(--brand-gold-deep); transition: transform var(--t-base); flex-shrink: 0; }
.faq-item.is-open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--sp-6);
  color: var(--text-muted);
  transition: max-height var(--t-slow) var(--ease-out), padding var(--t-base);
}
.faq-item.is-open .faq-a { padding-bottom: var(--sp-5); max-height: 400px; }

/* ---------- 19. CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  background: var(--brand-dark);
  border-radius: var(--r-2xl);
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(var(--brand-gold-rgb), 0.18), transparent 60%),
    radial-gradient(600px 400px at 100% 100%, rgba(var(--brand-gold-rgb), 0.12), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; max-width: 720px; margin: 0 auto var(--sp-4); }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto var(--sp-8); }

/* ---------- 20. FOOTER ---------- */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-20) 0 var(--sp-8);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(var(--brand-gold-rgb), 0.06), transparent 50%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
  position: relative;
}
.footer-grid .footer-col h5 { font-size: var(--fs-xs); margin-bottom: var(--sp-4); }
.footer-grid .footer-col ul { gap: 8px; }
.footer-grid .footer-col a { font-size: var(--fs-xs); }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-8); } }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; margin-bottom: var(--sp-4); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: var(--fs-sm); max-width: 320px; }
.footer-socials { display: flex; gap: 10px; margin-top: var(--sp-4); }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--t-base);
}
.footer-socials a:hover {
  background: var(--brand-gold);
  color: var(--brand-dark);
  transform: translateY(-3px);
}
.footer-col h5 {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--brand-gold); }
.footer-col li i { color: var(--brand-gold); width: 18px; margin-right: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  position: relative;
}
.footer-bottom-links { display: flex; gap: var(--sp-5); flex-wrap: wrap; }

/* ---------- 21. ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 4px 14px rgba(var(--brand-gold-rgb), 0.35), 0 0 0 0 rgba(var(--brand-gold-rgb), 0.45); }
  50% { box-shadow: 0 4px 14px rgba(var(--brand-gold-rgb), 0.35), 0 0 0 14px rgba(var(--brand-gold-rgb), 0); }
}
.pulse { animation: pulseGold 2.4s infinite; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-scale { transform: scale(0.96); }
.reveal.is-in,
.reveal-left.is-in,
.reveal-right.is-in,
.reveal-scale.is-in {
  opacity: 1;
  transform: translate(0,0) scale(1);
}
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }
.reveal[data-delay="500"] { transition-delay: 500ms; }

/* Marquee */
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: var(--sp-12);
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
}

/* ---------- 22. UTILITY HELPERS (small set, semantic) ---------- */
.u-grid { display: grid; }
.u-flex { display: flex; }
.u-hidden { display: none !important; }
.u-center { text-align: center; }
.u-text-light { color: #fff !important; }
.u-mt-0 { margin-top: 0 !important; }
.u-mb-0 { margin-bottom: 0 !important; }
.u-py-tight { padding-block: var(--sp-12); }
.mt-6 { margin-top: var(--sp-6) !important; }
.mt-4 { margin-top: var(--sp-4) !important; }

/* Inline-tweak helpers for hero numbers */
.num-unit { font-size: 12px; color: rgba(255,255,255,0.6); margin-left: 2px; }
.suite-panel-h3 { margin-top: var(--sp-4); }

/* AI split */
.ai-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.ai-split-img {
  width: 100%;
  height: auto;
  border-radius: var(--r-2xl);
}
.ai-split .suite-list { margin-top: var(--sp-6); }
.ai-split .suite-list li i { color: var(--brand-gold); }
@media (max-width: 960px) {
  .ai-split { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .ai-split .suite-list li { text-align: left; }
}

/* Integrations row override (more columns) */
.integration-row { grid-template-columns: repeat(6, 1fr); opacity: 0.85; }
@media (max-width: 768px) { .integration-row { grid-template-columns: repeat(3, 1fr); } }

/* Inline FAQ link override */
.faq-a a { color: var(--brand-gold-deep); text-decoration: underline; }

/* CTA banner centered hero-cta */
.cta-banner .hero-cta { justify-content: center; }

/* Print */
@media print {
  .site-header, .site-footer, .mobile-menu, .mobile-menu-overlay { display: none !important; }
  .hero { padding-top: 1rem; }
}

/* =========================================================================
   23. PAGE HERO (smaller variant for inner pages)
   ========================================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
  color: #fff;
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3rem, 5vw, 5rem);
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(var(--brand-gold-rgb), 0.18), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(var(--brand-gold-rgb), 0.10), transparent 60%);
  z-index: -1;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--sp-5);
}
.page-hero .lead { color: rgba(255,255,255,0.78); max-width: 640px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
@media (max-width: 960px) {
  .page-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .page-hero .lead { margin-left: auto; margin-right: auto; }
  .page-hero-cta { justify-content: center; }
}
.page-hero-cta {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}
.page-hero-meta {
  margin-top: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-sm);
}
.page-hero-meta strong { color: #fff; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.7);
  transition: color var(--t-fast);
}
.breadcrumbs a:hover { color: var(--brand-gold); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs [aria-current="page"] { color: var(--brand-gold-light); font-weight: 600; }

/* =========================================================================
   24. PRICING (Full page — toggle, calculator, plans)
   ========================================================================= */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-muted);
  padding: 6px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
  position: relative;
}
.billing-toggle button {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 10px 22px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: color var(--t-base);
  z-index: 1;
}
.billing-toggle button.is-active {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 4px 12px rgba(13,18,26,0.25);
}
.billing-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-left: var(--sp-3);
}

/* Range slider (calculator) */
.calculator-card {
  max-width: 680px;
  margin: 0 auto var(--sp-12);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}
.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.calc-head label { font-weight: 600; color: var(--text-strong); font-size: var(--fs-base); }
.calc-driver-count {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.calc-driver-count + span { color: var(--text-subtle); font-size: var(--fs-sm); font-weight: 500; margin-left: 4px; }
.range-slider {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-gold) 0%, var(--brand-gold) var(--val, 50%), var(--bg-muted) var(--val, 50%));
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-gold);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(var(--brand-gold-rgb), 0.4);
  transition: transform var(--t-fast);
}
.range-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-gold);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(var(--brand-gold-rgb), 0.4);
}
.range-slider:active::-webkit-slider-thumb { transform: scale(1.1); }
.range-scale {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--text-subtle);
  margin-top: var(--sp-3);
}

/* Plan-large for pricing page */
.plan-large {
  display: flex;
  flex-direction: column;
  padding: var(--sp-10) var(--sp-8) var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.plan-large:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-large.is-featured {
  border: 2px solid var(--brand-gold);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(180deg, #fffbea 0%, #ffffff 70%);
  z-index: 2;
}
.plan-large.is-dark {
  background: var(--brand-dark);
  color: #fff;
  border-color: rgba(255,255,255,0.1);
}
.plan-large.is-dark h3 { color: #fff; }
.plan-large.is-dark .plan-desc,
.plan-large.is-dark .plan-features li { color: rgba(255,255,255,0.78); }
.plan-large .plan-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--brand-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  box-shadow: 0 6px 16px rgba(var(--brand-gold-rgb), 0.4);
}
.plan-large .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: var(--sp-4) 0 var(--sp-2);
}
.plan-large .price-row .currency { font-size: 1.2rem; font-weight: 700; color: var(--text-muted); }
.plan-large .price-row .amount {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1;
}
.plan-large.is-dark .price-row .amount { color: #fff; }
.plan-large.is-dark .price-row .currency { color: rgba(255,255,255,0.7); }
.plan-large .price-row .period { color: var(--text-subtle); font-size: var(--fs-sm); }
.plan-large .per-driver {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--brand-gold-deep);
  background: rgba(var(--brand-gold-rgb), 0.12);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-top: var(--sp-2);
}
.plan-large .plan-features {
  list-style: none;
  padding: 0;
  margin: var(--sp-6) 0 var(--sp-8);
  flex: 1;
}
.plan-large .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: var(--fs-sm);
  color: var(--text);
}
.plan-large .plan-features li i { color: var(--brand-gold-deep); margin-top: 3px; flex-shrink: 0; }
.plan-large .plan-features li.is-disabled { color: var(--text-subtle); }
.plan-large .plan-features li.is-disabled i { color: var(--border); }
.plan-large.is-dark .plan-features li i { color: var(--brand-gold); }

.assurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 920px;
  margin: var(--sp-16) auto 0;
  text-align: center;
}
@media (max-width: 768px) { .assurances { grid-template-columns: 1fr; } }
.assurance {
  padding: var(--sp-6);
}
.assurance i {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: rgba(var(--brand-gold-rgb), 0.12);
  color: var(--brand-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--sp-3);
}
.assurance h4 { font-size: var(--fs-base); margin-bottom: 6px; color: var(--text-strong); }
.assurance p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-size: var(--fs-sm);
}
.compare-table th,
.compare-table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.compare-table thead th {
  background: var(--bg-soft);
  color: var(--text-strong);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody td { text-align: center; color: var(--text); }
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-strong);
}
.compare-table .yes { color: var(--success); font-size: 1rem; }
.compare-table .no { color: var(--border); font-size: 1rem; }
.compare-table .featured-col {
  background: rgba(var(--brand-gold-rgb), 0.06);
  color: var(--brand-gold-deep);
}
@media (max-width: 720px) {
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 640px; }
}

/* =========================================================================
   25. SPLIT / ALT FEATURE BLOCKS (used on dispatch-software & feature pages)
   ========================================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.split.split-reverse > :first-child { order: 2; }
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-10); }
  .split.split-reverse > :first-child { order: 0; }
}
.split-list { list-style: none; padding: 0; margin: var(--sp-5) 0 var(--sp-6); }
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--fs-base);
  color: var(--text);
}
.split-list li i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-gold-deep);
  width: 20px;
}
.section-dark .split-list li { color: rgba(255,255,255,0.85); }
.section-dark .split-list li i { color: var(--brand-gold); }

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}
.metric-card-dark {
  background: linear-gradient(160deg, #131a26 0%, #0d121a 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}
.metric-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-5);
}
.metric-card-head h4 {
  margin: 0;
  font-size: var(--fs-base);
  color: var(--text-strong);
}
.metric-card-dark .metric-card-head h4 { color: #fff; }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}
.live-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.bar-row { margin-bottom: var(--sp-4); }
.bar-row:last-child { margin-bottom: 0; }
.bar-row-top {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  margin-bottom: 6px;
  color: var(--text-muted);
}
.metric-card-dark .bar-row-top { color: rgba(255,255,255,0.7); }
.bar-row-top strong { color: var(--text-strong); font-weight: 700; }
.metric-card-dark .bar-row-top strong { color: #fff; }
.bar-track {
  height: 8px;
  background: var(--bg-muted);
  border-radius: 999px;
  overflow: hidden;
}
.metric-card-dark .bar-track { background: rgba(255,255,255,0.08); }
.bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 999px;
  transition: width 1s var(--ease-out);
}
.metric-card-footer {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.metric-card-dark .metric-card-footer { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.metric-card-footer strong { color: var(--text-strong); }
.metric-card-dark .metric-card-footer strong { color: #fff; }

.kpi-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--r-xl);
  margin-top: var(--sp-4);
}
.kpi-pair .kpi-num {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.kpi-pair .kpi-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}

/* =========================================================================
   26. CONTACT PAGE
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info { padding-right: var(--sp-4); }
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-8) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.contact-info-list li {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.contact-info-list .ic {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: rgba(var(--brand-gold-rgb), 0.12);
  color: var(--brand-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-list h4 {
  font-size: var(--fs-base);
  margin: 0 0 4px;
  color: var(--text-strong);
}
.contact-info-list p, .contact-info-list a {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-info-list a { transition: color var(--t-fast); }
.contact-info-list a:hover { color: var(--brand-gold-deep); }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.contact-card h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-2);
}
.contact-card .lead { font-size: var(--fs-base); margin-bottom: var(--sp-6); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field-hint {
  font-size: var(--fs-xs);
  color: var(--text-subtle);
  margin-top: 4px;
}
.field-error {
  font-size: var(--fs-xs);
  color: var(--danger);
  margin-top: 4px;
  display: none;
}
.input.is-invalid,
.textarea.is-invalid,
.select.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.field.has-error .field-error { display: block; }
.form-success {
  display: none;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #065f46;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
}
.form-success.is-active { display: block; }
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.checkbox-row input { margin-top: 4px; accent-color: var(--brand-gold-deep); }

.support-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}
@media (max-width: 768px) { .support-tiles { grid-template-columns: 1fr; } }
.support-tile {
  text-align: center;
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.support-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--brand-gold-rgb), 0.3);
}
.support-tile i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--brand-dark);
  border-radius: var(--r-full);
  font-size: 1.25rem;
  margin-bottom: var(--sp-4);
}
.support-tile h3 { font-size: var(--fs-lg); margin-bottom: 6px; }
.support-tile p { font-size: var(--fs-sm); margin-bottom: var(--sp-4); }

/* =========================================================================
   27. DISPATCH-SOFTWARE PAGE EXTRAS
   ========================================================================= */
.alt-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.alt-feature:hover { border-color: rgba(var(--brand-gold-rgb), 0.35); box-shadow: var(--shadow-md); }
.alt-feature .ic {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--gradient-gold);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.alt-feature h3 { font-size: var(--fs-lg); margin: 0 0 6px; }
.alt-feature p { font-size: var(--fs-sm); margin: 0; }
.alt-feature .tag-row { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.alt-feature .tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--bg-muted);
  color: var(--text-muted);
}
.alt-feature .tag-success { background: rgba(16,185,129,0.12); color: var(--success); }
.alt-feature .tag-gold { background: rgba(var(--brand-gold-rgb), 0.12); color: var(--brand-gold-deep); }
.alt-feature .tag-info { background: rgba(59,130,246,0.12); color: var(--info); }

.warning-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
@media (max-width: 768px) { .warning-list { grid-template-columns: 1fr; } }
.warning-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: var(--sp-5);
  background: var(--surface);
  border-left: 3px solid var(--warning);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--text);
  list-style: none;
}
.warning-list li i { color: var(--warning); margin-top: 2px; }

/* Reveal flip variants used historically (alias) */
.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal-up.is-in { opacity: 1; transform: translateY(0); }

/* =========================================================================
   28. AI ENGINE VISUALIZATION (homepage AI section)
   ========================================================================= */
.ai-visual {
  position: relative;
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  background:
    radial-gradient(600px 400px at 50% 50%, rgba(var(--brand-gold-rgb), 0.12), transparent 65%),
    linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.2) 100%);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.18);
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.ai-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--brand-gold-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-gold-rgb), 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
}
.ai-svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ai-node {
  transform-origin: center;
  animation: aiPulse 3.2s ease-in-out infinite;
}
.ai-node-2 { animation-delay: 0.4s; }
.ai-node-3 { animation-delay: 0.8s; }
.ai-node-4 { animation-delay: 1.2s; }
.ai-node-5 { animation-delay: 1.6s; }
.ai-node-6 { animation-delay: 2.0s; }
@keyframes aiPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}
.ai-core {
  animation: aiSpin 32s linear infinite;
  transform-origin: 300px 240px;
}
@keyframes aiSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ai-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: aiLineFlow 4s ease-in-out infinite;
}
.ai-line-2 { animation-delay: 0.6s; }
.ai-line-3 { animation-delay: 1.2s; }
.ai-line-4 { animation-delay: 1.8s; }
.ai-line-5 { animation-delay: 2.4s; }
.ai-line-6 { animation-delay: 3.0s; }
@keyframes aiLineFlow {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  20%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.4; }
}

/* AI floating decision cards beside the SVG */
.ai-decision {
  position: absolute;
  background: rgba(13,18,26,0.85);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.3);
  border-radius: var(--r-md);
  padding: 10px 14px;
  backdrop-filter: blur(14px);
  font-size: var(--fs-xs);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xl);
  animation: floatYSimple 5s ease-in-out infinite;
  z-index: 2;
}
.ai-decision .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  animation: aiPulse 1.6s ease-in-out infinite;
}
.ai-decision .lbl { color: rgba(255,255,255,0.55); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.ai-decision .val { font-weight: 700; font-size: var(--fs-sm); }
.ai-decision-1 { top: 14%; right: -4%; animation-delay: 0s; }
.ai-decision-2 { bottom: 22%; left: -6%; animation-delay: 1.2s; }
.ai-decision-3 { bottom: -4%; right: 14%; animation-delay: 2.4s; }
@media (max-width: 960px) {
  .ai-decision-1, .ai-decision-2, .ai-decision-3 { display: none; }
}

/* =========================================================================
   29. INTEGRATIONS — Branded chip grid
   ========================================================================= */
.int-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-10);
}
@media (max-width: 900px) { .int-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .int-grid { grid-template-columns: repeat(2, 1fr); } }
.int-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--t-base) var(--ease-out);
  text-align: center;
  min-height: 110px;
}
.int-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--brand-gold-rgb), 0.4);
}
.int-chip i {
  font-size: 1.6rem;
  color: var(--brand-gold-deep);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--brand-gold-rgb), 0.08);
  border-radius: var(--r-md);
}
.int-chip span {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* =========================================================================
   30. LOGO STRIP — Branded company marks
   ========================================================================= */
.fleet-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
  align-items: center;
  justify-items: center;
  margin-top: var(--sp-6);
}
@media (max-width: 768px) { .fleet-row { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); } }
.fleet-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
}
.fleet-mark i {
  font-size: 1.05rem;
  color: var(--brand-gold-deep);
}
.fleet-mark:hover {
  border-color: rgba(var(--brand-gold-rgb), 0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* =========================================================================
   31. ICP STRIP — three target audience tags under hero
   ========================================================================= */
.icp-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.icp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.2);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: all var(--t-base);
}
.icp-tag i { color: var(--brand-gold); }
.icp-tag:hover { background: rgba(var(--brand-gold-rgb), 0.12); transform: translateY(-2px); }

/* =========================================================================
   32. SECTION BACKGROUND PATTERNS (subtle)
   ========================================================================= */
.section-pattern {
  position: relative;
  isolation: isolate;
}
.section-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(var(--brand-gold-rgb), 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  z-index: -1;
  pointer-events: none;
}

/* Logo accent watermark for AI section */
.ai-logo-mark {
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-6);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  z-index: 3;
}
.ai-logo-mark img { height: 24px; width: auto; opacity: 0.95; }

/* =========================================================================
   33. PROBLEM / SOLUTION BLOCKS (70/30 content rule)
   ========================================================================= */
.ps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
@media (max-width: 768px) { .ps-grid { grid-template-columns: 1fr; } }
.ps-card {
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}
.ps-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(var(--brand-gold-rgb), 0.3); }
.ps-card .ps-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.ps-card .ps-label-problem { background: rgba(239,68,68,0.1); color: var(--danger); }
.ps-card .ps-label-solution { background: rgba(16,185,129,0.1); color: var(--success); }
.ps-card h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.ps-card p { font-size: var(--fs-base); margin-bottom: var(--sp-4); }
.ps-card .ps-impact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-soft);
  border-left: 3px solid var(--brand-gold);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-strong);
}
.ps-card .ps-impact strong { color: var(--brand-gold-deep); }

/* Linked problem→solution pair (single card with both halves) */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  background: var(--surface);
}
@media (max-width: 768px) { .problem-solution { grid-template-columns: 1fr; } }
.problem-solution > div { padding: var(--sp-6) var(--sp-8); }
.problem-solution .problem {
  background: linear-gradient(160deg, rgba(239,68,68,0.05), transparent);
  border-right: 1px solid var(--border);
}
@media (max-width: 768px) { .problem-solution .problem { border-right: 0; border-bottom: 1px solid var(--border); } }
.problem-solution .solution {
  background: linear-gradient(160deg, rgba(16,185,129,0.04), transparent);
}
.problem-solution h4 { font-size: var(--fs-lg); margin: 0 0 6px; display: flex; align-items: center; gap: 8px; }
.problem-solution .problem h4 { color: var(--danger); }
.problem-solution .solution h4 { color: var(--success); }
.problem-solution p { font-size: var(--fs-sm); margin: 0; line-height: 1.65; }

/* =========================================================================
   34. COMPARISON TABLE
   ========================================================================= */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--surface);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 720px;
}
.compare-table thead th {
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  background: var(--brand-dark);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.compare-table thead th:first-child {
  background: transparent;
  color: var(--text-strong);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  font-weight: 600;
}
.compare-table thead th.is-us {
  background: var(--gradient-gold);
  color: var(--brand-dark);
  position: relative;
}
.compare-table thead th.is-us::after {
  content: 'Recommended';
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--brand-dark);
  color: var(--brand-gold);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.compare-table tbody td {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--border-soft);
  vertical-align: top;
  color: var(--text);
}
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-strong);
  width: 30%;
}
.compare-table tbody tr:nth-child(even) td { background: var(--bg-soft); }
.compare-yes { color: var(--success); font-weight: 600; }
.compare-no { color: var(--danger); font-weight: 600; }
.compare-partial { color: var(--warning); font-weight: 600; }
.compare-yes::before { content: '\f00c '; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 6px; }
.compare-no::before { content: '\f00d '; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 6px; }
.compare-partial::before { content: '\f071 '; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 6px; }

/* Verdict block under compare table */
.verdict {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
@media (max-width: 768px) { .verdict { grid-template-columns: 1fr; } }
.verdict-card {
  padding: var(--sp-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.verdict-card h4 { font-size: var(--fs-base); margin: 0 0 6px; color: var(--brand-gold-deep); }
.verdict-card p { font-size: var(--fs-sm); margin: 0; }

/* =========================================================================
   35. BLOG GRID + CARDS
   ========================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-base) var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(var(--brand-gold-rgb), 0.4); }
.blog-card-img {
  aspect-ratio: 16 / 9;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.blog-card-img.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,18,26,0.55) 0%, rgba(13,18,26,0.78) 100%);
}
.blog-card-img.has-photo i { position: relative; z-index: 1; }
.blog-card-img i {
  font-size: 3rem;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}
.blog-card-body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-gold-deep);
  margin-bottom: var(--sp-2);
}
.blog-card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-3); line-height: 1.3; }
.blog-card p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-4); flex: 1; }
.blog-card-meta {
  font-size: var(--fs-xs);
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.blog-card-meta i { color: var(--brand-gold-deep); }

/* Featured blog card spans 2 cols */
.blog-card.is-featured { grid-column: span 2; flex-direction: row; }
@media (max-width: 768px) { .blog-card.is-featured { grid-column: span 1; flex-direction: column; } }
.blog-card.is-featured .blog-card-img { width: 50%; aspect-ratio: auto; min-height: 240px; }
@media (max-width: 768px) { .blog-card.is-featured .blog-card-img { width: 100%; aspect-ratio: 16 / 9; min-height: auto; } }
.blog-card.is-featured .blog-card-body { width: 50%; padding: var(--sp-8); }
@media (max-width: 768px) { .blog-card.is-featured .blog-card-body { width: 100%; } }

/* =========================================================================
   36. CASE STUDY CARD
   ========================================================================= */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 768px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: all var(--t-base);
  text-decoration: none;
  color: inherit;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(var(--brand-gold-rgb), 0.4); }
.case-card-tag {
  align-self: flex-start;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--bg-muted);
  color: var(--text-muted);
}
.case-card h3 { font-size: var(--fs-xl); margin: 0; }
.case-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--r-md);
}
.case-card-stats .num {
  font-size: var(--fs-2xl);
  font-weight: 800;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.case-card-stats .lbl {
  font-size: 11px;
  color: var(--text-subtle);
  font-weight: 600;
  margin-top: 4px;
}

/* =========================================================================
   37. ROI CALCULATOR
   ========================================================================= */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr; } }
.roi-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}
.roi-form-card h3 { margin-top: 0; font-size: var(--fs-xl); }
.roi-input-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-5);
}
.roi-input-row label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-strong);
  display: flex;
  justify-content: space-between;
}
.roi-input-row label .val {
  font-weight: 800;
  color: var(--brand-gold-deep);
  font-size: var(--fs-base);
}
.roi-result-card {
  background: var(--gradient-dark);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.roi-result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(var(--brand-gold-rgb), 0.18), transparent 60%);
  pointer-events: none;
}
.roi-result-card > * { position: relative; z-index: 1; }
.roi-result-card h3 { color: #fff; margin-top: 0; }
.roi-big {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: var(--sp-3) 0 var(--sp-1);
  letter-spacing: -0.03em;
}
.roi-big-sub { color: rgba(255,255,255,0.65); font-size: var(--fs-sm); margin: 0 0 var(--sp-6); }
.roi-breakdown { display: flex; flex-direction: column; gap: var(--sp-3); }
.roi-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-sm);
}
.roi-line:last-child { border-bottom: 0; }
.roi-line .lbl { color: rgba(255,255,255,0.7); }
.roi-line .val { color: #fff; font-weight: 700; }
.roi-line .val.is-positive { color: #10b981; }
.roi-line .val.is-negative { color: #ef4444; }

/* =========================================================================
   38. SOLUTIONS PAGE BLOCKS
   ========================================================================= */
.solution-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 768px) { .solution-pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(var(--brand-gold-rgb), 0.3); }
.pillar-num {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
}
.pillar h3 { position: relative; z-index: 1; }
.pillar p { position: relative; z-index: 1; }

/* =========================================================================
   39. ANIMATED LOTTIE-STYLE PLACEHOLDERS (pure SVG, no external dep)
   ========================================================================= */
.anim-illust {
  width: 100%;
  height: auto;
  display: block;
}
.dot-orbit {
  transform-origin: center;
  animation: orbit 8s linear infinite;
}
.dot-orbit-2 { animation-duration: 12s; animation-direction: reverse; }
@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.path-draw {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: pathDraw 3s ease-out forwards infinite;
}
@keyframes pathDraw {
  to { stroke-dashoffset: 0; }
}

/* =========================================================================
   40. COOKIE CONSENT BANNER (GDPR/CCPA)
   ========================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  background: var(--brand-dark);
  color: #fff;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.25);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-5);
  z-index: 200;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 500ms var(--ease-out), opacity 400ms;
  font-size: var(--fs-sm);
}
.cookie-banner.is-shown { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { color: #fff; font-size: var(--fs-base); margin: 0 0 6px; }
.cookie-banner p { color: rgba(255,255,255,0.75); font-size: var(--fs-sm); margin: 0 0 var(--sp-4); }
.cookie-banner p a { color: var(--brand-gold); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.cookie-banner .btn-sm { padding: 8px 14px; font-size: var(--fs-xs); }

/* =========================================================================
   41. STICKY BOTTOM CTA BAR (long-page conversion)
   ========================================================================= */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--gradient-gold);
  color: var(--brand-dark);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--shadow-xl);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 500ms var(--ease-out), opacity 400ms;
  flex-wrap: wrap;
}
.sticky-cta.is-shown { transform: translateY(0); opacity: 1; }
.sticky-cta-text { font-weight: 700; font-size: var(--fs-sm); }
.sticky-cta-text small { font-weight: 500; display: block; opacity: 0.8; font-size: var(--fs-xs); }
.sticky-cta-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.sticky-cta button.close {
  background: transparent;
  border: 0;
  color: rgba(13,18,26,0.7);
  font-size: 18px;
  padding: 4px 8px;
  cursor: pointer;
}
.sticky-cta button.close:hover { color: var(--brand-dark); }
@media (max-width: 640px) {
  .sticky-cta { padding: var(--sp-3); }
  .sticky-cta-text small { display: none; }
}

/* =========================================================================
   42. EXIT-INTENT MODAL
   ========================================================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.modal-backdrop.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--surface);
  max-width: 560px;
  width: 100%;
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  transform: scale(0.96);
  transition: transform 300ms var(--ease-out);
  text-align: center;
}
.modal-backdrop.is-open .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-muted);
  border: 0;
  font-size: 16px;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--brand-dark); color: #fff; }
.modal .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--sp-4);
  background: var(--gradient-gold);
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  font-size: 1.75rem;
}
.modal h3 { margin-bottom: var(--sp-3); }
.modal p { margin-bottom: var(--sp-6); }
.modal .input { margin-bottom: var(--sp-3); }

/* =========================================================================
   43. LIVE CHAT WIDGET BUTTON (Crisp/Intercom placeholder)
   ========================================================================= */
.chat-fab {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 56px;
  height: 56px;
  background: var(--brand-dark);
  color: var(--brand-gold);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(13,18,26,0.4);
  cursor: pointer;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 300ms var(--ease-out);
}
.chat-fab:hover { transform: scale(1.08); background: var(--brand-gold); color: var(--brand-dark); }
.chat-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brand-gold);
  opacity: 0;
  animation: chatPulse 2.4s ease-out infinite;
}
@keyframes chatPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
.chat-fab-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--danger);
  border: 2px solid #fff;
  border-radius: 50%;
}

/* =========================================================================
   44. NEWSLETTER FOOTER + SOCIAL PROOF TICKER
   ========================================================================= */
.newsletter-band {
  background: var(--brand-dark);
  padding: var(--sp-12) 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 50%, rgba(var(--brand-gold-rgb), 0.12), transparent 60%);
  pointer-events: none;
}
.newsletter-band > * { position: relative; z-index: 1; }
.newsletter-band h3 { color: #fff; font-size: var(--fs-2xl); margin-bottom: var(--sp-2); text-align: center; }
.newsletter-band p { color: rgba(255,255,255,0.7); text-align: center; margin-bottom: var(--sp-6); }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  color: #fff;
  font-size: var(--fs-base);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--brand-gold); box-shadow: 0 0 0 4px rgba(var(--brand-gold-rgb), 0.18); }

/* Live ticker (rides processed) */
.live-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--r-full);
  color: var(--success);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.02em;
}
.live-ticker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: chatPulse 2s ease-out infinite;
}

/* =========================================================================
   45. CURRENCY SWITCHER (small UI element)
   ========================================================================= */
.currency-switcher {
  display: inline-flex;
  background: var(--bg-muted);
  border-radius: var(--r-full);
  padding: 3px;
  gap: 2px;
}
.currency-switcher button {
  padding: 4px 10px;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--r-full);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 200ms;
}
.currency-switcher button.is-active {
  background: var(--brand-dark);
  color: #fff;
}

/* =========================================================================
   46. STATUS PAGE + CHANGELOG
   ========================================================================= */
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
}
.status-row .name { font-weight: 600; color: var(--text-strong); }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.status-ok { background: rgba(16,185,129,0.12); color: var(--success); }
.status-ok .dot { background: var(--success); }
.status-warn { background: rgba(245,158,11,0.12); color: var(--warning); }
.status-warn .dot { background: var(--warning); }
.status-down { background: rgba(239,68,68,0.12); color: var(--danger); }
.status-down .dot { background: var(--danger); }

.changelog-entry {
  border-left: 3px solid var(--brand-gold);
  padding: var(--sp-4) var(--sp-6);
  background: var(--bg-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: var(--sp-4);
}
.changelog-entry .ver {
  font-weight: 800;
  color: var(--brand-gold-deep);
  font-size: var(--fs-sm);
  margin-bottom: 4px;
}
.changelog-entry .date { font-size: var(--fs-xs); color: var(--text-subtle); margin-bottom: var(--sp-2); }
.changelog-entry ul { padding-left: 1.2rem; margin: 0; }
.changelog-entry li { font-size: var(--fs-sm); margin-bottom: 4px; }
.changelog-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-right: 6px;
  vertical-align: middle;
}
.tag-new   { background: rgba(16,185,129,0.12); color: var(--success); }
.tag-fix   { background: rgba(59,130,246,0.12); color: var(--info); }
.tag-improve { background: rgba(var(--brand-gold-rgb), 0.12); color: var(--brand-gold-deep); }

/* =========================================================================
   47. AWARDS / PRESS GRID
   ========================================================================= */
.award-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 768px) { .award-grid { grid-template-columns: repeat(2, 1fr); } }
.award {
  text-align: center;
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.award i {
  font-size: 2.2rem;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--sp-3);
  display: inline-block;
}
.award h4 { font-size: var(--fs-base); margin: 0 0 4px; }
.award p { font-size: var(--fs-xs); color: var(--text-subtle); margin: 0; }

/* =========================================================================
   48. DOWNLOAD / LEAD-MAGNET PAGE
   ========================================================================= */
.download-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
@media (max-width: 720px) { .download-card { grid-template-columns: 1fr; text-align: center; } }
.download-cover {
  aspect-ratio: 3/4;
  background: var(--gradient-dark);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}
.download-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 200px at 50% 30%, rgba(var(--brand-gold-rgb), 0.25), transparent 60%);
}
.download-cover-inner {
  position: relative;
  text-align: center;
  color: #fff;
}
.download-cover-inner i {
  font-size: 3rem;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--sp-3);
}
.download-cover-inner .title {
  font-weight: 800;
  font-size: var(--fs-lg);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.download-cover-inner .subtitle {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--sp-2);
}

/* =========================================================================
   49. QUIZ / WIZARD
   ========================================================================= */
.quiz {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 4vw, 3rem);
}
.quiz-step { display: none; animation: fadeUp 400ms var(--ease-out); }
.quiz-step.is-active { display: block; }
.quiz-progress {
  height: 6px;
  background: var(--bg-muted);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}
.quiz-progress-bar {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: var(--r-full);
  transition: width 500ms var(--ease-out);
  width: 0;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
@media (max-width: 560px) { .quiz-options { grid-template-columns: 1fr; } }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--sp-4) var(--sp-5);
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all 200ms;
  text-align: left;
}
.quiz-option:hover { border-color: var(--brand-gold); background: rgba(var(--brand-gold-rgb), 0.04); }
.quiz-option.is-selected { border-color: var(--brand-gold); background: rgba(var(--brand-gold-rgb), 0.08); }
.quiz-option i {
  color: var(--brand-gold-deep);
  width: 28px;
  height: 28px;
  background: rgba(var(--brand-gold-rgb), 0.12);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.quiz-result {
  text-align: center;
  padding: var(--sp-8);
  background: var(--gradient-dark);
  color: #fff;
  border-radius: var(--r-xl);
}
.quiz-result h3 { color: #fff; margin-bottom: var(--sp-2); }
.quiz-result .plan-name {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: var(--sp-3) 0;
}

/* =========================================================================
   50. CALCULATOR SHARED LAYOUT
   ========================================================================= */
.calc-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
@media (max-width: 900px) { .calc-card { grid-template-columns: 1fr; } }
.calc-inputs { padding: var(--sp-8); }
.calc-output {
  padding: var(--sp-8);
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.calc-output::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 50% 0%, rgba(var(--brand-gold-rgb), 0.15), transparent 60%);
  pointer-events: none;
}
.calc-output > * { position: relative; z-index: 1; }
.calc-output h3 { color: #fff; margin-top: 0; }
.calc-big {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: var(--sp-3) 0 var(--sp-1);
}

/* =========================================================================
   51. CASE STUDY DETAIL PAGE
   ========================================================================= */
.case-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
@media (max-width: 640px) { .case-hero-stats { grid-template-columns: 1fr; } }
.case-hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.2);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
}
.case-hero-stat .num {
  font-size: var(--fs-4xl);
  font-weight: 900;
  background: var(--gradient-gold-diag);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.case-hero-stat .lbl {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.case-section { max-width: 760px; margin: 0 auto; }
.case-section h2 { font-size: var(--fs-2xl); margin-top: var(--sp-10); }
.case-section blockquote {
  margin: var(--sp-6) 0;
  padding: var(--sp-6);
  background: var(--bg-soft);
  border-left: 4px solid var(--brand-gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--text-strong);
}

/* =========================================================================
   52. REGION PAGE (localised landing)
   ========================================================================= */
.region-strip {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}
.region-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text);
  transition: all var(--t-base);
}
.region-chip:hover { border-color: var(--brand-gold); transform: translateY(-2px); }
.region-chip.is-active { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }

/* Partner / Affiliate page */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card {
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
}
.tier-card .tier-name {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
}
.tier-card h3 { font-size: var(--fs-2xl); margin: var(--sp-3) 0; }
.tier-card .perks { list-style: none; padding: 0; margin: var(--sp-4) 0; text-align: left; }
.tier-card .perks li { padding: 6px 0; font-size: var(--fs-sm); display: flex; gap: 8px; }
.tier-card .perks i { color: var(--brand-gold-deep); margin-top: 4px; }

/* =========================================================================
   34. IMAGE & MEDIA UTILITIES (added for professional image presentation)
   ========================================================================= */
.page-hero--photo {
  position: relative;
  isolation: isolate;
}
.page-hero--photo .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  filter: saturate(1.05) contrast(1.02);
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,18,26,0.78) 0%, rgba(13,18,26,0.88) 70%, rgba(13,18,26,0.96) 100%),
    radial-gradient(900px 500px at 100% 0%, rgba(var(--brand-gold-rgb), 0.22), transparent 60%);
  z-index: -1;
}

/* Section with photo backdrop */
.section--photo {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.section--photo .section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.section--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,18,26,0.94) 0%, rgba(13,18,26,0.72) 100%);
  z-index: -1;
}
.section--photo h2, .section--photo h3, .section--photo .lead { color: #fff; }

/* Media card — for inline professional images */
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.04);
  background: var(--bg-muted);
  isolation: isolate;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.media-card:hover img { transform: scale(1.03); }
.media-card.is-tall { aspect-ratio: 4/5; }
.media-card.is-wide { aspect-ratio: 16/9; }
.media-card.is-square { aspect-ratio: 1/1; }
.media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,18,26,0.55) 100%);
  pointer-events: none;
}

.media-card-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
  z-index: 2;
}
.media-card-caption .label {
  display: inline-block;
  background: rgba(212,175,55,0.92);
  color: #0d121a;
  font-weight: 700;
  font-size: var(--fs-xs);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.media-card-caption h4 { color: #fff; margin: 0; font-size: var(--fs-lg); }

/* Image grid layouts */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.image-grid-3 { grid-template-columns: repeat(3, 1fr); }
.image-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) {
  .image-grid-3, .image-grid-2 { grid-template-columns: 1fr; }
}

/* Region / city banner */
.city-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  background: linear-gradient(135deg, #0d121a 0%, #1a2230 100%);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  margin-top: var(--sp-6);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.city-banner-content {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
}
.city-banner-content h3 { color: #fff; }
.city-banner-content p { color: rgba(255,255,255,0.78); }
.city-banner-media {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.city-banner-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,18,26,0.6) 0%, transparent 30%);
}
@media (max-width: 860px) {
  .city-banner { grid-template-columns: 1fr; }
  .city-banner-media { min-height: 220px; order: -1; }
}

/* Feature image — alongside text */
.feature-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  margin-top: var(--sp-8);
}
.feature-image-row.is-reversed { direction: rtl; }
.feature-image-row.is-reversed > * { direction: ltr; }
@media (max-width: 860px) {
  .feature-image-row { grid-template-columns: 1fr; direction: ltr; }
}
.feature-image-row .media-card { aspect-ratio: 4/3; }

/* SVG icon tile (for calculator pages & feature highlights) */
.icon-tile {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.06) 100%);
  border: 1px solid rgba(212,175,55,0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  font-size: 1.6rem;
}
.icon-tile.is-large { width: 88px; height: 88px; font-size: 2.2rem; }

/* Logo strip (for press / partners / awards) */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-6);
  align-items: center;
  margin-top: var(--sp-8);
}
.logo-strip .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 80px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.logo-strip.is-light .logo-item {
  background: var(--bg-soft);
  border-color: var(--border);
  color: var(--text-muted);
}
.logo-strip .logo-item:hover { border-color: rgba(212,175,55,0.4); color: var(--brand-gold); }

/* Avatar pill — for testimonial photos */
.avatar-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
}
.avatar-pill img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* Decorative SVG box */
.deco-illustration {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
  border: 1px solid rgba(212,175,55,0.16);
}

/* Lazy image fade-in */
img[loading="lazy"] { transition: opacity 0.3s ease; }
img[loading="lazy"]:not([src]) { opacity: 0; }

/* =========================================================================
   35. MICRO-ANIMATIONS (taxi & dispatch theme)
   ========================================================================= */

/* Pulsing live status dot */
@keyframes tdx-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}
.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  animation: tdx-pulse-dot 1.6s ease-out infinite;
  margin-right: 6px;
  vertical-align: middle;
}
.live-dot.is-gold {
  background: var(--brand-gold);
  animation-name: tdx-pulse-gold;
}
@keyframes tdx-pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
}

/* Dashed dispatch route flowing */
@keyframes tdx-route-flow {
  to { stroke-dashoffset: -200; }
}
.route-flow { stroke-dasharray: 8 10; animation: tdx-route-flow 6s linear infinite; }

/* Soft floating cards */
@keyframes tdx-float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.float-soft { animation: tdx-float-y 4.5s ease-in-out infinite; }
.float-soft-delay { animation: tdx-float-y 4.5s ease-in-out 1.2s infinite; }

/* Shimmer (for buttons/CTAs) */
@keyframes tdx-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: tdx-shimmer 2.4s linear infinite;
}

/* Counter glow on hover */
.stat-num { transition: text-shadow 0.3s ease, transform 0.3s ease; }
.stat:hover .stat-num { text-shadow: 0 0 24px rgba(212,175,55,0.45); transform: translateY(-2px); }

/* Animated icon tile (gold glow) */
.icon-tile { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.icon-tile:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 26px rgba(212,175,55,0.22); }

/* Card-icon subtle bobbing */
@keyframes tdx-bob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-3px) rotate(-2deg); }
}
.feature-card:hover .card-icon { animation: tdx-bob 1.4s ease-in-out infinite; }

/* Tilted product mockup parallax cue */
[data-tilt] { transition: transform 0.4s ease; }
[data-tilt]:hover { transform: perspective(800px) rotateX(2deg) rotateY(-2deg) translateY(-4px); }

/* Animated SVG containers (size constraint) */
.anim-svg { width: 100%; max-width: 220px; height: auto; display: block; }
.anim-svg.is-sm { max-width: 96px; }
.anim-svg.is-md { max-width: 140px; }
.anim-svg.is-lg { max-width: 260px; }
.anim-svg.is-xl { max-width: 420px; }


/* Lottie player wrapper */
lottie-player {
  display: inline-block;
  vertical-align: middle;
}

/* Hero animation block */
.hero-anim-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  margin-top: 1.2rem;
}
.hero-anim-strip img { width: 36px; height: 36px; }

/* Section divider gradient */
.divider-gold {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
  margin: var(--sp-12) 0;
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================================
   36. RESPONSIVE — Tablet, iPad, Mobile breakpoints
   ========================================================================= */

/* Large tablet / iPad Pro landscape (1024-1279) */
@media (max-width: 1279px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
  .stats { gap: var(--sp-6); }
  .image-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* iPad / tablet portrait (768-1023) */
@media (max-width: 1023px) {
  :root { --fs-6xl: 2.8rem; --fs-5xl: 2.4rem; --fs-4xl: 2rem; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero { padding: clamp(3rem, 5vw, 5rem) 0; }
  .hero-grid, .page-hero-grid, .ai-split {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }
  .hero-trust, .page-hero-cta, .hero-cta { justify-content: center; }
  .hero-visual, .hero-mockup { max-width: 100%; margin-inline: auto; }
  .float-card { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .feature-image-row { grid-template-columns: 1fr; gap: 1.5rem; direction: ltr; }
  .city-banner { grid-template-columns: 1fr; }
  .city-banner-media { min-height: 240px; order: -1; }
  .image-grid-3, .image-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .award-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .blog-card.is-featured { flex-direction: column; }
  .blog-card.is-featured .blog-card-img { width: 100%; aspect-ratio: 16/9; }
  .tier-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
  nav.main-nav .nav-links { display: none; }
  .section { padding-top: 3rem; padding-bottom: 3rem; }
  .section-tight { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}

/* Small tablet / large phone (640-767) */
@media (max-width: 767px) {
  :root {
    --fs-6xl: 2.25rem;
    --fs-5xl: 2rem;
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.25rem;
    --sp-12: 2.5rem;
    --sp-10: 2rem;
    --sp-8: 1.5rem;
  }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .hero h1, .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); line-height: 1.18; }
  .lead { font-size: var(--fs-base); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num { font-size: 2rem !important; }
  .feature-grid { grid-template-columns: 1fr; }
  .image-grid-3, .image-grid-2 { grid-template-columns: 1fr; }
  .award-grid { grid-template-columns: 1fr !important; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .tier-grid { grid-template-columns: 1fr !important; }
  .tier-card.is-featured { transform: none; }
  .btn-lg { padding: 0.85rem 1.4rem; font-size: 0.95rem; }
  .hero-cta, .page-hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .page-hero-cta .btn { width: 100%; justify-content: center; }
  .breadcrumb, .breadcrumbs { font-size: 0.8rem; flex-wrap: wrap; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .fleet-row { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .fleet-mark { font-size: 0.85rem; }
  .city-banner-content { padding: 1.5rem 1.25rem; }
  .city-banner-media { min-height: 180px; }
  .media-card-caption h4 { font-size: 0.9rem; }
  .media-card-caption .label { font-size: 0.65rem; }
  .testimonial { padding: 1.25rem; }
  .testimonial blockquote { font-size: 0.95rem; }
  .cta-banner { padding: 2rem 1.25rem !important; }
  .cta-banner h2 { font-size: 1.5rem !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 1.5rem; }
  /* Page-hero photo height adjust */
  .page-hero, .hero { padding-top: 2.5rem; padding-bottom: 2rem; }
  .section { padding-top: 2.25rem; padding-bottom: 2.25rem; }
  .hero-anim-strip { font-size: 0.8rem; padding: 0.6rem 0.9rem; }
  .hero-anim-strip img { width: 28px; height: 28px; }
  /* Reduce SVG sizes */
  .anim-svg.is-lg, .anim-svg.is-xl { max-width: 100%; }
  /* Tags wrap nicely */
  .tag-row { flex-wrap: wrap; }
}

/* Very small phones (under 480) */
@media (max-width: 479px) {
  :root { --fs-5xl: 1.75rem; --fs-4xl: 1.5rem; }
  .container { padding-left: 0.875rem; padding-right: 0.875rem; }
  .hero h1, .page-hero h1 { font-size: 1.7rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 0.75rem; }
  .stat-num { font-size: 1.6rem !important; }
  .testimonial-author { gap: 8px; }
  .avatars span { width: 28px; height: 28px; font-size: 10px; }
  .float-card { display: none !important; }
  .city-banner-media { min-height: 150px; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .nav-cta { padding: 0.55rem 0.9rem; font-size: 0.85rem; }
  .breadcrumb, .breadcrumbs { font-size: 0.75rem; }
  .btn { padding: 0.75rem 1.1rem; font-size: 0.9rem; }
  /* Make sure no horizontal overflow */
  body { overflow-x: hidden; }
}

/* Responsive images safety net */
img, svg { max-width: 100%; height: auto; }
img[width][height] { height: auto; }

/* Hide tilt parallax on touch devices */
@media (hover: none) {
  [data-tilt]:hover { transform: none; }
  .feature-card:hover .card-icon { animation: none; }
}

/* =========================================================================
   37. STICKY MOBILE CTA + FLOATING LIVE WIDGET + EXIT MODAL
   ========================================================================= */
.sticky-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(13,18,26,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212,175,55,0.3);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  display: none;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}
.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  flex: 1;
  min-width: 0;
}
.sticky-cta-bar .btn { padding: 0.55rem 1rem; font-size: 0.85rem; white-space: nowrap; }
@media (max-width: 767px) {
  .sticky-cta-bar { display: block; }
  body { padding-bottom: 72px; }
}

/* Floating live widget (bottom-right) */
.live-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 85;
  background: linear-gradient(135deg, #0d121a 0%, #1a2230 100%);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), 0 0 0 1px rgba(212,175,55,0.1);
  padding: 0.8rem 1.1rem 0.8rem 1rem;
  color: #fff;
  min-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.live-widget.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.live-widget-close {
  position: absolute;
  top: 4px; right: 6px;
  width: 22px; height: 22px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
}
.live-widget-close:hover { background: rgba(255,255,255,0.06); color: #fff; }
.live-widget-row { display: flex; align-items: center; gap: 8px; }
.live-widget-label {
  color: rgba(212,175,55,0.9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.live-widget-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.live-widget-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
@media (max-width: 767px) {
  .live-widget {
    right: 12px;
    bottom: 80px; /* Above sticky CTA */
    min-width: 168px;
    padding: 0.65rem 0.9rem;
  }
  .live-widget-num { font-size: 1.15rem; }
}

/* Exit-intent modal */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.exit-modal.is-open { visibility: visible; opacity: 1; }
.exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,18,26,0.78);
  backdrop-filter: blur(6px);
}
.exit-modal-dialog {
  position: relative;
  background: var(--bg);
  max-width: 460px;
  width: calc(100% - 2rem);
  border-radius: 18px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 32px 60px rgba(0,0,0,0.45);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.exit-modal.is-open .exit-modal-dialog { transform: translateY(0) scale(1); }
.exit-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.06);
  border: 0;
  border-radius: 10px;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}
.exit-modal-close:hover { background: rgba(0,0,0,0.12); color: var(--text); }
.exit-modal-dialog h3 { margin: 0.5rem 0 0.5rem; font-size: 1.5rem; }
.exit-modal-dialog p { color: var(--text-muted); margin-bottom: 1.25rem; }
.exit-form { display: grid; gap: 0.6rem; }
.exit-form input, .exit-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-soft);
  color: var(--text);
}
.exit-form input:focus, .exit-form select:focus { outline: none; border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.18); }
.exit-form .btn { margin-top: 0.4rem; justify-content: center; }
.exit-success {
  text-align: center;
  padding: 2rem 0;
  color: var(--success);
}
.exit-success i { font-size: 3rem; color: var(--success); margin-bottom: 1rem; display: block; }

/* Customer logo carousel — auto-scroll */
.logo-carousel {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
@keyframes tdx-scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-carousel-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: tdx-scroll-x 38s linear infinite;
}
.logo-carousel:hover .logo-carousel-track { animation-play-state: paused; }
.logo-carousel-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.logo-carousel-item:hover { color: var(--brand-gold); }
.logo-carousel-item i { font-size: 1.4rem; color: rgba(212,175,55,0.7); }

/* Animated comparison rows */
.compare-row.is-winner {
  background: linear-gradient(90deg, rgba(16,185,129,0.06), transparent);
  position: relative;
}
.compare-row.is-winner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--success);
}
.compare-check { color: var(--success); animation: tdx-pop 0.5s ease-out backwards; }
.compare-x { color: var(--danger); opacity: 0.7; }
@keyframes tdx-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1); }
}

/* Currency badge in pricing */
.currency-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 999px;
  color: var(--brand-gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.currency-switch select {
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
