/* ============================================================
   MOHSEN GUTACHTEN — Design System v3
   Hell · Seriös · Vertrauensvoll (Navy + Cyan, Orange nur für CTAs)
   Farbkonzept nach Recherche: Blau = Vertrauen/Seriosität (Basis),
   warmer Akzent = Handlungsaufforderung (nur Buttons)
   ============================================================ */

:root {
  --navy: #0d2f47;
  --navy-2: #123d5c;
  --navy-3: #1a4e75;
  --cyan: #1ea7d9;
  --cyan-2: #3cbbe8;
  --cyan-soft: rgba(30, 167, 217, 0.1);
  --accent: #ec7405;
  --accent-2: #ff9a3d;
  --paper: #f6f9fb;
  --paper-2: #ecf2f7;
  --white: #ffffff;
  --text: #12222e;
  --text-soft: #51636f;
  --text-on-dark: #f0f6fa;
  --text-on-dark-soft: #a8bfd0;
  --line: rgba(13, 47, 71, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --radius-s: 12px;
  --shadow: 0 24px 60px -24px rgba(13, 47, 71, 0.22);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--cyan); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ── Typografie ─────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--cyan); border-radius: 2px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 560; line-height: 1.12; letter-spacing: -0.01em; color: var(--navy); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--text-on-dark); }

.h-display { font-size: clamp(2.5rem, 6vw, 4.6rem); }
.h-section { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 20px; }
.h-section em { font-style: italic; color: var(--cyan); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--text-soft); max-width: 640px; }
.on-dark .lead { color: var(--text-on-dark-soft); }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(236, 116, 5, 0.5);
}
.btn-accent:hover { box-shadow: 0 20px 44px -12px rgba(236, 116, 5, 0.6); }

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 34px -14px rgba(13, 47, 71, 0.5);
}
.btn-navy:hover { background: var(--navy-2); }

.btn-ghost-dark {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost-dark:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.06); }

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(13, 47, 71, 0.22);
}
.btn-outline:hover { border-color: var(--navy); }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ── Header (immer hell, Logo groß) ─────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s ease;
}
.site-header.scrolled { box-shadow: 0 12px 34px -18px rgba(13, 47, 71, 0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  transition: padding 0.3s ease;
}
.site-header.scrolled .header-inner { padding: 8px 28px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 66px; width: auto; object-fit: contain; transition: height 0.3s ease; }
.site-header.scrolled .brand img { height: 54px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}
.brand-name span { display: block; font-family: var(--font-body); font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 14.5px; font-weight: 500; color: var(--text-soft); position: relative; transition: color 0.2s ease; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
}
.header-phone svg { width: 17px; height: 17px; color: var(--cyan); }
.header-phone:hover { color: var(--cyan); }
.header-cta .btn { padding: 11px 22px; font-size: 14px; }

/* ── Hero (hell & freundlich) ───────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 480px at 85% -10%, rgba(30, 167, 217, 0.14), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(30, 167, 217, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  color: var(--text);
  padding: 190px 0 110px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(13,47,71,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(13,47,71,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 26px; }
.hero h1 .accent { color: var(--cyan); font-style: italic; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 0; }

.hero-phone-big {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.hero-phone-big svg { width: 26px; height: 26px; color: var(--cyan); align-self: center; }
.hero-phone-big:hover { color: var(--cyan); }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(13, 47, 71, 0.14);
  background: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  box-shadow: 0 4px 14px -6px rgba(13, 47, 71, 0.12);
}
.chip svg { width: 15px; height: 15px; color: var(--cyan); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-car {
  width: min(430px, 90%);
  filter: drop-shadow(0 40px 60px rgba(13, 47, 71, 0.3));
  transform: rotate(-6deg);
  animation: hero-float 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes hero-float {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-16px); }
}
.hero-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 167, 217, 0.2) 0%, transparent 65%);
  filter: blur(30px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}
.hero-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 13px 18px;
  box-shadow: 0 20px 44px -18px rgba(13, 47, 71, 0.28);
  animation: badge-float 6s ease-in-out infinite;
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 21px; color: var(--cyan); line-height: 1.1; }
.hero-badge span { font-size: 12px; color: var(--text-soft); }
.hero-badge.b1 { top: 6%; left: 0; }
.hero-badge.b2 { bottom: 10%; right: 0; animation-delay: -3s; }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Ticker (schmales Navy-Band) ────────────── */
.ticker {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track { display: flex; gap: 44px; width: max-content; animation: ticker-move 34s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 550;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 44px;
  white-space: nowrap;
}
.ticker-track span::after { content: "✦"; font-size: 11px; color: var(--cyan-2); }
@keyframes ticker-move { to { transform: translateX(-50%); } }

/* ── Sektionen ──────────────────────────────── */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.on-dark { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--text-on-dark); }
.on-paper { background: var(--paper); }
.on-paper-2 { background: var(--paper-2); }

.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin: 0 auto; }

/* ── Stats (hell) ───────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.stat { padding: 38px 30px; border-right: 1px solid var(--line); transition: background 0.3s ease; }
.stat:last-child { border-right: none; }
.stat:hover { background: var(--cyan-soft); }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 14px; color: var(--text-soft); }

/* ── Karten / Leistungen ────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card:hover .card-icon { transform: scale(1.1) rotate(-6deg); }
.card-icon svg { width: 27px; height: 27px; color: var(--cyan); }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--text-soft); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cyan);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.card:hover .card-link svg { transform: translateX(5px); }

/* ── Ihre Rechte ────────────────────────────── */
.rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.right-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.right-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(30, 167, 217, 0.4); }
.right-card .ric {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.right-card .ric svg { width: 22px; height: 22px; color: var(--cyan); }
.right-card h3 { font-size: 17.5px; margin-bottom: 6px; }
.right-card p { font-size: 14px; color: var(--text-soft); }
.right-card p b { color: var(--navy); }

/* ── Versus: Kostenvoranschlag vs Gutachten ─── */
.versus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.versus-box { border-radius: var(--radius); padding: 42px 36px; border: 1px solid var(--line); background: var(--white); }
.versus-box.bad { background: var(--paper); }
.versus-box.good {
  border: 2px solid var(--cyan);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(30, 167, 217, 0.4);
}
.versus-box.good::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 167, 217, 0.16), transparent 70%);
}
.versus-box .vtag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.bad .vtag { background: rgba(200, 60, 60, 0.1); color: #c43c3c; }
.good .vtag { background: var(--cyan); color: #fff; }
.versus-box h3 { font-size: 22px; margin-bottom: 8px; }
.versus-box .sub { font-size: 14px; color: var(--text-soft); margin-bottom: 26px; }
.compare-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  align-items: flex-start;
}
.compare-list li:last-child { border-bottom: none; }
.compare-list .mark {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.bad .mark { background: rgba(200, 60, 60, 0.12); color: #c43c3c; }
.good .mark { background: var(--cyan); color: #fff; }
.versus-note {
  margin-top: 34px;
  padding: 22px 28px;
  border-left: 4px solid var(--cyan);
  background: var(--cyan-soft);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  font-size: 15.5px;
  color: var(--navy);
}

/* ── Unfall-Checkliste ──────────────────────── */
.checklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: check; }
.check-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.check-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.check-item .cnum {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.3px var(--cyan);
  margin-bottom: 16px;
}
.check-item h3 { font-size: 17.5px; margin-bottom: 8px; }
.check-item p { font-size: 14px; color: var(--text-soft); }
.checklist-warn {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff8f0;
  border: 1px solid rgba(236, 116, 5, 0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.checklist-warn .wicon { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(236, 116, 5, 0.12); display: flex; align-items: center; justify-content: center; }
.checklist-warn .wicon svg { width: 21px; height: 21px; color: var(--accent); }
.checklist-warn p { font-size: 15px; color: var(--text); }
.checklist-warn p b { color: var(--accent); }

/* ── Ablauf ─────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
  margin-bottom: 20px;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--text-soft); }
.step::after {
  content: "";
  position: absolute;
  top: 58px; right: -26px;
  width: 26px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 5px, transparent 5px 10px);
}
.step:last-child::after { display: none; }

/* ── Haftpflicht / Kasko ────────────────────── */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.path-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.path-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.path-card.primary { border: 2px solid var(--cyan); }
.path-card .ptag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.path-card h3 { font-size: 21px; margin-bottom: 12px; }
.path-card p { font-size: 15px; color: var(--text-soft); margin-bottom: 12px; }
.path-card .btn { margin-top: 14px; padding: 12px 24px; font-size: 14.5px; }

/* ── CTA-Band (Navy als Akzent) ─────────────── */
.cta-band {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(600px 300px at 85% 20%, rgba(30, 167, 217, 0.3), transparent 60%),
    linear-gradient(140deg, var(--navy-2), var(--navy));
  color: var(--text-on-dark);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px -34px rgba(13, 47, 71, 0.55);
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; color: var(--text-on-dark); }
.cta-band p { color: var(--text-on-dark-soft); max-width: 480px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; flex: none; }

/* ── Bezirke (hell) ─────────────────────────── */
.district-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.district-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px 26px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: block;
}
.district-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px 160px at 50% 0%, rgba(30, 167, 217, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.district-card:hover { transform: translateY(-6px); border-color: rgba(30, 167, 217, 0.55); box-shadow: var(--shadow); }
.district-card:hover::before { opacity: 1; }
.district-card .pin { width: 22px; height: 22px; color: var(--cyan); margin-bottom: 16px; }
.district-card h3 { font-size: 19px; margin-bottom: 6px; }
.district-card p { font-size: 13.5px; color: var(--text-soft); position: relative; }
.district-card .tag {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-soft);
  padding: 5px 10px;
  border-radius: 999px;
}
.district-more { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.district-more a {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(13, 47, 71, 0.16);
  background: var(--white);
  font-size: 14px;
  color: var(--text-soft);
  transition: all 0.25s ease;
}
.district-more a:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }

/* ── Über mich ──────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.about-photo {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(300px 200px at 70% 20%, rgba(30, 167, 217, 0.25), transparent 60%),
    linear-gradient(160deg, var(--navy-2), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo .monogram {
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(60, 187, 232, 0.7);
  line-height: 1;
}
.about-photo .photo-note {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  font-size: 11.5px;
  color: var(--text-on-dark-soft);
  background: rgba(13, 47, 71, 0.7);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  white-space: nowrap;
}
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.about-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  background: var(--white);
}
.about-fact svg { width: 21px; height: 21px; color: var(--cyan); flex: none; margin-top: 2px; }
.about-fact strong { display: block; font-size: 14.5px; color: var(--navy); }
.about-fact span { font-size: 13px; color: var(--text-soft); }

/* ── WhatsApp Foto-Check ────────────────────── */
.wa-check {
  display: flex;
  align-items: center;
  gap: 26px;
  background: linear-gradient(135deg, #f0fbf3, #e5f7ec);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius);
  padding: 34px 38px;
}
.wa-check .wicon {
  flex: none;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.5);
}
.wa-check .wicon svg { width: 32px; height: 32px; color: #fff; }
.wa-check h3 { font-size: 20px; margin-bottom: 6px; }
.wa-check p { font-size: 15px; color: var(--text-soft); }
.wa-check .btn { flex: none; margin-left: auto; background: #25d366; color: #fff; box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.55); }

/* ── Kontakt (hell) ─────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 34px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-card:hover { border-color: rgba(30, 167, 217, 0.55); box-shadow: var(--shadow); transform: translateX(6px); }
.contact-card .icon {
  width: 50px; height: 50px;
  flex: none;
  border-radius: 14px;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card .icon svg { width: 23px; height: 23px; color: var(--cyan); }
.contact-card small { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 3px; }
.contact-card strong { font-size: 17px; font-weight: 600; color: var(--navy); }

.contact-form {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 44px 40px;
  box-shadow: 0 40px 90px -40px rgba(13, 47, 71, 0.35);
}
.contact-form h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form .form-sub { font-size: 14.5px; color: var(--text-soft); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.form-field label .opt { font-weight: 400; color: var(--text-soft); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(13, 47, 71, 0.14);
  border-radius: var(--radius-s);
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(30, 167, 217, 0.14);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--text-soft); margin-top: 14px; }
.form-submit { width: 100%; margin-top: 8px; }

/* ── FAQ ────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(30, 167, 217, 0.55); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 560;
  text-align: left;
  color: var(--navy);
}
.faq-q .chev {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}
.faq-q .chev svg { width: 15px; height: 15px; color: var(--cyan); }
.faq-item.open .chev { transform: rotate(180deg); background: var(--cyan); }
.faq-item.open .chev svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-a-inner { padding: 0 26px 24px; font-size: 15px; color: var(--text-soft); }

/* ── Footer (Navy) ──────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--text-on-dark-soft);
  padding: 70px 0 120px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand img { height: 84px; width: auto; margin-bottom: 18px; background: #fff; padding: 10px 14px; border-radius: 12px; }
.footer-brand p { font-size: 14px; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--cyan-2); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--cyan-2); }

/* ── Sticky Mobile Call Bar ─────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px -12px rgba(13, 47, 71, 0.25);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
}
.mobile-call-bar .call { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.mobile-call-bar .wa { background: rgba(37, 211, 102, 0.12); color: #1da851; border: 1px solid rgba(37, 211, 102, 0.4); }
.mobile-call-bar svg { width: 18px; height: 18px; }

/* ── WhatsApp Float ─────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 105;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-float:hover { transform: scale(1.12) rotate(6deg); }
.wa-float svg { width: 29px; height: 29px; color: #fff; }

/* ── Scroll-Car (Signatur-Effekt) ───────────── */
#scroll-car {
  position: fixed;
  right: 14px;
  top: 0;
  z-index: 90;
  pointer-events: none;
  width: 92px;
  will-change: transform;
}
#scroll-car img { filter: drop-shadow(2px 6px 14px rgba(13, 47, 71, 0.35)); }

/* ── Reveal-Animationen ─────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  #scroll-car { display: none; }
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; }
  .hero-car { width: min(300px, 70%); }
  .hero-glow { width: 300px; height: 300px; }
  .cards-3, .steps, .rights-grid, .checklist { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .district-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 50px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand img { height: 56px; }
  #scroll-car { width: 64px; right: 8px; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .section { padding: 76px 0; }
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .header-phone { font-size: 14px; }
  .brand img { height: 48px; }
  .brand-name { display: none; }
  .hero { padding: 140px 0 80px; }
  .hero-badge.b1 { left: -6px; }
  .hero-badge.b2 { right: -6px; }
  .cards-3, .steps, .versus-grid, .form-row, .about-facts, .rights-grid, .checklist, .path-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .cta-band { padding: 40px 26px; }
  .wa-check { flex-direction: column; align-items: flex-start; padding: 28px; }
  .wa-check .btn { margin-left: 0; }
  .wa-float { bottom: 84px; right: 16px; width: 50px; height: 50px; }
  .mobile-call-bar { display: flex; }
  .site-footer { padding-bottom: 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  #scroll-car { display: none; }
}

/* ── Unterseiten ────────────────────────────── */
.page-hero {
  background:
    radial-gradient(900px 420px at 80% 0%, rgba(30, 167, 217, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  padding: 180px 0 80px;
}
.page-hero .breadcrumb { font-size: 13.5px; color: var(--text-soft); margin-bottom: 22px; display: flex; gap: 8px; align-items: center; }
.page-hero .breadcrumb a { color: var(--cyan); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 20px; }

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 44px 0 16px; }
.prose p { margin-bottom: 16px; color: var(--text-soft); }
.prose p strong, .prose p b { color: var(--navy); }
.prose a { color: var(--cyan); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose ul { margin: 0 0 20px 4px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text-soft); }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 12px;
  border-radius: 4px;
  background: var(--cyan-soft);
  border: 1.5px solid var(--cyan);
}

/* ============================================================
   v3.1 — Scroll-Car Crash, Mobile-Menü, Feintuning
   ============================================================ */

/* Hero: Text immer zuerst (auch Tablet) */
@media (max-width: 1024px) {
  .hero-visual { order: 0; }
}

/* ── Scroll-Car: Crash-Effekt ───────────────── */
#scroll-car img { transition: filter 0.3s ease; }
#scroll-car .impact-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 4px solid var(--accent);
  opacity: 0;
  pointer-events: none;
}
#scroll-car.crashing img { animation: car-crash 0.8s ease-out forwards; }
#scroll-car.crashed img {
  transform: rotate(30deg) scale(0.85) translateX(-8px);
  filter: drop-shadow(2px 6px 14px rgba(13, 47, 71, 0.4)) brightness(0.72);
}
#scroll-car.crashing .impact-ring { animation: ring-expand 0.8s ease-out 0.1s forwards; }
@keyframes car-crash {
  0%   { transform: rotate(0deg) scale(1) translateX(0); }
  15%  { transform: rotate(-22deg) scale(1.12) translateX(-12px); }
  35%  { transform: rotate(14deg) scale(0.92) translateX(6px); }
  55%  { transform: rotate(28deg) scale(0.86) translateX(3px); }
  75%  { transform: rotate(31deg) scale(0.85) translateX(1px); }
  100% { transform: rotate(30deg) scale(0.85) translateX(0); }
}
@keyframes ring-expand {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* ── Hamburger / Mobile-Menü ────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: var(--cyan-soft); }
.nav-toggle svg { width: 26px; height: 26px; }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav.open { max-height: 440px; }
.mobile-nav a {
  padding: 15px 28px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav a::after { content: "→"; color: var(--cyan); }
.mobile-nav a:active { background: var(--cyan-soft); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  /* Scroll-Car auch auf dem Handy – klein am rechten Rand */
  #scroll-car { display: block; width: 54px; right: 6px; opacity: 0.9; }
}

/* ── 404-Seite ──────────────────────────────── */
.error-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(30, 167, 217, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  padding: 140px 28px 80px;
  text-align: center;
}
.error-hero .code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--cyan);
  margin-bottom: 10px;
}
.error-hero h1 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.error-hero p { color: var(--text-soft); max-width: 440px; margin: 0 auto 30px; }
.error-hero .hero-actions { justify-content: center; }

/* ============================================================
   v3.2 — Auto-Proportionen korrigiert (Bild zugeschnitten 216×477)
   WICHTIG: height:auto, sonst verzerren die HTML-Attribute
   ============================================================ */
.hero-car { width: min(235px, 60%); height: auto; }
.hero-glow { width: 320px; height: 320px; }
#scroll-car { width: 58px; }
#scroll-car img { width: 100%; height: auto; }

@media (max-width: 1024px) {
  .hero-car { width: min(200px, 55%); height: auto; }
  .hero-glow { width: 240px; height: 240px; }
  #scroll-car { width: 46px; }
}

@media (max-width: 720px) {
  .hero-car { width: min(170px, 55%); height: auto; }
  #scroll-car { display: block; width: 36px; right: 5px; opacity: 0.9; }
}
