/* ============================================================================
   IMPERA — Design System
   Luxury executive ground transportation · Mexico
   ============================================================================ */

/* ---------------------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --black: #161616;
  --black-deep: #0A0A0A;
  --graphite: #2A2A2A;
  --gold: #BE8C29;
  --gold-light: #D4A848;
  --gold-deep: #8E6820;
  --white: #FFFFFF;
  --cream: #F4F2ED;
  --gray: #909090;
  --gray-light: #D9D6CE;
  --gray-text: #5C5C5C;
  --gray-soft: #3A3A3A;

  /* Functional */
  --success: #0F6E56;
  --warning: #633806;
  --danger: #A32D2D;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Layout */
  --container: 1320px;
  --container-narrow: 1040px;
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 180ms var(--ease);
  --base: 280ms var(--ease);
  --slow: 480ms var(--ease);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--fast);
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ---------------------------------------------------------------------------
   3. TYPOGRAPHY
   --------------------------------------------------------------------------- */
.display,
.h1, h1,
.h2, h2,
.h3, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--black);
}

.display { font-size: clamp(48px, 6vw, 88px); }
h1, .h1 { font-size: clamp(36px, 4.5vw, 60px); }
h2, .h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.12; }
h3, .h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }
h4 { font-size: 16px; font-weight: 500; letter-spacing: 0; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
}

.caption {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.body-lg {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-soft);
}

.hairline {
  width: 32px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 0 0 var(--space-5);
}

.hairline.center { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------------------
   4. LAYOUT
   --------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section {
  padding: var(--space-9) 0;
}

.section-sm { padding: var(--space-7) 0; }
.section-lg { padding: var(--space-10) 0; }

.section.dark {
  background: var(--black);
  color: var(--white);
}
.section.dark h1,
.section.dark h2,
.section.dark h3 { color: var(--white); }

.section.cream { background: var(--cream); }

@media (max-width: 768px) {
  .section { padding: var(--space-7) 0; }
  .section-lg { padding: var(--space-8) 0; }
}

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   5. HEADER
   --------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--base), border-color var(--base);
  border-bottom: 0.5px solid transparent;
}

.site-header.scrolled {
  background: rgba(22, 22, 22, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(190, 140, 41, 0.2);
}

.site-header.solid {
  background: var(--black);
  border-bottom-color: rgba(190, 140, 41, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--space-5);
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.28em;
  color: var(--white);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color var(--fast);
  position: relative;
  padding: 4px 0;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

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

.lang-switch {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  gap: 8px;
}

.lang-switch a.active {
  color: var(--gold);
}

.btn-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: transparent;
}

.btn-menu span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform var(--fast);
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .btn-menu { display: flex; }
  .header-actions .btn-outline { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  padding: 80px var(--space-5) var(--space-5);
  display: none;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-menu li {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  font-weight: 300;
}

.mobile-menu .mobile-actions {
  margin-top: auto;
  padding-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ---------------------------------------------------------------------------
   6. BUTTONS
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--fast);
  cursor: pointer;
  border: 0.5px solid transparent;
  font-family: var(--font-sans);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-deep); }

.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover { background: var(--gold); }

.btn-outline {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid var(--gold);
  color: var(--black);
  transition: color var(--fast);
}

.btn-ghost:hover { color: var(--gold); }
.btn-ghost.light { color: var(--white); }
.btn-ghost.light:hover { color: var(--gold); }

.btn-ghost .arrow { color: var(--gold); transition: transform var(--fast); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.arrow { display: inline-block; }

/* ---------------------------------------------------------------------------
   7. HERO
   --------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black-deep);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 120px var(--space-5) var(--space-7);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.9) 100%),
    url('https://images.unsplash.com/photo-1549924231-f129b911e442?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(190, 140, 41, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--space-8);
  align-items: end;
}

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

.hero .eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 32px;
}

.trust-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
  margin-top: 32px;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-bar span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .hero { min-height: auto; padding-top: 140px; padding-bottom: var(--space-7); }
}

/* ---------------------------------------------------------------------------
   8. BOOKING ENGINE
   --------------------------------------------------------------------------- */
.booking-engine {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 0.5px solid rgba(190, 140, 41, 0.4);
  border-radius: var(--radius-sm);
  padding: 32px;
  color: var(--white);
}

.booking-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 14px;
}
.booking-tabs::-webkit-scrollbar { display: none; }

.booking-tab {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  padding-bottom: 14px;
  margin-bottom: -15px;
  white-space: nowrap;
  transition: color var(--fast);
  border-bottom: 1px solid transparent;
}

.booking-tab.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.booking-tab:hover { color: var(--white); }

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

.booking-row-single { grid-template-columns: 1fr; }

.booking-field { display: flex; flex-direction: column; }

.booking-field label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
  font-weight: 500;
}

.booking-field input,
.booking-field select {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);
  padding: 8px 0;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--fast);
}

.booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.booking-field input:focus,
.booking-field select:focus {
  border-bottom-color: var(--gold);
}

.booking-field select option {
  background: var(--black);
  color: var(--white);
}

.booking-submit {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
  padding: 16px;
}

/* ---------------------------------------------------------------------------
   9. VALUE PROPS
   --------------------------------------------------------------------------- */
.value-prop {
  padding: var(--space-5) 0;
}

.value-prop .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.value-prop h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: var(--space-2);
}

.value-prop p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-text);
}

.section.dark .value-prop p {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------------------------------------------------------------------------
   10. SERVICE CARDS
   --------------------------------------------------------------------------- */
.service-card {
  background: var(--white);
  border: 0.5px solid rgba(22, 22, 22, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--base), border-color var(--base);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-card .img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

.service-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow);
}

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

.service-card .body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .badge {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: var(--space-2);
  letter-spacing: -0.005em;
}

.service-card .line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-2) 0 var(--space-3);
}

.service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: var(--space-4);
  flex: 1;
}

.service-card .link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: var(--space-3);
  border-top: 0.5px solid rgba(22, 22, 22, 0.08);
}

.service-card .link .arrow { color: var(--gold); }

/* ---------------------------------------------------------------------------
   11. CITY CARDS
   --------------------------------------------------------------------------- */
.city-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--black);
  color: var(--white);
  display: block;
  text-decoration: none;
}

.city-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--slow);
}

.city-card:hover .bg { transform: scale(1.05); }

.city-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,10,10,0.9) 100%);
}

.city-card .content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.city-card .eyebrow {
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.city-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  color: var(--white);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.city-card .meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.city-card .link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: var(--space-3);
  border-top: 0.5px solid rgba(255, 255, 255, 0.2);
}

.city-card .link .arrow { color: var(--gold); transition: transform var(--fast); }
.city-card:hover .link .arrow { transform: translateX(4px); }

/* ---------------------------------------------------------------------------
   12. FLEET CARDS
   --------------------------------------------------------------------------- */
.fleet-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1024px) {
  .fleet-scroll {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--space-4);
    scrollbar-width: thin;
  }
  .fleet-scroll > * { scroll-snap-align: start; }
}

.fleet-card {
  background: var(--white);
  border: 0.5px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--base);
}

.fleet-card:hover { border-color: var(--gold); }

.fleet-card .img {
  aspect-ratio: 4/3;
  background: var(--graphite);
  overflow: hidden;
}

.fleet-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card .body {
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.fleet-card .category {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}

.fleet-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: var(--space-2);
}

.fleet-card .specs {
  font-size: 12px;
  color: var(--gray-text);
  display: flex;
  gap: var(--space-3);
  margin: var(--space-3) 0;
  padding: var(--space-3) 0;
  border-top: 0.5px solid rgba(22, 22, 22, 0.08);
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.08);
}

.fleet-card .specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fleet-card .specs span::before {
  content: '';
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.fleet-card .amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-soft);
}

.fleet-card .amenity {
  padding: 3px 8px;
  border: 0.5px solid rgba(22, 22, 22, 0.15);
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------------------------
   13. SPLIT SECTION (corporate)
   --------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.split.reverse .split-visual { order: 2; }

.split-visual {
  aspect-ratio: 4/5;
  background: var(--graphite);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.split-content h2 {
  margin-bottom: var(--space-4);
}

.split-content .lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-soft);
  margin-bottom: var(--space-5);
}

.section.dark .split-content .lead { color: rgba(255, 255, 255, 0.8); }

.bullet-list {
  list-style: none;
  margin: var(--space-5) 0 var(--space-6);
}

.bullet-list li {
  padding: var(--space-3) 0;
  border-top: 0.5px solid rgba(22, 22, 22, 0.1);
  font-size: 14px;
  color: var(--gray-soft);
  padding-left: var(--space-5);
  position: relative;
}

.bullet-list li:last-child {
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.1);
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.section.dark .bullet-list li {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: var(--space-6); }
  .split.reverse .split-visual { order: 0; }
}

/* ---------------------------------------------------------------------------
   14. PROCESS / TIMELINE
   --------------------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
}

.process-step {
  padding: var(--space-6) var(--space-5);
  border-right: 0.5px solid rgba(255, 255, 255, 0.12);
}

.process-step:last-child { border-right: none; }

.process-step .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.process-step h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--white);
}

.process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(-n+2) { border-bottom: 0.5px solid rgba(255, 255, 255, 0.12); }
}

@media (max-width: 640px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 0.5px solid rgba(255, 255, 255, 0.12); }
  .process-step:last-child { border-bottom: none; }
}

/* ---------------------------------------------------------------------------
   15. FAQ ACCORDION
   --------------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.12);
}

.section.dark .faq-item { border-color: rgba(255, 255, 255, 0.12); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: color var(--fast);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform var(--fast);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--base);
}

.faq-answer-inner {
  padding: 0 0 var(--space-5);
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-soft);
  max-width: 720px;
}

.section.dark .faq-answer-inner { color: rgba(255, 255, 255, 0.75); }

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ---------------------------------------------------------------------------
   16. CTA SECTIONS
   --------------------------------------------------------------------------- */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: var(--space-9) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(190, 140, 41, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-6);
  font-size: 16px;
  line-height: 1.7;
}

.cta-band-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   17. FOOTER
   --------------------------------------------------------------------------- */
.site-footer {
  background: var(--black-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-8) 0 var(--space-5);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: var(--space-6);
  padding-bottom: var(--space-7);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: var(--space-3);
  display: block;
}

.footer-brand .tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.footer-brand .contact {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand .contact a { color: rgba(255, 255, 255, 0.75); }

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--fast);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.footer-langs {
  display: flex;
  gap: var(--space-3);
}

.footer-langs a {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------------------------
   18. UTILITIES
   --------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-7 { margin-bottom: var(--space-7); }

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-7);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head .lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-soft);
  margin-top: var(--space-3);
}

.section.dark .section-head .lead { color: rgba(255, 255, 255, 0.7); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--slow), transform var(--slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-6);
}

.breadcrumb a {
  color: inherit;
  transition: color var(--fast);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); margin: 0 8px; }
.breadcrumb .current { color: var(--white); }

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--fast);
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ============================================================================
   EXTENDED STYLES · Turn 2 (service pages + checkout + quote forms)
   ============================================================================ */

/* ---------------------------------------------------------------------------
   19. PAGE HERO (non-homepage heros)
   --------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 60vh;
  background: var(--black-deep);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 140px var(--space-5) var(--space-7);
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(190, 140, 41, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: end;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 4.8vw, 56px);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

.page-hero .lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
}

.page-hero-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-left: var(--space-6);
  border-left: 0.5px solid rgba(255, 255, 255, 0.2);
}

.page-hero-meta .label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.page-hero-meta .value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.005em;
}

@media (max-width: 1024px) {
  .page-hero { min-height: auto; padding-top: 120px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .page-hero-meta {
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 0;
    padding-top: var(--space-5);
    border-left: none;
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
    gap: var(--space-5);
  }
}

/* ---------------------------------------------------------------------------
   20. FEATURE GRID
   --------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid rgba(22, 22, 22, 0.1);
}

.section.dark .feature-grid { border-color: rgba(255, 255, 255, 0.12); }

.feature-item {
  padding: var(--space-6) var(--space-5);
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.1);
  border-right: 0.5px solid rgba(22, 22, 22, 0.1);
}

.section.dark .feature-item { border-color: rgba(255, 255, 255, 0.12); }

.feature-item:nth-child(3n) { border-right: none; }

.feature-item .icon-box {
  width: 40px;
  height: 40px;
  border: 0.5px solid var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  color: var(--gold);
}

.feature-item h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: var(--space-2);
  letter-spacing: 0;
}

.feature-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-text);
}

.section.dark .feature-item p { color: rgba(255, 255, 255, 0.6); }

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(3n) { border-right: 0.5px solid rgba(22, 22, 22, 0.1); }
  .feature-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; }
}

/* ---------------------------------------------------------------------------
   21. CONTEXT TWO-COL LAYOUT
   --------------------------------------------------------------------------- */
.context-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-8);
  align-items: start;
}

.context-main { min-width: 0; }

.context-sidebar {
  position: sticky;
  top: 100px;
  background: var(--cream);
  padding: var(--space-6);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-sm);
}

.section.dark .context-sidebar {
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--gold);
}

.context-sidebar h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.context-sidebar .stat {
  padding: var(--space-3) 0;
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.1);
}

.section.dark .context-sidebar .stat { border-color: rgba(255, 255, 255, 0.12); }
.context-sidebar .stat:last-child { border-bottom: none; }

.context-sidebar .stat .k {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.section.dark .context-sidebar .stat .k { color: rgba(255, 255, 255, 0.55); }

.context-sidebar .stat .v {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.005em;
}

.context-sidebar .stat .v small {
  font-size: 13px;
  color: var(--gray-text);
  font-family: var(--font-sans);
  font-weight: 400;
  margin-left: 4px;
}

.context-sidebar .cta { margin-top: var(--space-5); }

@media (max-width: 1024px) {
  .context-layout { grid-template-columns: 1fr; }
  .context-sidebar { position: static; }
}

/* ---------------------------------------------------------------------------
   22. ZONE TAGS
   --------------------------------------------------------------------------- */
.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-4);
}

.zone-tag {
  padding: 6px 12px;
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.section.dark .zone-tag { background: rgba(190, 140, 41, 0.08); }

/* ---------------------------------------------------------------------------
   23. CASE GRID
   --------------------------------------------------------------------------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.case-card {
  background: var(--white);
  border: 0.5px solid rgba(22, 22, 22, 0.1);
  padding: var(--space-5);
  border-radius: var(--radius-sm);
  transition: border-color var(--base);
}

.section.dark .case-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.case-card:hover { border-color: var(--gold); }

.case-card .tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.case-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-2);
}

.case-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: var(--space-3);
}

.section.dark .case-card p { color: rgba(255, 255, 255, 0.6); }

.case-card .price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  color: var(--black);
  padding-top: var(--space-3);
  border-top: 0.5px solid rgba(22, 22, 22, 0.1);
  letter-spacing: -0.01em;
}

.section.dark .case-card .price {
  color: var(--gold);
  border-color: rgba(255, 255, 255, 0.1);
}

.case-card .price small {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-left: 6px;
}

.section.dark .case-card .price small { color: rgba(255, 255, 255, 0.5); }

@media (max-width: 1024px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .case-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   24. INFO STRIP
   --------------------------------------------------------------------------- */
.info-strip {
  background: var(--cream);
  padding: var(--space-6) var(--space-5);
  border-top: 0.5px solid rgba(22, 22, 22, 0.08);
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.08);
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  max-width: var(--container);
  margin: 0 auto;
}

.info-strip-item {
  text-align: left;
  padding-left: var(--space-4);
  border-left: 1px solid var(--gold);
}

.info-strip-item .label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 6px;
}

.info-strip-item .value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.005em;
}

@media (max-width: 1024px) { .info-strip-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------------------------------------
   25. CHECKOUT
   --------------------------------------------------------------------------- */
.checkout-shell {
  min-height: 100vh;
  background: var(--cream);
  padding: 120px var(--space-5) var(--space-8);
}

.checkout-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-7);
  align-items: start;
}

.checkout-main {
  background: var(--white);
  padding: var(--space-7);
  border-radius: var(--radius-sm);
  border: 0.5px solid rgba(22, 22, 22, 0.08);
}

.checkout-progress {
  display: flex;
  gap: 0;
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.12);
  margin: calc(var(--space-7) * -1);
  margin-bottom: var(--space-6);
  padding: var(--space-4) var(--space-7);
  background: var(--cream);
}

.checkout-progress .step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gray-text);
  font-weight: 500;
  padding-right: var(--space-3);
  position: relative;
}

.checkout-progress .step::after {
  content: '→';
  position: absolute;
  right: 8px;
  color: var(--gray-light);
  font-size: 12px;
}

.checkout-progress .step:last-child::after { display: none; }

.checkout-progress .step .num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
  font-family: var(--font-sans);
  transition: background var(--fast);
}

.checkout-progress .step.active { color: var(--black); }
.checkout-progress .step.active .num { background: var(--gold); color: var(--white); }
.checkout-progress .step.done { color: var(--gold); }
.checkout-progress .step.done .num { background: var(--black); color: var(--gold); }

.checkout-step h2 { margin-bottom: var(--space-2); }

.checkout-step .step-sub {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-row-single { grid-template-columns: 1fr; }
.form-row-triple { grid-template-columns: 1fr 1fr 1fr; }

.form-field { display: flex; flex-direction: column; }

.form-field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 0.5px solid rgba(22, 22, 22, 0.18);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color var(--fast);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field .helper {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .form-row, .form-row-triple { grid-template-columns: 1fr; }
}

.vehicle-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.vehicle-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 0.5px solid rgba(22, 22, 22, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--fast), background var(--fast);
  align-items: center;
}

.vehicle-card:hover { border-color: rgba(190, 140, 41, 0.5); }

.vehicle-card.selected {
  border-color: var(--gold);
  background: rgba(190, 140, 41, 0.04);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.vehicle-card .v-img {
  aspect-ratio: 4/3;
  background: var(--graphite);
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.vehicle-card .v-img img { width: 100%; height: 100%; object-fit: cover; }

.vehicle-card .v-info .cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2px;
}

.vehicle-card .v-info h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}

.vehicle-card .v-info .specs {
  font-size: 12px;
  color: var(--gray-text);
  display: flex;
  gap: var(--space-3);
}

.vehicle-card .v-info .specs span { display: flex; align-items: center; gap: 4px; }
.vehicle-card .v-info .specs span::before { content: '·'; color: var(--gold); font-weight: bold; }
.vehicle-card .v-info .specs span:first-child::before { display: none; }

.vehicle-card .v-price { text-align: right; }

.vehicle-card .v-price .price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--black);
  letter-spacing: -0.01em;
}

.vehicle-card .v-price .unit {
  font-size: 11px;
  color: var(--gray-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-card .v-price .radio {
  margin-top: var(--space-2);
  width: 18px;
  height: 18px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  margin-left: auto;
  position: relative;
}

.vehicle-card.selected .v-price .radio {
  border-color: var(--gold);
  background: var(--gold);
}

.vehicle-card.selected .v-price .radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--white);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .vehicle-card { grid-template-columns: 100px 1fr; grid-template-rows: auto auto; }
  .vehicle-card .v-price {
    grid-column: 1 / -1;
    text-align: left;
    border-top: 0.5px solid rgba(22, 22, 22, 0.08);
    padding-top: var(--space-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .vehicle-card .v-price .radio { margin: 0; }
}

.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 0.5px solid rgba(22, 22, 22, 0.08);
  gap: var(--space-3);
  flex-wrap: wrap;
}

.summary-card {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-sm);
  border: 0.5px solid rgba(22, 22, 22, 0.08);
  position: sticky;
  top: 100px;
}

.summary-card h3 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-4);
  font-family: var(--font-sans);
  padding-bottom: var(--space-3);
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.1);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: 13px;
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.06);
}

.summary-row:last-of-type { border-bottom: none; }

.summary-row .k {
  color: var(--gray-text);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  font-weight: 500;
}

.summary-row .v {
  text-align: right;
  color: var(--black);
  font-weight: 500;
}

.summary-total {
  padding: var(--space-4) 0 0;
  margin-top: var(--space-4);
  border-top: 1px solid var(--black);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary-total .k {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
}

.summary-total .v {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--black);
}

.summary-total .v small {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-text);
  margin-left: 4px;
  letter-spacing: 0.08em;
}

.summary-card .footnote {
  font-size: 11px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 0.5px solid rgba(22, 22, 22, 0.06);
}

.confirmation-mark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 32px;
}

.confirmation-id {
  background: var(--cream);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  text-align: center;
  margin: var(--space-5) 0;
  border: 0.5px dashed var(--gold);
}

.confirmation-id .label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.confirmation-id .id {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--black);
}

.confirmation-detail-list {
  list-style: none;
  margin-top: var(--space-5);
}

.confirmation-detail-list li {
  padding: var(--space-3) 0;
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.08);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

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

.confirmation-detail-list .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.confirmation-detail-list .text { font-size: 14px; line-height: 1.55; }
.confirmation-detail-list .text strong { display: block; font-weight: 500; margin-bottom: 2px; }

@media (max-width: 1024px) {
  .checkout-inner { grid-template-columns: 1fr; }
  .summary-card { position: static; order: -1; }
}

@media (max-width: 640px) {
  .checkout-main { padding: var(--space-5); }
  .checkout-progress { padding: var(--space-3) var(--space-4); overflow-x: auto; }
  .checkout-progress .step { min-width: 120px; }
}

.payment-methods {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.payment-method {
  flex: 1;
  padding: var(--space-4);
  border: 0.5px solid rgba(22, 22, 22, 0.15);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--fast);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.payment-method.selected {
  border-color: var(--gold);
  background: rgba(190, 140, 41, 0.04);
}

/* ---------------------------------------------------------------------------
   26. QUOTE FORM (for consultative services)
   --------------------------------------------------------------------------- */
.quote-shell {
  background: var(--white);
  padding: var(--space-7);
  border: 0.5px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--gold);
}

.section.dark .quote-shell {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  border-top-color: var(--gold);
}

.quote-shell .quote-head {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.1);
}

.section.dark .quote-shell .quote-head { border-color: rgba(255, 255, 255, 0.12); }

.quote-shell .quote-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: var(--space-2);
}

.quote-shell .quote-head p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

.section.dark .quote-shell .quote-head p { color: rgba(255, 255, 255, 0.7); }

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(190, 140, 41, 0.08);
  border: 0.5px solid rgba(190, 140, 41, 0.3);
  border-radius: var(--radius-sm);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.response-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------------------------------------------------------------------------
   27. SERVICE CARD V2 (services index page)
   --------------------------------------------------------------------------- */
.service-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.service-card-v2 {
  display: block;
  padding: var(--space-6);
  background: var(--white);
  border: 0.5px solid rgba(22, 22, 22, 0.1);
  border-radius: var(--radius-sm);
  color: var(--black);
  text-decoration: none;
  transition: border-color var(--base), transform var(--base);
  position: relative;
}

.service-card-v2.dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.service-card-v2:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.service-card-v2 .eyebrow-row {
  margin-bottom: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-v2 h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.service-card-v2 p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-text);
  margin-bottom: var(--space-4);
}

.service-card-v2.dark p { color: rgba(255, 255, 255, 0.7); }

.service-card-v2 .link-arrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

@media (max-width: 768px) {
  .service-grid-v2 { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   28. CITY CARD V2 (cities index page)
   --------------------------------------------------------------------------- */
.city-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.city-card-v2 {
  display: block;
  background: var(--white);
  border: 0.5px solid rgba(22, 22, 22, 0.1);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--black);
  overflow: hidden;
  transition: transform var(--base), border-color var(--base);
}

.city-card-v2:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.city-card-image {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  position: relative;
}

.city-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
}

.city-card-body {
  padding: var(--space-5);
}

.city-card-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: var(--space-2) 0 var(--space-3);
}

.city-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: var(--space-4);
}

.city-card-body .link-arrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

@media (max-width: 1024px) { .city-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .city-card-grid { grid-template-columns: 1fr; } }

/* Shared section lead */
.section-head .section-lead {
  max-width: 680px;
  font-size: 15px;
  color: var(--gray-text);
  margin-top: var(--space-3);
  line-height: 1.7;
}

.section.dark .section-head .section-lead { color: rgba(255, 255, 255, 0.7); }

.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------------------
   29. VEHICLE SHOWCASE (fleet page)
   --------------------------------------------------------------------------- */
.vehicle-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto var(--space-5);
  padding: 0 var(--space-5);
  align-items: stretch;
}

.vehicle-showcase.reverse { direction: rtl; }
.vehicle-showcase.reverse > * { direction: ltr; }

.vehicle-showcase-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
}

.vehicle-showcase-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vehicle-showcase-body .eyebrow {
  margin-bottom: var(--space-3);
}

.vehicle-showcase-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: var(--space-3) 0 var(--space-4);
  line-height: 1.2;
}

.vehicle-showcase-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: var(--space-5);
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-top: 0.5px solid rgba(22, 22, 22, 0.1);
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.1);
  margin-bottom: var(--space-4);
}

.vehicle-specs .stat .k {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.vehicle-specs .stat .v {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.vehicle-variants {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-style: italic;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .vehicle-showcase,
  .vehicle-showcase.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .vehicle-showcase-body { padding: var(--space-5) 0 0; }
  .vehicle-specs { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 640px) {
  .vehicle-specs { grid-template-columns: 1fr; gap: var(--space-2); }
}

/* ---------------------------------------------------------------------------
   30. PROCESS GRID (5-step variant, works on light and dark)
   --------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 0.5px solid rgba(22, 22, 22, 0.1);
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.1);
  margin-top: var(--space-4);
}

.section.dark .process-grid {
  border-top-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.process-grid > .process-step {
  padding: var(--space-5) var(--space-4);
  border-right: 0.5px solid rgba(22, 22, 22, 0.08);
}

.section.dark .process-grid > .process-step {
  border-right-color: rgba(255, 255, 255, 0.12);
}

.process-grid > .process-step:last-child { border-right: none; }

.process-grid > .process-step .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
  display: block;
}

.process-grid > .process-step h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--black);
}

.section.dark .process-grid > .process-step h4 { color: var(--white); }

.process-grid > .process-step p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray-text);
}

.section.dark .process-grid > .process-step p { color: rgba(255, 255, 255, 0.6); }

@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid > .process-step { border-right: 0.5px solid rgba(22, 22, 22, 0.08); border-bottom: 0.5px solid rgba(22, 22, 22, 0.08); }
  .process-grid > .process-step:nth-child(2n) { border-right: none; }
}

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-grid > .process-step { border-right: none !important; }
}

/* ---------------------------------------------------------------------------
   31. CONTACT CHANNELS
   --------------------------------------------------------------------------- */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.channel-card {
  padding: var(--space-6);
  background: var(--white);
  border: 0.5px solid rgba(22, 22, 22, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.channel-card .icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  background: var(--black);
  color: var(--gold);
  margin-bottom: var(--space-4);
  border-radius: var(--radius-sm);
}

.channel-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.channel-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.channel-card .channel-value {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) { .contact-channels { grid-template-columns: 1fr; } }

/* Contact form / quote form shared — inherits from .form-row, .form-field already */

.contact-form,
.quote-form {
  max-width: 100%;
}

/* ---------------------------------------------------------------------------
   32. FAQ GROUP (FAQ page with multi-groups)
   --------------------------------------------------------------------------- */
.faq-group {
  margin-bottom: var(--space-6);
}

.faq-group-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--gold);
  padding-bottom: var(--space-3);
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.1);
  margin-bottom: var(--space-4);
}

/* ---------------------------------------------------------------------------
   33. LEGAL PAGES (privacy, terms, cancellation, payments)
   --------------------------------------------------------------------------- */
.legal-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-text);
}

.legal-content .legal-updated {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 0.5px solid rgba(22, 22, 22, 0.1);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--black);
  margin: var(--space-5) 0 var(--space-3);
  line-height: 1.3;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: var(--space-3);
}

.legal-content ul {
  margin: var(--space-3) 0;
  padding-left: var(--space-4);
  list-style: none;
}

.legal-content ul li {
  position: relative;
  padding-left: var(--space-4);
  margin-bottom: var(--space-2);
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 0.5px;
  background: var(--gold);
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
}

.legal-content a:hover {
  text-decoration-thickness: 1px;
}

.legal-content strong {
  color: var(--black);
  font-weight: 500;
}

.legal-content em {
  color: var(--gold);
  font-style: italic;
}
