/* ==========================================================================
   Karosserie Patschnik — Design System
   Apple-inspired: refined, calm, generous whitespace, SF system type,
   neutral palette with red brand character.
   ========================================================================== */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", "Segoe UI", Roboto, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(200,16,46,.15); }

/* ── DESIGN TOKENS ── */
:root {
  /* Neutrals (Apple grays) */
  --ink:      #1D1D1F;   /* primary text */
  --text:     #1D1D1F;   /* alias for legacy inline styles */
  --muted:    #6E6E73;   /* secondary text */
  --bg:       #FFFFFF;
  --white:    #FFFFFF;
  --surface:  #F5F5F7;   /* soft section background */
  --surface2: #FAFAFC;

  /* Dark (brand moment) */
  --dark:     #0A0A0B;
  --navy:     #0A0A0B;   /* alias for legacy .section--dark / footer */
  --navy2:    #161618;

  /* Brand red */
  --red:      #C8102E;
  --red2:     #A50D25;
  --red-soft: rgba(200,16,46,.08);
  --red-tint: rgba(200,16,46,.12);

  /* Lines & shadows */
  --border:   rgba(0,0,0,.09);
  --hair:     rgba(0,0,0,.09);
  --shadow:   0 4px 30px rgba(0,0,0,.06);
  --shadow-lg:0 20px 60px rgba(0,0,0,.10);

  /* Shape & rhythm */
  --radius:    18px;
  --radius-lg: 24px;
  --pill:      980px;
  --maxw:      1080px;
  --section-y: clamp(80px, 11vw, 136px);
  --pad-x:     clamp(20px, 6vw, 40px);
}

/* ── SHARED PRIMITIVES ── */
.section-inner,
.nav-inner,
.hero-content,
.page-hero-inner,
.footer-grid,
.footer-bottom,
.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ── TOPBAR (removed for clean Apple header) ── */
.topbar { display: none; }

/* ── HEADER / NAV (glass) ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  border-bottom-color: var(--hair);
}
.nav-inner {
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  height: 58px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img img { width: 116px; height: auto; display: block; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
  color: var(--ink); font-size: 14px; font-weight: 400;
  padding: 8px 14px; border-radius: var(--pill);
  transition: color .2s, background .2s; letter-spacing: -.01em;
}
.nav-link:hover { color: #000; background: rgba(0,0,0,.05); }
.nav-link.active { color: #000; font-weight: 500; }
.nav-tel {
  display: flex; align-items: center; gap: 6px;
  color: var(--muted) !important; font-size: 13px !important;
  margin-left: 6px; padding-left: 16px !important;
  border-left: 1px solid var(--hair);
}
.nav-tel svg { width: 14px; height: 14px; }
.nav-cta {
  background: var(--red); color: #fff !important; font-weight: 500 !important;
  padding: 8px 18px !important; border-radius: var(--pill) !important;
  margin-left: 10px; transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--red2) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  margin: 5px 0; border-radius: 2px; transition: all .3s ease;
}
.nav-mobile { display: none; }

/* ── BUTTONS (Apple pill) ── */
.btn-red, .btn-outline, .btn-red-sm {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: none; cursor: pointer; font-family: inherit;
  font-weight: 500; letter-spacing: -.01em; white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s, border-color .2s;
}
.btn-red {
  background: var(--red); color: #fff;
  padding: 13px 26px; border-radius: var(--pill); font-size: 16px;
}
.btn-red:hover { background: var(--red2); transform: translateY(-1px); }
.btn-red svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-outline {
  background: rgba(255,255,255,.10); color: #fff;
  padding: 13px 26px; border-radius: var(--pill); font-size: 16px;
  border: 1px solid rgba(255,255,255,.28);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,.18); transform: translateY(-1px); }
.btn-outline svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-red-sm {
  background: var(--red); color: #fff;
  padding: 10px 20px; border-radius: var(--pill); font-size: 14px;
}
.btn-red-sm:hover { background: var(--red2); transform: translateY(-1px); }
.btn-red-sm svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Ghost link button on light backgrounds */
.btn-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--surface); color: var(--ink);
  padding: 13px 26px; border-radius: var(--pill); font-size: 16px; font-weight: 500;
  transition: background .2s, transform .2s; cursor: pointer; font-family: inherit; border: none;
}
.btn-light:hover { background: #ececef; transform: translateY(-1px); }

/* ── HERO (brand moment) ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 86vh; display: flex; align-items: center;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/images/hero-car.png') center/cover no-repeat;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(10,10,11,.94) 0%,
      rgba(10,10,11,.82) 34%,
      rgba(10,10,11,.42) 62%,
      rgba(10,10,11,.10) 100%),
    linear-gradient(0deg, rgba(10,10,11,.55), rgba(10,10,11,0) 45%);
}
.hero-topline { display: none; }
.hero-content { position: relative; z-index: 2; padding: 120px var(--pad-x) 96px; width: 100%; }
.hero-inner { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500;
  letter-spacing: -.01em; padding: 7px 16px; border-radius: var(--pill);
  margin-bottom: 26px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px rgba(200,16,46,.9); }
/* Prominent offer badge (e.g. Versicherungsschaden hero) */
.hero-badge--offer {
  background: var(--red); border-color: var(--red);
  color: #fff; font-size: 15px; font-weight: 600;
  padding: 10px 22px; letter-spacing: -.005em;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(200,16,46,.38);
}
.hero-badge--offer strong { font-weight: 700; }
.hero-badge--offer .hero-badge-dot { background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.95); }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.75rem); font-weight: 600; color: #fff;
  line-height: 1.04; letter-spacing: -.035em; margin-bottom: 22px;
}
.hero h1 em { color: #FF4B63; font-style: normal; }
.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.72);
  line-height: 1.5; margin-bottom: 38px; max-width: 500px; font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--bg); padding: 30px var(--pad-x);
  display: flex; justify-content: center; align-items: center;
  gap: 10px 0; flex-wrap: wrap;
  border-bottom: 1px solid var(--hair);
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  color: var(--muted); font-size: 14px; font-weight: 500; letter-spacing: -.01em;
  padding: 6px 26px;
}
.trust-item + .trust-item { border-left: 1px solid var(--hair); }
.trust-item svg { width: 17px; height: 17px; flex-shrink: 0; stroke: var(--red); }

/* ── SECTION WRAPPERS ── */
.section { padding: var(--section-y) var(--pad-x); }
.section--dark    { background: var(--dark); }
.section--surface { background: var(--surface); }
.section--white   { background: var(--bg); }

.section-eyebrow {
  font-size: 1.0625rem; font-weight: 600; letter-spacing: -.01em;
  text-transform: none; color: var(--red); margin-bottom: 10px;
}
.section-eyebrow--light { color: #FF4B63; }
.section-heading {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 600; color: var(--ink);
  letter-spacing: -.025em; line-height: 1.08; margin-bottom: 16px; max-width: 20ch;
}
.section-heading--light { color: #fff; }
.section-sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.2rem); color: var(--muted); line-height: 1.55;
  margin-bottom: 56px; max-width: 46ch; font-weight: 400;
}
.section-sub--light { color: rgba(255,255,255,.65); }

/* Center helper for CTA sections that use inline centering */
.section--dark .section-inner[style*="center"] .section-sub,
.section--dark .section-inner[style*="center"] .section-heading { max-width: none; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--surface); border-radius: var(--radius); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: #fff; }
.svc-icon {
  width: 52px; height: 52px; background: var(--red-soft);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--red); }
.svc-card h3 { font-size: 1.1875rem; font-weight: 600; color: var(--ink); margin-bottom: 9px; line-height: 1.25; letter-spacing: -.02em; }
.svc-card p { font-size: .95rem; color: var(--muted); line-height: 1.55; }
.svc-card .svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .95rem; color: var(--red); font-weight: 500; margin-top: 16px;
  transition: gap .2s;
}
.svc-card:hover .svc-link { gap: 9px; }

/* ── LEISTUNGEN IMAGE CARDS ── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.leistung-card {
  background: var(--bg); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--hair);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.leistung-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.leistung-card-img { height: 210px; overflow: hidden; position: relative; }
.leistung-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.leistung-card:hover .leistung-card-img img { transform: scale(1.05); }
.leistung-card-body { padding: 26px 26px 28px; }
.leistung-card-body h3 { font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; letter-spacing: -.02em; }
.leistung-card-body p { font-size: 1rem; color: var(--muted); line-height: 1.55; margin-bottom: 18px; }

/* ── STATS ROW ── */
.stats-row { background: var(--surface); padding: clamp(56px, 8vw, 88px) var(--pad-x); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num {
  font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 600; color: var(--red);
  letter-spacing: -.04em; line-height: 1; margin-bottom: 12px;
}
.stat-lbl { font-size: .95rem; color: var(--muted); line-height: 1.45; font-weight: 400; }

/* ── INSURANCE LOGOS (marquee) ── */
.ins-marquee {
  position: relative; overflow: hidden; margin-top: 8px;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.ins-logos { display: flex; gap: 56px; flex-wrap: wrap; align-items: center; justify-content: center; }
.ins-marquee.is-animated .ins-logos {
  flex-wrap: nowrap; width: max-content; justify-content: flex-start;
  animation: insScroll 72s linear infinite; will-change: transform;
}
.ins-marquee.is-animated:hover .ins-logos { animation-play-state: paused; }
@keyframes insScroll { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.ins-logo {
  height: 88px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.ins-marquee.is-animated .ins-logo { flex-shrink: 0; }
.ins-logo img { width: auto; height: auto; max-height: 62px; max-width: 150px; object-fit: contain; }

/* CTA box inside dark section */
.cta-box {
  background: #fff; border: 1px solid var(--hair);
  border-radius: var(--radius); padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; margin-bottom: 48px; flex-wrap: wrap;
}
.cta-box p { color: var(--muted); font-size: 1rem; line-height: 1.55; }
.cta-box p strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 5px; font-size: 1.15rem; letter-spacing: -.02em; }
.section--dark .cta-box { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section--dark .cta-box p { color: rgba(255,255,255,.68); }
.section--dark .cta-box p strong { color: #fff; }

/* ── CONTACT GRID ── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.kontakt-info h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: -.02em; }
.kontakt-lead { font-size: 1.0625rem; color: var(--muted); margin-bottom: 34px; line-height: 1.55; }
.kd { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.kd-icon {
  width: 46px; height: 46px; background: var(--red-soft);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kd-icon svg { width: 19px; height: 19px; stroke: var(--red); }
.kd-lbl { font-size: .8125rem; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--muted); margin-bottom: 3px; }
.kd-val { font-size: 1.0625rem; font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
.kd-val a { color: var(--red); }
.map-embed {
  margin-top: 26px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--hair); height: 240px; background: var(--surface);
}
.map-embed iframe { display: block; width: 100%; height: 100%; }

/* ── FORM ── */
.form-card { background: var(--surface); border-radius: var(--radius-lg); padding: 40px; }
.form-card h3 { font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: -.02em; }
.form-card .form-sub { font-size: 1rem; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.f label { font-size: .875rem; font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
.f input, .f select, .f textarea {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 15px; font-size: 1rem; color: var(--ink);
  background: #fff; font-family: inherit; transition: border-color .2s, box-shadow .2s;
}
.f input::placeholder, .f textarea::placeholder { color: #A1A1A6; }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(200,16,46,.12);
}
.f textarea { min-height: 110px; resize: vertical; }
.f.error input, .f.error select, .f.error textarea { border-color: var(--red); }
.f .error-msg { font-size: .8125rem; color: var(--red); margin-top: 3px; display: none; }
.f.error .error-msg { display: block; }
.form-submit {
  width: 100%; background: var(--red); color: #fff; border: none;
  padding: 16px; border-radius: var(--pill); font-size: 1.0625rem; font-weight: 500;
  cursor: pointer; font-family: inherit; display: flex; align-items: center;
  justify-content: center; gap: 10px; transition: background .2s, transform .2s; margin-top: 8px;
}
.form-submit:hover { background: var(--red2); transform: translateY(-1px); }
.form-submit svg { width: 17px; height: 17px; }
.form-success {
  display: none; background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: 14px; padding: 20px 22px; text-align: center;
  color: #065f46; font-weight: 500; font-size: 1rem; margin-top: 18px;
}
.form-success.visible { display: block; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: rgba(0,0,0,.25); font-size: .8125rem; }
.breadcrumb span { font-size: .875rem; color: var(--ink); }

/* ── PAGE HERO (inner pages — light & airy) ── */
.page-hero {
  background: var(--surface);
  padding: clamp(72px, 10vw, 120px) var(--pad-x) clamp(56px, 8vw, 88px);
  position: relative; border-bottom: 1px solid var(--hair);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; color: var(--ink);
  letter-spacing: -.03em; line-height: 1.05; margin-bottom: 18px; max-width: 18ch;
}
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero p, .page-hero-sub {
  font-size: clamp(1.0625rem, 1.8vw, 1.3rem); color: var(--muted);
  max-width: 52ch; line-height: 1.5; margin-top: 4px; font-weight: 400;
}

/* ── SUBPAGE CONTENT ── */
.service-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.service-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-image img { width: 100%; height: auto; display: block; }
.service-text p { font-size: 1.0625rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.service-text p:last-child { margin-bottom: 0; }

/* ── INTRO 2-COL ── */
.intro-2col { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-text p { font-size: 1.0625rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.intro-text p:last-child { margin-bottom: 0; }

/* Subpage h2 (no class) */
.section--white h2:not([class]),
.section--surface h2:not([class]),
.section--dark h2:not([class]) {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 600;
  letter-spacing: -.025em; line-height: 1.12; margin-bottom: 28px;
}
.section--white h2:not([class]), .section--surface h2:not([class]) { color: var(--ink); }
.section--dark h2:not([class]) { color: #fff; }

/* Services checklist */
.services-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0 28px; margin-top: 10px;
}
.services-list li {
  display: flex; align-items: center; gap: 13px;
  font-size: 1.0625rem; color: var(--ink); font-weight: 400;
  padding: 15px 0; border-bottom: 1px solid var(--hair);
}
.services-list li::before {
  content: '';
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}

/* Related cards */
.related-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.related-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, background .3s;
  display: block;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: #fff; }
.related-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 9px; letter-spacing: -.02em; }
.related-card p { font-size: 1rem; color: var(--muted); line-height: 1.55; }

/* CTA button group */
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* Impressum / Datenschutz prose */
.section-inner h2:not([class]) { font-size: clamp(1.35rem, 2.2vw, 1.75rem); font-weight: 600; color: var(--ink); letter-spacing: -.02em; margin: 48px 0 14px; }
.section-inner h2:not([class]):first-child { margin-top: 0; }
.section-inner h3 { font-size: 1.15rem; font-weight: 600; color: var(--ink); margin: 32px 0 10px; letter-spacing: -.01em; }
.section-inner p { font-size: 1.0625rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.section-inner ul { margin: 0 0 18px 22px; }
.section-inner ul li { font-size: 1.0625rem; color: var(--muted); line-height: 1.7; margin-bottom: 7px; }

/* ── FAQ ── */
.faq-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
.faq-item { border-bottom: 1px solid var(--hair); padding: 24px 0; break-inside: avoid; }
.faq-q {
  font-size: 1.1875rem; font-weight: 600; color: var(--ink); margin-bottom: 0;
  cursor: pointer; display: flex; justify-content: space-between; align-items: start; gap: 14px;
  letter-spacing: -.02em; transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-q svg { width: 20px; height: 20px; stroke: var(--red); flex-shrink: 0; margin-top: 2px; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { font-size: 1.0625rem; color: var(--muted); line-height: 1.65; display: none; padding-top: 14px; }
.faq-item.open .faq-a { display: block; }

/* ── TIMELINE (Roter Faden) ── */
.timeline { margin-top: 56px; }
.timeline-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.timeline-track::before {
  content: ''; position: absolute; top: 27px;
  left: calc(100% / 6); right: calc(100% / 6); height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(200,16,46,.4) 50%, var(--red) 100%);
  transform-origin: left center; transform: scaleX(0);
  transition: transform 1s cubic-bezier(.22,1,.36,1) .25s;
}
.timeline-track.line-in::before { transform: scaleX(1); }
.timeline-node { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 600; color: #fff; letter-spacing: -.02em;
  box-shadow: 0 0 0 6px rgba(200,16,46,.10); margin-bottom: 30px; flex-shrink: 0;
  position: relative; z-index: 2; transition: box-shadow .3s, transform .3s;
}
.timeline-node:hover .timeline-dot { transform: scale(1.06); box-shadow: 0 0 0 9px rgba(200,16,46,.15); }
.timeline-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius); padding: 30px 26px; width: 100%;
  transition: background .3s, border-color .3s, transform .3s;
}
.timeline-node:hover .timeline-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.timeline-card h3 { font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 11px; line-height: 1.25; letter-spacing: -.02em; }
.timeline-card p { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* Timeline & Logos on light backgrounds */
.section--surface .timeline-card,
.section--white .timeline-card {
  background: var(--surface); border: 1px solid var(--hair); box-shadow: none;
}
.section--surface .timeline-card h3, .section--white .timeline-card h3 { color: var(--ink); }
.section--surface .timeline-card p, .section--white .timeline-card p { color: var(--muted); }

/* Selbstbehalt-Highlight Badge */
.sb-highlight {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--red-soft); border: 1px solid rgba(200,16,46,.18);
  color: var(--ink); border-radius: var(--pill); padding: 11px 20px;
  font-size: 1rem; margin-bottom: 40px;
}
.sb-highlight svg { width: 19px; height: 19px; stroke: var(--red); flex-shrink: 0; }
.sb-highlight strong { color: var(--red); font-weight: 600; }
.section--dark .sb-highlight { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.9); }
.section--dark .sb-highlight svg { stroke: #FF4B63; }
.section--dark .sb-highlight strong { color: #FF4B63; }

/* FAQ centered header */
.faq-section-header { text-align: center; margin-bottom: 48px; }
.faq-section-header .section-eyebrow,
.faq-section-header .section-heading { text-align: center; }
.faq-section-header .section-heading { margin-left: auto; margin-right: auto; }

/* ── VALUES GRID (Über uns) ── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 12px;
}
.value-card {
  background: #fff; border: 1px solid var(--hair); border-radius: 18px;
  padding: 38px 34px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(10,10,11,.09);
  border-color: rgba(200,16,46,.22);
}
.value-icon {
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  background: var(--red-soft); border-radius: 15px; margin-bottom: 24px;
}
.value-icon svg { width: 27px; height: 27px; stroke: var(--red); }
.value-card h3 {
  font-size: 1.3rem; font-weight: 600; color: var(--ink);
  letter-spacing: -.02em; margin-bottom: 12px;
}
.value-card p { font-size: 1rem; color: var(--muted); line-height: 1.68; }
@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-card { padding: 30px 26px; }
}

/* ── SCROLL ANIMATIONS ── */
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { animation: heroFadeUp .8s cubic-bezier(.22,1,.36,1) .05s both; }
.hero h1    { animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) .16s both; }
.hero-desc  { animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) .30s both; }
.hero-btns  { animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) .44s both; }

.anim-ready {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--anim-delay, 0ms);
}
.anim-ready.anim-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .anim-ready { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-badge, .hero h1, .hero-desc, .hero-btns { animation: none; }
  .timeline-track::before { transition: none !important; }
  .ins-marquee.is-animated .ins-logos { animation: none !important; flex-wrap: wrap; width: auto; justify-content: center; }
  .hero-bg { transform: none; }
}

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: clamp(56px, 8vw, 80px) var(--pad-x) 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 44px; margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand .fb-name { font-size: 1.0625rem; font-weight: 600; color: #fff; margin-bottom: 6px; letter-spacing: -.02em; }
.footer-brand .fb-claim { font-size: .875rem; color: rgba(255,255,255,.4); letter-spacing: -.01em; margin-bottom: 20px; }
.footer-brand p { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.8; }
.footer-brand p a { transition: color .2s; }
.footer-brand p a:hover { color: #fff; }
.footer-col h4 {
  font-size: .8125rem; font-weight: 600; text-transform: none;
  letter-spacing: -.01em; color: rgba(255,255,255,.4); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p, .footer-bottom a { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-2col { grid-template-columns: 1fr; gap: 40px; }
  .intro-img { aspect-ratio: 16 / 9; }
  .faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo-img img { width: 104px; }

  .nav-mobile {
    display: block;
    background: rgba(255,255,255,.92);
    -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid var(--hair);
    padding: 12px var(--pad-x) 24px;
  }
  .nav-mobile a {
    display: block; color: var(--ink); font-size: 1.2rem; font-weight: 400;
    padding: 16px 0; border-bottom: 1px solid var(--hair); letter-spacing: -.02em;
  }
  .nav-mobile .m-nav-cta {
    display: block; background: var(--red); color: #fff !important;
    text-align: center; font-weight: 500 !important; font-size: 1.0625rem !important;
    padding: 15px !important; border-radius: var(--pill); margin-top: 18px; border: none;
  }

  .hero { min-height: 82vh; }
  .hero-content { padding: 100px var(--pad-x) 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-red, .hero-btns .btn-outline { width: 100%; }

  .trust-item { border-left: none !important; padding: 5px 16px; }
  .trust-item + .trust-item { border-top: none; }

  .ins-logo { height: 66px; }
  .ins-logo img { max-height: 46px; max-width: 118px; }
  .ins-logos { gap: 40px; }
  .services-list { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn-red, .cta-btns .btn-outline, .cta-btns .btn-light { width: 100%; }

  /* Timeline vertical */
  .timeline-track { grid-template-columns: 1fr; gap: 0; }
  .timeline-track::before {
    top: 0; bottom: 0; left: 27px; right: auto; width: 2px; height: 100%;
    background: linear-gradient(180deg, var(--red), rgba(200,16,46,.25));
    transform-origin: top center; transform: scaleY(0);
    transition: transform 1s cubic-bezier(.22,1,.36,1) .25s;
  }
  .timeline-track.line-in::before { transform: scaleY(1); }
  .timeline-node { flex-direction: row; text-align: left; align-items: flex-start; gap: 22px; padding-bottom: 32px; }
  .timeline-node:last-child { padding-bottom: 0; }
  .timeline-dot { margin-bottom: 0; flex-shrink: 0; }
  .timeline-card { flex: 1; }
}

@media (max-width: 460px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .nav-logo-img img { width: 96px; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3rem); }
}
