/* ========================================
   AirDrive — Premium Mobility Site
   Design System: Infinity inspired
   ======================================== */

:root {
  --bg-light: #FAFAFA;
  --bg-dark: #121212;
  --bg-darker: #0a0a0a;
  --surface-dark: #1A1A1A;
  --surface-darker: #242424;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --text-primary: #0a0a0a;
  --text-secondary: #71717a;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #a1a1aa;
  --accent-blue: #3b82f6;
  --accent-gold: #d4af37;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-brand { color: var(--text-primary); }

.nav-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  background: white;
  color: black;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo {
  background: black;
  color: white;
}

.nav-brand-text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links > a,
.nav-dropdown-trigger {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  text-decoration: none;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 6px 0;
}

.nav-dropdown-trigger svg {
  margin-top: 1px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 16px;
  padding: 10px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 14px;
  z-index: 100;
}

/* Bridge area to prevent dropdown from closing */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #fafafa;
  color: #000;
  padding-left: 24px;
}

/* Scroll offset for sticky nav when jumping to anchors */
#fleet-sprinter, #fleet-solati, #fleet-g90, #fleet-staria, #fleet-sclass,
#price-sprinter, #price-solati, #price-g90, #price-staria, #price-sclass,
#services, #fleet, #about, #contact {
  scroll-margin-top: 90px;
}

/* ========================================
   Mobile Hamburger + Drawer
   ======================================== */

.nav-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.navbar.scrolled .nav-mobile-toggle span { background: black; }

.nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82%, 360px);
  height: 100vh;
  background: white;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.nav-mobile-drawer.is-open { transform: translateX(0); }

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.nav-locked { overflow: hidden; }

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.nav-mobile-header .nav-brand {
  color: black;
}

.nav-mobile-header .nav-logo {
  background: black;
  color: white;
}

.nav-mobile-close {
  width: 42px;
  height: 42px;
  border: none;
  background: #fafafa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: black;
  transition: background 0.2s ease;
}

.nav-mobile-close:hover { background: #f0f0f0; }

.nav-mobile-menu {
  flex: 1;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-menu > a {
  display: block;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}

.nav-mobile-menu > a:hover { background: #fafafa; }

.nav-mobile-group {
  border-radius: 12px;
  overflow: hidden;
}

.nav-mobile-group summary {
  list-style: none;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.nav-mobile-group summary::-webkit-details-marker { display: none; }

.nav-mobile-group summary:hover { background: #fafafa; }

.nav-mobile-group summary svg { transition: transform 0.3s ease; }

.nav-mobile-group[open] summary svg { transform: rotate(180deg); }

.nav-mobile-sub {
  padding: 4px 0 8px;
}

.nav-mobile-sub a {
  display: block;
  padding: 12px 18px 12px 34px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: -0.01em;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-mobile-sub a:hover {
  background: #fafafa;
  color: var(--text-primary);
}

.nav-mobile-cta {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}

.nav-mobile-btn-ghost {
  background: white;
  color: black;
  border: 1px solid #e4e4e7;
}

.nav-mobile-btn-ghost:hover {
  background: #fafafa;
  border-color: #a1a1aa;
}

.nav-mobile-btn-primary {
  background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-mobile-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Show hamburger on mobile, hide desktop nav */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-actions { display: none !important; }
  .nav-mobile-toggle { display: flex; }
}

/* Mobile Quick Menu Strip (under main nav) */
.nav-mobile-strip {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding: 10px 24px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

.nav-mobile-strip a {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 8px 4px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-mobile-strip a:hover,
.nav-mobile-strip a:active {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

/* When scrolled, the strip changes to light theme */
.navbar.scrolled .nav-mobile-strip {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .nav-mobile-strip a {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-mobile-strip a:hover,
.navbar.scrolled .nav-mobile-strip a:active {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.05);
}

/* Show strip only on mobile */
@media (max-width: 900px) {
  .nav-mobile-strip { display: flex; }
}

@media (max-width: 400px) {
  .nav-mobile-strip {
    padding: 8px 12px 12px;
  }
  .nav-mobile-strip a {
    font-size: 12px;
    padding: 6px 2px;
  }
}

.navbar.scrolled .nav-links a { color: var(--text-secondary); }

.nav-links a:hover { color: white; }
.navbar.scrolled .nav-links a:hover { color: var(--text-primary); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-cta {
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  background: white;
  color: black;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  letter-spacing: -0.01em;
}

.nav-cta:hover { background: #e5e5e5; }

.nav-cta-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .nav-cta {
  background: black;
  color: white;
}

.navbar.scrolled .nav-cta:hover { background: #2a2a2a; }

.navbar.scrolled .nav-cta-ghost {
  background: transparent;
  color: black;
  border-color: rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-cta-ghost:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.4);
}

/* ========================================
   Hero Section with 3D
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  /* Dark luxury fallback — shows while 3D loads */
  background:
    linear-gradient(135deg, rgba(0,0,0,0.82), rgba(5,5,8,0.92)),
    url('images/회사모습.jpg') center/cover;
  padding-bottom: 10vh;
}

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

.spline-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  mix-blend-mode: screen;
  opacity: 0.95;
}

.hero-gradient-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50vh;
  background: linear-gradient(to top,
    #121212 0%,
    #121212 15%,
    rgba(10, 10, 12, 0.9) 35%,
    rgba(10, 10, 12, 0.5) 60%,
    transparent 100%);
  pointer-events: none;
}

/* Subtle gold accent line above subtitle for luxury feel */
.hero-content-minimal::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto 24px;
  opacity: 0.8;
}

.hero-gradient-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 30vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  max-width: 960px;
  margin-top: 60px;
  pointer-events: none;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content-minimal {
  margin-top: 0;
  margin-bottom: 40px;
}

.hero-content-minimal .hero-subtitle {
  margin-bottom: 32px;
}

.hero-content > * { pointer-events: auto; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 32px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold);
}

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 28px;
}

.hero-title-accent {
  background: linear-gradient(135deg, #d4af37 0%, #f4d57f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  justify-content: center;
}

.cta-input-wrap {
  position: relative;
  background: white;
  border-radius: 999px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 360px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-input-link:hover { transform: translateY(-2px); }

.cta-input-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, #d4af37, #3b82f6, #d4af37);
  border-radius: 999px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(10px);
  transition: opacity 0.3s ease;
}

.cta-input-wrap:hover::before { opacity: 0.7; }

.cta-input-text {
  flex: 1;
  text-align: left;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #525252;
  letter-spacing: -0.01em;
}

.cta-button {
  background: black;
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cta-button:hover { background: #2a2a2a; transform: translateY(-1px); }

/* ========================================
   Partners Strip
   ======================================== */

.partners {
  padding: 72px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.partners-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  opacity: 0.55;
}

.partner-logo {
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .partners-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
  }
  .partner-logo { font-size: 0.82rem; }
}

/* ========================================
   Generic Section
   ======================================== */

.section-light {
  padding: 120px 0;
  background: var(--bg-light);
}

.section-dark {
  padding: 120px 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  border-top: 8px solid var(--bg-light);
}

/* Services section (first after Hero) — no border, continues dark */
.section-dark-alt {
  border-top: none;
  background: #121212;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: white;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.dark-badge {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--surface-dark);
  color: var(--text-on-dark-muted);
}

.section-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a1a1aa;
}

.section-badge .dot-dark { background: #525252; }

.section-badge .dot-blue {
  background: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue);
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.section-title-dark { color: var(--text-on-dark); }

.title-muted { color: var(--text-secondary); }

.title-accent-light {
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-desc-dark { color: var(--text-on-dark-muted); }

/* ========================================
   Cards Grid (About — Light) - Premium Stats
   ======================================== */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
}

.card-light {
  background: white;
  border-radius: 32px;
  padding: 44px 40px;
  border: 1px solid #f4f4f5;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  min-height: 440px;
}

.card-light:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Premium Stat Cards */
.card-stat-premium {
  position: relative;
  overflow: hidden;
}

.card-stat-premium::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
  pointer-events: none;
}

.stat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: auto;
}

.stat-eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
}

.stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a1a1aa;
}

.stat-dot-gold {
  background: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.stat-number {
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  color: var(--text-primary);
  margin: 40px 0 12px;
  font-feature-settings: 'tnum';
}

.stat-number span {
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 2px;
  color: var(--text-secondary);
}

.stat-unit {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #f4f4f5;
}

/* Hero Card (middle) - Dark premium */
.card-hero-stat {
  position: relative;
  background: linear-gradient(145deg, #18181b 0%, #09090b 100%);
  border-radius: 32px;
  padding: 44px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  min-height: 440px;
  color: white;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-hero-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.card-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(59, 130, 246, 0.12), transparent 60%);
  pointer-events: none;
}

.card-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.stat-number-hero {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 80%, #f4d57f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 40px 0 12px;
  font-size: clamp(3.2rem, 5vw, 4.6rem);
}

.stat-number-hero span {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.6);
  background: none;
}

.stat-unit-light {
  color: white;
}

.stat-desc-light {
  color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.card-stat { margin-top: 56px; }

.card-stat h4 {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.card-stat h4 span {
  font-size: 2.6rem;
}

.card-stat p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #a1a1aa;
}

/* Card Mockup */
.card-mockup {
  background: rgba(244, 244, 245, 0.5);
  border-radius: 32px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 460px;
}

.mockup-inner {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 22px;
  border: 1px solid #f4f4f5;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.mockup-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.mockup-row-fade { opacity: 0.4; margin-bottom: auto; }

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.avatar-blue {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
}

.avatar-rose {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #ffe4e6;
}

.mockup-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.mockup-role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.mockup-stats {
  margin-top: auto;
  background: #1A1A1A;
  color: white;
  padding: 28px;
  border-radius: 18px;
}

.mockup-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.stat-block { text-align: center; }

.stat-num {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

.stat-num-light { font-weight: 300; }

.stat-num span { font-size: 1.6rem; }

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  color: #a1a1aa;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #3f3f46;
}

/* Card Quote */
.card-quote-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.brand-mark {
  width: 16px;
  height: 16px;
  background: black;
  position: relative;
}

.brand-mark::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  border: 1px solid black;
}

.card-quote {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.55;
  color: #18181b;
  margin-bottom: 32px;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f4f4f5;
  padding-top: 24px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
}

.author-role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ========================================
   Fleet List (Dark) - with Slider
   ======================================== */

.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.fleet-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.fleet-row-reverse .fleet-slider { order: 2; }
.fleet-row-reverse .fleet-info { order: 1; }

/* ------- Slider ------- */
.fleet-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-dark);
}

.fleet-slides {
  position: absolute;
  inset: 0;
}

.fleet-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 1.2s ease;
  pointer-events: none;
}

.fleet-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay at bottom for readability */
.fleet-slider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Arrows */
.fleet-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-slider:hover .fleet-arrow { opacity: 1; }

.fleet-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.fleet-arrow-prev { left: 20px; }
.fleet-arrow-next { right: 20px; }

/* Caption overlay (hidden) */
.fleet-caption { display: none; }

/* Dots */
.fleet-dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.fleet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.fleet-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: white;
}

.fleet-dot:hover { background: rgba(255, 255, 255, 0.6); }
.fleet-dot.is-active:hover { background: white; }

/* ------- Info ------- */
.fleet-info {
  padding: 0 8px;
}

.fleet-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-on-dark-muted);
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.fleet-info h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #c8c8cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fleet-info p {
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.fleet-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-specs li span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fleet-specs li strong {
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 980px) {
  .fleet-list { gap: 64px; }
  .fleet-row,
  .fleet-row-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fleet-row-reverse .fleet-slider { order: 0; }
  .fleet-row-reverse .fleet-info { order: 1; }

  .fleet-info { padding: 0; }
  .fleet-arrow { opacity: 1; width: 42px; height: 42px; font-size: 22px; }
  .fleet-arrow-prev { left: 12px; }
  .fleet-arrow-next { right: 12px; }
}

/* ========================================
   Services Grid (Dark)
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* 5-card variant: 1 feature card + 4 regular */
.services-grid-5 {
  grid-template-columns: repeat(2, 1fr);
}

.service-card-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}

.service-card-feature .service-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}

.service-card-feature .service-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-feature .service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: fit-content;
}

.service-card-feature h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-card-feature p {
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .service-card-feature {
    grid-template-columns: 1fr;
  }
  .service-card-feature .service-img {
    min-height: auto;
    aspect-ratio: 16/9;
  }
  .service-card-feature .service-body {
    padding: 32px 24px;
  }
}

.service-card {
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.service-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img { transform: scale(1.05); }

.service-body { padding: 36px 40px 40px; }

.service-body h3 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: white;
}

.service-body p {
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  position: relative;
  padding: 160px 0;
  background: var(--bg-light);
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.05), transparent 50%);
  pointer-events: none;
}

.cta-container {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 32px;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 56px;
}

.cta-info {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 22px 36px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #f4f4f5;
  margin-bottom: 40px;
}

.cta-info-item { text-align: center; }

.cta-info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cta-info-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.cta-info-divider {
  width: 1px;
  height: 36px;
  background: #e4e4e7;
}

.cta-button-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-large {
  background: black;
  color: white;
  padding: 20px 36px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}

.cta-button-large:hover {
  background: #2a2a2a;
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.cta-button-ghost {
  background: white;
  color: black;
  border: 1px solid #e4e4e7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.cta-button-ghost:hover {
  background: #fafafa;
  border-color: #a1a1aa;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  padding: 80px 0 40px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-brand-row .nav-logo {
  background: black;
  color: white;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-col ul a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 500;
  color: #a1a1aa;
}

.footer-cert { display: flex; align-items: center; gap: 8px; }

/* ========================================
   Contact Page
   ======================================== */

.contact-page { background: var(--bg-light); }

.contact-main {
  padding: 140px 0 100px;
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.contact-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 20px 0 20px;
  color: var(--text-primary);
}

.contact-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

/* Info Side */
.contact-info-side {
  position: sticky;
  top: 110px;
  padding: 40px;
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 28px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.contact-info-side h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.contact-info-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-call-card {
  display: flex;
  flex-direction: column;
  padding: 26px 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, #18181b 0%, #09090b 100%);
  color: white;
  text-decoration: none;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-call-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15), transparent 50%);
  pointer-events: none;
}

.contact-call-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.call-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.call-number {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  font-feature-settings: 'tnum';
}

.call-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.contact-meta {
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 0.9rem;
}

.meta-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.meta-value {
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Form Side */
.contact-form {
  padding: 48px;
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 28px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-row .form-field { margin-bottom: 0; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.form-field label .required {
  color: #e11d48;
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: #fafafa;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  transition: all 0.2s ease;
  outline: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a1a1aa;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #18181b;
  background: white;
  box-shadow: 0 0 0 4px rgba(24, 24, 27, 0.06);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-agree {
  margin: 4px 0 28px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #18181b;
  cursor: pointer;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.form-submit svg { transition: transform 0.2s ease; }
.form-submit:hover svg { transform: translateX(3px); }

.form-note {
  font-size: 0.82rem;
  color: #a1a1aa;
  text-align: center;
  line-height: 1.6;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-info-side {
    position: static;
    padding: 32px 28px;
  }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 0; }
  .form-row .form-field { margin-bottom: 24px; }
  .contact-main { padding: 100px 0 60px; }
}

/* ========================================
   Pricing Page
   ======================================== */

.pricing-page { background: var(--bg-light); }

.pricing-main { padding-top: 70px; }

/* Hero */
.pricing-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.04), transparent 55%);
}

.pricing-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 24px 0 20px;
  color: var(--text-primary);
}

.pricing-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 auto 32px;
  max-width: 620px;
}

.pricing-desc strong {
  color: var(--text-primary);
  font-weight: 700;
}

.pricing-cta-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.pricing-cta-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Vehicle Cards */
.pricing-vehicles {
  padding: 60px 0 100px;
}

.pricing-card {
  margin-bottom: 48px;
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.pricing-card:last-child { margin-bottom: 0; }

.pricing-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: #000;
}

.pricing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.6s ease;
}

.pricing-card:hover .pricing-card-image img { transform: scale(1.03); }

.pricing-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%),
              linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 44px;
  color: white;
}

.pricing-card-meta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.pricing-card-overlay h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #c8c8cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Services grid inside card */
.pricing-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 40px 44px;
}

.pricing-service {
  padding: 28px 28px 28px 0;
  border-right: 1px solid #f4f4f5;
  border-bottom: 1px solid #f4f4f5;
}

.pricing-service:nth-child(2n) {
  border-right: none;
  padding-right: 0;
  padding-left: 28px;
}

/* Last item always has no bottom border */
.pricing-service:last-child { border-bottom: none; }

/* Second-to-last at odd position (even total): remove bottom border */
.pricing-service:nth-last-child(2):nth-child(odd) { border-bottom: none; }

.pricing-service:nth-child(1),
.pricing-service:nth-child(2) { padding-top: 0; }

/* Odd total count: last item spans full width */
.pricing-services > .pricing-service:nth-child(odd):last-child {
  grid-column: 1 / -1;
  padding-right: 0;
  padding-left: 0;
  border-right: none;
}

.pricing-service h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-service h3 small {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #f0f0f0;
  font-size: 0.92rem;
}

.pricing-list li:last-child { border-bottom: none; }

.pricing-list li span {
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: -0.01em;
  flex: 1;
  min-width: 0;
}

.pricing-list li em { display: none; }

.pricing-list li {
  word-break: keep-all;
}

.pricing-list li span { word-break: keep-all; }

/* Actions */
.pricing-card-actions {
  display: flex;
  gap: 12px;
  padding: 28px 44px 40px;
  border-top: 1px solid #f4f4f5;
}

.pricing-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-btn-primary {
  background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pricing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.pricing-btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 1px solid #e4e4e7;
}

.pricing-btn-secondary:hover {
  background: #fafafa;
  border-color: #a1a1aa;
  transform: translateY(-2px);
}

/* Notice */
.pricing-notice {
  padding: 0 0 80px;
}

.notice-box {
  background: white;
  border: 1px solid #f0f0f0;
  border-left: 4px solid #d4af37;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.notice-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.notice-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-box li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.notice-box li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: 8px;
  color: #d4af37;
  font-weight: 700;
}

.notice-box li strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Pricing CTA */
.pricing-cta {
  padding: 80px 0 120px;
  background: #fafafa;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

/* Nav ghost for light pages */
.nav-cta-ghost-light {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid #e4e4e7;
}

.nav-cta-ghost-light:hover {
  background: #fafafa;
  border-color: #a1a1aa;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-card-overlay { padding: 28px 24px; }
  .pricing-card-image { aspect-ratio: 16/9; }
  .pricing-services {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .pricing-service {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid #f4f4f5;
  }
  .pricing-service:nth-child(2n) { padding-left: 0; }
  .pricing-service:nth-last-child(-n+2) { border-bottom: 1px solid #f4f4f5; }
  .pricing-service:last-child { border-bottom: none; }
  .pricing-service:nth-child(1),
  .pricing-service:nth-child(2) { padding-top: 24px; }
  .pricing-service:first-child { padding-top: 0; }

  .pricing-card-actions {
    flex-direction: column;
    padding: 24px 24px 32px;
  }

  .pricing-hero { padding: 60px 0 40px; }
  .notice-box { padding: 24px 20px; }
}

/* ========================================
   Thank You Page
   ======================================== */

.thanks-page {
  background: var(--bg-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.thanks-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.thanks-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  width: 100%;
}

.thanks-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.15),
    0 0 0 8px rgba(212, 175, 55, 0.1),
    0 0 0 16px rgba(212, 175, 55, 0.05);
  animation: thanksPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes thanksPop {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-badge { margin-bottom: 24px; }

.dot-gold {
  background: #d4af37 !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.thanks-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.thanks-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 56px;
}

.thanks-info {
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
}

.thanks-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.thanks-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fafafa;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #f0f0f0;
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.thanks-note {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}

.thanks-note a {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--text-primary);
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}

.thanks-note a:hover { opacity: 0.7; }

.thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thanks-btn-primary {
  background: black;
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.thanks-btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.thanks-btn-secondary {
  background: white;
  color: black;
  border: 1px solid #e4e4e7;
}

.thanks-btn-secondary:hover {
  background: #fafafa;
  border-color: #a1a1aa;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .thanks-main { padding: 100px 20px 60px; }
  .thanks-icon { width: 72px; height: 72px; }
  .thanks-info { padding: 24px; }
  .thanks-info-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .thanks-actions { flex-direction: column; }
  .thanks-btn { justify-content: center; }
}

/* ========================================
   Modal
   ======================================== */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  font-weight: 300;
  color: white;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover { color: #a1a1aa; }

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .section-light, .section-dark { padding: 50px 0; }
  .cta-section { padding: 70px 0; }
  .section-head { margin-bottom: 32px; }

  /* Unified small subtitle/description size across all sections */
  .section-desc {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
    word-break: keep-all;
  }
  .section-desc br { display: none; }

  .section-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }

  /* ===== 1. HERO — remove black space below nav ===== */
  .hero {
    min-height: 500px;
    height: 72vh;
    padding-bottom: 24px;
    justify-content: flex-end;
  }

  .hero-3d {
    top: -8%;
    height: 108%;
  }

  .spline-iframe { transform: none; }
  .hero-gradient-top { display: none; }

  .hero-gradient-bottom {
    height: 45vh;
    background: linear-gradient(to top,
      #121212 0%,
      #121212 18%,
      rgba(10, 10, 12, 0.92) 40%,
      rgba(10, 10, 12, 0.5) 65%,
      transparent 100%);
  }

  .hero-content-minimal {
    margin-bottom: 0;
    padding: 0 16px;
    padding-top: 14vh;
  }

  .hero-subtitle {
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
    margin-bottom: 16px !important;
    word-break: keep-all;
  }

  .cta-input-wrap { min-width: auto; width: 100%; max-width: 340px; padding: 5px; }
  .cta-input-text { font-size: 12px; padding-left: 14px; }
  .cta-button { padding: 11px 18px; font-size: 13px; }

  /* ===== 2. SERVICES — 2 columns, smaller text ===== */
  .services-grid,
  .services-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card-feature {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .service-card-feature .service-img {
    min-height: auto;
    aspect-ratio: 16/9;
  }

  .service-card-feature .service-body { padding: 20px 18px; }
  .service-card-feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
  .service-card-feature .service-tag {
    font-size: 9px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }
  .service-card-feature p {
    font-size: 0.82rem;
    line-height: 1.55;
    word-break: keep-all;
  }

  .service-card .service-img { aspect-ratio: 4/3; }
  .service-body { padding: 16px 14px 18px; }
  .service-body h3 {
    font-size: 0.92rem;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .service-body p {
    font-size: 0.72rem;
    line-height: 1.45;
    word-break: keep-all;
  }

  /* ===== 3. FLEET LINEUP — compact 1-2 rows ===== */
  .partners { padding: 40px 0; }
  .partners-label { font-size: 10px; margin-bottom: 18px; }
  .partners-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    opacity: 0.65;
  }
  .partner-logo {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
  }

  /* ===== 4. FLEET CARDS — smaller + keep-all ===== */
  .fleet-list { gap: 48px; }

  .fleet-row,
  .fleet-row-reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fleet-row-reverse .fleet-slider { order: 0; }
  .fleet-row-reverse .fleet-info { order: 1; }

  .fleet-info { padding: 0 4px; }
  .fleet-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    word-break: keep-all;
  }
  .fleet-info p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 18px;
    word-break: keep-all;
  }
  .fleet-info p br { display: none; }
  .fleet-tag {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }
  .fleet-specs li { padding: 12px 0; }
  .fleet-specs li span { font-size: 10px; }
  .fleet-specs li strong { font-size: 0.88rem; }

  /* ===== 5. ABOUT CARDS — compact ===== */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card-light,
  .card-hero-stat {
    min-height: auto;
    padding: 26px 24px;
  }

  .stat-eyebrow { font-size: 9.5px; letter-spacing: 0.2em; }
  .stat-number {
    font-size: 2.8rem !important;
    margin: 16px 0 8px;
  }
  .stat-number span { font-size: 0.5em; }
  .stat-unit { font-size: 0.82rem; margin-bottom: 12px; }
  .stat-desc {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-top: 14px;
    padding-top: 14px;
    word-break: keep-all;
  }
  .stat-desc br { display: none; }

  /* ===== 6. CTA — smaller description ===== */
  .cta-title {
    font-size: 2rem !important;
    margin-bottom: 18px !important;
  }
  .cta-desc {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
    word-break: keep-all;
  }
  .cta-desc br { display: none; }

  .cta-info {
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
  }
  .cta-info-divider { width: 100%; height: 1px; }
  .cta-info-value { font-size: 0.95rem; }
  .cta-info-label { font-size: 10px; }
  .cta-button-large { padding: 16px 24px; font-size: 0.92rem; }

  /* ===== 7. PRICING PAGE — clean mobile layout ===== */
  .pricing-hero { padding: 40px 0 30px; }
  .pricing-title {
    font-size: 1.8rem;
    margin: 16px 0 14px;
  }
  .pricing-desc {
    font-size: 0.82rem;
    margin-bottom: 24px;
    word-break: keep-all;
    line-height: 1.6;
  }
  .pricing-desc br { display: none; }
  .pricing-cta-top { padding: 12px 22px; font-size: 0.85rem; }

  .pricing-vehicles { padding: 30px 0 60px; }
  .pricing-card {
    margin-bottom: 28px;
    border-radius: 20px;
  }

  /* Mobile: show image clean + title/meta in premium section below */
  .pricing-card-image {
    aspect-ratio: 16/10;
    overflow: visible;
    background: transparent;
    border-radius: 20px 20px 0 0;
  }

  .pricing-card-image img {
    border-radius: 20px 20px 0 0;
    object-position: center center;
  }

  .pricing-card-overlay {
    position: static;
    padding: 28px 26px 22px;
    background: linear-gradient(180deg, #fafafa 0%, white 100%);
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-primary);
    display: block;
  }

  .pricing-card-meta {
    background: white;
    border: 1px solid #e4e4e7;
    color: var(--text-secondary);
    backdrop-filter: none;
    font-size: 10px;
    padding: 6px 14px;
    margin-bottom: 14px;
    letter-spacing: 0.18em;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }

  .pricing-card-overlay h2 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0a0a0a 0%, #3f3f46 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    word-break: keep-all;
  }

  .pricing-services {
    grid-template-columns: 1fr;
    padding: 16px 24px 8px;
    gap: 0;
  }

  .pricing-service {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid #f4f4f5;
  }
  .pricing-service:nth-child(2n) { padding-left: 0; }
  .pricing-service:first-child { padding-top: 4px; }
  .pricing-service:last-child { border-bottom: none; }
  .pricing-service:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid #f4f4f5; }

  .pricing-service h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .pricing-service h3 small { font-size: 0.72rem; }

  .pricing-list li {
    padding: 9px 0;
    font-size: 0.84rem;
    justify-content: flex-start;
    border-bottom: none;
  }

  .pricing-list li span {
    color: var(--text-primary);
    font-weight: 500;
  }

  .pricing-card-actions {
    padding: 18px 24px 24px;
    flex-direction: column;
    gap: 10px;
  }

  .pricing-btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .notice-box {
    padding: 22px 20px;
    border-radius: 14px;
  }
  .notice-box h3 { font-size: 0.95rem; margin-bottom: 14px; }
  .notice-box li {
    font-size: 0.82rem;
    padding: 6px 0 6px 16px;
    word-break: keep-all;
  }

  /* ===== Footer ===== */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
}
