:root {
  /* Brand */
  --blue:         #1A6EFF;
  --blue-h:       #0D5CE0;
  --blue-light:   #EBF1FF;
  --blue-glow:    rgba(26,110,255,.32);
  --blue-dim:     rgba(26,110,255,.10);
  --blue-border:  rgba(26,110,255,.22);
  --cyan:         #00C8FF;
  --cyan-dim:     rgba(0,200,255,.18);

  /* Neutral Dark */
  --ink:          #0A0F1E;
  --ink-2:        #1A2240;
  --ink-3:        #334266;
  --ink-4:        #64748B;
  --ink-5:        #94A3B8;

  /* Backgrounds */
  --bg:           #FFFFFF;
  --bg-off:       #F6F9FD;
  --bg-card:      #FFFFFF;
  --bg-subtle:    #EEF4FF;
  --bg-input:     #F6F9FD;

  /* Dark surfaces (hero / footer / tech) */
  --dark:         #060C1A;
  --dark-2:       #0C1428;
  --dark-3:       #111E38;
  --dark-card:    rgba(255,255,255,.05);
  --dark-edge:    rgba(255,255,255,.09);
  --dark-line:    rgba(255,255,255,.05);

  /* Borders */
  --border:       rgba(15,23,42,.09);
  --border-md:    rgba(15,23,42,.15);
  --border-blue:  rgba(26,110,255,.20);

  /* Status */
  --success:  #10B981;
  --error:    #EF4444;
  --warning:  #F59E0B;

  /* Radii */
  --r-xs: 4px;  --r-sm: 8px;   --r-md: 12px;
  --r-lg: 16px; --r-xl: 24px;  --r-2xl: 36px;
  --r-pill: 9999px;

  /* Shadows */
  --sh-xs:   0 1px 3px rgba(10,15,30,.06);
  --sh-sm:   0 2px 8px rgba(10,15,30,.08), 0 1px 3px rgba(10,15,30,.04);
  --sh-md:   0 4px 20px rgba(10,15,30,.10), 0 2px 6px rgba(10,15,30,.05);
  --sh-lg:   0 12px 44px rgba(10,15,30,.14), 0 4px 12px rgba(10,15,30,.06);
  --sh-xl:   0 24px 64px rgba(10,15,30,.18), 0 6px 18px rgba(10,15,30,.08);
  --sh-blue: 0 8px 32px rgba(26,110,255,.30);
  --sh-card: 0 1px 4px rgba(10,15,30,.06), 0 4px 16px rgba(10,15,30,.07);

  /* Motion */
  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --t:    .20s;
  --t-md: .32s;
  --t-lg: .52s;

  /* Layout */
  --nav-h: 70px;

  /* Typography */
  --f-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
svg { display: block; flex-shrink: 0; }

/* ── Custom Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-off); }
::-webkit-scrollbar-thumb { background: var(--blue-border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}
.section { padding-block: clamp(72px, 8vw, 112px); }
.section-sm { padding-block: clamp(48px, 5vw, 72px); }

/* ── Glow Divider ───────────────────────────────────────────── */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--blue), transparent);
  opacity: .35;
}

/* ── Typography Utilities ───────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.sec-hd {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.sec-hd-left { margin-inline: 0; text-align: left; }

.sec-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-top: 12px;
}
.sec-title span { color: var(--blue); }
.sec-title-light { color: #fff; }
.sec-desc {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-4);
}
.sec-desc-light { color: rgba(255,255,255,.65); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .2px;
  white-space: nowrap;
  border-radius: var(--r-md);
  padding: 13px 24px;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  background: var(--blue-h);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(26,110,255,.40);
}
.btn-primary:active { transform: translateY(0); box-shadow: var(--sh-blue); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue-border);
}
.btn-outline:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-3);
}
.btn-ghost:hover { color: var(--blue); background: var(--blue-dim); }

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--sh-md);
}
.btn-white:hover { background: var(--bg-off); transform: translateY(-1px); box-shadow: var(--sh-lg); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.30);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.55);
}

.btn-lg { padding: 16px 32px; font-size: 15px; border-radius: var(--r-lg); }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: var(--r-sm); }

.btn svg { width: 16px; height: 16px; }
.btn-lg svg { width: 18px; height: 18px; }

/* ── Badge ───────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.badge-blue {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid var(--blue-border);
}
.badge-cyan {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0,200,255,.20);
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(6,12,26,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--dark-edge);
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
}
#nav.nav-light {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo-svg {
  width: 200px;
  height: 40px;
  transition: opacity var(--t) var(--ease);
}
.nav-logo:hover .nav-logo-svg { opacity: .85; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: transform var(--t) var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: #fff; font-weight: 600; }

/* Light theme nav links */
#nav.nav-light .nav-link { color: var(--ink-3); }
#nav.nav-light .nav-link:hover { color: var(--blue); background: var(--blue-dim); }
#nav.nav-light .nav-link.active { color: var(--blue); }
#nav.nav-light .nav-link::after { background: var(--blue); }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}

/* Social links */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--t), background var(--t);
}
.nav-social-link svg { width: 16px; height: 16px; }
.nav-social-link:hover { color: #fff; background: var(--dark-card); }
#nav.nav-light .nav-social-link { color: var(--ink-4); }
#nav.nav-light .nav-social-link:hover { color: var(--blue); background: var(--blue-dim); }

.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color var(--t);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--cyan); }
#nav.nav-light .nav-phone { color: var(--ink-3); }
#nav.nav-light .nav-phone:hover { color: var(--blue); }

.nav-cta { font-size: 13px; padding: 10px 20px; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  color: #fff;
  transition: background var(--t);
}
.nav-burger:hover { background: var(--dark-card); }
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-md), opacity var(--t);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#nav.nav-light .nav-burger { color: var(--ink); }
#nav.nav-light .nav-burger:hover { background: var(--blue-dim); }

/* ── Mobile Drawer ──────────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  padding: 90px 24px 40px;
  gap: 6px;
  transform: translateX(100%);
  transition: transform var(--t-md) var(--ease);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.80);
  padding: 14px 16px;
  border-radius: var(--r-md);
  transition: color var(--t), background var(--t);
}
.drawer-link svg { width: 20px; height: 20px; }
.drawer-link:hover { color: #fff; background: var(--dark-card); }

.drawer-divider {
  height: 1px;
  background: var(--dark-edge);
  margin: 12px 0;
}

.drawer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--cyan);
  padding: 12px 16px;
}

.drawer-cta {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.drawer-socials {
  display: flex;
  gap: 12px;
  padding: 16px 16px 0;
  flex-wrap: wrap;
}
.drawer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--dark-card);
  color: rgba(255,255,255,.60);
  transition: color var(--t), background var(--t);
}
.drawer-social-link svg { width: 18px; height: 18px; }
.drawer-social-link:hover { color: #fff; background: var(--blue); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

/* Background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Layered overlays for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,12,26,.92) 0%, rgba(6,12,26,.70) 60%, rgba(6,12,26,.30) 100%),
    linear-gradient(180deg, rgba(6,12,26,.35) 0%, transparent 40%, rgba(6,12,26,.75) 100%);
}

/* Animated grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(26,110,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,110,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 64px 64px; }
}

/* Blue radial glow */
.hero-glow {
  position: absolute;
  top: 50%; left: 20%;
  transform: translate(-50%,-50%);
  width: clamp(400px, 50vw, 700px);
  height: clamp(400px, 50vw, 700px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,110,255,.18) 0%, transparent 70%);
  z-index: 3;
  animation: glow-pulse 5s ease-in-out infinite alternate;
}
@keyframes glow-pulse {
  from { opacity: .6; transform: translate(-50%,-50%) scale(.95); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1.05); }
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: var(--nav-h);
  padding-bottom: 64px;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,110,255,.14);
  border: 1px solid rgba(26,110,255,.28);
  border-radius: var(--r-pill);
  padding: 6px 16px 6px 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.75); }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.10;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 22px;
}
.hero-title span { color: var(--cyan); }

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,.68);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  padding-top: 32px;
  border-top: 1px solid var(--dark-edge);
}
.hero-stat {}
.hero-stat-n {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
}
.hero-stat-n span { color: var(--cyan); }
.hero-stat-l {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.50);
  letter-spacing: .5px;
  margin-top: 4px;
}

/* Hero watermark — US semi-truck silhouette (right side) */
.hero-watermark {
  position: absolute;
  right: clamp(24px, 6vw, 100px);
  bottom: clamp(100px, 14vh, 180px);
  z-index: 5;
  pointer-events: none;
  width: clamp(280px, 38vw, 560px);
  opacity: .18;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: truck-roll 7s ease-in-out infinite alternate;
}
.hero-watermark svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(26,110,255,.55)) drop-shadow(0 0 16px rgba(0,200,255,.35));
}
@keyframes truck-roll {
  from { transform: translateX(-18px); }
  to   { transform: translateX(18px); }
}

/* ════════════════════════════════════════════════════════════
   HERO SLIDER (Carousel)
════════════════════════════════════════════════════════════ */
.hero-slider { position: relative; }

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Background image default — starts slightly offset to the right (truck "coming in") */
.hero-bg img {
  transform: scale(1.08) translateX(0);
  will-change: transform;
}

/* "Driving" effect on active slide: slow zoom + horizontal pan (truck moving forward) */
.hero-slide.is-active .hero-bg img {
  animation: hero-driving 10s ease-out forwards;
}
@keyframes hero-driving {
  0%   { transform: scale(1.12) translateX(5%);  filter: blur(2px); }
  20%  { filter: blur(0); }
  100% { transform: scale(1.04) translateX(-3%); filter: blur(0); }
}

/* Motion speed streaks overlay — adds the feeling of motion */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 60px,
      rgba(255,255,255,.04) 60px,
      rgba(255,255,255,.04) 62px,
      transparent 62px,
      transparent 140px
    );
  mix-blend-mode: screen;
}
.hero-slide.is-active::after {
  animation: hero-speedlines 1.8s ease-out .05s forwards;
}
@keyframes hero-speedlines {
  0%   { opacity: 0; transform: translateX(60px); }
  25%  { opacity: .9; }
  100% { opacity: 0; transform: translateX(-180px); }
}

/* Animate text entrance on active slide */
.hero-slide .hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.hero-slide.is-active .hero-content > *             { opacity: 1; transform: translateY(0); transition-delay: .25s; }
.hero-slide.is-active .hero-content > *:nth-child(2){ transition-delay: .40s; }
.hero-slide.is-active .hero-content > *:nth-child(3){ transition-delay: .55s; }
.hero-slide.is-active .hero-content > *:nth-child(4){ transition-delay: .70s; }
.hero-slide.is-active .hero-content > *:nth-child(5){ transition-delay: .85s; }

/* Prev / Next buttons */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.hero-slider-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.06);
}
.hero-slider-btn svg { width: 22px; height: 22px; }
.hero-slider-prev { left: clamp(14px, 2.5vw, 36px); }
.hero-slider-next { right: clamp(14px, 2.5vw, 36px); }

/* Dots */
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  border: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  padding: 0;
  transition: background var(--t), width var(--t);
}
.hero-dot:hover { background: rgba(255,255,255,.55); }
.hero-dot.is-active {
  width: 56px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0,200,255,.6);
}

/* Progress bar */
.hero-slider-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255,255,255,.08);
  z-index: 15;
}
.hero-slider-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  box-shadow: 0 0 16px rgba(0,200,255,.6);
  transition: width .12s linear;
}

@media (max-width: 768px) {
  .hero-slider-btn { width: 42px; height: 42px; }
  .hero-slider-btn svg { width: 18px; height: 18px; }
  .hero-slider-dots { bottom: 20px; }
  .hero-dot { width: 24px; }
  .hero-dot.is-active { width: 40px; }
}

/* ════════════════════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-edge);
  border-bottom: 1px solid var(--dark-edge);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 52px);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  transition: color var(--t);
}
.trust-item:hover { color: rgba(255,255,255,.85); }
.trust-item svg {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
#about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  height: clamp(300px, 45vw, 520px);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-lg) var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.03); }

/* Logo overlay on about image */
.about-img-logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(6,12,26,.80);
  backdrop-filter: blur(16px);
  border: 1px solid var(--dark-edge);
  border-radius: var(--r-lg);
  padding: 14px 20px;
}
.about-img-logo svg { width: 160px; height: 32px; }

.about-img-pill {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  letter-spacing: .3px;
}

.about-content { }
.about-feats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg-off);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.about-feat:hover {
  border-color: var(--border-blue);
  box-shadow: var(--sh-sm), 0 0 0 3px var(--blue-dim);
  transform: translateY(-2px);
}
.about-feat-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.about-feat-icon svg { width: 18px; height: 18px; }
.about-feat-text {}
.about-feat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.about-feat-desc {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 2px;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   WHY
════════════════════════════════════════════════════════════ */
#why { background: var(--bg-off); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--sh-card);
  transition: transform var(--t-md), box-shadow var(--t-md), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity var(--t);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg), 0 0 0 1px var(--blue-border);
  border-color: var(--blue-border);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dim);
  color: var(--blue);
  margin-bottom: 20px;
  transition: background var(--t), color var(--t);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card:hover .why-icon {
  background: var(--blue);
  color: #fff;
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-4);
}

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-md), box-shadow var(--t-md), border-color var(--t);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-border);
}

.svc-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-dim), var(--cyan-dim));
  color: var(--blue);
  margin-bottom: 20px;
  transition: all var(--t-md);
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: var(--sh-blue);
}

.svc-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-5);
  margin-bottom: 8px;
}
.svc-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-4);
  flex: 1;
  margin-bottom: 24px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--t);
}
.svc-link svg { width: 14px; height: 14px; }
.svc-link:hover { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   TECHNOLOGY / STATS
════════════════════════════════════════════════════════════ */
#technology {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.tech-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,110,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,110,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.tech-glow-left {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,110,255,.16) 0%, transparent 70%);
  pointer-events: none;
}
.tech-glow-right {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,.10) 0%, transparent 70%);
  pointer-events: none;
}

.tech-inner { position: relative; z-index: 2; }
.future-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  border: 1px solid var(--dark-edge);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 64px;
}
.future-stat {
  background: var(--dark-card);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--dark-edge);
  transition: background var(--t);
}
.future-stat:hover { background: rgba(26,110,255,.08); }
.future-stat-n {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
}
.future-stat-n span { color: var(--cyan); }
.future-stat-l {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  margin-top: 8px;
  letter-spacing: .3px;
}

/* ── Fleet Gallery ─────────────────────────────────────────── */
.fleet-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: clamp(220px, 30vw, 380px);
}
.fleet-thumb {
  overflow: hidden;
  border-radius: var(--r-lg);
}
.fleet-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-lg) var(--ease);
  filter: brightness(.85) saturate(.9);
}
.fleet-thumb:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

/* ════════════════════════════════════════════════════════════
   FUTURE FEATURES
════════════════════════════════════════════════════════════ */
#features { background: var(--bg-off); }
.future-feats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.future-feat {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--sh-xs);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.future-feat:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-border);
}
.future-feat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: background var(--t), color var(--t);
}
.future-feat-icon svg { width: 22px; height: 22px; }
.future-feat:hover .future-feat-icon { background: var(--blue); color: #fff; }
.future-feat-body {}
.future-feat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.future-feat-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-4);
}

/* ════════════════════════════════════════════════════════════
   TIMELINE
════════════════════════════════════════════════════════════ */
#timeline { background: var(--bg); }
.timeline {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -26px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px var(--blue-border);
}
.timeline-date {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-4);
}

/* ════════════════════════════════════════════════════════════
   BLOG
════════════════════════════════════════════════════════════ */
#blog { background: var(--bg-off); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* See More Posts CTA */
.blog-see-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.blog-see-more-btn {
  position: relative;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--blue);
  border: 1.5px solid var(--blue-border);
  box-shadow: 0 2px 12px rgba(26,110,255,.06);
  overflow: hidden;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
}
.blog-see-more-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity .35s cubic-bezier(.22,.61,.36,1);
}
.blog-see-more-btn > * {
  position: relative;
  z-index: 1;
}
.blog-see-more-btn svg {
  width: 18px; height: 18px;
  margin-left: 10px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  vertical-align: -4px;
}
.blog-see-more-btn:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26,110,255,.35);
}
.blog-see-more-btn:hover::before { opacity: 1; }
.blog-see-more-btn:hover svg { transform: translateX(6px); }
.blog-see-more-btn:active { transform: translateY(0); }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-md), box-shadow var(--t-md), border-color var(--t);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-border);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-lg) var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.blog-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}
.blog-date {
  font-size: 12px;
  color: var(--ink-5);
}
.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color var(--t);
}
.blog-card:hover .blog-title { color: var(--blue); }
.blog-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-4);
  flex: 1;
  margin-bottom: 20px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--t);
}
.blog-read-more svg { width: 14px; height: 14px; }
.blog-read-more:hover { gap: 9px; }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
#testimonials { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-md), box-shadow var(--t-md);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.testi-quote {
  font-size: 64px;
  line-height: .8;
  color: var(--blue-dim);
  font-family: Georgia, serif;
  font-weight: 700;
  margin-bottom: 14px;
  transition: color var(--t);
}
.testi-card:hover .testi-quote { color: var(--blue-border); }
.testi-text {
  font-size: 15px;
  line-height: 1.70;
  color: var(--ink-3);
  flex: 1;
  margin-bottom: 24px;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testi-stars svg { width: 16px; height: 16px; color: #F59E0B; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blue-dim);
  border: 2px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.testi-role {
  font-size: 12px;
  color: var(--ink-5);
  margin-top: 1px;
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════ */
#cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26,110,255,.20) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(0,200,255,.10) 0%, transparent 50%);
}
.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,110,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,110,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 16px 0 20px;
}
.cta-title span { color: var(--cyan); }
.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,.60);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  transition: color var(--t);
}
.cta-phone svg { width: 20px; height: 20px; color: var(--cyan); }
.cta-phone:hover { color: var(--cyan); }

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-info {}
.contact-info-items {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-5);
  margin-bottom: 3px;
}
.contact-info-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.contact-info-val a { transition: color var(--t); }
.contact-info-val a:hover { color: var(--blue); }

.contact-map {
  margin-top: 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 200px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* Contact form */
.contact-form {}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .2px;
}
.form-control {
  background: var(--bg-input);
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  width: 100%;
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--blue);
  background: var(--bg);
  box-shadow: 0 0 0 3px var(--blue-dim);
}
.form-control::placeholder { color: var(--ink-5); }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding-block: 15px;
  font-size: 15px;
  border-radius: var(--r-md);
  margin-top: 4px;
}

/* Privacy consent checkbox */
.form-consent {
  margin: 6px 0 14px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.consent-checkbox {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.consent-box {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1.8px solid var(--border-md);
  background: var(--bg);
  color: #fff;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.consent-box svg {
  width: 14px; height: 14px;
  opacity: 0;
  transform: scale(.6);
  transition: opacity var(--t), transform var(--t);
}
.consent-checkbox:checked + .consent-box {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(26,110,255,.28);
}
.consent-checkbox:checked + .consent-box svg {
  opacity: 1;
  transform: scale(1);
}
.consent-checkbox:focus-visible + .consent-box {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.consent-label:hover .consent-box {
  border-color: var(--blue);
}
.consent-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
}
.consent-text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-text a:hover { color: var(--blue-h); }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-edge);
  padding-top: 64px;
  padding-bottom: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dark-edge);
}
.footer-brand {}
.footer-logo { margin-bottom: 14px; }
.footer-logo svg { width: 180px; height: 36px; }
.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-card);
  border: 1px solid var(--dark-edge);
  color: rgba(255,255,255,.50);
  transition: all var(--t);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--t), padding-left var(--t);
}
.footer-link:hover { color: #fff; padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-icon {
  width: 18px; height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-text {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  transition: color var(--t);
}
.footer-contact-text a { transition: color var(--t); }
.footer-contact-text a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.30);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: color var(--t);
}
.footer-legal a:hover { color: rgba(255,255,255,.75); }

/* ── Scroll-to-top ──────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-blue);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t), transform var(--t);
  pointer-events: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scroll-top:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(26,110,255,.50); }
#scroll-top svg { width: 18px; height: 18px; }

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 80px; right: 24px;
  z-index: 999;
  background: var(--ink-2);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--t), transform var(--t);
  pointer-events: none;
  max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

/* ── Animation Helpers ──────────────────────────────────────── */
.anim { opacity: 0; transition: opacity var(--t-lg) var(--ease-out), transform var(--t-lg) var(--ease-out); }
.anim-up { transform: translateY(28px); }
.anim-left { transform: translateX(-28px); }
.anim-right { transform: translateX(28px); }
.anim.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; }
.delay-6 { transition-delay: .48s; }

/* ════════════════════════════════════════════════════════════
   BLOG PAGE
════════════════════════════════════════════════════════════ */
.blog-hero {
  background: var(--dark);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.blog-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,110,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,110,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.blog-hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center top, rgba(26,110,255,.20) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.40);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.40); transition: color var(--t); }
.breadcrumb a:hover { color: rgba(255,255,255,.80); }
.breadcrumb svg { width: 12px; height: 12px; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  padding-block: clamp(48px, 6vw, 80px);
}
.blog-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-md);
  margin-bottom: 28px;
}
.blog-list-header h2 { font-size: 20px; font-weight: 700; color: var(--ink); }
.blog-list { display: flex; flex-direction: column; gap: 24px; }

.blog-post-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform var(--t-md), box-shadow var(--t-md), border-color var(--t);
}
.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-border);
}
.blog-post-card-img {
  overflow: hidden;
  height: 200px;
}
.blog-post-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-lg) var(--ease);
}
.blog-post-card:hover .blog-post-card-img img { transform: scale(1.06); }
.blog-post-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

/* Blog sidebar */
.blog-sidebar {}
.blog-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--sh-card);
  margin-bottom: 24px;
}
.blog-widget-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-4);
  margin-bottom: 16px;
}
.blog-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--bg-subtle);
  color: var(--ink-3);
  border: 1px solid var(--border);
  transition: all var(--t);
  margin: 4px;
  cursor: pointer;
}
.blog-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.blog-tag.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy & Terms)
════════════════════════════════════════════════════════════ */
.legal-hero {
  background: var(--dark);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.legal-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,110,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,110,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.legal-hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 250px;
  background: radial-gradient(ellipse at center top, rgba(26,110,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.legal-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.legal-date {
  font-size: 13px;
  color: rgba(255,255,255,.40);
}
.legal-date strong { color: rgba(255,255,255,.70); }

.legal-content {
  max-width: 800px;
  margin-inline: auto;
  padding-block: clamp(48px, 6vw, 80px);
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; border-top: none; }
.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-4);
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  margin: 12px 0 20px 20px;
}
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-4);
  margin-bottom: 6px;
  list-style: disc;
}
.legal-content a { color: var(--blue); }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--ink); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-socials { display: none; }
  .nav-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-card-img { height: 200px; }
  .fleet-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-watermark { display: none; }
  .about-feats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .future-stats { grid-template-columns: 1fr 1fr; }
  .fleet-gallery { grid-template-columns: 1fr; height: auto; }
  .fleet-thumb { height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -.8px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .future-stats { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}


.ui-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    color .25s ease,
    filter .35s ease;
  will-change: transform;
  color: currentColor;
}
.ui-icon path,
.ui-icon rect,
.ui-icon circle,
.ui-icon line,
.ui-icon polyline,
.ui-icon polygon {
  transition: fill-opacity .3s ease, stroke-width .3s ease, opacity .3s ease;
}

/* Icon color accents on hover — cards */
.why-card:hover .ui-icon,
.svc-card:hover .ui-icon,
.future-feat:hover .ui-icon,
.about-feat:hover .ui-icon {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 6px 14px var(--blue-glow));
}

.why-card:hover .ui-icon path[fill-opacity],
.svc-card:hover .ui-icon path[fill-opacity],
.future-feat:hover .ui-icon path[fill-opacity],
.about-feat:hover .ui-icon path[fill-opacity],
.why-card:hover .ui-icon rect[fill-opacity],
.svc-card:hover .ui-icon rect[fill-opacity],
.future-feat:hover .ui-icon rect[fill-opacity],
.about-feat:hover .ui-icon rect[fill-opacity],
.why-card:hover .ui-icon circle[fill-opacity],
.svc-card:hover .ui-icon circle[fill-opacity],
.future-feat:hover .ui-icon circle[fill-opacity],
.about-feat:hover .ui-icon circle[fill-opacity] {
  fill-opacity: .34;
}

/* Trust bar icons — premium color refinement */
.trust-item .ui-icon {
  width: 18px;
  height: 18px;
}
.trust-item:hover .ui-icon {
  color: var(--cyan);
  transform: scale(1.08);
}

/* About feature icons (bg pill) */
.about-feat-icon .ui-icon { width: 20px; height: 20px; }

/* Why-choose-us card icons */
.why-icon .ui-icon { width: 28px; height: 28px; }

/* Services card icons */
.svc-icon .ui-icon { width: 30px; height: 30px; }

/* Future features (dark bg) */
.future-feat-icon .ui-icon { width: 24px; height: 24px; }

/* Contact info icons */
.contact-info-icon .ui-icon { width: 20px; height: 20px; }

/* Footer contact icons */
.footer-contact-icon.ui-icon {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Drawer link icons */
.drawer-link .ui-icon {
  width: 20px;
  height: 20px;
}
.drawer-link:hover .ui-icon {
  color: var(--blue);
  transform: translateX(2px);
}

/* Focus-visible for accessibility */
a:focus-visible .ui-icon,
button:focus-visible .ui-icon {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Cycle-grade chromatic shift on cta-phone, submit button etc. */
.cta-phone svg,
.btn svg,
.form-submit svg,
.hero-actions .btn svg {
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.cta-phone:hover svg,
.btn:hover svg,
.form-submit:hover svg {
  transform: translateX(2px) rotate(-4deg);
}

/* Read-more arrows — elegant slide */
.blog-read-more svg,
.svc-link svg {
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.blog-read-more:hover svg,
.svc-link:hover svg {
  transform: translateX(4px);
}

/* Breadcrumb chevron */
.breadcrumb svg {
  transition: opacity .25s ease;
  opacity: .55;
}

/* Scroll-top button icon */
#scroll-top svg {
  transition: transform .3s ease;
}
#scroll-top:hover svg {
  transform: translateY(-2px);
}

/* Reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .ui-icon,
  .ui-icon path,
  .ui-icon rect,
  .ui-icon circle,
  .ui-icon line,
  .ui-icon polyline,
  .ui-icon polygon,
  .cta-phone svg,
  .btn svg,
  .form-submit svg,
  .blog-read-more svg,
  .svc-link svg,
  #scroll-top svg {
    transition: none !important;
    transform: none !important;
  }

}
