/* =========================================================
   Garten- und Objektpflege Ali Ucar – Landingpage Styles
   Brand: Tannengrün #1e4432 · Waldgrün #2f7d54 · Gold #c3a976
   (Tannengrün + Gold exakt aus dem Ali-Ucar-Logo gesampelt)
   ========================================================= */

:root {
  --dark: #1b4232;          /* dunkle Basis (Hero-Overlay, CTA-Band, Quiz, Footer) — Logo-Tannengrün */
  --dark-deep: #0e2519;     /* tiefes Grün (Footer) */
  --accent: #2f7d54;        /* Waldgrün (CTAs / Akzente / Häkchen) */
  --accent-bright: #d9c18c; /* Logo-Gold hell (Hero-USPs, Quiz-Progress) */
  --gold: #c3a976;          /* Logo-Gold */
  --gold-deep: #8f6f3a;     /* dunkles Gold (Eyebrows auf Weiß) */
  --ink: #14201a;
  --text: #45524a;
  --muted: #6e7d73;
  --line: #e3eae4;
  --bg: #ffffff;
  --bg-alt: #f4f8f5;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 16px rgba(14, 37, 25, .07);
  --shadow: 0 8px 26px rgba(14, 37, 25, .10);
  --shadow-btn: 0 10px 24px rgba(47, 125, 84, .34);
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { color: var(--ink); margin: 0; font-weight: 600; line-height: 1.2; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1700px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-weight: 600; cursor: pointer;
  border: none; border-radius: 10px; padding: 13px 22px;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.99); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: #256644; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 9px 14px; font-size: 14px; border-radius: 9px; }
.btn-block { width: 100%; justify-content: center; }

.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 2px 14px rgba(14,37,25,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
/* Header: breiter als der Content (1120px), aber nicht volle Fensterbreite */
.site-header .container-wide { max-width: 1380px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.2px; }
.logo-text small { font-size: 10.5px; font-weight: 600; color: var(--gold-deep); text-transform: uppercase; letter-spacing: 1.4px; }
.header-actions { align-items: center; gap: 14px; }
.main-nav { align-items: center; gap: 22px; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.main-nav a:hover { color: var(--accent); }
.phone-link { font-size: 15px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.phone-link i { color: var(--accent); }
.icon-btn {
  width: 40px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 27px; color: var(--accent); background: none;
}
.icon-btn-phone, .icon-btn-wa { color: var(--accent); }
.logo-img-white { display: none; }

/* Desktop: Header transparent über dem Hero, weiß nach Scroll */
@media (min-width: 821px) {
  .header-hero {
    position: fixed; left: 0; right: 0; top: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: background .25s ease, box-shadow .25s ease;
  }
  .header-hero .header-inner { height: 76px; }
  .header-hero .main-nav { gap: 30px; }
  .header-hero .main-nav a { color: #fff; }
  .header-hero .main-nav a:hover { color: var(--accent-bright); }
  .header-hero .phone-link { color: #fff; }
  .header-hero .phone-link i { color: var(--accent-bright); }
  .header-hero .logo-text strong { color: #fff; }
  .header-hero .logo-text small { color: var(--accent-bright); }
  .header-hero .logo-img-color { display: none; }
  .header-hero .logo-img-white { display: block; }

  .header-hero.is-scrolled {
    background: rgba(255,255,255,.94);
    backdrop-filter: saturate(180%) blur(8px);
    box-shadow: 0 2px 14px rgba(14,37,25,.08);
  }
  .header-hero.is-scrolled .main-nav a { color: var(--ink); }
  .header-hero.is-scrolled .main-nav a:hover { color: var(--accent); }
  .header-hero.is-scrolled .phone-link { color: var(--ink); }
  .header-hero.is-scrolled .phone-link i { color: var(--accent); }
  .header-hero.is-scrolled .logo-text strong { color: var(--ink); }
  .header-hero.is-scrolled .logo-text small { color: var(--gold-deep); }
  .header-hero.is-scrolled .logo-img-color { display: block; }
  .header-hero.is-scrolled .logo-img-white { display: none; }

  /* fixer Header überlappt den Hero – Inhalt tiefer starten */
  .header-hero ~ main .hero-split { padding-top: 148px; }
}

/* ---------- Hero (Variante B: Split – Info links, Formular rechts, Video-BG) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: url('../images/au-hero.webp') center/cover no-repeat;
  background-color: #143325;
  color: #fff;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(1100px 560px at 84% -12%, rgba(195,169,118,.22), transparent 62%),
    linear-gradient(115deg, rgba(9,26,18,.94) 0%, rgba(15,42,30,.87) 52%, rgba(27,66,50,.72) 100%);
}
.hero-split { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-split {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 48px; align-items: center;
  padding-top: 60px; padding-bottom: 56px;
}
.hero-content { position: relative; text-align: left; }
.hero-kicker {
  font-size: 14px; font-weight: 700; color: var(--accent-bright);
  text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 10px;
}
.hero-title { font-size: clamp(27px, 3.6vw, 42px); color: #fff; font-weight: 700; letter-spacing: -.5px; line-height: 1.14; margin-bottom: 16px; }
.hero-title .h1-hl { color: var(--accent-bright); }
/* Rotierendes Keyword */
.hero-rotate { display: inline-block; transition: opacity .38s ease, transform .38s ease; }
.hero-rotate.is-out { opacity: 0; transform: translateY(-10px); }
@media (prefers-reduced-motion: reduce) { .hero-rotate { transition: opacity .2s ease; } .hero-rotate.is-out { transform: none; } }
.hero-sub { font-size: clamp(13px, 1.55vw, 15px); color: #d5e0d5; max-width: 520px; margin: 0 0 22px; }
.hero-usps {
  display: flex; flex-direction: column; align-items: flex-start; gap: 11px;
  margin: 0 0 26px;
}
.hero-usps li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 15px; font-weight: 500; color: #fff;
}
.hero-usps i { color: var(--accent-bright); font-size: 19px; flex-shrink: 0; margin-top: 1px; }
.hero-cta { display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; }
.hero-trust { margin: -4px 0 20px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.88); }
.hero-trust .stars { letter-spacing: 1px; margin-right: 4px; }

.hero-form { width: 100%; }
.hero-form .quiz { max-width: 470px; margin-left: auto; width: 100%; box-shadow: 0 24px 60px rgba(5,15,10,.45); position: relative; }

/* 10 %-Rabatt-Badge am Formular */
.form-badge {
  position: absolute; top: -22px; right: -16px; z-index: 6;
  width: 84px; height: 84px; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #e7d3a4, var(--gold) 62%, #a98a4f 100%);
  color: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(143,111,58,.42);
  transform: rotate(-8deg);
  animation: badgePulse 2.4s ease-in-out infinite;
}
.form-badge-pct { font-size: 25px; font-weight: 800; letter-spacing: -.5px; }
.form-badge-lbl { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; margin-top: 3px; line-height: 1.15; }
@keyframes badgePulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.07); }
}
@media (prefers-reduced-motion: reduce) { .form-badge { animation: none; } }
@media (max-width: 600px) {
  .form-badge { width: 66px; height: 66px; top: -16px; right: -6px; }
  .form-badge-pct { font-size: 19px; }
  .form-badge-lbl { font-size: 8px; }
  .hero-form .quiz-head { padding-right: 56px; }
}
.quiz-head { text-align: center; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.quiz-head strong { display: block; font-size: 17.5px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.quiz-head span { font-size: 12.5px; color: #c0cec2; }

/* Hero-Formular: helle Karte (weiß) — Kontakt-Quiz bleibt dunkel */
.hero-form .quiz { background: #fff; border: none; }
.hero-form .quiz-head { border-bottom: 1px solid var(--line); }
.hero-form .quiz-head strong { color: var(--dark); }
.hero-form .quiz-head span { color: var(--muted); }
.hero-form .q-step-label { color: var(--muted); }
.hero-form .q-pct { color: var(--accent); }
.hero-form .quiz-bar { background: #e6eee8; }
.hero-form .q-bar { background: var(--accent); }
.hero-form .q-title { color: var(--ink); }
.hero-form .q-opt { background: var(--bg-alt); border: 1px solid var(--line); color: var(--ink); }
.hero-form .q-opt:hover { background: #eaf4ec; border-color: var(--accent); }
.hero-form .q-opt i { color: var(--accent); }
.hero-form .q-field { background: var(--bg-alt); border: 1px solid #dfe8e1; color: var(--ink); }
.hero-form .q-field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,125,84,.15); }
.hero-form .q-back { color: var(--muted); }
.hero-form .quiz .form-consent { color: var(--text); }
.hero-form .quiz .form-consent a { color: var(--accent); }
.hero-form .quiz .form-consent input { accent-color: var(--accent); }
.hero-form .q-hint, .hero-form .q-note { color: var(--muted); }
.hero-form .quiz-done { color: var(--ink); }
.hero-form .quiz-done i { color: var(--accent); }
.hero-form .quiz-done strong { color: var(--ink); }
.hero-form .quiz-done p { color: var(--text); }
.hero-form .quiz-done-urgent { border-top: 1px solid var(--line); }
.hero-form .quiz-done-urgent-label { color: var(--muted); }
.hero-form .quiz-urgent-btn { background: var(--dark); }
.hero-form .quiz-urgent-btn:hover { background: #26593f; }
.hero-form .quiz-urgent-wa { background: #25D366; }
.hero-form .quiz-urgent-wa:hover { background: #1ebe5d; }

/* Google-Trust-Zeile unten im Hero-Formular */
.quiz-google {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
}
.quiz-google-g { width: 20px; height: 20px; flex-shrink: 0; }
.quiz-google-stars { color: #FBBC05; font-size: 13.5px; letter-spacing: 1.5px; line-height: 1; }
.quiz-google-text { font-size: 12.5px; color: var(--muted); }
.quiz-google-text strong { color: var(--ink); font-weight: 700; }

@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; gap: 30px; padding-top: 44px; padding-bottom: 44px; }
  .hero-form .quiz { margin: 0 auto; max-width: 480px; }
}
@media (max-width: 600px) {
  .hero {
    background: url('../images/au-hero-mobile.webp') center/cover no-repeat;
    background-color: #143325;
  }
}

/* ---------- Starke Partner (Marken-Leiste) ---------- */
.partnerbar { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 26px 0 30px; }
.partner-title {
  text-align: center; font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 2.2px; margin-bottom: 18px;
}
.partner-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 20px 48px; flex-wrap: wrap;
}
.partner-logo-img {
  width: auto; display: block;
  opacity: .95;
  transition: opacity .18s ease, transform .12s ease;
  user-select: none;
}
.partner-logo-img:hover { opacity: 1; transform: translateY(-1px); }
.plg-stihl    { height: 26px; }
.plg-husq     { height: 30px; }
.plg-gardena  { height: 28px; }
.plg-kaercher { height: 21px; }
.plg-hunter   { height: 25px; }
.plg-compo    { height: 50px; }
@media (max-width: 600px) {
  .partnerbar { padding: 22px 0 24px; }
  .partner-logos { gap: 16px 24px; }
  .plg-stihl { height: 20px; }
  .plg-husq { height: 24px; }
  .plg-gardena { height: 22px; }
  .plg-kaercher { height: 16px; }
  .plg-hunter { height: 20px; }
  .plg-compo { height: 40px; }
}

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
main section[id] { scroll-margin-top: 84px; }
.section-tight { padding: 14px 0 42px; }
.section-alt { background: var(--bg-alt); }
.eyebrow { display: block; text-align: center; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 600; color: var(--gold-deep); margin-bottom: 10px; }
.section-title { text-align: center; font-size: clamp(22px, 3.5vw, 28px); margin-bottom: 6px; }
.section-sub { text-align: center; color: var(--muted); font-size: 15px; margin-bottom: 32px; }
/* Kontakt-Headline auf Desktop größer */
#angebot .section-title { font-size: clamp(28px, 4vw, 42px); }

/* ---------- Dekorative Hintergrundakzente ---------- */
#faq { position: relative; overflow: hidden; }
#faq > .container { position: relative; z-index: 1; }
#faq::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 55%;
  background-image: radial-gradient(rgba(47,125,84,.18) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at right center, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at right center, black 25%, transparent 72%);
}

#bewertungen { position: relative; overflow: hidden; }
#bewertungen > .container { position: relative; z-index: 1; }
#bewertungen::before {
  content: '';
  position: absolute; top: 10px; right: 10px;
  width: 200px; height: 160px;
  background-image: radial-gradient(rgba(195,169,118,.34) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at top right, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 20%, transparent 75%);
}

.grid { display: grid; gap: 18px; }
.grid-cards { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Leistungs-Karten ---------- */
.trade-card { overflow: hidden; }
.trade-img {
  height: 200px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; background-color: #1b4232;
  position: relative; overflow: hidden; padding: 16px;
}
.trade-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(8,26,17,.92) 0%, rgba(8,26,17,.42) 45%, rgba(8,26,17,.04) 100%); pointer-events:none;
}
.trade-img h3 { color: #fff; font-size: 19px; position: relative; z-index: 1; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.trade-body { padding: 18px; }
.trade-body p { margin-bottom: 14px; font-size: 14px; }
.checks li { font-size: 13.5px; color: var(--ink); margin-bottom: 8px; padding-left: 26px; position: relative; }
.checks li::before {
  content: "\ea5e"; font-family: "tabler-icons"; color: var(--accent);
  position: absolute; left: 0; top: 1px; font-size: 16px;
}

/* ---------- CTA-Band vollflächig mit Foto + Overlay ---------- */
.section-cta-photo { position: relative; padding: 68px 0; background: linear-gradient(115deg, rgba(9,26,18,.94) 0%, rgba(13,36,25,.82) 44%, rgba(27,66,50,.5) 100%), url('../images/au-cta-band.webp') center/cover no-repeat; background-color: #1b4232; overflow: hidden; }
.section-cta-photo::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px 320px at 88% 15%, rgba(195,169,118,.26), transparent 66%); }
.cta-photo-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-photo-text { max-width: 560px; }
.section-cta-photo h2 { color: #fff; font-size: clamp(23px, 3.1vw, 31px); margin-bottom: 8px; }
.section-cta-photo p { color: #dfe9df; font-size: 15.5px; max-width: 480px; }
.cta-band-actions { display: flex; flex-direction: row; gap: 12px; align-items: center; flex-shrink: 0; }
@media (max-width: 760px) {
  .section-cta-photo { padding: 50px 0; }
  .cta-photo-inner { flex-direction: column; text-align: center; align-items: center; gap: 22px; }
  .section-cta-photo p { margin: 0 auto; }
  .section-cta-photo .cta-band-actions { flex-direction: column; width: 100%; }
  .section-cta-photo .cta-band-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Vergleich ---------- */
.compare-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-bottom: 30px; }
.compare-card { padding: 26px; }
.compare-good { border: 2px solid var(--accent); }
.compare-bad { background: #f8f8f6; box-shadow: none; border: 1px solid #e5e8e2; }
.compare-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; min-height: 52px; }
.compare-head h3 { font-size: 18px; }
.compare-logo { height: 62px; width: auto; display: block; }
.compare-head i { font-size: 24px; color: #9aa89e; }
.compare-bad .compare-head h3 { color: #6f7a70; }
.compare-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; margin-bottom: 13px; color: var(--ink); }
.compare-list i { font-size: 20px; flex-shrink: 0; }
.compare-good .compare-list i { color: var(--accent); }
.compare-bad .compare-list { color: #6f7a70; }
.compare-bad .compare-list li { color: #6f7a70; }
.compare-bad .compare-list i { color: #c2705b; }

/* ---------- Vorher / Nachher (interaktiver Slider, 3 Spalten) ---------- */
.ba-card { overflow: hidden; margin: 0; }
.ba-grid .ba-slider { height: 290px; }
.ba-slider {
  position: relative; width: 100%; height: 340px; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0; background: #1d2420;
  touch-action: none; cursor: ew-resize; user-select: none; -webkit-user-select: none;
}
.ba-layer { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-tag {
  position: absolute; top: 12px; z-index: 3; pointer-events: none;
  font-size: 12px; font-weight: 600; color: #fff; padding: 4px 11px; border-radius: 7px;
}
.ba-tag-before { left: 12px; background: rgba(0,0,0,.6); }
.ba-tag-after { right: 12px; background: var(--accent); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 4; pointer-events: none; box-shadow: 0 0 10px rgba(0,0,0,.35); }
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--dark);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.28);
}
.ba-card figcaption { padding: 14px 16px; font-size: 14px; font-weight: 600; color: var(--ink); }

/* ---------- 3 Schritte (durchgehende Flow-Timeline) ---------- */
.section-steps { background: linear-gradient(160deg, #f2f8f3 0%, #e6f0e8 100%); }
.steps-flow {
  display: flex; align-items: flex-start; justify-content: space-between;
  max-width: 1000px; margin: 54px auto 46px;
  position: relative;
}
.step { flex: 1 1 0; text-align: center; position: relative; z-index: 1; }

/* --- Icon-Knoten (kein Pulsieren) --- */
.step-node {
  position: relative; z-index: 2;
  width: 88px; height: 88px; margin: 0 auto 20px;
  border-radius: 50%; background: #fff;
  border: 2px solid rgba(47,125,84,.28);
  box-shadow: 0 10px 26px rgba(14,37,25,.12);
  display: flex; align-items: center; justify-content: center;
}
.step-num {
  position: absolute; top: -6px; right: 8px; z-index: 3;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--dark); color: #fff; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(14,37,25,.28);
}
.step-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.step-text { font-size: 14.5px; color: #4e5b52; line-height: 1.65; margin: 0 auto; max-width: 260px; }

/* --- Eine durchgehende Schiene HINTER den Knoten + genau 1 wandernder Punkt --- */
/* Position/Ausrichtung setzt JS (positionStepsRail) exakt auf Knoten-Mitte→Knoten-Mitte */
.steps-rail { position: absolute; z-index: 0; pointer-events: none; }
.rail-track {
  position: absolute; inset: 0; border-radius: 4px;
}
.rail-h .rail-track {
  background: linear-gradient(90deg, rgba(47,125,84,.2), rgba(195,169,118,.36), rgba(47,125,84,.2));
  background-size: 200% 100%;
  animation: railFlowH 3.6s linear infinite;
}
.rail-v .rail-track {
  background: linear-gradient(180deg, rgba(47,125,84,.2), rgba(195,169,118,.36), rgba(47,125,84,.2));
  background-size: 100% 200%;
  animation: railFlowV 3.6s linear infinite;
}
.rail-dot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #6db98a, var(--accent) 60%);
  box-shadow: 0 0 0 4px rgba(47,125,84,.16), 0 0 14px 3px rgba(47,125,84,.55);
}
.rail-h .rail-dot { top: 50%; transform: translate(-50%, -50%); animation: railDotH 3.6s cubic-bezier(.55,0,.45,1) infinite; }
.rail-v .rail-dot { left: 50%; transform: translate(-50%, -50%); animation: railDotV 3.6s cubic-bezier(.55,0,.45,1) infinite; }
@keyframes railFlowH { 0% { background-position: 200% 0; } 100% { background-position: 0 0; } }
@keyframes railFlowV { 0% { background-position: 0 200%; } 100% { background-position: 0 0; } }
@keyframes railDotH { 0% { left: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes railDotV { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

.steps-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.steps-cta-sub { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; margin: 0; }
.steps-cta-sub i { color: var(--accent); font-size: 16px; }

/* --- Mobil: Knoten senkrecht gestapelt, Schiene läuft von oben nach unten --- */
@media (max-width: 820px) {
  .steps-flow { flex-direction: column; align-items: center; max-width: 340px; margin: 40px auto 40px; gap: 44px; }
  .step { flex: 0 0 auto; }
  .step-node { margin-bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .rail-track, .rail-dot { animation: none; }
  .rail-dot { opacity: 0; }
}

/* ---------- Referenzen: gegenläufiges Ergebnis-Marquee ---------- */
.ref-marquee {
  margin-top: 8px; display: grid; gap: 18px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.ref-track { display: flex; width: max-content; }
.ref-set { display: flex; gap: 18px; padding-right: 18px; }
.rt-a { animation: refA 56s linear infinite; }
.rt-b { animation: refB 56s linear infinite; }
.ref-marquee:hover .ref-track { animation-play-state: paused; }
.ref-item { position: relative; flex: none; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ref-item img { width: min(430px, 74vw); aspect-ratio: 16/10; object-fit: cover; display: block; }
@keyframes refA { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes refB { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .rt-a, .rt-b { animation: none; } }
@media (max-width: 600px) {
  .ref-marquee { gap: 12px; }
  .ref-set { gap: 12px; padding-right: 12px; }
  .ref-item img { width: 250px; }
}

/* ---------- Bewertungen (modernes Bento-Grid, Google-Look) ---------- */
.reviews { background: var(--bg-alt); }
.rev-bento { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; margin-top: 8px; }
.rev-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 26px 20px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.rev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rev-g { position: absolute; top: 22px; right: 22px; width: 22px; height: 22px; }
.rev-stars { color: #FBBC05; font-size: 15px; letter-spacing: 2.5px; margin-bottom: 12px; }
.rev-quote { font-size: 14.5px; line-height: 1.65; color: var(--text); margin-bottom: 18px; }
.rev-person { display: flex; align-items: center; gap: 12px; margin-top: auto; margin-bottom: 14px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #6db98a);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.rev-avatar-b { background: linear-gradient(135deg, #1b4232, #2f7d54); }
.rev-avatar-c { background: linear-gradient(135deg, #8f6f3a, #c3a976); }
.rev-who { display: flex; flex-direction: column; line-height: 1.3; }
.rev-who strong { font-size: 14.5px; color: var(--ink); }
.rev-who span { font-size: 12.5px; color: var(--muted); }
.rev-verified { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 500; color: #5f6368; border-top: 1px solid var(--line); padding-top: 12px; }
.rev-verified i { color: #34A853; font-size: 15px; }

/* Featured-Bewertung (dunkel, spannt 2 Reihen) */
.rev-featured { grid-row: span 2; background: linear-gradient(150deg, #143527 0%, #1b4232 100%); border: none; justify-content: center; padding: 34px 30px 24px; overflow: hidden; }
.rev-featured::before {
  content: '\201C'; position: absolute; top: -26px; left: 18px;
  font-size: 150px; font-weight: 800; line-height: 1;
  color: rgba(195,169,118,.25); pointer-events: none;
}
.rev-featured .rev-stars { font-size: 17px; position: relative; }
.rev-featured .rev-quote { font-size: clamp(17px, 1.6vw, 20px); font-weight: 500; line-height: 1.6; color: #fff; position: relative; }
.rev-featured .rev-person { margin-top: 26px; }
.rev-featured .rev-verified { margin-top: auto; }
.rev-featured .rev-avatar { background: linear-gradient(135deg, #c3a976, #e3cd9a); color: #1b4232; }
.rev-featured .rev-who strong { color: #fff; }
.rev-featured .rev-who span { color: #c0cec2; }
.rev-featured .rev-verified { color: #c0cec2; border-top-color: rgba(255,255,255,.14); }
.rev-featured .rev-verified i { color: #6fd08c; }

/* Google-Rating-Kachel */
.rev-summary { align-items: center; text-align: center; justify-content: center; padding: 28px 22px; }
.rev-summary-g { width: 42px; height: 42px; margin-bottom: 12px; }
.rev-score { font-size: 46px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -1.5px; }
.rev-score-stars { color: #FBBC05; font-size: 19px; letter-spacing: 3px; margin: 8px 0 6px; }
.rev-score-note { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }
.rev-score-note strong { color: var(--ink); font-weight: 600; }
.rev-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  border: 1.5px solid var(--accent); border-radius: 30px; padding: 9px 16px;
  transition: background .15s ease, color .15s ease;
}
.rev-link:hover { background: var(--accent); color: #fff; }

@media (max-width: 980px) {
  .rev-bento { grid-template-columns: 1fr 1fr; }
  .rev-featured { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 600px) {
  .rev-bento { grid-template-columns: 1fr; }
  .rev-featured { grid-column: auto; }
}

/* ---------- Quiz ---------- */
.quiz { max-width: 460px; margin: 0 auto; background: var(--dark); border-radius: var(--radius-lg); padding: 24px; min-height: 300px; box-shadow: var(--shadow); position: relative; }
/* Google-Trust-Zeile auf der dunklen Kontakt-Quiz-Box */
.contact-right .quiz-google { border-top-color: rgba(255,255,255,.13); }
.contact-right .quiz-google-text { color: #cbd8cd; }
.contact-right .quiz-google-text strong { color: #fff; }
.quiz-logo-wrap { display: flex; justify-content: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.quiz-logo { height: 84px; width: auto; opacity: .98; }
.quiz-progress-head { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 12px; font-weight: 600; }
.q-step-label { color: #aebfb2; letter-spacing: 1px; }
.q-pct { color: var(--accent-bright); }
.quiz-bar { height: 5px; background: rgba(255,255,255,.12); border-radius: 4px; margin-bottom: 22px; }
.q-bar { height: 5px; width: 25%; background: var(--accent-bright); border-radius: 4px; transition: width .3s ease; }
.q-title { font-size: 18px; font-weight: 600; color: #fff; text-align: center; margin-bottom: 18px; }
.q-grid { display: grid; gap: 10px; }
.q-grid-2 { grid-template-columns: 1fr 1fr; }
.q-opt {
  cursor: pointer; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 11px; padding: 15px 10px; text-align: center; color: #fff; font-size: 14px;
  transition: background .15s ease, border-color .15s ease;
}
.q-opt:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.q-opt i { font-size: 24px; color: var(--accent-bright); display: block; margin-bottom: 6px; }
.q-field { width: 100%; height: 44px; border-radius: 9px; border: none; padding: 0 14px; font: inherit; font-size: 14px; }
.q-field-area { height: auto; padding: 12px 14px; }
.q-back { cursor: pointer; text-align: center; margin-top: 14px; font-size: 13px; color: #aebfb2; }
.q-hint { text-align: center; color: #cbd8cd; font-size: 13px; margin: -8px 0 16px; }
.q-note { text-align: center; color: #aebfb2; font-size: 11px; }
.quiz-done { text-align: center; padding: 28px 6px; color: #fff; }
.quiz-done i { font-size: 48px; color: var(--accent-bright); }
.quiz-done strong { display: block; font-size: 18px; margin: 10px 0 6px; }
.quiz-done p { color: #cbd8cd; font-size: 14px; }
.quiz-done-urgent { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.quiz-done-urgent-label { display: block; font-size: 12.5px; color: #aebfb2; margin-bottom: 14px; }
.quiz-done-urgent-btns { display: flex; justify-content: center; gap: 16px; }
.quiz-urgent-btn { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; transition: background .2s, transform .15s; }
.quiz-urgent-btn:hover { background: rgba(255,255,255,.2); transform: scale(1.08); }
.quiz-urgent-wa { background: #25D366; }
.quiz-urgent-wa:hover { background: #1ebe5d; }

/* ---------- Kontakt (2 Spalten) ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact-left h3 { font-size: 19px; margin-bottom: 8px; }
.contact-left > p { font-size: 14px; color: var(--text); margin-bottom: 18px; }
.contact-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.contact-option {
  display: flex; align-items: center; gap: 14px; padding: 13px 16px;
  background: #fff; border: 0.5px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease;
}
.contact-option:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.co-icon { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 21px; }
.co-icon-phone { background: var(--dark); }
.co-icon-mail { background: var(--accent); }
.co-icon-wa { background: #25D366; }
.co-text { display: flex; flex-direction: column; line-height: 1.3; }
.co-label { font-size: 12px; color: var(--muted); }
.co-value { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-right .quiz { max-width: none; margin: 0; }
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-right { order: -1; }
}

.contact-address-card { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.contact-address-card .ca-ic { width: 46px; height: 46px; border-radius: 11px; background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }
.contact-address-card .ca-lbl { font-size: 12px; color: var(--muted); }
.contact-address-card .ca-val { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.45; }
.contact-hours-line { margin-top: 12px; font-size: 13.5px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.contact-hours-line i { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { max-width: 580px; margin: 0 auto; }
.faq details { border-bottom: 1px solid #e4eae5; padding: 16px 0; }
.faq summary { cursor: pointer; list-style: none; font-size: 15px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq-plus { color: var(--accent); transition: transform .2s ease; flex-shrink: 0; }
.faq details[open] .faq-plus { transform: rotate(45deg); }
.faq details p { margin-top: 10px; font-size: 14px; color: var(--text); }

/* ---------- Finale CTA ---------- */
.section-final-cta { position: relative; background: linear-gradient(135deg, rgba(9,26,18,.90) 0%, rgba(13,36,25,.82) 55%, rgba(27,66,50,.78) 100%), url('../images/au-cta.webp') center/cover no-repeat; background-color: #1b4232; padding: 100px 0; overflow: hidden; }
.final-cta-overlay { position: absolute; inset: 0; background: radial-gradient(900px 460px at 78% 0%, rgba(195,169,118,.26), transparent 62%); }
.final-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.eyebrow-light { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.25); }
.final-cta-title { font-size: clamp(28px, 4.5vw, 48px); font-weight: 800; color: #fff; line-height: 1.15; margin: 14px 0 20px; }
.final-cta-sub { font-size: 17px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 38px; }
.final-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.final-cta-trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.final-cta-trust span { color: rgba(255,255,255,.8); font-size: 13.5px; display: flex; align-items: center; gap: 6px; }
.final-cta-trust i { color: var(--accent-bright); font-size: 16px; }
@media (max-width: 820px) {
  .section-final-cta { padding: 70px 0; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-trust { gap: 18px; flex-direction: column; align-items: center; }
  .final-cta-trust span { font-size: 16px; color: #fff; }
  .final-cta-trust i { font-size: 20px; color: #fff; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-deep); color: #b3c1b6; }
.footer-logo-wrap { margin-bottom: 30px; }
@media (max-width: 820px) { .footer-logo-wrap { margin-bottom: 20px; } }
.footer-logo { height: 94px; width: auto; display: block; opacity: .97; }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr 1.1fr; gap: 32px; padding: 40px 0 40px; }
.footer-col h3 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1.3px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col p { color: #b3c1b6; font-size: 14px; line-height: 1.5; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-contact-line { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-line i { color: var(--accent-bright); font-size: 18px; flex-shrink: 0; }
.footer-address { margin-top: 4px; }
.footer-hours div { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 8px; font-size: 14px; }
.footer-hours span:first-child { color: #d6dfd8; }
.footer-bottom-wrap { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; color: #8da093; font-size: 12.5px; padding: 16px 0; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 820px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* Footer-Logo mobil oben (über "Leistungen"), Desktop unverändert rechts */
.footer-logo-mobile { display: none; }
@media (max-width: 820px) {
  .footer-logo-mobile { display: flex; justify-content: flex-start; margin: 0 0 30px; }
  .footer-logo-mobile .footer-logo { height: 84px; }
  .footer-col-logo-hours .footer-logo-wrap { display: none; }
}

/* ---------- WhatsApp-Button mit Rabatt-Sprechblase ---------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 55;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.wa-fab.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-fab-bubble {
  background: #fff; color: var(--ink);
  font-size: 13.5px; font-weight: 600; line-height: 1.3;
  padding: 11px 15px; border-radius: 14px 14px 4px 14px;
  box-shadow: 0 10px 30px rgba(14,37,25,.22);
  white-space: nowrap;
  animation: waBob 2.8s ease-in-out infinite;
}
.wa-fab-bubble strong { color: #1ca94f; }
.wa-fab-btn {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  background: #25D366; color: #fff; font-size: 31px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  position: relative;
  transition: transform .15s ease;
}
.wa-fab:hover .wa-fab-btn { transform: scale(1.06); }
.wa-fab-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  animation: waPulse 2.2s ease-out infinite; pointer-events: none;
}
@keyframes waBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .wa-fab { right: 14px; bottom: 16px; gap: 8px; }
  .wa-fab-bubble { font-size: 12.5px; padding: 10px 13px; }
  .wa-fab-btn { width: 54px; height: 54px; font-size: 29px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab-bubble { animation: none; }
  .wa-fab-btn::after { animation: none; }
}

/* ---------- Cookie Banner ---------- */
.cookie-wall { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; }
.cookie-wall[hidden] { display: none !important; }
.cookie-backdrop { position: absolute; inset: 0; background: rgba(10,18,13,.72); backdrop-filter: blur(4px); }
.cookie-card { position: relative; z-index: 1; background: #fff; border-radius: 20px; padding: 36px 36px 32px; max-width: 520px; width: 100%; box-shadow: 0 24px 64px rgba(0,0,0,.35); text-align: center; animation: cookiePop .3s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes cookiePop { from { opacity:0; transform:scale(.92) translateY(16px); } to { opacity:1; transform:none; } }
.cookie-logo { margin-bottom: 20px; display: flex; justify-content: center; }
.cookie-logo img { height: 84px; width: auto; }
.cookie-title { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.cookie-text { font-size: 13.5px; color: #4e5b52; line-height: 1.65; margin-bottom: 16px; }
.cookie-links { font-size: 12px; color: #8da093; margin-bottom: 24px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.cookie-links a { color: var(--accent); text-decoration: underline; }
.cookie-links a:hover { color: var(--ink); }
.cookie-actions { display: flex; flex-direction: column; gap: 8px; }
.cookie-btn-accept { width: 100%; justify-content: center; font-size: 15px; padding: 13px 20px; }
.cookie-actions-row { display: flex; gap: 8px; }
.btn-cookie-reject { background: transparent; border: 2px solid #dcdcdc; color: #4e5b52; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .2s, color .2s; flex: 1; padding: 11px 10px; }
.btn-cookie-reject:hover { border-color: var(--ink); color: var(--ink); }
.btn-cookie-settings { background: transparent; border: 2px solid #dcdcdc; color: #4e5b52; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .2s, color .2s; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 10px; flex: 1; }
.btn-cookie-settings:hover { border-color: var(--accent); color: var(--accent); }
/* Settings panel */
.cookie-settings-panel { text-align: left; margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; }
.cookie-settings-panel[hidden] { display: none !important; }
.cookie-category { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f1f6f2; }
.cookie-category:last-of-type { border-bottom: none; margin-bottom: 16px; }
.cookie-cat-label { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.cookie-cat-text { font-size: 12px; color: #8da093; line-height: 1.5; }
.cookie-always-on { font-size: 12px; font-weight: 600; color: var(--accent); white-space: nowrap; padding-top: 2px; }
.cookie-toggle-wrap { display: flex; align-items: center; padding-top: 2px; flex-shrink: 0; }
.cookie-toggle-input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle-track { display: inline-block; width: 40px; height: 22px; background: #dcdcdc; border-radius: 11px; position: relative; cursor: pointer; transition: background .2s; }
.cookie-toggle-input:checked + .cookie-toggle-track { background: var(--accent); }
.cookie-toggle-track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: transform .2s; }
.cookie-toggle-input:checked + .cookie-toggle-track::after { transform: translateX(18px); }
@media (max-width: 480px) {
  .cookie-card { padding: 28px 20px 24px; }
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,18,13,.6); backdrop-filter: blur(2px); }
.modal-card { position: relative; z-index: 1; width: 100%; max-width: 440px; padding: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.35); animation: pop .2s ease; max-height: 92vh; overflow-y: auto; }
@keyframes pop { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--muted); }
.modal-card h2 { font-size: 21px; padding-right: 24px; }
.modal-sub { font-size: 14px; color: var(--text); margin: 6px 0 18px; }
.lead-form { display: flex; flex-direction: column; gap: 11px; }
.lead-form input, .lead-form textarea {
  font: inherit; font-size: 14px; padding: 12px 14px; border-radius: 9px;
  border: 1px solid #dfe8e1; background: var(--bg-alt); color: var(--ink); width: 100%;
}
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,125,84,.18); }
.form-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 2px; }
.form-success { text-align: center; padding: 16px 6px; }
.form-success i { font-size: 46px; color: var(--accent); }
.form-success strong { display: block; font-size: 18px; color: var(--ink); margin: 8px 0 4px; }
.form-success p { font-size: 14px; color: var(--text); }

/* Datenschutz-Consent (in allen Formularen) */
.form-consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; line-height: 1.45; color: var(--text); text-align: left; margin: 2px 0; }
.form-consent input { width: 17px; height: 17px; margin: 1px 0 0; flex-shrink: 0; accent-color: var(--accent); cursor: pointer; }
.form-consent a { color: var(--accent); text-decoration: underline; }
.quiz .form-consent { color: #cbd8cd; }
.quiz .form-consent a { color: var(--accent-bright); }
.quiz .form-consent input { accent-color: var(--accent-bright); }

/* Direktkontakt-Buttons im Formular-Popup (nur mobil) */
.modal-quick { gap: 8px; margin-top: 14px; }
.modal-quick a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 11px 10px; border-radius: 10px; font-size: 12px; font-weight: 600; color: #fff; }
.modal-quick a i { font-size: 15px; }
.mq-phone { background: var(--dark); }
.mq-wa { background: #25D366; }
.mq-mail { background: var(--accent); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 820px) {
  .desktop-only { display: none; }
  .mobile-only { display: flex; }
  .header-actions.mobile-only { gap: 8px; }
  .section { padding: 44px 0; }
  .ba-slider { height: 300px; }
}

/* Hero auf Mobil: Buttons volle Breite, USPs sauber untereinander */
@media (max-width: 600px) {
  .hero-usps { gap: 11px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  /* Lange Sektions-CTAs dürfen umbrechen (sonst horizontaler Overflow) */
  .center .btn { white-space: normal; max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .container-wide { padding: 0 10px; }
  .hero-split { padding-top: 36px; padding-bottom: 38px; }
  .ba-slider { height: 280px; }
  .q-grid-2 { grid-template-columns: 1fr 1fr; gap: 8px; }
  .q-opt { padding: 12px 8px; font-size: 12.5px; }
  .quiz { padding: 20px 16px; }
  .logo-text strong { font-size: 15px; }
  .logo-text small { font-size: 9px; letter-spacing: 1px; }
  .logo-img { height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* =========================================================
   Rechtsseiten (Impressum / Datenschutz)
   ========================================================= */
.legal-header { border-bottom: 1px solid var(--line); }
.legal-header .header-inner { height: 64px; }
.legal-back { font-size: 14px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.legal { max-width: 800px; margin: 0 auto; padding: 48px 24px 72px; }
.legal h1 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 8px; }
.legal .legal-intro { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
.legal h2 { font-size: 20px; margin: 36px 0 12px; }
.legal h3 { font-size: 16px; margin: 24px 0 8px; }
.legal p, .legal li { font-size: 15px; color: #3b463e; line-height: 1.75; }
.legal p { margin-bottom: 14px; }
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal ul li { margin-bottom: 6px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal address { font-style: normal; line-height: 1.7; font-size: 15px; color: #3b463e; }
.legal .note {
  background: var(--bg-alt); border-left: 3px solid var(--accent);
  padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 20px 0; font-size: 14px; color: var(--text);
}

/* =========================================================
   Einzugsgebiet (Städte-Grid, grüne Checkmarks)
   ========================================================= */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px 30px; max-width: 940px; margin: 6px auto 22px; }
.area-item { display: flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 500; color: var(--ink); }
.area-item i { color: var(--accent); font-size: 19px; flex-shrink: 0; }
.area-note { text-align: center; color: var(--muted); font-size: 14.5px; max-width: 640px; margin: 0 auto 30px; }
.area-note strong { color: var(--ink); }
@media (max-width: 820px) { .area-grid { grid-template-columns: max-content max-content; justify-content: center; gap: 13px 34px; max-width: none; } }
@media (max-width: 400px) { .area-grid { gap: 11px 22px; } .area-item { font-size: 14px; } }

.btn-outline-accent { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline-accent:hover { background: var(--accent); color: #fff; box-shadow: var(--shadow-btn); }

/* Promo-Popup (50% Scroll, Split-Layout: 1/3 Bild links + 2/3 Content) */
.promo-popup { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 20px; }
.promo-popup[hidden] { display: none; }
.promo-backdrop { position: absolute; inset: 0; background: rgba(8,16,11,.72); backdrop-filter: blur(3px); }
.promo-card { position: relative; z-index: 1; width: 100%; max-width: 780px; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.42); max-height: 94vh; overflow-y: auto; animation: promoIn .35s ease both; }
.promo-split { display: flex; align-items: stretch; }
@keyframes promoIn { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: none; } }
.promo-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(0,0,0,.45); color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.promo-close:hover { background: rgba(0,0,0,.68); }
.promo-side { flex: 0 0 34%; background-size: cover; background-position: center; position: relative; min-height: 100%; }
.promo-badge { position: absolute; left: 14px; top: 14px; background: var(--accent); color: #fff; font-size: 15px; font-weight: 800; padding: 8px 15px; border-radius: 30px; box-shadow: var(--shadow-btn); letter-spacing: .3px; }
.promo-body { flex: 1; padding: 30px 32px 26px; }
.promo-eyebrow { display: block; font-size: 12px; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 8px; }
.promo-body h3 { font-size: clamp(20px, 2.4vw, 25px); line-height: 1.2; color: var(--ink); margin-bottom: 9px; }
.promo-body > p { font-size: 14.5px; color: var(--text); margin-bottom: 15px; }
.promo-checks { margin-bottom: 20px; }
.promo-checks li { font-size: 14px; margin-bottom: 9px; }
.promo-actions { display: flex; gap: 10px; }
.promo-actions .btn { flex: 1; justify-content: center; padding: 13px 12px; font-size: 14.5px; white-space: nowrap; }
.promo-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.promo-note i { color: var(--accent); font-size: 14px; }
@media (max-width: 640px) {
  .promo-split { flex-direction: column; }
  .promo-side { flex: none; height: 150px; }
  .promo-body { padding: 20px 20px 18px; }
  .promo-body h3 { font-size: 19.5px; }
  .promo-checks li { font-size: 13px; margin-bottom: 8px; }
  .promo-actions .btn { padding: 12px 8px; font-size: 13.5px; }
  .promo-note { margin-top: 10px; }
}
@media (max-width: 340px) { .promo-actions { flex-direction: column; } }
