/* ===== ARMORIS DEFENSE — SALES SITE ===== */
/* Palette: Near-black surfaces · Warm gold accent · White text */

:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 6vw, 7rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* DARK PALETTE — primary mode */
  --color-bg: #0a0908;
  --color-surface: #111009;
  --color-surface-2: #171512;
  --color-surface-3: #1e1c18;
  --color-border: #2a2820;
  --color-divider: #222018;

  --color-text: #e8e6e1;
  --color-text-muted: #8a8880;
  --color-text-faint: #4a4844;
  --color-text-inverse: #0a0908;

  /* Gold accent */
  --color-accent: #c9a84c;
  --color-accent-hover: #dbb95e;
  --color-accent-dim: rgba(201,168,76,0.15);
  --color-accent-border: rgba(201,168,76,0.3);

  /* Availability green */
  --color-available: #3a7a3a;
  --color-available-text: #6daa6d;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.7);

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-default: 1200px;
  --content-wide: 1440px;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: calc(80px + var(--theis-bar-h));
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul[role='list'] { list-style: none; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.1; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 var(--space-8);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
}
.nav-brand {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
}
.nav-brand-sub {
  color: var(--color-accent);
  font-weight: 300;
  letter-spacing: 0.2em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-text); }
.nav-links .nav-cta {
  padding: var(--space-2) var(--space-6);
  border: 1px solid var(--color-accent-border);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background var(--transition), color var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-text-inverse);
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--transition);
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: var(--space-4) var(--space-8) var(--space-6);
  border-top: 1px solid var(--color-border);
  gap: var(--space-4);
}
.nav-mobile-menu.open { display: flex; }
.mob-link {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
}
.mob-link:hover { color: var(--color-text); }
.mob-cta {
  color: var(--color-accent);
  font-weight: 600;
  margin-top: var(--space-2);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.45) saturate(0.8);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,9,8,0.85) 0%,
    rgba(10,9,8,0.4) 60%,
    rgba(10,9,8,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-default);
  margin: 0 auto;
  padding: calc(120px + var(--theis-bar-h)) var(--space-8) var(--space-24);
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  margin-bottom: var(--space-6);
  max-width: 900px;
}
.hero-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(232,230,225,0.75);
  max-width: 540px;
  margin-bottom: var(--space-10);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.stat {}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
}
.stat-num-theis {
  font-size: calc(var(--text-2xl) * 1.6);
  line-height: 1.1;
  white-space: nowrap;
}
.stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
  max-width: 180px;
}
.stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== TAGLINE ===== */
.tagline-break {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(var(--space-12), 6vw, var(--space-20));
}
.tagline-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
blockquote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: var(--space-4);
}
cite {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  margin-bottom: var(--space-4);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ===== FLEET ===== */
.fleet {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-12), 5vw, var(--space-20));
  padding-bottom: clamp(var(--space-20), 10vw, var(--space-32));
}
.fleet-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8) var(--space-12);
}

/* ===== VEHICLE LISTING — NEW CINEMATIC LAYOUT ===== */
/* Each vehicle is a full-width section with clear media + info separation */

.vl-listing {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  margin: 0 clamp(var(--space-4), 3vw, var(--space-10));
}
.vl-listing.vl-alt {
  grid-template-columns: 0.9fr 1.1fr;
}
.vl-listing.vl-alt .vl-media-col { order: 2; }
.vl-listing.vl-alt .vl-info-col  { order: 1; }

/* Featured first listing — slightly taller */
.vl-featured {
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 600px;
}

/* ─── MEDIA COLUMN ─── */
.vl-media-col {
  display: flex;
  flex-direction: column;
  background: #000;
  position: relative;
}

/* VIDEO WRAP — cinematic, constrained height */
.vl-video-wrap {
  position: relative;
  flex: 0 0 auto;
  height: 340px;
  overflow: hidden;
  background: #000;
}
.vl-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* YouTube Short embed — vertical 9:16 video fitted into the existing wrap */
.vl-yt {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}
.vl-yt-wrap {
  /* Shorts are vertical; let them breathe a bit taller on desktop */
  height: 480px;
}
@media (max-width: 900px) {
  .vl-yt-wrap { height: 70vw; max-height: 540px; min-height: 320px; }
}
.vl-video-label {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  background: rgba(10,9,8,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  pointer-events: none;
}

/* Video tab switcher — overlays top of video */
.vl-vtabs {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 10;
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.vl-vtab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(10,9,8,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.vl-vtab:hover {
  color: var(--color-accent);
  border-color: var(--color-accent-border);
}
.vl-vtab.active {
  background: var(--color-accent);
  color: #0a0908;
  border-color: var(--color-accent);
}

/* PHOTO STRIP — below video, clean horizontal scroll */
.vl-photo-strip {
  margin-top: 10px;
  border-top: 2px solid var(--color-bg);
  background: #0d0c0b;
}
.vl-strip-track {
  display: flex;
  gap: 6px;
  padding: var(--space-3) var(--space-2) var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
}
.vl-strip-track::-webkit-scrollbar { display: none; }
.vl-strip-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.45;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.vl-strip-thumb:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.vl-strip-thumb.active {
  opacity: 1;
  border-color: var(--color-accent);
}
.vl-photo-main {
  padding: var(--space-2) var(--space-2) var(--space-3);
}
.vl-main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #0a0908;
  border-radius: var(--radius-md);
  display: block;
  transition: opacity 0.25s ease;
}
.vl-featured .vl-main-img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
}

/* ─── INFO COLUMN ─── */
.vl-info-col {
  background: var(--color-surface);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) clamp(var(--space-8), 4vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  justify-content: center;
  border-left: 1px solid var(--color-border);
}
.vl-listing.vl-alt .vl-info-col {
  border-left: none;
  border-right: 1px solid var(--color-border);
}

/* Badges */
.vl-badge-row {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.vl-badge-avail,
.vl-badge-level,
.vl-badge-tested {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vl-badge-avail {
  background: rgba(58,122,58,0.2);
  border: 1px solid rgba(109,170,109,0.3);
  color: #6daa6d;
}
.vl-badge-level {
  background: var(--color-accent-dim);
  border: 1px solid var(--color-accent-border);
  color: var(--color-accent);
}
.vl-badge-tested {
  background: rgba(120,60,60,0.2);
  border: 1px solid rgba(180,80,80,0.3);
  color: #c07070;
}

/* Year / mileage */
.vl-year {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Vehicle name */
.vl-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.vl-featured .vl-name {
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
}

/* Edition */
.vl-edition {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-top: -var(--space-2);
}

/* Price */
.vl-price {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}

/* Divider */
.vl-divider {
  height: 1px;
  background: var(--color-border);
}

/* Specs */
.vl-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.vl-specs li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.5;
  align-items: start;
  overflow: hidden;
}
.vl-spec-val {
  color: var(--color-text-muted);
  overflow: hidden;
  word-break: break-word;
  min-width: 0;
}
.vl-spec-key {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding-top: 3px;
}
/* vl-spec-val defined above with overflow fix */

/* CTA Button */
.vl-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--color-accent);
  color: #0a0908;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 100%;
  text-align: center;
}
.vl-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* ===== PROTECTION ===== */
.protection {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8);
}
.protection-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}
.section-header-light .section-title { color: var(--color-text); }

/* Compare table */
.compare-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-16);
}
.compare-header, .compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
}
.compare-header {
  background: var(--color-surface-3, #1e1c18);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}
.compare-row {
  border-bottom: 1px solid var(--color-border);
}
.compare-row:last-child { border-bottom: none; }
.compare-col {
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
}
.col-label {
  font-weight: 600;
  color: var(--color-text);
}
.col-trad {
  color: var(--color-text-muted);
  border-left: 1px solid var(--color-border);
}
.col-trad.col-bad { color: #8a6060; }
.col-armoris {
  border-left: 1px solid var(--color-border);
  font-weight: 500;
}
.col-armoris.col-good { color: var(--color-accent); }
.compare-header .col-trad,
.compare-header .col-armoris {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-header .col-armoris { color: var(--color-accent); }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.pillar {
  background: var(--color-surface-3, #1e1c18);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition);
}
.pillar:hover { border-color: var(--color-accent-border); }
.pillar-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-dim);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  color: var(--color-accent);
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-3);
}
.pillar p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ===== ABOUT ===== */
.about {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8);
  max-width: var(--content-default);
  margin: 0 auto;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 560px;
}
.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.about-img-1 {
  width: 80%;
  height: 360px;
  top: 0;
  left: 0;
  object-position: center;
}
.about-img-2 {
  width: 65%;
  height: 280px;
  bottom: 0;
  right: 0;
  object-position: center;
  border: 3px solid var(--color-bg);
}
.about-headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  margin-bottom: var(--space-6);
  line-height: 1.15;
}
.about-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.about-stats {
  display: flex;
  gap: var(--space-10);
  margin: var(--space-8) 0;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
}
.about-stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  max-width: 160px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8);
}
.contact-inner {
  max-width: var(--content-default);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.section-eyebrow-light { color: var(--color-accent); }
.contact-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  margin-bottom: var(--space-5);
}
.contact-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.contact-link {
  font-size: var(--text-sm);
  color: var(--color-accent);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--color-accent-hover); text-decoration: underline; }
.contact-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: var(--space-1);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-1);
}
.contact-person-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.contact-person-phone {
  font-size: var(--text-base);
  color: var(--color-accent);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-person-phone:hover { color: var(--color-accent-hover); text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--color-surface-3, #1e1c18);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-field label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition);
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--color-text-faint); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-field select option { background: var(--color-surface-2); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
}
.form-success {
  background: var(--color-surface-3, #1e1c18);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-8);
  text-align: center;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-accent-dim);
  border: 1px solid var(--color-accent-border);
  color: var(--color-accent);
  font-size: var(--text-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.form-success p { color: var(--color-text-muted); font-size: var(--text-sm); }

/* ===== QUOTE SECTION ===== */
.quote-section {
  background: linear-gradient(135deg, #0f0e0c 0%, #141210 50%, #0a0908 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-16) var(--space-8);
}
.quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.quote-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.quote-sub {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.quote-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.quote-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.qf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.quote-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.quote-ext-link {
  color: var(--color-accent);
  font-size: var(--text-sm);
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.quote-ext-link:hover { color: var(--color-accent-hover); text-decoration: underline; }
.quote-form-col { }
@media (max-width: 900px) {
  .quote-inner { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-12) var(--space-8);
}
.footer-inner {
  max-width: var(--content-default);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.footer-brand-name {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.footer-brand-tag {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-accent); }
.footer-legal {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .vl-listing,
  .vl-featured,
  .vl-listing.vl-alt {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: 0 var(--space-4);
  }
  .vl-listing.vl-alt .vl-media-col { order: 1; }
  .vl-listing.vl-alt .vl-info-col  { order: 2; }
  .vl-listing.vl-alt .vl-info-col  { border-right: none; border-top: 1px solid var(--color-border); }
  .vl-info-col { border-left: none; border-top: 1px solid var(--color-border); }
  .vl-video-wrap { height: 280px; }
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: var(--space-10); }
  .about-img-stack { height: 320px; }
  .about-img-1 { height: 260px; }
  .about-img-2 { height: 200px; width: 55%; }
  .contact-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .compare-header, .compare-row { grid-template-columns: 1fr 1fr; }
  .col-label { display: none; }
  .col-trad { border-left: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-headline { font-size: clamp(2.5rem, 8vw, 5rem); }
  .hero-stats { gap: var(--space-6); }
  .stat-div { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .compare-header, .compare-row { grid-template-columns: 1fr 1fr; }
  .col-label { display: none; }
  .about-img-stack { display: none; }
  .about-split { grid-template-columns: 1fr; }
  blockquote { font-size: var(--text-lg); }
  .vl-name { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  /* ── Mobile vehicle card layout ── */
  .vl-listing,
  .vl-featured,
  .vl-listing.vl-alt {
    grid-template-columns: 1fr;
    margin: 0 var(--space-2);
    width: calc(100% - var(--space-4));
    max-width: calc(100vw - var(--space-4));
    box-sizing: border-box;
    overflow: hidden;
    /* Force grid children to respect container width */
    display: block;
  }
  .vl-video-wrap {
    height: 56vw;
    min-height: 220px;
    max-height: 340px;
  }
  .vl-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Photo strip: bigger thumbs, horizontal scroll */
  .vl-strip-track {
    padding: var(--space-2) var(--space-2);
    gap: 6px;
  }
  .vl-strip-thumb {
    width: 80px;
    height: 56px;
    flex-shrink: 0;
  }
  /* Main preview photo — tall enough to actually see the car */
  .vl-photo-main {
    padding: 6px var(--space-2) var(--space-2);
  }
  .vl-main-img,
  .vl-featured .vl-main-img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: contain;
    background: #0a0908;
    border-radius: var(--radius-md);
  }
  /* Media col */
  .vl-media-col {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  /* Info col */
  .vl-info-col {
    padding: var(--space-6) var(--space-4);
    background: var(--color-surface);
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid var(--color-border);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* Prevent background bleed from parent grid */
    position: relative;
    z-index: 1;
  }
  .vl-specs {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .vl-specs li {
    grid-template-columns: 76px 1fr;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    /* Critical: prevents grid children from overflowing */
    min-width: 0;
  }
  .vl-spec-key {
    min-width: 0;
    overflow: hidden;
  }
  .vl-spec-val {
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
  }
  .vl-cta {
    width: 100%;
    box-sizing: border-box;
    /* Allow text to wrap so nothing gets clipped */
    white-space: normal;
    overflow: visible;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: var(--space-4) var(--space-3);
    text-align: center;
    justify-content: center;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .about-stats { flex-direction: column; gap: var(--space-6); }
  .vl-strip-thumb { width: 72px; height: 52px; }
  .vl-video-wrap {
    height: 60vw;
    min-height: 200px;
  }
  .vl-main-img,
  .vl-featured .vl-main-img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: contain;
    background: #0a0908;
  }
}

/* ===== CONTACT FLEET LIST ===== */
.contact-vehicles-list {
  background: var(--color-surface-3, #1e1c18);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-8) 0;
}
.cvl-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.cvl-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-4);
}
.cvl-item:last-child { border-bottom: none; }
.cvl-name {
  font-size: var(--text-sm);
  color: var(--color-text);
}
.cvl-price {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}



/* ===== TRUST BAR ===== */
.trust-bar {
  background: #0d0c0a;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-5) var(--space-8);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { color: var(--color-accent); flex-shrink: 0; }
.trust-div {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}
@media (max-width: 768px) {
  .trust-bar-inner { gap: var(--space-4); justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: var(--space-2); }
  .trust-div { display: none; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--color-bg);
  padding: var(--space-20) var(--space-8);
  border-top: 1px solid var(--color-border);
}
.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hiw-inner .section-title { margin-bottom: var(--space-12); }
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-4);
}
.hiw-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
}
.hiw-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.7;
}
.hiw-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.hiw-step p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.hiw-arrow {
  color: var(--color-accent);
  opacity: 0.5;
  margin-top: 2.8rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hiw-steps { flex-direction: column; align-items: center; gap: var(--space-6); }
  .hiw-arrow { transform: rotate(90deg); margin: 0; }
  .hiw-step { max-width: 100%; }
}

/* ===== BUYER TYPES ===== */
.buyer-types {
  background: #0d0c0a;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-20) var(--space-8);
}
.buyer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.buyer-inner .section-title { margin-bottom: var(--space-12); }
.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.buyer-card {
  background: var(--color-surface, #141210);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.buyer-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}
.buyer-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--color-accent);
}
.buyer-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.buyer-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .buyer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .buyer-grid { grid-template-columns: 1fr; }
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(to top, #0a0908 80%, transparent);
}
.sticky-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: var(--space-4) var(--space-6);
  background: var(--color-accent);
  color: #0a0908;
  font-weight: 700;
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  text-decoration: none;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  .footer { padding-bottom: calc(var(--space-12) + 70px); }
}


/* ===== CINEMATIC BREAKS ===== */
.cinematic-break {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #0a0908;
}
.cinematic-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  opacity: 0.55;
  transition: opacity 0.6s ease;
}
.cin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,9,8,0.75) 40%, rgba(10,9,8,0.3) 100%);
  z-index: 1;
}
.cin-content {
  position: relative;
  z-index: 2;
  padding: 5rem clamp(1.5rem, 6vw, 8rem);
  max-width: 700px;
}
.cin-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.cin-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ===== SECTION BACKGROUND IMAGES ===== */
.section-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  z-index: 0;
}
.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Protection section with bg */
.protection {
  position: relative;
  overflow: hidden;
}
.protection .protection-inner {
  position: relative;
  z-index: 2;
}

/* Buyer types with bg */
.buyer-types {
  position: relative;
  overflow: hidden;
}
.buyer-types .buyer-inner {
  position: relative;
  z-index: 2;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0908;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: scroll;
  opacity: 0.3;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201,168,76,0.08) 0%, transparent 60%), 
              linear-gradient(to bottom, rgba(10,9,8,0.7), rgba(10,9,8,0.85));
}
.cta-banner-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    linear-gradient(rgba(201,168,76,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem clamp(1.5rem, 6vw, 6rem);
  max-width: 800px;
}
.cta-banner-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}
.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-banner-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.cta-banner-btn:hover {
  background: var(--color-accent);
  color: #0a0908;
}

/* Enhanced tagline break */
.tagline-break {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0908;
}
.tagline-break-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-attachment: scroll;
  opacity: 0.45;
}
.tagline-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,8,0.6), rgba(10,9,8,0.5), rgba(10,9,8,0.6));
}
.tagline-inner {
  position: relative;
  z-index: 2;
}

/* About section bg enhancement */
.about-split {
  position: relative;
}

/* Scroll fade-in animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   CULTURE / BRAND ETHOS SECTION
═══════════════════════════════════════════════════════ */
.culture-section {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
  background: var(--color-bg);
}
.culture-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}
.culture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,8,0.6) 0%, rgba(10,9,8,0.95) 40%, rgba(10,9,8,0.95) 100%);
  z-index: 1;
}
.culture-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.culture-header {
  max-width: 700px;
  margin: 0 auto var(--space-16);
  text-align: center;
}
.culture-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.culture-pillar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  padding: var(--space-8);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.culture-pillar:hover {
  border-top-color: var(--color-gold);
  transform: translateY(-3px);
}
.culture-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--color-gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--space-3);
}
.culture-pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}
.culture-pillar p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.culture-pillar-quote {
  background: var(--color-dark3);
  border-top-color: var(--color-gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-3);
}
.culture-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.65;
  margin: 0;
}
.culture-cite {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  text-transform: uppercase;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════
   GLOBAL REACH SECTION
═══════════════════════════════════════════════════════ */
.global-section {
  background: var(--color-dark2);
  padding: var(--space-24) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.global-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.global-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin: var(--space-12) 0 var(--space-14);
}
.global-stat {
  background: var(--color-surface);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}
.global-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.global-stat-label {
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.global-markets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-14);
}
.global-market {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-border);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  transition: border-left-color 0.3s ease;
}
.global-market:hover {
  border-left-color: var(--color-gold);
}
.global-market.immediate {
  border-left-color: var(--color-gold);
  background: var(--color-dark3);
}
.gm-tier {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.6;
  line-height: 1;
  min-width: 44px;
  padding-top: 2px;
}
.global-market.immediate .gm-tier {
  opacity: 1;
}
.gm-info {
  flex: 1;
}
.gm-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.gm-timing {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-2);
}
.immediate-badge {
  color: var(--color-gold);
  font-weight: 600;
}
.gm-info p {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}
.global-cta {
  text-align: center;
  padding: var(--space-12) var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
}
.global-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

/* ═══════════════════════════════════════════════════════
   COMPETITION / WHY ARMORIS WINS SECTION
═══════════════════════════════════════════════════════ */
.competition-section {
  background: var(--color-bg);
  padding: var(--space-24) 0;
}
.competition-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
}
.comp-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.3s ease;
}
.comp-card:hover {
  transform: translateY(-2px);
}
.comp-card-armoris {
  background: var(--color-dark3);
  border: 1px solid var(--color-gold);
}
.comp-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.comp-card-armoris .comp-brand {
  color: var(--color-gold);
}
.comp-base {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}
.comp-flaw {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.comp-flaw-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: 0.6;
  margin-right: 6px;
}
.comp-edge {
  font-size: 0.82rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: auto;
}
.comp-edge-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-right: 6px;
}
.comp-wins {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.comp-wins span {
  font-size: 0.85rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.comp-wins span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   MOBILE — NEW SECTIONS
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .culture-pillars {
    grid-template-columns: 1fr;
  }
  .culture-pillar-quote {
    padding: var(--space-6);
  }
  .global-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .global-markets {
    grid-template-columns: 1fr;
  }
  .comp-grid {
    grid-template-columns: 1fr;
  }
  .global-cta-text {
    font-size: 1rem;
  }
  .global-inner,
  .competition-inner,
  .culture-inner {
    padding: 0 var(--space-4);
  }
  .culture-section,
  .global-section,
  .competition-section {
    padding: var(--space-16) 0;
  }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS / SOCIAL PROOF
═══════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--color-dark2);
  padding: var(--space-24) 0;
  border-top: 1px solid var(--color-border);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin: var(--space-12) 0 var(--space-12);
}
.testi-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 2px solid rgba(201,168,76,0.3);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: border-top-color 0.3s ease;
}
.testi-card:hover {
  border-top-color: var(--color-gold);
}
.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.35;
  line-height: 0.6;
  margin-bottom: var(--space-1);
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.75;
  flex: 1;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.testi-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
.testi-role {
  font-size: 0.72rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testi-stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
}
.testi-stat {
  background: var(--color-surface);
  padding: var(--space-6) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-1);
}
.testi-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.testi-stat-label {
  font-size: 0.7rem;
  color: var(--color-muted);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════ */
.faq-section {
  background: var(--color-bg);
  padding: var(--space-24) 0;
  border-top: 1px solid var(--color-border);
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-10);
  margin-top: var(--space-12);
  align-items: start;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-5) 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-q:hover {
  color: var(--color-gold);
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-item.open .faq-q {
  color: var(--color-gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: var(--space-5);
}
.faq-a p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   FOOTER — FULL REBUILD
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--color-dark2);
  border-top: 1px solid rgba(201,168,76,0.3);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-8);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.footer-brand-name {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  font-weight: 600;
}
.footer-brand-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-top: 2px;
}
.footer-brand-desc {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.footer-cert {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 3px 8px;
  border-radius: 2px;
}
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
  font-weight: 600;
}
.footer-link {
  display: block;
  font-size: 0.82rem;
  color: var(--color-muted);
  text-decoration: none;
  padding: var(--space-1) 0;
  transition: color 0.2s ease;
  line-height: 1.8;
}
.footer-link:hover {
  color: var(--color-text);
}
.footer-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--color-text) !important;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
}
.footer-contact-name {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text);
  margin-top: var(--space-1);
}
.footer-contact-note {
  display: block;
  font-size: 0.7rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.footer-ext-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.footer-ext {
  font-size: 0.78rem;
  color: var(--color-gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-ext:hover { opacity: 0.7; }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-5) var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
}
.footer-legal {
  font-size: 0.72rem;
  color: var(--color-muted);
  opacity: 0.6;
  line-height: 1.6;
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
  flex-shrink: 0;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: var(--color-muted);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-bottom-links a:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   STICKY DESKTOP CTA (right edge)
═══════════════════════════════════════════════════════ */
.sticky-desktop-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 99;
  writing-mode: vertical-lr;
}
.sticky-desktop-cta a {
  display: block;
  background: var(--color-gold);
  color: var(--color-bg);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: var(--space-5) var(--space-3);
  text-decoration: none;
  transition: background 0.2s ease;
  border-radius: 0 0 4px 4px;
}
.sticky-desktop-cta a:hover {
  background: var(--color-text);
}

/* ═══════════════════════════════════════════════════════
   MOBILE — NEW SECTIONS RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testi-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-stats-bar .testi-stat:last-child {
    grid-column: 1 / -1;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-inner,
  .testimonials-inner {
    padding: 0 var(--space-4);
  }
  .testimonials-section,
  .faq-section {
    padding: var(--space-16) 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    padding: var(--space-10) var(--space-4);
  }
  .footer-col-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-5) var(--space-4);
  }
  .sticky-desktop-cta {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   NAV PHONE NUMBER
════════════════════════════════════════════ */
.nav-phone {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-phone:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* ═══════════════════════════════════════════
   PRESS BAR
════════════════════════════════════════════ */
.press-bar {
  background: var(--color-dark2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.1rem 0;
  overflow: hidden;
}
.press-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}
.press-bar-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
  padding-right: var(--space-4);
  border-right: 1px solid var(--color-border);
}
.press-pub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.55;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.press-pub:hover { opacity: 0.9; }

/* ═══════════════════════════════════════════
   FLEET SPOTLIGHT
════════════════════════════════════════════ */
.fleet-spotlight {
  background: linear-gradient(135deg, #1A1600 0%, var(--color-dark3) 100%);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  padding: var(--space-5) var(--space-8);
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.fs-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
}
.fs-text h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.2rem;
}
.fs-text p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}
.fs-action .btn-primary {
  font-size: 0.78rem;
  padding: 0.55rem 1.25rem;
}
@media (max-width: 768px) {
  .fleet-spotlight {
    padding: var(--space-4) var(--space-4);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
}

/* ═══════════════════════════════════════════
   BALLISTIC CHART
════════════════════════════════════════════ */
.ballistic-chart {
  margin: var(--space-10) 0 var(--space-6);
}
.ballistic-chart-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.ballistic-table {
  width: 100%;
  border-collapse: collapse;
}
.ballistic-table thead tr {
  background: var(--color-dark3);
  border-bottom: 1px solid var(--color-border);
}
.ballistic-table th {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0.65rem 1rem;
  text-align: left;
}
.ballistic-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.ballistic-table tbody tr:hover { background: rgba(201,168,76,0.04); }
.ballistic-table td {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text);
  padding: 0.85rem 1rem;
  vertical-align: middle;
}
.bt-level {
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}
.bt-standard { color: var(--color-muted); font-size: 0.75rem; }
.bt-avail {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  white-space: nowrap;
}
.bt-avail-stock { background: rgba(201,168,76,0.15); color: var(--color-gold); }
.bt-avail-order { background: rgba(255,255,255,0.06); color: var(--color-muted); }
.bt-avail-consult { background: rgba(255,255,255,0.03); color: var(--color-muted); border: 1px solid var(--color-border); }
@media (max-width: 640px) {
  .ballistic-table th:nth-child(2),
  .ballistic-table td:nth-child(2) { display: none; }
}

/* ═══════════════════════════════════════════
   CERTIFICATION BADGES
════════════════════════════════════════════ */
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-8) 0 0;
}
.cert-badge {
  background: var(--color-dark3);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1 1 180px;
  min-width: 0;
  transition: border-color 0.2s;
}
.cert-badge:hover { border-color: rgba(201,168,76,0.5); }
.cert-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cert-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.cert-badge-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
.cert-badge-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   DEMAND SECTION (replaces global)
════════════════════════════════════════════ */
.demand-section {
  background: var(--color-dark2);
  padding: var(--space-20) 0;
  position: relative;
}
.demand-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.demand-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
}
.demand-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  margin: var(--space-10) 0 var(--space-12);
}
.demand-stat {
  background: var(--color-dark3);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.demand-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.demand-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.4;
}
.demand-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}
.demand-card {
  background: var(--color-dark3);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.demand-card-featured {
  border-color: rgba(201,168,76,0.5);
  background: linear-gradient(160deg, #1A1600 0%, var(--color-dark3) 100%);
  position: relative;
}
.demand-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 4px 4px 0 0;
}
.demand-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}
.demand-card-body {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}
.demand-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.demand-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.demand-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.7rem;
  top: 0.1em;
}
.demand-card-close {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-muted);
  margin: 0;
}
.demand-card-close-gold { color: var(--color-gold); font-weight: 600; font-style: normal; }
.demand-city-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
}
.demand-city {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}
.demand-city-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.demand-city-want {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-muted);
  text-align: right;
}
.demand-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}
.demand-quote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--color-muted);
  line-height: 1.6;
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-5);
  text-align: left;
  margin: 0;
}
@media (max-width: 900px) {
  .demand-stats { grid-template-columns: repeat(2, 1fr); }
  .demand-three { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .demand-stats { grid-template-columns: 1fr 1fr; }
  .demand-section { padding: var(--space-12) 0; }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 0.7rem 1.1rem 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 18px; right: 16px; padding: 0.65rem; border-radius: 50%; }
  .whatsapp-label { display: none; }
}

/* ═══════════════════════════════════════════
   GTM SECTION
════════════════════════════════════════════ */
.gtm-section {
  background: var(--color-dark2);
  padding: var(--space-20) 0;
  position: relative;
}
.gtm-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.gtm-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
}
.gtm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  margin: var(--space-10) 0 var(--space-12);
}
.gtm-stat {
  background: var(--color-dark3);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.gtm-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.gtm-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.4;
}
.gtm-opportunities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-14);
}
.gtm-opp {
  background: var(--color-dark3);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: border-color 0.2s;
}
.gtm-opp:hover { border-color: rgba(201,168,76,0.4); }
.gtm-opp-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.gtm-opp-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}
.gtm-opp-body {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}
.gtm-channels-wrap {
  margin-bottom: var(--space-14);
}
.gtm-channels-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}
.gtm-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
.gtm-tier-label {
  background: var(--color-bg);
  padding: 0.45rem var(--space-5);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-border);
}
.gtm-channel {
  background: var(--color-dark3);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.15s;
}
.gtm-channel:last-child { border-bottom: none; }
.gtm-channel:hover { background: rgba(201,168,76,0.04); }
.gtm-ch-info { flex: 1; min-width: 0; }
.gtm-ch-name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.2rem;
}
.gtm-ch-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}
.gtm-ch-rev {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.gtm-buyers { margin-bottom: var(--space-12); }
.gtm-buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.gtm-buyer {
  background: var(--color-dark3);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.gtm-buyer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0;
}
.gtm-buyer-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  margin: 0 0 var(--space-2);
  line-height: 1.4;
}
.gtm-buyer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.gtm-buyer-list li {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.gtm-buyer-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.65rem;
  top: 0.15em;
}
.gtm-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.btn-secondary {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
@media (max-width: 1024px) {
  .gtm-buyer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .gtm-stats { grid-template-columns: repeat(2, 1fr); }
  .gtm-opportunities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gtm-section { padding: var(--space-12) 0; }
  .gtm-opportunities { grid-template-columns: 1fr; }
  .gtm-buyer-grid { grid-template-columns: 1fr; }
  .gtm-channel { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
  .gtm-ch-rev { font-size: 0.85rem; }
}

/* ── WHO WE SERVE SECTION ─────────────────────────────── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: var(--space-14) 0;
}
.serve-card {
  background: var(--color-dark2);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.serve-icon {
  color: var(--color-gold);
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.serve-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}
.serve-body {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

/* ── SERVICES LIST ───────────────────────────────────── */
.serve-services {
  margin: var(--space-16) 0 var(--space-12);
}
.serve-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
}
.serve-service {
  padding: var(--space-8) var(--space-8);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.serve-service:nth-child(odd) {
  border-right: 1px solid var(--color-border);
}
.serve-service:nth-last-child(-n+2) {
  border-bottom: none;
}
.serve-svc-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-gold);
  margin: 0;
}
.serve-svc-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .serve-grid { grid-template-columns: 1fr; }
  .serve-service-list { grid-template-columns: 1fr; }
  .serve-service:nth-child(odd) { border-right: none; }
  .serve-service:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .serve-service:last-child { border-bottom: none; }
}

/* ============================================
   PAGANI ZONDA R — TOP HERO SHOWCASE
   ============================================ */
.pagani-hero {
  position: relative;
  width: 100%;
  background: #000;
  padding: 0;
  margin: 0;
}
.pagani-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  width: 100%;
  min-height: 100dvh;
}
.pagani-hero-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000;
}
.pagani-hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pagani-hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.55) 78%,
    rgba(0,0,0,0.92) 100%
  );
  pointer-events: none;
}
.pagani-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(28px, 5vw, 72px) clamp(24px, 6vw, 84px);
  z-index: 2;
  max-width: 880px;
}
/* ARMORIS® wordmark inside Pagani section */
.pagani-armoris-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.pagani-armoris-logo {
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.45));
  width: clamp(36px, 4vw, 56px);
  height: clamp(36px, 4vw, 56px);
}
.pagani-armoris-wordmark {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  position: relative;
}
.pagani-armoris-reg {
  font-size: 0.38em;
  font-weight: 400;
  color: #c9a84c;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 2px;
}

.pagani-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 18px;
  font-weight: 500;
}
.pagani-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 18px;
}
.pagani-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0;
  font-weight: 300;
}
.pagani-hero-aside {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000;
}
.pagani-hero-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pagani-hero-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.pagani-hero-aside-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
@media (max-width: 900px) {
  .pagani-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pagani-hero-main {
    aspect-ratio: 16 / 10;
    min-height: 70dvh;
  }
  .pagani-hero-aside {
    aspect-ratio: 16 / 10;
  }
  .pagani-hero-caption {
    padding: 28px 24px 36px;
  }
}


/* ═══════════════════════════════════════════════════════
   ARMORIS® BRAND PRODUCTS SECTION
═══════════════════════════════════════════════════════ */
.armoris-brands {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8);
}
.armoris-brands-inner {
  max-width: var(--content-default);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-12), 5vw, var(--space-20));
}

/* Group label */
.ab-group-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* Three glass-line cards */
.ab-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.ab-card {
  background: var(--color-surface-3, #1e1c18);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-top-color var(--transition), transform var(--transition);
}
.ab-card:hover {
  border-top-color: var(--color-accent);
  transform: translateY(-3px);
}
.ab-card-featured {
  border-top-color: var(--color-accent);
  background: #1a1810;
}
.ab-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.ab-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-border);
  background: var(--color-accent-dim);
  border-radius: var(--radius-full);
  padding: 2px 8px;
}
.ab-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1;
}
.ab-tagline {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: -var(--space-2);
}
.ab-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.ab-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-4);
  margin-top: auto;
}
.ab-specs li {
  display: grid;
  grid-template-columns: 90px 1fr;
  font-size: var(--text-xs);
  gap: var(--space-2);
  align-items: start;
}
.ab-spec-key {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-size: 10px;
  padding-top: 2px;
}
.ab-spec-val {
  color: var(--color-text-muted);
}
.ab-deployed {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
  margin-top: var(--space-2);
}

/* SER Company certification block */
.ab-ser-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  background: #0f0e0c;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
}
.ab-ser-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.ab-ser-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.ab-ser-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.ab-ser-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.ab-cert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.ab-cert:hover { border-color: var(--color-accent-border); }
.ab-cert-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-dim);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-md);
  color: var(--color-accent);
}
.ab-cert-name {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.ab-cert-sub {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .ab-cards { grid-template-columns: 1fr; }
  .ab-ser-block { grid-template-columns: 1fr; gap: var(--space-8); }
}
@media (max-width: 600px) {
  .ab-specs li { grid-template-columns: 80px 1fr; }
}

/* ─── THE ATELIER — COMMISSION ANY CHASSIS ─── */
.atelier {
  padding: var(--space-20) var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}
.atelier-inner {
  background: linear-gradient(135deg, #110d08, #1a130b);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-12);
  display: flex;
  gap: var(--space-12);
  align-items: center;
  flex-wrap: wrap;
}
.atelier-text { flex: 1; min-width: 300px; }
.atelier-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.atelier-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: #f5ecd6;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}
.atelier-body {
  color: rgba(232,230,225,0.78);
  line-height: 1.7;
  font-size: var(--text-base);
  max-width: 640px;
}
.atelier-brands {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.atelier-brands span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #c9b990;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
}
.atelier-cta {
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.atelier-cta-note {
  color: rgba(232,230,225,0.6);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .atelier { padding: var(--space-12) var(--space-4); }
  .atelier-inner { padding: var(--space-8); gap: var(--space-8); }
  .atelier-cta { width: 100%; }
}

/* ─── POWERED BY THEIS INDUSTRIES — TOP BAR ─── */
:root { --theis-bar-h: 56px; }
.theis-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  height: var(--theis-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(90deg, #0c0a07 0%, #15110a 50%, #0c0a07 100%);
  border-bottom: 1px solid rgba(201,168,76,0.28);
  text-decoration: none;
  transition: background 0.25s ease;
}
.theis-bar:hover { background: linear-gradient(90deg, #100d08 0%, #1d160c 50%, #100d08 100%); }
.theis-bar-pre {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,230,225,0.6);
}
.theis-mark {
  width: 13px; height: 13px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #e7cf7e, #c9a84c);
  box-shadow: 0 0 14px rgba(201,168,76,0.55);
  flex-shrink: 0;
}
.theis-bar-logo {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.25));
}
/* push the fixed nav and content below the Theis bar */
.nav { top: var(--theis-bar-h) !important; }
@media (max-width: 768px) {
  :root { --theis-bar-h: 48px; }
  .theis-bar { gap: 0.55rem; }
  .theis-bar-pre { font-size: 0.62rem; letter-spacing: 0.12em; }
  .theis-bar-logo { height: 26px; }
}

/* ─── THEIS INTRO SPLASH — first full-screen view ─── */
.theis-splash {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 120% 90% at 50% 42%, #16130d 0%, #0a0807 55%, #050403 100%);
  overflow: hidden;
}
.theis-splash-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 1280px;
  padding: clamp(2rem, 6vh, 5rem) clamp(1.5rem, 6vw, 6rem);
  animation: theisSplashIn 1.1s ease both;
}
@keyframes theisSplashIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.theis-splash-pre {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.8rem, 1.6vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(232,230,225,0.72);
  margin-bottom: clamp(1.2rem, 3vw, 2.2rem);
}
.theis-splash-logo {
  width: min(620px, 80vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 36px rgba(201,168,76,0.32));
}
.theis-splash-bullet {
  width: min(960px, 94vw);
  height: auto;
  display: block;
  margin-top: clamp(0.5rem, 2.5vh, 1.8rem);
  border-radius: 6px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 82%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0%, #000 82%, transparent 100%);
}
.theis-splash-link {
  margin-top: clamp(1.4rem, 3.5vw, 2.6rem);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  border: 1px solid var(--color-accent-border);
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.theis-splash-link:hover {
  background: var(--color-accent);
  color: #0a0908;
}
.theis-splash-scroll {
  position: absolute;
  bottom: var(--space-6);
  left: clamp(1.5rem, 6vw, 6rem);
  opacity: 0.75;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(232,230,225,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: theisBob 2s ease-in-out infinite;
}
@keyframes theisBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
/* ── Featured vehicle card — top right of splash ── */
.theis-splash-feature {
  position: absolute;
  top: clamp(2rem, 7vh, 5.5rem);
  right: clamp(1.5rem, 5vw, 5rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: clamp(220px, 24vw, 320px);
  padding: clamp(0.9rem, 1.4vw, 1.25rem);
  text-decoration: none;
  background: linear-gradient(160deg, rgba(28,24,16,0.72) 0%, rgba(10,9,8,0.78) 100%);
  border: 1px solid rgba(201,168,76,0.38);
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(231,207,126,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: theisSplashIn 1.3s ease 0.2s both;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.theis-splash-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.7);
  box-shadow: 0 32px 70px -18px rgba(0,0,0,0.78), inset 0 1px 0 rgba(231,207,126,0.2);
}
.tsf-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.7rem;
}
.tsf-imgwrap {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid rgba(201,168,76,0.3);
}
.tsf-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transition: transform 0.5s ease;
}
.theis-splash-feature:hover .tsf-imgwrap img { transform: scale(1.05); }
.tsf-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 600;
  color: #f4f1ea;
  margin-top: 0.8rem;
  line-height: 1.1;
}
.tsf-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,230,225,0.62);
  margin-top: 0.35rem;
}
.tsf-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 0.85rem;
  transition: letter-spacing 0.3s ease;
}
.theis-splash-feature:hover .tsf-cta { letter-spacing: 0.2em; }
@media (max-width: 900px) {
  .theis-splash-feature { display: none; }
}

/* While on the splash, hide the fixed top bar + nav; reveal after scroll via JS */
body.pre-scroll .theis-bar,
body.pre-scroll .nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.theis-bar, .nav { transition: opacity 0.4s ease; }
@media (max-width: 768px) {
  .theis-splash-pre { letter-spacing: 0.3em; }
  .theis-splash-logo { width: 84vw; }
  .theis-splash-bullet { width: 96vw; }
}

/* DEFENSE after the big ARMORIS wordmark */
.pagani-armoris-defense {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--color-accent);
}
