/* ============================================
   LOCAL FONTS
   ============================================ */
@font-face {
  font-family: 'Tienne';
  src: url('../font/Tienne-Bold.woff2') format('woff2'),
       url('../font/Tienne-Bold.woff') format('woff'),
       url('../font/Tienne-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('../font/Oswald-Light.woff2') format('woff2'),
       url('../font/Oswald-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('../font/Oswald-Medium.woff2') format('woff2'),
       url('../font/Oswald-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('../font/Oswald-Bold.woff2') format('woff2'),
       url('../font/Oswald-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('../font/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --navy: #111C33;
  --navy-mid: #1B2A4A;
  --navy-light: #263B5E;
  --red: #B52A37;
  --red-hover: #9B1E2A;
  --bavarian-blue: #1A6FB5;
  --cream: #F5F1EB;
  --white: #FFFFFF;
  --gray-100: #F7F8FA;
  --gray-200: #E8EAEE;
  --gray-300: #CED2D9;
  --gray-600: #6B7280;
  --gray-800: #2D3748;
  --gold: #C9A84C;
  --font-heading: 'Tienne', Georgia, serif;
  --font-body: 'Oswald', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --section-pad: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  font-weight: 300;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: normal;
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.625rem); }

.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 42, 55, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo {
  margin-right: auto;
}
.header-logo img {
  height: 3.4125rem;
  width: auto;
}

.nav { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
  margin-left: 16px;
  margin-right: 16px;
}

.nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }

.nav .btn { font-size: 1.125rem; padding: 10px 24px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

.lang-switcher a {
  display: block;
  line-height: 0;
  opacity: 0.45;
  transition: opacity 0.3s;
}

.lang-switcher a:hover { opacity: 0.8; }
.lang-switcher a.active { opacity: 1; }

.lang-switcher a::after { display: none; }

.lang-switcher img {
  width: 24px;
  height: 16px;
  display: block;
  border-radius: 2px;
}

.lang-switcher-mobile { display: none; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26, 111, 181, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(181, 42, 55, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, #0D1526 100%);
}

/* Subtle grid lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Animated accent line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: scanline 8s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes scanline {
  0%, 100% { transform: translateX(-100px); }
  50% { transform: translateX(calc(100vw - 200px)); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 60px 24px;
}

.hero-logo {
  max-width: 520px;
  margin: 0 auto 48px;
  animation: fadeInUp 1s ease-out;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.3));
  border-radius: 50%;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.125rem, 1.5vw, 1.3rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.3);
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SERVICES / FULL-SERVICE LOGISTICS
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .label {
  color: var(--bavarian-blue);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 { color: var(--navy); }

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

.service-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(17, 28, 51, 0.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 14px;
}

.service-card p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(26,111,181,0.08), transparent 70%);
}

.process .section-header .label { color: var(--gold); }
.process .section-header h2 { color: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  padding: 36px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 24px;
  transition: background 0.3s;
  position: relative;
}

.process-step:hover {
  background: rgba(255,255,255,0.03);
}

.process-step:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,0.06);
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--white);
}

.step-content p {
  color: rgba(255,255,255,0.5);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-placeholder {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -24px;
  left: 32px;
  background: var(--red);
  color: var(--white);
  padding: 20px 28px;
  text-align: center;
  z-index: 2;
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  display: block;
}

.experience-badge .text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.about-content .label {
  color: var(--bavarian-blue);
  margin-bottom: 12px;
  display: block;
}

.about-content h2 {
  color: var(--navy);
  margin-bottom: 24px;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-300);
}

.about-stat .stat-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  display: block;
}

.about-stat a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-stat a:hover .stat-label {
  color: var(--gold);
}

.about-stat .stat-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  display: block;
  margin-top: 2px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
}

.why-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ============================================
   VEHICLES IN TRANSIT
   ============================================ */
.vehicles {
  padding: var(--section-pad) 0;
  background: var(--gray-100);
}

.vehicles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.vehicles-header .label {
  color: var(--bavarian-blue);
  margin-bottom: 12px;
  display: block;
}

.vehicles-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.vehicles-link:hover { gap: 14px; }
.vehicles-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vehicle-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.4s ease;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(17,28,51,0.1);
}

.vehicle-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  color: var(--white);
}

.badge-available { background: #2D8A56; }
.badge-transit   { background: var(--bavarian-blue); }
.badge-secured   { background: var(--gold); color: var(--navy); }
.badge-delivered { background: var(--red); }

.vehicle-info { padding: 24px; }

.vehicle-info h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.vehicle-info p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.audience-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.audience-item:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}

.audience-item svg {
  width: 36px;
  height: 36px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 16px;
}

.audience-item h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.audience-item p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

/* ============================================
   CTA / CONTACT
   ============================================ */
.cta {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(181,42,55,0.06), transparent 60%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  font-size: 1.125rem;
}

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

.contact-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-label {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
}

.contact-value {
  color: var(--white);
  font-weight: 500;
  font-size: 1.125rem;
}
.contact-value a { color: var(--white); transition: color 0.3s; }
.contact-value a:hover { color: var(--red); }

.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  align-self: end;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

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

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

/* Honeypot — off-screen, not display:none */
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Feedback-Box after submit */
.form-feedback {
  display: none;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 4px;
  font-size: 0.9375rem;
}
.form-feedback.visible { display: block; }
.form-feedback.success {
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  color: #4caf50;
}
.form-feedback.error {
  background: rgba(244,67,54,0.1);
  border: 1px solid rgba(244,67,54,0.3);
  color: #f44336;
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(26,111,181,0.08), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(181,42,55,0.05), transparent 50%);
}
.page-hero .label { color: var(--gold); margin-bottom: 12px; display: block; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); position: relative; }
.page-hero p { color: rgba(255,255,255,0.5); margin-top: 12px; font-size: 1.125rem; max-width: 500px; position: relative; }
.breadcrumb { position: relative; margin-top: 24px; display: flex; gap: 8px; font-size: 1.125rem; color: rgba(255,255,255,0.3); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--white); }

/* ============================================
   FILTER BAR (Inventory)
   ============================================ */
.filter-bar {
  padding: 24px 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.filter-inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s;
  color: var(--gray-600);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* INVENTORY SECTION */
.inventory-section { padding: 64px 0 100px; background: var(--gray-100); }

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
  padding: 80px 0 120px;
  background: var(--white);
}

.legal-inner {
  max-width: 780px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 56px;
  padding-top: 24px;
}

.legal-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.legal-section h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 24px 0 10px;
}

.legal-section p {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 12px;
  line-height: 1.8;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-section h2,
.legal-section h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-section a {
  color: var(--bavarian-blue);
  transition: color 0.3s;
}
.legal-section a:hover { color: var(--red); }

.legal-section strong {
  font-weight: 500;
  color: var(--gray-800);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0A1120;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img {
  height: 20px;
  width: auto;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-social a {
  display: inline-flex;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--white); }
.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-copy {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 64em) { /* 1024px */
  .process-steps { grid-template-columns: 1fr; }
  .process-step:nth-child(odd) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 56.25em) { /* 900px – burger menu */
  :root { --section-pad: 64px; }

  .nav { display: none; }
  .hamburger { display: flex; }

  .lang-switcher {
    display: none;
  }

  .lang-switcher-mobile {
    display: flex;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .lang-switcher-mobile a {
    display: block;
    line-height: 0;
    opacity: 0.45;
    transition: opacity 0.3s;
  }
  .lang-switcher-mobile a:hover { opacity: 0.8; }
  .lang-switcher-mobile a.active { opacity: 1; }
  .lang-switcher-mobile a::after { display: none; }

  .lang-switcher-mobile img {
    width: 24px;
    height: 16px;
    display: block;
    border-radius: 2px;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 32px 24px;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .hero-logo { max-width: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .vehicles-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .filter-inner { justify-content: center; }
}

@media (max-width: 30em) { /* 480px */
  .audience-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  /* Prevent label text with large letter-spacing from overflowing at 320px */
  .label { letter-spacing: 1.5px; }

  /* Reposition about badge so it stays within the container at 320px */
  .experience-badge {
    left: 0;
    padding: 14px 20px;
  }
  .experience-badge .number { font-size: 2rem; }
  .experience-badge .text { font-size: 1rem; letter-spacing: 1px; }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox-modal {
  position: relative;
  z-index: 1;
  width: min(62.5rem, 90vw);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-modal {
  transform: scale(1);
}

.lightbox-img-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 90vh;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2.5rem 1.5rem 1.5rem;
  color: var(--white);
}

.lightbox-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.lightbox-caption p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  opacity: 0.85;
  font-weight: 300;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-size: 1.25rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease;
}

.lightbox-close svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.lightbox-close:hover {
  background: var(--red);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.lightbox-prev {
  left: 0.75rem;
}

.lightbox-next {
  right: 0.75rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--navy-light);
}

.lightbox-prev.hidden,
.lightbox-next.hidden {
  display: none;
}

/* ── Vehicle card cursor ── */
.vehicle-card {
  cursor: pointer;
}

@media (max-width: 48em) {
  .lightbox { display: none !important; }
  .vehicle-card { cursor: default; }
}

/* ============================================
   REDUCED MOTION (Accessibility)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  /* Ensure reveal elements are immediately visible — JS stagger won't apply */
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  background: var(--navy);
  padding: 5rem 0;
}

.faq .section-header {
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--navy-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--navy-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
