/* =====================================================================
   GasCheck MUC – Gasprüfungen nach G607
   Gemeinsames Stylesheet für alle Seiten
   Stil: freundlich & regional, vertrauenswürdig
   ===================================================================== */

:root {
  /* Farben */
  --flame: #E8743B;        /* Akzent / Buttons (Flamme/Gas) */
  --flame-dark: #C85A28;
  --flame-soft: #FBE6D8;
  --petrol: #14424E;       /* Marke dunkel (Vertrauen) */
  --petrol-2: #1E5A68;
  --cream: #FBF6EF;        /* Haupt-Hintergrund warm */
  --sand: #F4EADB;         /* Abschnitts-Hintergrund */
  --ink: #23201D;          /* Text */
  --muted: #6B6258;        /* Sekundärtext */
  --green: #2F8F5B;        /* "geprüft" / Häkchen */
  --green-soft: #E1F0E6;
  --white: #ffffff;
  --line: #E8DDCD;         /* Linien/Rahmen */

  /* Radius & Schatten */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(20,66,78,.06);
  --shadow: 0 12px 30px rgba(20,66,78,.10);
  --shadow-lg: 0 24px 60px rgba(20,66,78,.16);

  --maxw: 1160px;
  --header-h: 74px;

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset / Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--petrol-2); text-decoration: none; }
a:hover { color: var(--flame-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--petrol); margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); letter-spacing: -.3px; }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--sand { background: var(--sand); }
.section--petrol { background: var(--petrol); color: #EAF2F2; }
.section--petrol h2, .section--petrol h3 { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .82rem; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--flame-dark); background: var(--flame-soft);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.section--petrol .eyebrow { color: #ffd9c4; background: rgba(255,255,255,.08); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--flame); color: #fff; box-shadow: 0 8px 20px rgba(232,116,59,.30); }
.btn-primary:hover { background: var(--flame-dark); color: #fff; box-shadow: 0 12px 26px rgba(232,116,59,.40); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--petrol); border-color: var(--petrol); }
.btn-outline:hover { background: var(--petrol); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--petrol); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--flame); color: var(--flame-dark); transform: translateY(-2px); }
.btn-white { background:#fff; color: var(--petrol); }
.btn-white:hover { background: var(--flame); color:#fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1.06rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,246,239,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand:hover { color: inherit; }
.brand .logo { width: 42px; height: 42px; flex: none; }
.brand .brand-text { font-family: var(--font-head); font-weight: 700; color: var(--petrol); font-size: 1.18rem; line-height: 1.05; }
.brand .brand-text small { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--flame-dark); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .97rem; color: var(--ink);
  padding: 9px 13px; border-radius: 10px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--flame-soft); color: var(--flame-dark); }
.nav-links a.active { color: var(--flame-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--petrol); padding: 8px 6px; }
.nav-phone:hover { color: var(--flame-dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--petrol); border-radius: 2px; margin: 5px 0; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 44px; align-items: center; padding: 56px 0 64px; }
.hero h1 { margin-bottom: 16px; }
.hero h1 .hl { color: var(--flame); }
.hero p.lead { margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--petrol); }
.hero-badge svg { width: 20px; height: 20px; color: var(--green); flex: none; }
.hero-art { position: relative; }
.hero-art .hero-illu { width: 100%; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-seal {
  position: absolute; right: -10px; top: -18px; width: 116px; height: 116px;
  filter: drop-shadow(0 10px 20px rgba(20,66,78,.25));
}

/* ---------- Hero-Banner (Foto + interaktive Kacheln) ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hero-banner { padding: 26px 0 8px; background: linear-gradient(180deg,#fff 0%, var(--cream) 100%); }
.hero-banner__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(155deg,#2c5764 0%, var(--petrol) 55%, #0c2a33 100%);
  isolation: isolate;
}
.hero-banner__img { display: block; width: 100%; height: auto; }
/* Fallback, falls bilder/hero-banner.jpg fehlt: Fahrzeug-Illustration */
.hero-banner__frame.is-fallback {
  aspect-ratio: 1694 / 928;
  background:
    url("bilder/hero-fahrzeuge.svg") center 34% / min(76%, 720px) no-repeat,
    linear-gradient(155deg,#2c5764 0%, var(--petrol) 55%, #0c2a33 100%);
}
.hero-banner__frame.is-fallback .hero-banner__img { display: none; }

/* Interaktive Klickflächen – exakt über den 4 Kacheln + dem Button im Foto.
   Lage/Größe je Hotspot über --x/--y/--w/--h (in %, skaliert mit dem Bild mit). */
.hero-hotspot {
  position: absolute;
  left: var(--x); top: var(--y); width: var(--w); height: var(--h);
  z-index: 2; border-radius: 16px; cursor: pointer;
  background: rgba(255,255,255,0);
  box-shadow: 0 0 0 0 rgba(232,116,59,0);
  transition: background .3s ease, box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
}
/* Hover / Tastatur-Fokus: Kachel wird hervorgehoben (Glow + oranger Rahmen) */
.hero-hotspot:hover,
.hero-hotspot:focus-visible {
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 2.5px rgba(232,116,59,.95),
              0 12px 26px rgba(0,0,0,.32),
              0 0 22px rgba(232,116,59,.40);
  outline: none;
}
/* Klick */
.hero-hotspot:active {
  background: rgba(232,116,59,.20);
  box-shadow: 0 0 0 2.5px #E8743B, 0 6px 16px rgba(0,0,0,.30);
}
/* CTA-Button: kräftigere Hervorhebung + sanftes Pulsieren bei Hover */
.hero-hotspot--cta:hover,
.hero-hotspot--cta:focus-visible {
  background: rgba(232,116,59,.22);
  animation: ctaGlow 1.4s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 0 0 2.5px #E8743B, 0 14px 30px rgba(232,116,59,.45), 0 0 22px rgba(232,116,59,.45); }
  50%     { box-shadow: 0 0 0 3px   #E8743B, 0 16px 34px rgba(232,116,59,.60), 0 0 34px rgba(232,116,59,.72); }
}

/* Mobil: Klickflächen bleiben deckungsgleich (skalieren mit dem Bild) */
@media (max-width: 600px) {
  .hero-hotspot { border-radius: 10px; }
  .hero-hotspot:hover, .hero-hotspot:focus-visible, .hero-hotspot:active {
    box-shadow: 0 0 0 2px #E8743B, 0 0 16px rgba(232,116,59,.45);
  }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  .hero-hotspot { transition: box-shadow .15s ease, background .15s ease; }
  .hero-hotspot--cta:hover, .hero-hotspot--cta:focus-visible { animation: none;
    box-shadow: 0 0 0 2.5px #E8743B, 0 0 22px rgba(232,116,59,.5); }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--petrol); color: #DCEAEA; }
.trust .container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 18px; padding-top: 22px; padding-bottom: 22px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 28px; height: 28px; color: var(--flame); flex: none; }
.trust-item b { display: block; font-family: var(--font-head); color: #fff; font-size: 1.05rem; }
.trust-item span { font-size: .86rem; color: #AFC6C8; }

/* ---------- Cards / Leistungen ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #E0CDB5; }
.card .ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--flame-soft); color: var(--flame-dark); margin-bottom: 16px;
}
.card .ic svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 14px; }
.card .more { font-family: var(--font-head); font-weight: 600; color: var(--flame-dark); display: inline-flex; align-items: center; gap: 6px; }
.card .more svg { width: 17px; height: 17px; transition: transform .15s; }
.card:hover .more svg { transform: translateX(3px); }

.badge-pill { display:inline-block; font-family: var(--font-head); font-weight:600; font-size:.78rem; padding:4px 12px; border-radius:999px; margin-bottom:14px; }
.badge-pill.privat { background: var(--green-soft); color: var(--green); }
.badge-pill.gewerblich { background: #E5EEF1; color: var(--petrol-2); }

/* Detaillierte Leistungsblöcke */
.leistung-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.leistung-block + .leistung-block { margin-top: 56px; }
.leistung-block.flip .l-art { order: 2; }
.l-art svg { width: 100%; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.checklist { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 11px; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--green-soft) 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='%232F8F5B' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- Steps / Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 22px; position: relative; box-shadow: var(--shadow-sm); }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--petrol); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Info / Hinweis ---------- */
.note {
  display: flex; gap: 14px; background: var(--flame-soft); border: 1px solid #F1D2BC;
  border-radius: var(--r); padding: 18px 20px; color: #7a4322;
}
.note svg { width: 24px; height: 24px; color: var(--flame-dark); flex: none; }
.note.green { background: var(--green-soft); border-color: #C2E2CD; color: #1f5e3b; }
.note.green svg { color: var(--green); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--petrol);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { width: 22px; height: 22px; flex: none; transition: transform .25s; color: var(--flame); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Stat / KPI ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; }
.stat .big { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--flame); line-height: 1; }
.stat .lbl { color: var(--muted); font-weight: 500; margin-top: 6px; }
.section--petrol .stat .lbl { color: #AFC6C8; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--petrol) 0%, var(--petrol-2) 100%); color: #fff; border-radius: var(--r-lg); padding: 46px; text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #CFE0E1; max-width: 560px; margin: 0 auto 22px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.about-card { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.quote { font-family: var(--font-head); font-size: 1.35rem; line-height: 1.5; color: var(--petrol); font-weight: 600; }
.quote .mark { color: var(--flame); }

/* ---------- Booking / Termine ---------- */
.booking-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; }
.slots-wrap { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.slot-day { margin-bottom: 22px; }
.slot-day:last-child { margin-bottom: 0; }
.slot-day h4 { font-family: var(--font-head); color: var(--petrol); margin: 0 0 12px; font-size: 1.05rem; display:flex; align-items:center; gap:9px; }
.slot-day h4 svg { width: 18px; height: 18px; color: var(--flame); }
.slot-list { display: flex; flex-wrap: wrap; gap: 10px; }
.slot {
  border: 2px solid var(--line); background: #fff; border-radius: 12px; padding: 11px 15px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; color: var(--petrol); transition: all .15s; text-align: left;
}
.slot small { display:block; font-weight: 500; font-size: .76rem; color: var(--muted); }
.slot:hover { border-color: var(--flame); color: var(--flame-dark); }
.slot.selected { border-color: var(--flame); background: var(--flame); color: #fff; box-shadow: 0 8px 18px rgba(232,116,59,.3); }
.slot.selected small { color: #ffe6d8; }
.no-slots { color: var(--muted); padding: 10px 0; }

.booking-form { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 16px); }
.selected-info { background: var(--flame-soft); border:1px dashed #E6B493; border-radius: var(--r); padding: 14px 16px; margin-bottom: 18px; font-weight: 600; color: #8a4a24; }
.selected-info span { display:block; font-weight: 500; color:#a86a45; font-size:.9rem; }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--petrol); margin-bottom: 6px; }
.field .req { color: var(--flame-dark); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--flame); box-shadow: 0 0 0 3px rgba(232,116,59,.14); }
.field textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.form-success { display:none; background: var(--green-soft); border:1px solid #C2E2CD; color:#1f5e3b; border-radius: var(--r); padding: 16px 18px; margin-bottom: 16px; }
.form-success.show { display:block; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--flame-soft); color: var(--flame-dark); display: grid; place-items: center; flex: none; }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list b { font-family: var(--font-head); color: var(--petrol); display: block; }
.contact-list a { color: var(--ink); }
.contact-list a:hover { color: var(--flame-dark); }
.hours { list-style:none; padding:0; margin:0; }
.hours li { display:flex; justify-content:space-between; padding:7px 0; border-bottom:1px dashed var(--line); }
.hours li:last-child { border-bottom:0; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero { background: var(--sand); padding: 52px 0 46px; border-bottom: 1px solid var(--line); }
.page-hero .crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 10px; }
.page-hero .crumbs a { color: var(--flame-dark); }
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { color: var(--muted); max-width: 720px; margin: 0; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--petrol); color: #Bcd1d2; padding: 56px 0 26px; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-grid a { color: #Bcd1d2; }
.footer-grid a:hover { color: var(--flame); }
.footer-brand { display:flex; align-items:center; gap:11px; margin-bottom: 14px; }
.footer-brand .logo { width: 40px; height: 40px; }
.footer-brand b { font-family: var(--font-head); color:#fff; font-size: 1.12rem; }
.footer-list { list-style:none; padding:0; margin:0; }
.footer-list li { margin-bottom: 9px; }
.footer-contact { font-style: normal; line-height: 1.9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .86rem; color: #92aeb0; }
.footer-bottom a { color:#92aeb0; }

/* ---------- Helpers ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-2{margin-top:1.4rem}
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Smarte Terminbuchung (Planer) ---------- */
.planner { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.p-card { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 26px 26px 28px; box-shadow: var(--shadow-sm); }
.p-card--ok { border-color:#C2E2CD; background: linear-gradient(180deg,#F4FBF6,#fff); }
.p-step-head { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.p-num { width:34px; height:34px; border-radius:50%; background:var(--petrol); color:#fff; font-family:var(--font-head); font-weight:700; display:grid; place-items:center; flex:none; }
.p-step-head h2 { margin:0; font-size:1.3rem; }

.p-addr { display:grid; grid-template-columns: 1fr 120px auto; gap:14px; align-items:end; }
.p-addr .field { margin-bottom:0; }
.p-addr .btn { height:51px; }
.p-hint { margin:12px 0 0; color:var(--flame-dark); font-weight:600; font-size:.9rem; }

.bsp-row { display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-top:18px; }
.bsp-row > span { color:var(--muted); font-size:.9rem; }
.chip { font-family:var(--font-head); font-weight:600; font-size:.85rem; color:var(--petrol); background:var(--sand); border:1px solid var(--line); border-radius:999px; padding:7px 14px; cursor:pointer; transition: all .15s; }
.chip:hover { background:var(--flame-soft); border-color:var(--flame); color:var(--flame-dark); }

/* Schritt 1: Art der Prüfung (Ankreuz-Karten) */
.art-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:12px; }
.art-opt { display:block; cursor:pointer; }
.art-opt input { position:absolute; opacity:0; width:0; height:0; }
.art-box { display:flex; align-items:center; gap:14px; padding:16px; height:100%; border:1.5px solid var(--line); border-radius: var(--r); background:#fff; transition: border-color .15s, box-shadow .15s, background .15s; }
.art-opt:hover .art-box { border-color:var(--flame); box-shadow: var(--shadow-sm); }
.art-ic { width:46px; height:46px; flex:none; border-radius:12px; display:grid; place-items:center; background:var(--flame-soft); color:var(--flame-dark); }
.art-ic svg { width:24px; height:24px; }
.art-tx { flex:1; min-width:0; }
.art-tx b { display:block; font-family:var(--font-head); color:var(--petrol); font-size:1rem; }
.art-tx small { color:var(--muted); font-size:.86rem; }
.art-check { width:24px; height:24px; flex:none; border-radius:50%; border:2px solid var(--line); display:grid; place-items:center; color:#fff; transition: all .15s; }
.art-check svg { width:14px; height:14px; opacity:0; transition:opacity .15s; }
.art-opt.is-sel .art-box { border-color:var(--flame); background:#FFF8F3; box-shadow:0 0 0 1px var(--flame) inset; }
.art-opt.is-sel .art-check { background:var(--flame); border-color:var(--flame); }
.art-opt.is-sel .art-check svg { opacity:1; }
.art-opt input:focus-visible + .art-box { outline:none; box-shadow:0 0 0 3px rgba(232,116,59,.25); }

/* Schritt 3: Terminvorschläge (saubere Slots, ohne Optimierungs-Details) */
.p-sub { color:var(--muted); margin:-6px 0 18px; }
.vorschlaege { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }
.slot-opt { text-align:left; background:#fff; border:1.5px solid var(--line); border-radius: var(--r); padding:16px 16px 14px; cursor:pointer; display:flex; flex-direction:column; gap:6px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.slot-opt:hover { transform:translateY(-3px); border-color:var(--flame); box-shadow: var(--shadow); }
.so-tag { font-family:var(--font-head); font-weight:700; color:var(--petrol); font-size:.95rem; text-transform:capitalize; }
.so-zeit { font-family:var(--font-head); font-weight:800; font-size:1.25rem; color:var(--ink); line-height:1; }
.so-cta { display:inline-flex; align-items:center; gap:5px; font-family:var(--font-head); font-weight:700; font-size:.85rem; color:var(--flame-dark); margin-top:4px; }
.no-slots { color:var(--muted); grid-column:1 / -1; }

/* Wunschtermin-Leiste unter den Vorschlägen (volle Breite) */
.wunsch-bar { grid-column:1 / -1; display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-top:6px; padding:15px 18px; background:var(--sand); border:1px dashed var(--line); border-radius:var(--r); }
.wunsch-bar span { color:var(--petrol); font-family:var(--font-head); font-weight:600; }
.wunsch-bar .btn { white-space:nowrap; }

/* Schritt 4: Buchung + Bestätigung */
.termin-summary { display:grid; gap:2px; background:var(--sand); border-radius: var(--r); padding:14px 18px; margin-bottom:18px; }
.termin-summary > div { display:flex; justify-content:space-between; gap:12px; padding:5px 0; }
.termin-summary span { color:var(--muted); font-size:.92rem; }
.termin-summary b { font-family:var(--font-head); color:var(--petrol); text-align:right; }
.buch-form .form-row { margin-bottom:0; }
.b-info { color:var(--muted); text-align:center; max-width:470px; margin:0 auto 18px; }
.b-actions { text-align:center; }

.bestaetigt { text-align:center; padding:8px 0 14px; }
.ok-badge { width:60px; height:60px; border-radius:50%; background:var(--green); color:#fff; display:grid; place-items:center; margin:0 auto 14px; box-shadow:0 10px 24px rgba(47,143,91,.35); }
.ok-badge svg { width:30px; height:30px; }
.bestaetigt h3 { margin:0 0 8px; }
.b-termin { font-size:1.15rem; color:var(--ink); }
.b-termin span { color:var(--muted); font-size:.95rem; }

@media (max-width: 720px) {
  .vorschlaege { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .p-addr { grid-template-columns: 1fr; }
  .art-grid { grid-template-columns: 1fr; }
  .vorschlaege { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 36px; }
  .hero-art { order: -1; }
  .about-grid, .leistung-block, .leistung-block.flip .l-art { grid-template-columns: 1fr; }
  .leistung-block.flip .l-art { order: 0; }
  .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .booking-form { position: static; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px 18px 20px; gap: 2px;
    transform: translateY(-130%); transition: transform .28s ease; box-shadow: var(--shadow); z-index: 90;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-toggle { display: block; }
  .nav-phone span.txt { display: none; }
  .section { padding: 54px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============ HERO (Text links + Foto rechts) – GasCheck MUC ============ */
.hero { padding: 44px 0 10px; }
.hero-grid { display:grid; grid-template-columns: 1fr 1.12fr; gap:44px; align-items:center; }
.hero-copy h1 { font-family:var(--font-head); font-size: clamp(2rem, 4.2vw, 3.15rem); line-height:1.08; letter-spacing:-.01em; color:var(--petrol); margin:0 0 18px; }
.hero-copy h1 .accent { color:var(--flame); }
.hero-lead { color:var(--muted); font-size:1.06rem; line-height:1.6; max-width:48ch; margin:0 0 22px; }
.hero-points { list-style:none; padding:0; margin:0 0 26px; display:grid; gap:13px; }
.hero-points li { display:flex; align-items:center; gap:13px; font-family:var(--font-head); font-weight:600; color:var(--ink); }
.hero-points .hp-ic { flex:0 0 auto; width:36px; height:36px; border-radius:50%; background:var(--petrol); color:#fff; display:grid; place-items:center; }
.hero-points .hp-ic svg { width:18px; height:18px; }
.hero-cta { display:flex; flex-wrap:wrap; gap:14px; }
.hero-cta .btn { display:inline-flex; align-items:center; gap:9px; }
.hero-media img { width:100%; height:100%; max-height:460px; object-fit:cover; border-radius:var(--r-lg); box-shadow:var(--shadow-lg); display:block; }
@media (max-width: 880px){
  .hero-grid { grid-template-columns:1fr; gap:24px; }
  .hero-media { order:-1; }
  .hero-media img { max-height:280px; }
}
