/* ═══ SELF-HOSTED FONTS (DSGVO-konform) ═════════════════════════ */

@font-face {
  font-display: swap;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/dm-sans-v17-latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/dm-sans-v17-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/dm-sans-v17-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/playfair-display-v40-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}

/* ═══════════════════════════════════════════════════════════════
   CRASH-HELDEN — Stylesheet
   Colors: Navy #111827, Amber #e8920c, Warm White #fefcf7
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy: #111827;
  --navy-light: #1e293b;
  --navy-mid: #334155;
  --amber: #e8920c;
  --amber-light: #fbbf24;
  --amber-dark: #b45309;
  --amber-bg: #fef3c7;
  --amber-bg-subtle: #fffbeb;
  --green: #16a34a;
  --green-bg: #dcfce7;
  --red: #dc2626;
  --white: #ffffff;
  --warm-white: #fefcf7;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --text: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: .2s cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: var(--amber-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

/* ═══ BUTTONS ═══════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 28px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 146, 12, .3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--gray-300);
}
.btn--outline:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
}

.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--sm { padding: 8px 20px; font-size: 14px; }

/* ═══ HEADER ════════════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.92);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  font-size: 10px;
  color: var(--gray-400);
  font-weight: 500;
}

.logo__text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--amber);
}

.logo__accent { color: var(--amber); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.header-phone:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
  background: var(--amber-bg-subtle);
}

/* ═══ HERO ══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(232, 146, 12, .12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232, 146, 12, .06) 0%, transparent 50%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232, 146, 12, .15);
  color: var(--amber-light);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .3px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero__title-accent {
  color: var(--amber);
}

.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-300);
  font-size: 15px;
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero__phone-note {
  font-size: 13px;
  color: var(--gray-500);
}

/* Hero floating cards */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  animation: cardSlideIn .6s cubic-bezier(.16,1,.3,1) both;
}
.hero__card--1 { animation-delay: .2s; }
.hero__card--2 { animation-delay: .35s; }
.hero__card--3 { animation-delay: .5s; }

.hero__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 146, 12, .1);
  border-radius: var(--radius-sm);
}

.hero__card-label {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 500;
}

.hero__card-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

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

/* ═══ STATS BAR ═════════════════════════════════════════════════ */

.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-bg-subtle);
  border-radius: var(--radius-sm);
  color: var(--amber-dark);
}

.stat__number {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.stat__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ═══ SECTIONS ══════════════════════════════════════════════════ */

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -.3px;
  line-height: 1.2;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

/* ═══ STEPS ═════════════════════════════════════════════════════ */

.steps-section {
  padding: 80px 0;
  background: var(--warm-white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-card__num {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
  opacity: .2;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.step-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--amber-bg-subtle);
  color: var(--amber-dark);
  margin-bottom: 20px;
}

.step-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
}

.step-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.steps-connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  opacity: .5;
}

.steps-cta {
  text-align: center;
  margin-top: 40px;
}

/* ═══ WHY ═══════════════════════════════════════════════════════ */

.why-section {
  padding: 80px 0;
  background: var(--white);
}

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

.why-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--white);
}

.why-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-bg-subtle);
  border-radius: var(--radius-sm);
  color: var(--amber-dark);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══ FAQ ═══════════════════════════════════════════════════════ */

.explainer-section {
  padding: 80px 0;
  background: var(--warm-white);
}

.faq-grid {
  max-width: 720px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] { border-color: var(--amber); }

.faq-item__q {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  transition: color var(--transition);
}

.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; content: ''; }

.faq-item__q::after {
  content: '';
  margin-left: auto;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] .faq-item__q::after { transform: rotate(180deg); }

.faq-item__a {
  padding: 0 24px 20px;
}

.faq-item__a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══ MAP ═══════════════════════════════════════════════════════ */

.map-section {
  padding: 80px 0;
  background: var(--white);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

#map {
  width: 100%;
  height: 480px;
}

/* Custom Leaflet overrides */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-lg) !important;
  font-family: var(--font) !important;
}

.leaflet-popup-content {
  margin: 12px 16px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.map-popup-city {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

.map-popup-dist {
  color: var(--text-muted);
  font-size: 13px;
}

.map-popup-ok {
  display: inline-block;
  padding: 2px 10px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.map-popup-outside {
  display: inline-block;
  padding: 2px 10px;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

/* ═══ BOTTOM CTA ════════════════════════════════════════════════ */

.bottom-cta {
  padding: 100px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 146, 12, .1) 0%, transparent 60%);
}

.bottom-cta__inner {
  position: relative;
  text-align: center;
}

.bottom-cta h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.bottom-cta p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.bottom-cta__note {
  font-size: 13px !important;
  color: var(--gray-500) !important;
  margin-top: 32px !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ WIZARD ════════════════════════════════════════════════════ */

.wizard-section {
  padding: 40px 0 80px;
  min-height: 100vh;
  background: var(--warm-white);
}

.wizard-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 0;
  transition: color var(--transition);
}
.wizard-back:hover { color: var(--text); }

.wizard {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  box-shadow: var(--shadow-lg);
}

.wizard__header {
  text-align: center;
  margin-bottom: 32px;
}

.wizard__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.wizard__subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

/* Progress */
.wizard__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.progress-step__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-400);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
}

.progress-step.active .progress-step__dot {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

.progress-step.done .progress-step__dot {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.progress-step__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.progress-step.active .progress-step__label,
.progress-step.done .progress-step__label {
  color: var(--text-muted);
}

.progress-step__line {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  margin: 0 8px;
  margin-bottom: 18px;
}

/* Step content */
.wizard__step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.wizard__step-hint {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Fault options */
.fault-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fault-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.fault-btn:hover {
  border-color: var(--amber);
  background: var(--amber-bg-subtle);
}

.fault-btn.selected {
  border-color: var(--amber);
  background: var(--amber-bg-subtle);
  color: var(--amber-dark);
}

/* Rejected */
.wizard__rejected {
  text-align: center;
  padding: 20px 0;
}

.wizard__rejected h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 16px 0 12px;
}

.wizard__rejected p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group--full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  color: var(--text);
}

.form-group input:focus {
  border-color: var(--amber);
}

.form-group input.has-error {
  border-color: var(--red);
}

.form-error {
  display: block;
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
  min-height: 16px;
}

/* Time options */
.time-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.time-btn {
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.time-btn:hover {
  border-color: var(--amber);
}

.time-btn.selected {
  border-color: var(--amber);
  background: var(--amber-bg-subtle);
  color: var(--amber-dark);
}

/* Summary */
.summary-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-200);
}

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

.summary-row span:first-child {
  color: var(--text-muted);
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--navy);
}

/* Consent */
.consent-box {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkbox-label input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--amber);
}

/* Wizard nav */
.wizard__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

/* ═══ CONFIRMATION ══════════════════════════════════════════════ */

.confirm-section {
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--warm-white);
}

.confirm-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.confirm-card__icon {
  margin-bottom: 20px;
}

.confirm-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.confirm-card__case {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.confirm-card__info {
  background: var(--green-bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  margin-bottom: 28px;
}

.confirm-card__info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}

.confirm-card__info p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 8px;
}

.confirm-card__info p:last-child { margin-bottom: 0; }

/* ═══ FOOTER ════════════════════════════════════════════════════ */

.site-footer {
  background: var(--gray-800);
  color: var(--gray-400);
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo__text {
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand .logo__accent {
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-links a, .footer-links span {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding: 16px 0;
  font-size: 13px;
  color: var(--gray-500);
}

/* ═══ COOKIE BANNER ═════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  padding: 16px 0;
}

.cookie-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-inner p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ═══ RESPONSIVE ════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__title { font-size: 36px; }
  .hero__visual { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero__card { flex: 1; min-width: 140px; }
  .stats-bar__inner { flex-direction: column; gap: 20px; }
  .stat__divider { width: 60px; height: 1px; }
  .steps-grid { flex-direction: column; align-items: center; }
  .steps-connector { transform: rotate(90deg); padding: 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  .bottom-cta h2 { font-size: 30px; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 0 60px; }
  .hero__title { font-size: 30px; }
  .hero__sub { font-size: 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__card { padding: 14px 16px; }
  .hero__card-value { font-size: 16px; }
  .hero__visual { display: grid; grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .wizard { padding: 28px 20px 24px; }
  .fault-options { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; text-align: center; }
  #map { height: 360px; }
}

/* ═══ MOBILE STICKY CTA ════════════════════════════════════════ */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 8px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}

.mobile-sticky-cta__btn { flex: 1; justify-content: center; }

.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-300);
  font-weight: 600;
}
.btn--ghost-dark:hover { border-color: var(--amber); }

/* Header phone variants */
.header-phone--mobile { display: none; }
.header-phone--desktop { display: flex; }

/* Confirm card trust line */
.confirm-card__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
  margin-top: 16px;
}

/* Bottom CTA buttons */
.bottom-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Footer sub */
.footer-brand__sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 8px;
}

/* ═══ ENHANCED MOBILE ══════════════════════════════════════════ */

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
  .header-phone--mobile { display: flex; }
  .header-phone--desktop { display: none; }
  
  /* More touch-friendly buttons */
  .btn { min-height: 48px; }
  .fault-btn { min-height: 64px; padding: 16px 12px; }
  .time-btn { min-height: 48px; }
  
  /* Better form inputs on mobile */
  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group input[type="email"] {
    font-size: 16px; /* Prevents iOS zoom */
    padding: 14px 16px;
  }
  
  /* Wizard padding for sticky CTA */
  .wizard-section { padding-bottom: 100px; }
  
  /* Cookie banner above sticky CTA */
  .cookie-banner { bottom: 56px; }
  
  /* Section padding mobile */
  .steps-section,
  .why-section,
  .explainer-section,
  .map-section { padding: 56px 0; }
  
  .bottom-cta { padding: 64px 0 100px; }
  
  /* Stack bottom CTA buttons */
  .bottom-cta__buttons { flex-direction: column; align-items: center; }
  .bottom-cta__buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 26px; }
  .section-title { font-size: 24px; }
  .wizard { padding: 24px 16px 20px; }
  .wizard__title { font-size: 22px; }
}
