/* Taxi Jer, Premium Taxi */

:root {
  --yellow: #F5C400;
  --yellow-hover: #DFB300;
  --yellow-muted: rgba(245, 196, 0, 0.12);
  --black: #0A0A0A;
  --black-elevated: #141414;
  --black-card: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --gray-100: #EFEFED;
  --gray-200: #E2E2DE;
  --gray-400: #9B9B96;
  --gray-600: #5C5C58;
  --gray-800: #2A2A28;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wrap: 1200px;
  --topbar-h: 40px;
  --header-h: 96px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --checker: repeating-linear-gradient(-45deg, var(--yellow) 0 8px, var(--black) 8px 16px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + var(--header-h) + 20px);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── TYPE ─── */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow-hover);
  margin-bottom: 16px;
}

.eyebrow-light { color: var(--yellow); }

.section-intro {
  margin-top: 16px;
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.75;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-intro { margin-left: auto; margin-right: auto; }

.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2 { color: var(--white); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background .2s var(--ease), color .2s, border-color .2s, transform .2s var(--ease), box-shadow .2s;
  white-space: nowrap;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 2px 12px rgba(245, 196, 0, .3);
}
.btn-yellow:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 196, 0, .35);
}

.btn-dark { background: var(--black); color: var(--yellow); }
.btn-dark:hover { background: var(--black-elevated); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}
.btn-outline-dark:hover { border-color: var(--black); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-ghost-light:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

.text-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, gap .2s;
}
.text-link::after { content: '→'; transition: transform .2s var(--ease); }
.text-link:hover { color: var(--yellow-hover); }
.text-link:hover::after { transform: translateX(3px); }

/* ─── LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: opacity .5s var(--ease), visibility .5s;
}

.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; color: var(--white); }

.loader-mark {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--yellow);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--black);
}

.loader-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.loader-name small { font-weight: 500; opacity: .6; font-size: .85em; }

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  transition: width .2s var(--ease);
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--yellow);
  z-index: 300;
}

/* ─── TOPBAR ─── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--topbar-h);
  background: var(--black);
  color: var(--white);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
}

.pulse {
  width: 6px; height: 6px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(52, 211, 153, .6);
}

.topbar-link { font-weight: 600; color: var(--yellow); }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}

.header.scrolled {
  background: rgba(18, 18, 18, .94);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.header .logo {
  flex-shrink: 0;
  line-height: 0;
}

.header .logo-img {
  height: 86px;
  width: auto;
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-img--footer {
  height: 72px;
}

.loader-logo img {
  width: min(220px, 72vw);
  height: auto;
  margin-bottom: 28px;
}

.loader { background: var(--black); }

.header .menu-toggle span { transition: background .3s; }

.logo {
  display: flex;
  align-items: center;
}

.logo-mark {
  width: 40px; height: 40px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--black);
}

.logo-text {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.logo-text small {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-left: 3px;
}

.logo-light .logo-text { color: var(--white); }
.logo-light .logo-text small { color: var(--gray-400); }

.nav { display: flex; gap: 2px; }

.nav a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}

.nav a:hover { color: var(--black); background: var(--off-white); }

.header .nav a {
  color: rgba(255,255,255,.82);
}

.header .nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.14);
}

.header.scrolled .nav a {
  color: rgba(255,255,255,.82);
}

.header.scrolled .nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.14);
}

.header .menu-toggle span,
.header.scrolled .menu-toggle span {
  background: var(--white);
}

.header-cta { padding: 10px 20px; font-size: 0.875rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}

.menu-toggle.open span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.open span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-call {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 150;
  width: 56px; height: 56px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.stripe { height: 4px; background: var(--checker); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--topbar-h) + var(--header-h) + 48px) 0 80px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.2) 40%, rgba(10,10,10,.85) 100%),
    linear-gradient(90deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.35) 55%, rgba(10,10,10,.15) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

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

.hero-content h1 { color: var(--white); margin-bottom: 24px; }

.hero-content h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-metrics {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-metrics div { min-width: 100px; }

.hero-metrics dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}

.hero-metrics dd {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-metrics dd span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-left: 2px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
}

/* ─── TRUST PANEL ─── */
.trust-panel {
  background: var(--black);
  color: var(--white);
  padding-bottom: 88px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.credential:last-child { border-right: none; }

.credential svg { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.credential strong { display: block; font-size: 0.9375rem; font-weight: 600; margin-bottom: 4px; }
.credential span { font-size: 0.8125rem; color: rgba(255,255,255,.5); line-height: 1.5; }

.wagenpark-block {
  padding-top: 72px;
}

.wagenpark-header {
  max-width: 560px;
  margin-bottom: 48px;
}

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

.wagenpark-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
}

.vehicle-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.vehicle-type {
  padding: 28px 24px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  transition: border-color .25s, transform .25s var(--ease);
}

.vehicle-type:hover {
  border-color: rgba(245, 196, 0, .35);
  transform: translateY(-2px);
}

.vehicle-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--yellow-muted);
  border-radius: var(--radius);
  color: var(--yellow);
  margin-bottom: 20px;
}

.vehicle-type h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.vehicle-type p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
}

.wagenpark-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.wagenpark-stats > div {
  text-align: center;
  padding: 8px 16px;
}

.wagenpark-stats strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.wagenpark-stats span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* ─── PROCESS ─── */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}

.process li {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: box-shadow .3s var(--ease);
}

.process li:hover { box-shadow: var(--shadow); }

.process-num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.process h3 { margin-bottom: 12px; }
.process p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; }
.process a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color .25s, box-shadow .25s var(--ease), transform .25s var(--ease);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--yellow-muted);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--black);
  margin-bottom: 24px;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }

/* ─── SHOWCASE BAND ─── */
.showcase-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.showcase-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.6) 100%);
}

.showcase-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: var(--white);
}

.showcase-content h2 { color: var(--white); margin-bottom: 16px; }
.showcase-content p { color: rgba(255,255,255,.7); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 28px; }

/* ─── CORPORATE ─── */
.corporate-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.corporate-lead {
  margin: 20px 0 32px;
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 500px;
}

.feature-list { list-style: none; margin-bottom: 36px; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.feature-list svg { color: var(--yellow); flex-shrink: 0; }

.corporate-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.corporate-stats { display: flex; flex-direction: column; gap: 16px; }

.corp-stat {
  padding: 32px 36px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}

.corp-stat strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.corp-stat span { font-size: 0.875rem; color: rgba(255,255,255,.5); }

/* ─── PRICING ─── */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-box {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  position: relative;
}

.price-featured {
  border: 2px solid var(--yellow);
  background: var(--off-white);
  box-shadow: var(--shadow);
}

.price-label {
  position: absolute;
  top: -12px; left: 28px;
  padding: 5px 14px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}

.price-box h3 { margin-bottom: 20px; font-size: 1.25rem; }

.price {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.price strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.04em;
  margin-top: 6px;
}

.price-box ul { list-style: none; }

.price-box li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.price-box li:last-child { border-bottom: none; }

.price-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 32px;
}

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

.about-copy p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 20px;
  font-size: 1.0625rem;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.about-facts > div {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.about-facts strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.about-facts span { font-size: 0.8125rem; color: var(--gray-600); font-weight: 500; }

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-visual-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-visual-badge svg { color: var(--yellow-hover); flex-shrink: 0; }
.about-visual-badge strong { display: block; font-size: 0.9375rem; }
.about-visual-badge span { font-size: 0.8125rem; color: var(--gray-600); }

/* ─── SAFETY ─── */
.safety-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.safety-item {
  padding: 32px 28px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.safety-item h3 { margin-bottom: 12px; }
.safety-item p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; }

/* ─── AREAS ─── */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background .2s, border-color .2s, color .2s;
}

.area-tag:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ─── REVIEWS ─── */
.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.quote-featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.quote p {
  font-size: 1.0625rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
  color: var(--gray-800);
}

.quote-featured p { color: rgba(255,255,255,.88); }

.quote footer strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.quote footer span { font-size: 0.8125rem; color: var(--gray-600); }
.quote-featured footer span { color: rgba(255,255,255,.45); }

/* ─── FAQ ─── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq details {
  border-bottom: 1px solid var(--gray-200);
}

.faq summary {
  padding: 22px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray-400);
  flex-shrink: 0;
}

.faq details[open] summary::after { content: '−'; }

.faq p {
  padding-bottom: 22px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.faq a { font-weight: 600; text-decoration: underline; }

/* ─── CTA ─── */
.cta {
  padding: 88px 0;
  background: var(--yellow);
}

.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta h2 { margin-bottom: 12px; }
.cta p { font-size: 1.125rem; color: var(--gray-800); margin-bottom: 32px; line-height: 1.7; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.phone-display {
  display: block;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  margin: 20px 0 10px;
  transition: color .2s;
}

.phone-display:hover { color: var(--yellow-hover); }

.contact-sub { font-size: 1rem; color: var(--gray-600); margin-bottom: 36px; }

.contact-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
}

.contact-lines > div > span:first-child {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  min-width: 80px;
}

.contact-lines a { font-weight: 600; }
.contact-lines a:hover { text-decoration: underline; }

.contact-hours h3 {
  font-size: 0.875rem;
  margin-bottom: 14px;
  margin-top: 32px;
}

.contact-hours h3:first-child { margin-top: 0; }

.contact-hours table { width: 100%; font-size: 0.9375rem; border-collapse: collapse; }

.contact-hours td {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-hours td:last-child { text-align: right; font-weight: 600; }

.pay-methods { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.75; }

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  color: var(--white);
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  padding: 6px 0;
  transition: color .2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.4); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8125rem; color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: var(--yellow); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-metrics { gap: 28px; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .credential:nth-child(2) { border-right: none; }
  .credential:nth-child(1),
  .credential:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .vehicle-types { grid-template-columns: repeat(2, 1fr); }
  .wagenpark-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-grid, .about-grid, .corporate-grid, .area-layout,
  .contact-grid, .faq-layout { grid-template-columns: 1fr; }
  .process, .services-grid, .pricing-row, .safety-row, .reviews-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root {
    --topbar-h: 34px;
    --header-h: 74px;
  }

  /* Mobile: menu/hamburger volledig uit (verwijdert de buggy overlay) */
  .menu-toggle { display: none !important; }
  .nav { display: none !important; }

  .wrap { padding: 0 20px; }
  .section { padding: 72px 0; }
  .hero { padding-bottom: 56px; align-items: flex-end; }
  .hero-inner { padding: 0 20px; }
  .hero-metrics { gap: 20px; }
  .hero-metrics dd { font-size: 1.5rem; }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-actions {
    gap: 10px;
    margin-bottom: 36px;
  }
  .hero-content h1 {
    margin-bottom: 16px;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .topbar {
    font-size: 0.75rem;
  }
  .topbar-status {
    max-width: 62%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header .logo-img {
    height: 58px;
  }
  .header-inner {
    gap: 10px;
  }
  .menu-toggle {
    margin-left: auto;
    position: relative;
    width: 34px;
    height: 28px;
    padding: 0;
    gap: 0;
  }

  /* Hamburger -> X (mobiel) */
  .menu-toggle span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: top .25s var(--ease), transform .25s var(--ease);
  }
  .menu-toggle span:first-child { top: 9px; }
  .menu-toggle span:last-child { top: 18px; }
  .menu-toggle.open span:first-child {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .menu-toggle.open span:last-child {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: calc(var(--topbar-h) + var(--header-h));
    z-index: 1000;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    pointer-events: none;
    visibility: hidden;
    width: 100%;
    transform: translate3d(100%, 0, 0);
    transition: transform .3s var(--ease);
  }
  .nav.open {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    visibility: visible;
    z-index: 1001;
  }
  .nav a {
    color: rgba(255,255,255,.95) !important;
    font-size: 1.0625rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
    text-shadow: 0 1px 0 rgba(0,0,0,.25);
  }
  /* Mobile: force text visibility even when header becomes solid on scroll */
  .header.scrolled .nav a,
  #nav.open a {
    color: rgba(255,255,255,.98) !important;
    opacity: 1 !important;
    text-decoration: none !important;
  }
  .header.scrolled .nav a:hover,
  #nav.open a:hover {
    background: transparent !important;
    color: rgba(255,255,255,.98) !important;
  }
  .header.scrolled .nav a {
    color: rgba(255,255,255,.95) !important;
  }
  .nav a:hover { color: var(--white); background: transparent; }

  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-call { display: flex; }

  .credentials-grid, .process, .services-grid,
  .pricing-row, .safety-row, .reviews-row,
  .about-facts, .footer-grid, .vehicle-types,
  .wagenpark-stats { grid-template-columns: 1fr; }
  .credential { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .credential:last-child { border-bottom: none; }
  .wagenpark-block { padding-top: 48px; }
  .corporate-actions { flex-direction: column; }
  .corporate-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .loader { display: none; }
  body.is-loading { overflow: auto; }
}
