/* ============================================================
   Prestige Car Delivery — roadarc.com
   Dark premium design system (Raycast/Stripe inspired)
   ============================================================ */

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #06070a;
  --bg-elev: #0b0d12;
  --card: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f6f8;
  --text-muted: #9ba1ad;
  --text-faint: #7d8390; /* WCAG AA (4.5:1) against --bg at normal text sizes */
  --accent: #e3c081;
  --accent-strong: #f0d49a;
  --accent-deep: #b9905a;
  --accent-grad: linear-gradient(135deg, #f0d49a 0%, #e3c081 45%, #c99f63 100%);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1120px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(227, 192, 129, 0.28); }

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

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

/* ---------- Layout ---------- */

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

.section { padding: 104px 0; position: relative; }
.section.tight { padding: 72px 0; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.section-head.center .eyebrow::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

h1, h2, h3 { font-weight: 640; letter-spacing: -0.03em; line-height: 1.1; overflow-wrap: break-word; }

h1 { font-size: clamp(2.3rem, 5.5vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.65;
}

.grad-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-grad);
  color: #14100a;
  box-shadow: 0 0 0 1px rgba(240, 212, 154, 0.25), 0 8px 32px rgba(227, 192, 129, 0.18);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(240, 212, 154, 0.4), 0 12px 40px rgba(227, 192, 129, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
}

.btn-small { padding: 9px 18px; font-size: 14px; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

.arrow { transition: transform 0.2s ease; }
.btn:hover .arrow, .card-link:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 10, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav > a, .dropdown-toggle {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 13px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav > a:hover, .dropdown-toggle:hover, .nav > a.active { color: var(--text); }
.nav > a.active { background: rgba(255, 255, 255, 0.05); }

.nav .btn { margin-left: 10px; color: #14100a; }
.nav a.btn-primary { background: var(--accent-grad); border: 1px solid transparent; }
.nav a.btn-primary:hover { background: var(--accent-grad); }

.lang-switch {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 10px;
  margin-left: 6px;
  transition: all 0.15s ease;
}
.lang-switch:hover { color: var(--text); border-color: var(--border-strong); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle .chev { transition: transform 0.2s ease; opacity: 0.5; }
.dropdown.open .chev, .dropdown:hover .chev { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: rgba(14, 16, 22, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 14.5px;
  color: var(--text-muted);
  transition: all 0.12s ease;
}
.dropdown-menu a:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.dropdown-menu a span { display: block; font-size: 12.5px; color: var(--text-faint); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--text);
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 130px 0 110px;
  overflow: hidden;
}

/* Photo hero: full-bleed photo with a dark scrim so text stays AA-contrast */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6,7,10,0.94) 0%, rgba(6,7,10,0.82) 38%, rgba(6,7,10,0.5) 62%, rgba(6,7,10,0.28) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(6,7,10,0.2) 16%, transparent 40%);
}
.hero-photo .glow { z-index: 0; opacity: 0.6; }

.hero-inner { position: relative; z-index: 2; max-width: 780px; }

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(227, 192, 129, 0.8);
}

.hero h1 { margin-bottom: 0; }
.hero .lead { max-width: 620px; }

/* Glows */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 640px;
  height: 640px;
  top: -280px;
  right: -140px;
  background: radial-gradient(circle, rgba(227, 192, 129, 0.13) 0%, transparent 65%);
}
.glow-2 {
  width: 520px;
  height: 520px;
  bottom: -300px;
  left: -180px;
  background: radial-gradient(circle, rgba(96, 118, 178, 0.12) 0%, transparent 65%);
}

/* Road arc visual */
.hero-art {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 620px;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

@keyframes dashmove {
  to { stroke-dashoffset: -120; }
}
.road-dash { animation: dashmove 6s linear infinite; }

/* ---------- Trustbar ---------- */

.trustbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { flex-shrink: 0; color: var(--accent); }
.trust-item strong { display: block; font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
.trust-item span { font-size: 13px; color: var(--text-faint); }

/* ---------- Cards ---------- */

.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: all 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 50% -20%, rgba(227, 192, 129, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover {
  background: var(--card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 192, 129, 0.09);
  border: 1px solid rgba(227, 192, 129, 0.22);
  color: var(--accent);
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* Feature list inside cards / pages */
.checklist { list-style: none; margin-top: 8px; }
.checklist li {
  position: relative;
  padding: 7px 0 7px 30px;
  color: var(--text-muted);
  font-size: 15px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(227, 192, 129, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23e3c081' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
  border: 1px solid rgba(227, 192, 129, 0.3);
}
.checklist li strong { color: var(--text); font-weight: 600; }

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.steps.vertical { grid-template-columns: 1fr; max-width: 720px; }

.step {
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  transition: all 0.25s ease;
}
.step:hover { border-color: var(--border-strong); background: var(--card-hover); }
.step::before {
  content: "0" counter(step);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); }

.steps.vertical .step { display: grid; grid-template-columns: 56px 1fr; gap: 4px 18px; }
.steps.vertical .step::before {
  grid-row: span 2;
  font-size: 20px;
  margin: 0;
  align-self: start;
  padding-top: 2px;
}

/* ---------- Split section ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 40px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.split-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at 70% 20%, rgba(227, 192, 129, 0.08), transparent 60%);
  pointer-events: none;
}

/* Photo variant: a real photo fills the frame instead of an illustration */
.split-visual-photo { padding: 0; min-height: 380px; }
.split-visual-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-visual-photo::after {
  background: linear-gradient(180deg, transparent 50%, rgba(6,7,10,0.55) 100%);
  z-index: 1;
}

/* Photo gallery strip (used on service pages to showcase real vehicles) */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.photo-strip figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  margin: 0;
}
.photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.photo-strip figure:hover img { transform: scale(1.04); }
.photo-strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(0deg, rgba(6,7,10,0.88) 0%, transparent 100%);
}

/* CTA band with a photo background instead of the flat gradient */
.cta-band-photo {
  position: relative;
  border-color: rgba(227, 192, 129, 0.3);
  background: none;
  overflow: hidden;
}
.cta-band-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-band-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(700px circle at 50% 0%, rgba(227, 192, 129, 0.16), transparent 65%),
    linear-gradient(0deg, rgba(6,7,10,0.94) 0%, rgba(6,7,10,0.8) 55%, rgba(6,7,10,0.6) 100%);
}
.cta-band-photo > *:not(img) { position: relative; z-index: 2; }

/* ---------- Stats ---------- */

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 30px 28px;
}
.stat b {
  display: block;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat span { font-size: 14.5px; color: var(--text-muted); }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  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: 20px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--text-muted); font-size: 15px; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  border: 1px solid rgba(227, 192, 129, 0.25);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  background:
    radial-gradient(600px circle at 50% 0%, rgba(227, 192, 129, 0.1), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
  overflow: hidden;
}
.cta-band h2 { max-width: 640px; margin: 0 auto; }
.cta-band .lead { max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Page hero (subpages) ---------- */

.page-hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero.hero-photo { padding: 108px 0 84px; }
.page-hero .hero-inner { max-width: 760px; }
.breadcrumb {
  font-size: 13.5px;
  color: var(--text-faint);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a:hover { color: var(--text-muted); }

/* ---------- Forms ---------- */

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.form-field label .opt { color: var(--text-faint); font-weight: 400; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: all 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ba1ad' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: rgba(227, 192, 129, 0.55);
  box-shadow: 0 0 0 3px rgba(227, 192, 129, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-consent input {
  -webkit-appearance: none;
  appearance: none;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.form-consent input:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-consent input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #14100a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-consent input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.form-consent a { color: var(--accent); }

.form-note { font-size: 13px; color: var(--text-faint); margin-top: 16px; }

/* Honeypot: present in the DOM (unlike display:none) but invisible and
   unreachable, to catch bots without tripping their display:none checks. */
.form-field-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  margin-bottom: 20px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
}
.form-feedback-ok {
  background: rgba(227, 192, 129, 0.1);
  border: 1px solid rgba(227, 192, 129, 0.35);
  color: var(--accent-strong);
}
.form-feedback-error {
  background: rgba(220, 90, 90, 0.1);
  border: 1px solid rgba(220, 90, 90, 0.4);
  color: #e39a9a;
}

/* ---------- Contact aside ---------- */

.contact-aside .card { margin-bottom: 16px; }
.contact-aside .card p a { color: var(--accent); font-weight: 600; }

/* ---------- Prose (legal pages) ---------- */

.prose { max-width: 720px; }
.prose h2 { font-size: 1.35rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.05rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--text-muted); font-size: 15.5px; margin-bottom: 12px; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--accent); }
.prose strong { color: var(--text); }
.prose address { font-style: normal; color: var(--text-muted); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 72px 0 40px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { color: var(--text-muted); font-size: 14.5px; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-col address { font-style: normal; font-size: 14.5px; color: var(--text-muted); line-height: 1.8; }
.footer-col address a { display: inline; padding: 0; color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-faint);
}
.footer-bottom .legal-links { display: flex; align-items: center; gap: 20px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-faint);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.social-link:hover { color: var(--accent); border-color: var(--border-strong); }
.footer-bottom a:hover { color: var(--text-muted); }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Keyboard navigation */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 2px; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--accent);
  color: #14100a;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .road-dash { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-art { opacity: 0.35; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Absolute (not fixed): the header's backdrop-filter makes it the
     containing block for fixed descendants, which would collapse the panel. */
  .nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px 24px;
    background: #0a0c10;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav > a, .dropdown-toggle { font-size: 17px; padding: 13px 14px; width: 100%; justify-content: space-between; }
  .dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0 0 8px 16px;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .nav .btn { margin: 14px 0 0; width: 100%; }
  .lang-switch { margin: 10px 0 0; text-align: center; }
  .nav-toggle { display: block; }
  .split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 88px 0 72px; }
  h1 { font-size: clamp(1.55rem, 7.6vw, 2.15rem); letter-spacing: -0.02em; line-height: 1.2; hyphens: none; overflow-wrap: normal; word-break: normal; }
  h2 { font-size: clamp(1.45rem, 6.6vw, 1.75rem); letter-spacing: -0.02em; line-height: 1.2; hyphens: none; overflow-wrap: normal; word-break: normal; }
  .cols-2, .cols-3, .cols-4, .steps, .stat-grid { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-band { padding: 56px 24px; }
  .hero-art { display: none; }
  .photo-strip { grid-template-columns: 1fr; }
  .hero-bg-img { object-position: 62% center; }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(6,7,10,0.55) 0%, rgba(6,7,10,0.86) 55%, rgba(6,7,10,0.97) 100%),
      linear-gradient(0deg, var(--bg) 0%, rgba(6,7,10,0.3) 12%, transparent 34%);
  }
  .split-visual-photo { min-height: 260px; }
}
