/* ============================================================
   UNITRANS — Master Design System v7.0
   Aesthetic: Premium Dark Fleet Rental
   Fonts: Plus Jakarta Sans (body) · Lexend Deca (display)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Lexend+Deca:wght@600;700;800&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* ── Brand Palette ── */
  --ink:         #000000;
  --ink-1:       #0A0A0A;
  --ink-2:       #121212;
  --ink-3:       #1A1A1A;
  --ink-4:       #222222;
  --ink-5:       #2D2D2D;

  --orange:      #FF4500;
  --orange-dk:   #E63E00;
  --orange-lt:   #FF6347;
  --orange-xl:   #FFA07A;
  --orange-glow: rgba(255,69,0,0.35);
  --orange-bg:   rgba(255,69,0,0.08);
  --orange-ring: rgba(255,69,0,0.25);

  --blue:        #2563EB;
  --blue-dk:     #1D4ED8;
  --emerald:     #059669;
  --amber:       #D97706;
  --rose:        #E11D48;
  --violet:      #7C3AED;

  /* ── Neutrals ── */
  --white:       #FFFFFF;
  --surface:     #F4F4F5;
  --surface-2:   #E4E4E7;
  --border:      #D4D4D8;
  --border-2:    #A1A1AA;
  --muted:       #71717A;
  --body:        #27272A;
  --heading:     #000000;

  /* ── Dark Surface Tokens ── */
  --dk-surface:  rgba(255,255,255,0.05);
  --dk-surface-2:rgba(255,255,255,0.08);
  --dk-border:   rgba(255,255,255,0.15);
  --dk-border-2: rgba(255,255,255,0.25);
  --dk-muted:    rgba(255,255,255,0.45);
  --dk-body:     rgba(255,255,255,0.75);
  --dk-heading:  rgba(255,255,255,1.0);

  /* ── Semantic ── */
  --success:     #059669;
  --success-bg:  rgba(5,150,105,0.1);
  --warning:     #D97706;
  --warning-bg:  rgba(217,119,6,0.1);
  --danger:      #E11D48;
  --danger-bg:   rgba(225,29,72,0.1);
  --info:        #2563EB;
  --info-bg:     rgba(37,99,235,0.1);

  /* ── Typography ── */
  --font:        'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display:'Lexend Deca', 'Plus Jakarta Sans', sans-serif;

  /* ── Layout ── */
  --max-w:       1240px;
  --pad-x:       24px;
  --section-y:   112px;
  --section-y-sm:68px;

  /* ── Radii ── */
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     12px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 48px;
  --r-full:9999px;

  /* ── Shadows ── */
  --sh-xs:  0 1px 2px rgba(0,0,0,0.04);
  --sh-sm:  0 2px 8px rgba(0,0,0,0.06);
  --sh:     0 4px 20px rgba(0,0,0,0.08);
  --sh-md:  0 8px 32px rgba(0,0,0,0.10);
  --sh-lg:  0 16px 56px rgba(0,0,0,0.14);
  --sh-xl:  0 28px 80px rgba(0,0,0,0.18);
  --sh-2xl: 0 48px 120px rgba(0,0,0,0.24);
  --sh-orange:    0 4px 20px rgba(249,115,22,0.28);
  --sh-orange-lg: 0 10px 40px rgba(249,115,22,0.38);
  --sh-orange-xl: 0 20px 60px rgba(249,115,22,0.45);

  /* ── Motion ── */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --dur-fast:    0.15s;
  --dur:         0.30s;
  --dur-slow:    0.55s;
  --dur-xslow:   0.80s;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }
::selection { background: var(--orange-bg); color: var(--orange-dk); }

/* Premium scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--orange), var(--orange-lt));
  border-radius: 2px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* Eyebrow / label chip */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1px solid var(--orange-ring);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}
.eyebrow.dark {
  color: var(--orange-lt);
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.24);
}
.eyebrow .live-pulse {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-ring 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-ring {
  0%,100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(249,115,22,0.6); }
  50%      { transform: scale(1.4); opacity: 0.7; box-shadow: 0 0 0 10px rgba(249,115,22,0); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 560px;
}
.section-head { margin-bottom: 60px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-lead { margin: 0 auto; }
.section-head .section-lead { margin-top: 16px; }

/* Gradient text utility */
.grad-text {
  background: linear-gradient(130deg, var(--orange) 0%, var(--orange-lt) 50%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-cool {
  background: linear-gradient(130deg, #60A5FA 0%, #818CF8 60%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.section-pad    { padding: var(--section-y) 0; }
.section-pad-sm { padding: var(--section-y-sm) 0; }
.container-xl   { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.bg-surface     { background: var(--surface) !important; }
.bg-ink         { background: var(--ink) !important; }

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
.noise-overlay {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ============================================================
   STATUS PILLS
   ============================================================ */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.71rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: var(--r-full);
  text-transform: uppercase;
}
.pill-green  { background: var(--success-bg); color: var(--success); }
.pill-orange { background: var(--warning-bg); color: var(--warning); }
.pill-blue   { background: var(--info-bg);    color: var(--info); }
.pill-red    { background: var(--danger-bg);  color: var(--danger); }
.pill-dot    { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ============================================================
   BUTTONS — Premium Edition
   ============================================================ */

/* Primary — Orange glow */
.btn-orange {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600; font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: var(--r);
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  box-shadow: var(--sh-orange);
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
}
.btn-orange::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-orange-lg);
  color: var(--white);
}
.btn-orange:hover::before { opacity: 1; }
.btn-orange:active { transform: translateY(0); box-shadow: var(--sh-orange); }
.btn-orange.lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--r-md); }

/* Ghost white — for dark backgrounds */
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--dk-surface);
  color: var(--dk-heading);
  font-family: var(--font);
  font-weight: 600; font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: var(--r);
  border: 1px solid var(--dk-border-2);
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.btn-ghost-white:hover {
  background: var(--dk-surface-2);
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost-white.lg { padding: 15px 32px; font-size: 1rem; border-radius: var(--r-md); }

/* Outline */
.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent;
  color: var(--orange);
  font-family: var(--font);
  font-weight: 600; font-size: 0.92rem;
  padding: 11px 24px;
  border-radius: var(--r);
  border: 1.5px solid var(--orange);
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh-orange);
}

/* White solid */
.btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white);
  color: var(--orange);
  font-weight: 700; font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: var(--r);
  border: none;
  transition: all var(--dur-fast) var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
}
.btn-white:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

/* ============================================================
   CURSOR GLOW
   ============================================================ */
#cursor-glow {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 65%);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  border-radius: 50%;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#preloader.gone { opacity: 0; visibility: hidden; pointer-events: none; }

.pre-logo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.pre-mark {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--white);
  box-shadow: 0 0 0 0 rgba(249,115,22,0.5);
  animation: pre-breathe 2s ease-in-out infinite;
  position: relative; z-index: 2;
}
.pre-ring {
  position: absolute; inset: -8px;
  border-radius: 26px;
  border: 1.5px solid rgba(249,115,22,0.25);
  animation: pre-ring-spin 3s linear infinite;
}
.pre-ring-2 {
  position: absolute; inset: -16px;
  border-radius: 34px;
  border: 1px solid rgba(249,115,22,0.10);
  animation: pre-ring-spin 6s linear infinite reverse;
}
@keyframes pre-breathe {
  0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  50%     { box-shadow: 0 0 0 22px rgba(249,115,22,0); }
}
@keyframes pre-ring-spin { to { transform: rotate(360deg); } }

.pre-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--white);
  letter-spacing: 0.18em;
}
.pre-track {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px; overflow: hidden;
}
.pre-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: 1px;
  animation: pre-fill 1.8s var(--ease) forwards;
}
@keyframes pre-fill { from { width: 0 } to { width: 100% } }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt), #FCD34D);
  z-index: 9990;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  box-shadow: 0 0 12px rgba(249,115,22,0.6);
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
#scrollTop {
  position: fixed; bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white);
  border-radius: var(--r);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-orange);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(0.8);
  transition: all var(--dur) var(--ease);
}
#scrollTop.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
#scrollTop:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--sh-orange-lg);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 0;
  transition: padding var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.site-nav.stuck {
  background: rgba(3,6,15,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05),
              0 4px 32px rgba(0,0,0,0.36);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.42rem; font-weight: 800;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.nav-logo:hover { opacity: 0.85; color: var(--white); }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(140deg, var(--orange), var(--orange-dk));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,0.38);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease-bounce);
}
.nav-logo:hover .nav-logo-mark { transform: rotate(-10deg) scale(1.1); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem; font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--white); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: 1px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white) !important;
  font-size: 0.85rem !important; font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: var(--r-sm) !important;
  margin-left: 14px;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease) !important;
  box-shadow: var(--sh-orange) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: var(--sh-orange-lg) !important;
}
.nav-mobile-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.16);
  align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  margin-left: auto;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.nav-mobile-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(3,6,15,0.97);
  backdrop-filter: blur(32px);
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--dk-border);
}
.mobile-nav-close {
  width: 38px; height: 38px;
  border-radius: var(--r-sm); background: var(--dk-surface);
  border: 1px solid var(--dk-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.mobile-nav-close:hover { background: rgba(249,115,22,0.16); border-color: var(--orange-ring); color: var(--orange); }
.mobile-nav-links { padding: 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.65); font-size: 1.05rem; font-weight: 600;
  padding: 14px 18px; border-radius: var(--r);
  transition: all var(--dur-fast);
  border: 1px solid transparent;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--white);
  background: var(--dk-surface);
  border-color: var(--dk-border);
}
.mobile-nav-links a.active { color: var(--orange); }
.mobile-nav-links a i { font-size: 1.15rem; width: 22px; text-align: center; flex-shrink: 0; }
.mobile-nav-foot { padding: 24px; margin-top: auto; border-top: 1px solid var(--dk-border); }

/* ============================================================
   AOS — SCROLL ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-aos="up"]    { transform: translateY(28px); }
[data-aos="right"] { transform: translateX(-28px); }
[data-aos="left"]  { transform: translateX(28px); }
[data-aos="scale"] { transform: scale(0.92); }
[data-aos="none"]  { transform: none; }
[data-aos].visible { opacity: 1; transform: none; }

/* ============================================================
   HERO — HOMEPAGE (Aurora Dark)
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--ink-1);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 88px;
}

/* Aurora mesh blobs */
.hero-aurora {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.hero-aurora::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 900px; height: 900px;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(249,115,22,0.12) 0deg,
    rgba(139,92,246,0.06) 90deg,
    rgba(59,130,246,0.05) 180deg,
    rgba(249,115,22,0.08) 270deg,
    rgba(249,115,22,0.12) 360deg);
  border-radius: 50%;
  filter: blur(80px);
  animation: aurora-rotate 20s linear infinite;
}
.hero-aurora::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(60px);
  animation: aurora-drift 14s ease-in-out infinite alternate;
}
@keyframes aurora-rotate { to { transform: rotate(360deg); } }
@keyframes aurora-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.1); }
}

/* Dot-grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 1;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad-x) 100px;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
}

/* Left copy */
.hero-copy .eyebrow { animation: fadeSlideDown 0.7s var(--ease) both; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 5.8vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.85s var(--ease) 0.1s both;
}
.hero-h1 .underline-word {
  position: relative; display: inline-block;
}
.hero-h1 .underline-word::after {
  content: '';
  position: absolute;
  bottom: 0px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: 2px;
  animation: lineGrow 0.8s var(--ease) 1s both;
  transform-origin: left;
}
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.56);
  line-height: 1.78;
  max-width: 490px;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.85s var(--ease) 0.22s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideUp 0.85s var(--ease) 0.34s both;
}
.hero-trust {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  animation: fadeSlideUp 0.85s var(--ease) 0.45s both;
}
.hero-trust-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.10); margin: 0 20px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.42);
  font-size: 0.81rem; font-weight: 500;
}
.hero-trust-item i { color: var(--orange); font-size: 0.9rem; }

@keyframes fadeSlideUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }

/* Hero Visual — Dashboard mockup */
.hero-visual {
  position: relative;
  animation: fadeSlideUp 0.95s var(--ease) 0.25s both;
}
.hero-visual-glow {
  position: absolute;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 110%; height: 60%;
  background: radial-gradient(ellipse, rgba(249,115,22,0.14) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(30px);
}

.dash-mockup {
  background: rgba(10,18,36,0.95);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 80px rgba(0,0,0,0.55),
    0 0 80px rgba(249,115,22,0.06);
  backdrop-filter: blur(12px);
}
.dash-topbar {
  background: rgba(6,12,24,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
}
.dash-dots { display: flex; gap: 5px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot-r { background: #FF5F57; }
.dash-dot-y { background: #FEBC2E; }
.dash-dot-g { background: #28C840; }
.dash-url-bar {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px; padding: 4px 12px;
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.28); font-size: 0.71rem;
}
.dash-body { padding: 16px; }
.dash-stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-bottom: 12px; }
.dash-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 13px;
}
.dash-stat-num {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 3px;
}
.dash-stat-lbl { font-size: 0.63rem; color: rgba(255,255,255,0.35); font-weight: 500; }
.dash-stat-delta {
  font-size: 0.61rem; font-weight: 700; margin-top: 5px;
  display: flex; align-items: center; gap: 3px;
}
.dash-stat-delta.up   { color: var(--emerald); }
.dash-stat-delta.warn { color: var(--warning); }

.dash-row2 { display: grid; grid-template-columns: 3fr 2fr; gap: 9px; margin-bottom: 9px; }
.dash-chart-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 12px 13px;
}
.dash-chart-label {
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: .09em; margin-bottom: 10px;
}
.dash-bars { display: flex; align-items: flex-end; gap: 4px; height: 62px; }
.db { border-radius: 3px 3px 0 0; min-width: 10px; flex: 1; }
.db-orange { background: linear-gradient(to top, var(--orange-dk), var(--orange-lt)); }
.db-blue   { background: linear-gradient(to top, #1D4ED8, #60A5FA); opacity: .65; }

.dash-map-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 12px 13px;
  position: relative; overflow: hidden;
}
.map-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 18px 18px;
}
.map-route-svg { position: relative; z-index: 1; }
.map-pin { animation: pin-bounce 2s ease-in-out infinite alternate; }
@keyframes pin-bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-4px); }
}

.dash-feed {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 10px;
}
.feed-item {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 6px; border-radius: 6px;
  transition: background 0.15s;
}
.feed-item:hover { background: rgba(255,255,255,0.03); }
.feed-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.feed-text { font-size: 0.65rem; color: rgba(255,255,255,0.52); line-height: 1.4; }
.feed-text strong { color: rgba(255,255,255,0.80); font-weight: 600; }
.feed-time { font-size: 0.58rem; color: rgba(255,255,255,0.22); margin-left: auto; white-space: nowrap; }

/* Floating badge below mockup */
.hero-badge {
  position: absolute; bottom: -18px; right: 16px;
  background: var(--white);
  border-radius: 14px; padding: 11px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  animation: floatBadge 4s ease-in-out infinite alternate;
}
@keyframes floatBadge {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}
.hero-badge-icon {
  width: 36px; height: 36px;
  background: var(--success-bg);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--success);
}
.hero-badge-title { font-size: 0.72rem; font-weight: 700; color: var(--heading); }
.hero-badge-sub   { font-size: 0.64rem; color: var(--muted); margin-top: 1px; }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ============================================================
   CLIENTS TICKER
   ============================================================ */
.clients-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}
.clients-bar::before, .clients-bar::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.clients-bar::before { left: 0;  background: linear-gradient(90deg, var(--white), transparent); }
.clients-bar::after  { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }

.clients-label {
  font-size: 0.71rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap; flex-shrink: 0; padding: 0 40px;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex; align-items: center;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 42px;
  color: var(--border-2);
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: default;
}
.ticker-item:hover { color: var(--orange); }
.ticker-item i { font-size: 1rem; }
.ticker-sep { width: 5px; height: 5px; background: var(--border); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: linear-gradient(145deg, var(--ink-1) 0%, var(--ink-4) 100%);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(249,115,22,0.07) 0%, transparent 55%);
}
.stats-band-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-cell {
  text-align: center;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.05em;
}
.stat-l { font-size: 0.85rem; color: rgba(255,255,255,0.38); font-weight: 500; }

/* ============================================================
   SERVICE CARDS — Bento Style
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.svc-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(249,115,22,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(249,115,22,0.18); }
.svc-card:hover::after { opacity: 1; }

.svc-card-top {
  background: linear-gradient(145deg, var(--ink-1) 0%, var(--ink-4) 100%);
  padding: 30px 28px 24px;
  position: relative; overflow: hidden;
}
.svc-card-top::after {
  content: '';
  position: absolute;
  bottom: -32px; right: -32px;
  width: 100px; height: 100px;
  background: rgba(249,115,22,0.10);
  border-radius: 50%;
}
.svc-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 18px;
  box-shadow: var(--sh-orange);
  transition: transform var(--dur) var(--ease-bounce);
  position: relative; z-index: 1;
}
.svc-card:hover .svc-icon { transform: scale(1.12) rotate(-8deg); }
.svc-card-title { color: var(--white); font-size: 1.05rem; font-weight: 700; margin: 0; position: relative; z-index: 1; }
.svc-card-body { padding: 22px 28px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-card-text { font-size: 0.87rem; color: var(--muted); line-height: 1.72; margin-bottom: 18px; }
.svc-features { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.svc-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; color: var(--body); font-weight: 500;
}
.svc-feat i { color: var(--emerald); font-size: 0.85rem; flex-shrink: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.how-connector {
  position: absolute;
  top: 50px; left: calc(12.5% + 40px); right: calc(12.5% + 40px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(249,115,22,0.4) 20%,
    rgba(249,115,22,0.7) 50%,
    rgba(249,115,22,0.4) 80%,
    transparent);
  z-index: 0;
}
.how-connector::after {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0;
  height: 100%;
  background: inherit;
  filter: blur(6px);
  transform: translateY(-50%);
}
.how-step {
  text-align: center; padding: 0 24px;
  position: relative; z-index: 1;
}
.how-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(249,115,22,0.10), var(--sh-orange);
  position: relative;
  transition: transform var(--dur) var(--ease-bounce),
              box-shadow var(--dur) var(--ease);
}
.how-step:hover .how-num {
  transform: scale(1.08);
  box-shadow: 0 0 0 14px rgba(249,115,22,0.08), var(--sh-orange-lg);
}
.how-num::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(249,115,22,0.30);
  animation: spin-slow 16s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.how-icon { font-size: 1.5rem; color: var(--orange); display: block; margin-bottom: 14px; }
.how-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.how-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.68; }

/* ============================================================
   FLEET CARDS
   ============================================================ */
.fleet-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.v-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.v-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(249,115,22,0.16); }
.v-media { position: relative; height: 200px; overflow: hidden; }
.v-media img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease); }
.v-card:hover .v-media img { transform: scale(1.08); }

.v-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 3px 10px; border-radius: var(--r-full);
}
.v-badge-active { background: var(--emerald); color: var(--white); }
.v-badge-maint  { background: var(--amber); color: #1C1C1C; }
.v-badge-idle   { background: var(--info); color: var(--white); }
.v-type-tag {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  color: rgba(255,255,255,.78); font-size: 0.72rem; font-weight: 600;
}
.v-body { padding: 16px 18px 20px; }
.v-plate { font-size: 0.67rem; font-weight: 700; letter-spacing: .15em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.v-name { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; color: var(--heading); margin-bottom: 12px; }
.v-specs { display: flex; gap: 12px; flex-wrap: wrap; }
.v-spec { display: flex; align-items: center; gap: 5px; font-size: 0.77rem; color: var(--muted); }
.v-spec i { color: var(--orange); font-size: 0.8rem; }

.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.f-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: var(--r-full);
  font-size: 0.83rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  background: var(--white);
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.f-tab:hover, .f-tab.on {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--sh-orange);
}

/* ============================================================
   FEATURE SPLIT
   ============================================================ */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.feature-item:hover {
  border-color: rgba(249,115,22,0.28);
  box-shadow: var(--sh-sm);
  transform: translateX(6px);
  background: rgba(249,115,22,0.02);
}
.feature-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--orange-bg);
  border: 1px solid var(--orange-ring);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange);
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}
.feature-item:hover .feature-icon { background: var(--orange); color: var(--white); border-color: var(--orange); }
.feature-h { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.feature-p { font-size: 0.83rem; color: var(--muted); line-height: 1.62; margin: 0; }

/* ============================================================
   WHY SECTION — Dark Glass Cards
   ============================================================ */
.why-section {
  background: linear-gradient(150deg, var(--ink-1) 0%, var(--ink-4) 55%, var(--ink-2) 100%);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; top: -25%; right: -8%;
  width: 800px; height: 800px;
  background: conic-gradient(from 180deg at 50% 50%,
    rgba(249,115,22,0.06) 0deg,
    rgba(59,130,246,0.04) 120deg,
    rgba(249,115,22,0.06) 360deg);
  border-radius: 50%;
  filter: blur(70px);
}
.why-items { display: flex; flex-direction: column; gap: 14px; }
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
  cursor: default;
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(249,115,22,0.06);
  border-color: rgba(249,115,22,0.20);
  transform: translateX(10px);
  box-shadow: -4px 0 24px rgba(249,115,22,0.08);
}
.why-card-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.20);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange);
  transition: all var(--dur) var(--ease);
}
.why-card:hover .why-card-icon { background: var(--orange); color: var(--white); border-color: var(--orange); }
.why-card h4 { color: rgba(255,255,255,0.90); font-size: 0.97rem; font-weight: 700; margin-bottom: 5px; }
.why-card p  { color: rgba(255,255,255,0.47); font-size: 0.85rem; line-height: 1.68; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: all var(--dur) var(--ease);
  height: 100%;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: var(--r-md) var(--r-md) 0 0;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.testi-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }
.testi-card:hover::before { opacity: 1; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testi-stars i { color: var(--amber); font-size: 0.85rem; }
.testi-quote {
  font-size: 0.93rem; color: var(--body); line-height: 1.80;
  font-style: italic; margin-bottom: 24px;
  position: relative;
}
.testi-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.5rem; color: var(--orange);
  opacity: 0.18;
  position: absolute; top: -20px; left: -10px;
  line-height: 1;
}
.testi-foot { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-2), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--white); flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--heading); font-size: 0.88rem; margin-bottom: 2px; }
.testi-role { font-size: 0.76rem; color: var(--muted); }

/* ============================================================
   CTA SECTION — Premium
   ============================================================ */
.cta-section {
  background: linear-gradient(130deg, var(--orange) 0%, #C05208 100%);
  position: relative; overflow: hidden; padding: 96px 0;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 55%, rgba(255,255,255,0.09) 0%, transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.06) 0%, transparent 36%);
}
.cta-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.cta-inner { position: relative; z-index: 2; }
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.cta-section p { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.72; }
.cta-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.cta-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.82); font-size: 0.83rem; font-weight: 600;
}
.cta-trust-item i { color: rgba(255,255,255,.62); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: var(--sh);
}
.form-field { margin-bottom: 22px; }
.form-lbl {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--heading); margin-bottom: 8px; letter-spacing: .01em;
}
.form-lbl .req { color: var(--orange); }
.form-ctrl {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 0.9rem; font-family: var(--font);
  color: var(--heading);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.form-ctrl:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.10);
}
.form-ctrl::placeholder { color: var(--muted); }
textarea.form-ctrl { resize: vertical; min-height: 144px; }

.info-panel {
  background: linear-gradient(150deg, var(--ink-1) 0%, var(--ink-4) 100%);
  border-radius: var(--r-lg);
  padding: 44px;
  height: 100%;
  position: relative; overflow: hidden;
}
.info-panel::before {
  content: '';
  position: absolute; bottom: -10%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 68%);
  border-radius: 50%;
}
.info-row {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px; position: relative; z-index: 2;
}
.info-row-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.20);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--orange);
}
.info-row-label { font-size: 0.67rem; font-weight: 700; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .11em; }
.info-row-val   { font-size: 0.88rem; color: rgba(255,255,255,.85); font-weight: 500; margin-top: 3px; line-height: 1.55; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px; overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease);
}
.faq-item:hover { border-color: rgba(249,115,22,0.25); }
.faq-item.open  { border-color: var(--orange); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px; cursor: pointer;
  background: var(--white);
  font-weight: 600; color: var(--heading); font-size: 0.92rem;
  transition: background var(--dur-fast) var(--ease);
}
.faq-item.open .faq-q { background: rgba(249,115,22,0.025); }
.faq-arrow {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--muted);
  transition: all var(--dur-fast) var(--ease);
}
.faq-item.open .faq-arrow {
  background: var(--orange); border-color: var(--orange);
  color: var(--white); transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease); }
.faq-a-inner {
  padding: 0 22px 18px;
  color: var(--muted); font-size: 0.88rem; line-height: 1.74;
  border-top: 1px solid var(--border); padding-top: 16px;
}

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(150deg, var(--ink-1) 0%, var(--ink-4) 55%, var(--ink-2) 100%);
  padding: 148px 0 96px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -20%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(40px);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(50px);
}
.page-hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  position: relative; z-index: 2;
}
.breadcrumb-nav {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.38); font-size: 0.8rem; font-weight: 500;
  margin-bottom: 22px;
}
.breadcrumb-nav a { color: var(--orange); transition: color var(--dur-fast); }
.breadcrumb-nav a:hover { color: var(--orange-lt); }
.breadcrumb-nav i { font-size: 0.62rem; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.page-hero p { color: rgba(255,255,255,.55); font-size: 1.05rem; max-width: 580px; line-height: 1.75; }
.page-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.page-hero-wave svg { display: block; width: 100%; }

/* ============================================================
   FOOTER — Premium Dark
   ============================================================ */
.site-footer {
  background: var(--ink-1);
  padding: 80px 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(249,115,22,0.5) 30%,
    rgba(255,255,255,0.08) 50%,
    rgba(249,115,22,0.5) 70%,
    transparent 100%);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.8fr; gap: 52px; }
.footer-logo {
  display: flex; align-items: center; gap: 11px;
  color: var(--white); font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 800; margin-bottom: 16px;
}
.footer-desc { color: rgba(255,255,255,0.38); font-size: 0.86rem; line-height: 1.75; max-width: 270px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 8px; }
.f-social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.40); font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease);
}
.f-social-btn:hover {
  background: var(--orange); border-color: var(--orange);
  color: var(--white); transform: translateY(-3px);
  box-shadow: var(--sh-orange);
}
.footer-col-title {
  color: rgba(255,255,255,0.82); font-size: 0.76rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.38); font-size: 0.86rem;
  transition: color var(--dur-fast) var(--ease), padding-left var(--dur-fast) var(--ease);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--orange); padding-left: 6px; }
.footer-links a i { font-size: 0.62rem; }
.footer-contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  color: rgba(255,255,255,0.38); font-size: 0.84rem; margin-bottom: 14px;
}
.footer-contact-row i { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { color: rgba(255,255,255,0.22); font-size: 0.8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,0.22); font-size: 0.8rem; transition: color var(--dur-fast); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   LOGIN PAGE — Ultra Premium
   ============================================================ */
.login-layout {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
}
.login-left {
  background: linear-gradient(150deg, var(--ink-1) 0%, var(--ink-3) 50%, var(--ink-2) 100%);
  display: flex; flex-direction: column;
  padding: 56px 68px;
  position: relative; overflow: hidden;
}
.login-left::before {
  content: '';
  position: absolute; top: -25%; right: -15%;
  width: 600px; height: 600px;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(249,115,22,0.10) 0deg,
    rgba(59,130,246,0.05) 120deg,
    rgba(249,115,22,0.08) 360deg);
  border-radius: 50%;
  filter: blur(70px);
  animation: aurora-rotate 20s linear infinite;
}
.login-left::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(60px);
}
.login-right {
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  padding: 44px;
  position: relative;
}
.login-right::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.8;
}
.login-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  width: 100%; max-width: 460px;
  box-shadow: var(--sh-2xl);
  border: 1px solid var(--border);
  position: relative; z-index: 2;
}
.login-field { margin-bottom: 20px; }
.login-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--heading); margin-bottom: 8px; }
.login-input-wrap { position: relative; }
.login-input-icon {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 1rem; pointer-events: none;
  transition: color var(--dur-fast);
}
.login-inp {
  width: 100%; padding: 13px 16px 13px 44px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 0.9rem; font-family: var(--font);
  color: var(--heading); outline: none;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.login-inp:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.10);
}
.login-inp:focus ~ .login-input-icon { color: var(--orange); }
.login-inp::placeholder { color: var(--muted); }
.pw-eye {
  position: absolute; right: 15px; top: 50%; transform: translateY(-50%);
  color: var(--muted); cursor: pointer; font-size: 1rem;
  transition: color var(--dur-fast);
}
.pw-eye:hover { color: var(--orange); }

/* Login left panel content */
.login-left-content { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; }
.login-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 64px; }
.login-brand-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.login-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 20px;
}
.login-sub { color: rgba(255,255,255,0.50); font-size: 1rem; line-height: 1.72; margin-bottom: 52px; }
.login-feature {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px;
}
.login-feat-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.20);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--orange);
}
.login-feat-title { font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,0.88); margin-bottom: 3px; }
.login-feat-desc  { font-size: 0.82rem; color: rgba(255,255,255,0.46); line-height: 1.55; }
.login-trust {
  margin-top: auto; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 32px; align-items: center;
}
.login-trust-stat-n { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--orange); line-height: 1; }
.login-trust-stat-l { font-size: 0.71rem; color: rgba(255,255,255,0.36); margin-top: 3px; }
.login-trust-div { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 40px; }
.a-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 26px 22px; text-align: center;
  transition: all var(--dur) var(--ease); position: relative; overflow: hidden;
}
.a-stat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.a-stat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.a-stat-card:hover::before { transform: scaleX(1); }
.a-stat-n { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.a-stat-l { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

.mvv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 34px 30px;
  transition: all var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.mvv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon {
  width: 54px; height: 54px;
  background: var(--orange-bg); border: 1px solid var(--orange-ring);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--orange);
  margin-bottom: 20px;
  transition: all var(--dur) var(--ease);
}
.mvv-card:hover .mvv-icon { background: var(--orange); color: var(--white); border-color: var(--orange); }
.mvv-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.mvv-text  { font-size: 0.87rem; color: var(--muted); line-height: 1.74; }

/* Timeline */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: '';
  position: absolute; left: 10px; top: 4px; bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange) 0%, rgba(249,115,22,0.2) 100%);
}
.tl-item { position: relative; margin-bottom: 38px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -38px; top: 4px;
  width: 24px; height: 24px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px rgba(249,115,22,0.15);
}
.tl-dot i { font-size: 0.6rem; color: var(--white); }
.tl-year  { font-size: 0.71rem; font-weight: 700; color: var(--orange); letter-spacing: .09em; text-transform: uppercase; margin-bottom: 4px; }
.tl-title { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; color: var(--heading); margin-bottom: 5px; }
.tl-desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.68; }

/* Team */
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: all var(--dur) var(--ease); text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.team-photo { height: 210px; overflow: hidden; }
.team-photo img { width:100%; height:100%; object-fit:cover; transition: transform 0.55s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.07); }
.team-body { padding: 22px 18px; }
.team-name { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; color: var(--heading); margin-bottom: 3px; }
.team-role { font-size: 0.78rem; color: var(--orange); font-weight: 600; margin-bottom: 14px; }
.team-social { display: flex; gap: 6px; justify-content: center; }
.team-social a {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.82rem;
  transition: all var(--dur-fast) var(--ease);
}
.team-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 38px 34px;
  transition: all var(--dur) var(--ease);
  position: relative; height: 100%;
}
.pricing-card.featured {
  background: linear-gradient(150deg, var(--ink-1) 0%, var(--ink-4) 100%);
  border-color: rgba(249,115,22,0.35);
  box-shadow: 0 20px 60px rgba(3,6,15,0.30), 0 0 0 1px rgba(249,115,22,0.15);
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--sh-xl); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white); font-size: 0.68rem; font-weight: 700;
  padding: 5px 18px; border-radius: var(--r-full);
  letter-spacing: .10em; text-transform: uppercase; white-space: nowrap;
  box-shadow: var(--sh-orange);
}
.pricing-tier { font-size: 0.71rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pricing-tier.light { color: rgba(255,255,255,0.42); }
.pricing-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--heading); line-height: 1; margin-bottom: 8px; }
.pricing-price.light { color: var(--white); }
.pricing-price sub { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-price.light sub { color: rgba(255,255,255,0.42); }
.pricing-desc { font-size: 0.86rem; color: var(--muted); margin-bottom: 30px; line-height: 1.65; }
.pricing-desc.light { color: rgba(255,255,255,0.52); }
.pricing-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 34px; }
.pricing-feat { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--body); }
.pricing-feat.light { color: rgba(255,255,255,0.78); }
.pricing-feat i { color: var(--emerald); font-size: 0.88rem; }
.pricing-feat.off i { color: var(--border-2); }
.pricing-feat.off { color: var(--muted); }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-stub {
  background: linear-gradient(145deg, var(--ink-3), var(--ink-5));
  border-radius: var(--r-md);
  height: 320px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-stub::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.map-stub-inner { text-align: center; color: rgba(255,255,255,0.52); position: relative; z-index: 2; }
.map-stub-inner i { font-size: 3rem; color: var(--orange); display: block; margin-bottom: 12px; }

/* Office card */
.office-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
}
.office-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(249,115,22,0.20); }
.office-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); box-shadow: var(--sh-orange);
}
.office-tag   { font-size: 0.68rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .11em; margin-bottom: 4px; }
.office-city  { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.office-detail{ font-size: 0.83rem; color: var(--muted); line-height: 1.58; }

/* ============================================================
   BENTO / FEATURE GRID (Homepage extra)
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
  position: relative;
}
.bento-card:hover { box-shadow: var(--sh-md); border-color: rgba(249,115,22,0.16); transform: translateY(-4px); }
.bento-span-4  { grid-column: span 4; }
.bento-span-6  { grid-column: span 6; }
.bento-span-8  { grid-column: span 8; }
.bento-span-12 { grid-column: span 12; }
.bento-row-2   { grid-row: span 2; }

.bento-dark {
  background: linear-gradient(145deg, var(--ink-1) 0%, var(--ink-3) 100%);
  border-color: rgba(255,255,255,0.07);
  color: var(--white);
}
.bento-dark:hover { border-color: rgba(249,115,22,0.22); }
.bento-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  border-color: transparent;
  color: var(--white);
}
.bento-orange:hover { box-shadow: var(--sh-orange-lg); }

.bento-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.bento-label { font-size: 0.85rem; font-weight: 500; opacity: 0.72; }
.bento-icon-bg {
  position: absolute; bottom: -16px; right: -16px;
  font-size: 8rem;
  opacity: 0.05;
}

/* ============================================================
   RIPPLE EFFECT
   ============================================================ */
.ripple {
  position: absolute;
  width: 1px; height: 1px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(300); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .fleet-grid    { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bento-span-4  { grid-column: span 6; }
}
@media (max-width: 991.98px) {
  :root { --section-y: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 44px; }
  .hero-visual { order: -1; }
  .how-grid { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .how-connector { display: none; }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); }
  .stat-cell { border-right: none; padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .stat-cell:last-child { border-bottom: none; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .login-layout { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .about-stat-cards { grid-template-columns: repeat(2,1fr); }
  .dash-row2 { grid-template-columns: 1fr; }
  .dash-stat-row { grid-template-columns: repeat(2,1fr); }
  .bento-span-4 { grid-column: span 12; }
  .bento-span-6 { grid-column: span 12; }
  .bento-span-8 { grid-column: span 12; }
}
@media (max-width: 767.98px) {
  :root { --section-y: 64px; --section-y-sm: 48px; }
  .hero-h1 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid    { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .about-stat-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-trust { justify-content: center; }
  .contact-panel { padding: 28px 22px; }
  .info-panel    { padding: 28px 22px; }
  .hero-trust { gap: 0; }
  .hero-trust-divider { margin: 0 14px; }
}
@media (max-width: 479.98px) {
  .hero-h1 { font-size: 2.1rem; }
  .login-card { padding: 34px 24px; }
  .about-stat-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   RTL SUPPORT (Arabic) — Full Production Edition
   ============================================================ */

/* ── Arabic font stack ── */
body.lang-ar,
body.lang-ar h1, body.lang-ar h2, body.lang-ar h3,
body.lang-ar h4, body.lang-ar h5, body.lang-ar h6,
body.lang-ar p, body.lang-ar span, body.lang-ar a,
body.lang-ar button, body.lang-ar label,
body.lang-ar input, body.lang-ar select, body.lang-ar textarea,
body.lang-ar .eyebrow, body.lang-ar .section-title,
body.lang-ar .section-lead, body.lang-ar .nav-links a,
body.lang-ar .nav-logo, body.lang-ar .mobile-nav-links a,
body.lang-ar .footer-links a, body.lang-ar .footer-desc,
body.lang-ar .stat-l, body.lang-ar .fp-name, body.lang-ar .fp-price-label,
body.lang-ar .why-item h4, body.lang-ar .why-item p,
body.lang-ar .testi-quote, body.lang-ar .testi-name, body.lang-ar .testi-role,
body.lang-ar .hiw-title, body.lang-ar .hiw-desc,
body.lang-ar .cat-name, body.lang-ar .v-name,
body.lang-ar .bk-section-title, body.lang-ar .bk-form-label,
body.lang-ar .trust-pill {
  font-family: 'Noto Kufi Arabic', 'Plus Jakarta Sans', system-ui, sans-serif !important;
}

/* ── Base direction ── */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* ── Navbar ── */
html[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links  { margin-left: 0; margin-right: auto; flex-direction: row-reverse; }
html[dir="rtl"] .nav-cta    { margin-left: 0; margin-right: 14px; }
html[dir="rtl"] .nav-logo   { flex-direction: row-reverse; }
html[dir="rtl"] .nav-logo img,
html[dir="rtl"] .pre-logo-wrap img {
  margin-right: 0 !important;
  margin-left: 8px !important;
}
html[dir="rtl"] .nav-mobile-btn { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .nav-links a.active::after {
  left: 14px; right: 14px;
}

/* ── Mobile Nav ── */
html[dir="rtl"] .mobile-nav         { transform: translateX(-100%); }
html[dir="rtl"] .mobile-nav.open    { transform: translateX(0); }
html[dir="rtl"] .mobile-nav-head    { flex-direction: row-reverse; }
html[dir="rtl"] .mobile-nav-links a { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .mobile-nav-links a i { text-align: center; }

/* ── Hero inner ── */
html[dir="rtl"] .hero-inner { direction: rtl; }
html[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
html[dir="rtl"] .hero-trust   { flex-direction: row-reverse; }

/* ── Section head ── */
html[dir="rtl"] .section-head:not(.centered) { text-align: right; }
html[dir="rtl"] .section-head .eyebrow       { display: inline-flex; }

/* ── Trust strip ── */
html[dir="rtl"] .trust-strip-inner { flex-direction: row-reverse; }
html[dir="rtl"] .trust-pill        { flex-direction: row-reverse; }

/* ── Why grid ── */
html[dir="rtl"] .why-item          { flex-direction: row-reverse; }
html[dir="rtl"] .why-item > div    { text-align: right; }

/* ── How it works ── */
html[dir="rtl"] .hiw-step::after {
  right: auto; left: -50%;
}

/* ── Fleet & vehicle cards ── */
html[dir="rtl"] .fp-badge { left: auto; right: 12px; }
html[dir="rtl"] .fp-type  { right: auto; left: 12px; }
html[dir="rtl"] .fp-spec  { flex-direction: row-reverse; }
html[dir="rtl"] .v-badge  { left: auto; right: 14px; }
html[dir="rtl"] .v-type-tag { right: auto; left: 14px; }
html[dir="rtl"] .v-spec   { flex-direction: row-reverse; }
html[dir="rtl"] .v-price-row { flex-direction: row-reverse; }
html[dir="rtl"] .v-price-label { flex-direction: row-reverse; }
html[dir="rtl"] .v-book-btn { flex-direction: row-reverse; }
html[dir="rtl"] .fp-book-btn { flex-direction: row-reverse; }
html[dir="rtl"] .fp-pricing  { direction: rtl; }

/* ── Testimonials ── */
html[dir="rtl"] .testi-foot   { flex-direction: row-reverse; }
html[dir="rtl"] .testi-quote  { text-align: right; }

/* ── CTA section ── */
html[dir="rtl"] .cta-trust-item { flex-direction: row-reverse; }
html[dir="rtl"] .cta-blob       { right: auto; left: -10%; }

/* ── Stats band ── */
html[dir="rtl"] .stat-cell { border-right: none; border-left: 1px solid var(--border); }
html[dir="rtl"] .stat-cell:last-child { border-left: none; }

/* ── Footer ── */
html[dir="rtl"] .footer-grid    { direction: rtl; }
html[dir="rtl"] .footer-logo    { flex-direction: row-reverse; }
html[dir="rtl"] .footer-social  { flex-direction: row-reverse; }
html[dir="rtl"] .footer-links a { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .footer-contact-row { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .footer-bottom  { flex-direction: row-reverse; }
html[dir="rtl"] .footer-bottom-links { flex-direction: row-reverse; }

/* ── Buttons ── */
html[dir="rtl"] .btn-orange,
html[dir="rtl"] .btn-ghost-white,
html[dir="rtl"] .btn-outline,
html[dir="rtl"] .btn-white { flex-direction: row-reverse; }
html[dir="rtl"] .hb-btn { flex-direction: row-reverse; }

/* ── Scroll-to-top ── */
html[dir="rtl"] #scrollTop { right: auto; left: 32px; }

/* ── Scroll progress ── */
html[dir="rtl"] #scroll-progress {
  left: auto; right: 0;
  transform-origin: right;
}

/* ── Page hero breadcrumb ── */
html[dir="rtl"] .breadcrumb-nav { flex-direction: row-reverse; }

/* ── Bootstrap grid overrides ── */
html[dir="rtl"] .ms-auto { margin-left: 0 !important; margin-right: auto !important; }
html[dir="rtl"] .me-auto { margin-right: 0 !important; margin-left: auto !important; }
html[dir="rtl"] .ms-3    { margin-left: 0 !important; margin-right: 1rem !important; }
html[dir="rtl"] .me-3    { margin-right: 0 !important; margin-left: 1rem !important; }
html[dir="rtl"] .ms-2    { margin-left: 0 !important; margin-right: 0.5rem !important; }
html[dir="rtl"] .me-2    { margin-right: 0 !important; margin-left: 0.5rem !important; }
html[dir="rtl"] .text-start { text-align: right !important; }
html[dir="rtl"] .text-end   { text-align: left  !important; }

/* ── Bootstrap Icons directional flip ── */
html[dir="rtl"] .bi-chevron-right::before   { content: "\f284"; }
html[dir="rtl"] .bi-arrow-right::before     { content: "\f12f"; }
html[dir="rtl"] .bi-arrow-left::before      { content: "\f138"; }
html[dir="rtl"] .bi-box-arrow-in-right::before { content: "\f1c6"; }

/* ── Forms ── */
html[dir="rtl"] .bk-form-label { text-align: right; }
html[dir="rtl"] .bk-form-input { text-align: right; }
html[dir="rtl"] .bk-form-input::placeholder { text-align: right; }
html[dir="rtl"] .bk-nav { flex-direction: row-reverse; }
html[dir="rtl"] .bk-btn-back { flex-direction: row-reverse; }
html[dir="rtl"] .bk-btn-next { flex-direction: row-reverse; }
html[dir="rtl"] .step-bar     { flex-direction: row-reverse; }
html[dir="rtl"] .step-item    { flex-direction: row-reverse; }
html[dir="rtl"] .driver-opt   { text-align: right; }
html[dir="rtl"] .driver-opt-icon { margin-right: 0; margin-left: 0; }

/* ── Filter tabs ── */
html[dir="rtl"] .filter-row   { flex-direction: row-reverse; }

/* ── Booking page sidebar ── */
html[dir="rtl"] .bk-page-wrap  { direction: rtl; }
html[dir="rtl"] .bk-right      { border-right: none; border-left: 1px solid rgba(255,255,255,.06); }
html[dir="rtl"] .bk-sum-row    { flex-direction: row-reverse; }
html[dir="rtl"] .bk-trust-item { flex-direction: row-reverse; }
html[dir="rtl"] .bk-right-title { flex-direction: row-reverse; }

/* ── Eyebrow ── */
html[dir="rtl"] .eyebrow { flex-direction: row-reverse; }

/* ── Preloader ── */
html[dir="rtl"] .pre-logo-wrap { flex-direction: row-reverse; }

/* ── Pricing toggle (fleet) ── */
html[dir="rtl"] .pricing-toggle-wrap { flex-direction: row-reverse; }
html[dir="rtl"] .pricing-toggle-label { flex-direction: row-reverse; }

/* ── Rent type cards ── */
html[dir="rtl"] .rent-card-tag { flex-direction: row-reverse; }
html[dir="rtl"] .rent-card-cta { flex-direction: row-reverse; }
html[dir="rtl"] .rent-card-price { flex-direction: row-reverse; align-items: baseline; }

/* ── Category & service cards ── */
html[dir="rtl"] .cat-card { direction: rtl; }
html[dir="rtl"] .svc-card { direction: rtl; text-align: right; }

/* ── Booking modal ── */
html[dir="rtl"] .bk-modal-head  { flex-direction: row-reverse; }
html[dir="rtl"] .bk-summary-row { flex-direction: row-reverse; }
html[dir="rtl"] .driver-options  { direction: rtl; }

/* ── Contact form ── */
html[dir="rtl"] .contact-panel   { direction: rtl; text-align: right; }
html[dir="rtl"] .info-panel      { direction: rtl; text-align: right; }
html[dir="rtl"] .info-row        { flex-direction: row-reverse; }

/* ── Login ── */
html[dir="rtl"] .login-card      { direction: rtl; text-align: right; }
html[dir="rtl"] .login-input-wrap { flex-direction: row-reverse; }

/* ── About page ── */
html[dir="rtl"] .about-stat-cards { direction: rtl; }
html[dir="rtl"] .timeline-item    { flex-direction: row-reverse; }

/* ── How-it-works strip (fleet page) ── */
html[dir="rtl"] .how-strip       { direction: rtl; }
html[dir="rtl"] .how-step-mini   { align-items: flex-end; text-align: right; }
