/* =========================================================
   Life Restart – Landingpage Styles
   Brand: Logo-Grün #76ab39 · Hell-Grün #a3d65f (Akzent auf Dunkel) · Tief-Grün #1f3318
   Modernes, klares Design – Grün als Vertrauens-/Wachstumsfarbe.
   ========================================================= */

:root {
  --ink: #1a2c18;            /* Überschriften / dunkler Text */
  --petrol: #1f3318;         /* dunkle Basis (Hero, CTA-Band, Footer) */
  --petrol-dark: #16240f;    /* tiefes Grün (Footer) */
  --brand: #76ab39;          /* Logo-Grün (CTAs / Akzente) */
  --brand-dark: #608f2b;     /* Hover */
  --brand-bright: #a3d65f;   /* helles Grün (Highlights auf Dunkel) */
  --text: #56604f;           /* Fließtext */
  --muted: #8d9483;          /* gedämpft */
  --line: #eaece6;           /* feine Linien */
  --bg: #ffffff;
  --bg-alt: #f5f8f1;         /* zarter Grün-Hauch */
  --gold: #FBBC05;           /* Sterne */
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 16px rgba(26, 34, 22, .07);
  --shadow: 0 10px 30px rgba(26, 34, 22, .10);
  --shadow-btn: 0 10px 24px rgba(118, 171, 57, .32);
  --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, h4 { color: var(--ink); margin: 0; font-weight: 700; 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: 1500px; 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; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; cursor: pointer;
  border: none; border-radius: 11px; 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(--brand); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 9px 15px; font-size: 14px; border-radius: 9px; }
.btn-block { width: 100%; }
/* Dauerhafter Glanz-Sweep auf den Termin-CTAs. Laeuft nur ueber ein Pseudo-Element,
   damit die transform-Zustaende des Buttons (:hover, :active) unangetastet bleiben. */
.btn-pulse { position: relative; overflow: hidden; }
.btn-pulse::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -50%; width: 45%;
  background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.55), rgba(255,255,255,0));
  transform: translateX(0) skewX(-18deg);
  animation: ctaShine 2s linear infinite;
  pointer-events: none;
}
@keyframes ctaShine {
  0%   { transform: translateX(0) skewX(-18deg); }
  33%  { transform: translateX(333%) skewX(-18deg); }
  100% { transform: translateX(333%) skewX(-18deg); }
}

.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(0,0,0,.05);
}
.site-header .container { max-width: var(--maxw); }
/* Mobil: Header fährt beim Runterscrollen komplett weg und kommt erst ganz oben wieder */
@media (max-width: 920px) {
  .site-header { transition: transform .28s ease; }
  .site-header.is-hidden { transform: translateY(-100%); }
}
/* Desktop: Der Header löst sich beim Runterscrollen auf, nur das Logo bleibt und
   wandert als Zurück-nach-oben-Marke in die linke obere Ecke.
   --logo-shift wird in main.js aus der tatsächlichen Logobreite berechnet. */
@media (min-width: 921px) {
  .site-header { transition: background-color .26s ease, box-shadow .26s ease; }
  .site-header.is-hidden {
    background-color: transparent; box-shadow: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    pointer-events: none;
  }
  .site-header .header-sub { transition: opacity .22s ease, transform .3s cubic-bezier(.23,1,.32,1); }
  .site-header.is-hidden .header-sub { opacity: 0; transform: translateY(-8px); }
  .site-header .logo {
    transform-origin: left center;
    transition: transform .42s cubic-bezier(.23,1,.32,1);
  }
  .site-header.is-hidden .logo {
    transform: translateX(var(--logo-shift, 0px)) scale(.72);
    pointer-events: auto;
  }
  /* Weiche weiße Kapsel, damit das Logo über jedem Abschnitt lesbar bleibt */
  .site-header .logo::before {
    content: ''; position: absolute; inset: -8px -16px; z-index: -1;
    border-radius: 999px; background: rgba(255,255,255,.96);
    box-shadow: 0 8px 24px rgba(16,34,29,.18);
    opacity: 0; transition: opacity .26s ease;
  }
  .site-header.is-hidden .logo::before { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header, .site-header .logo, .site-header .logo::before, .site-header .header-sub { transition: none; }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
/* Header mit zentriertem Logo (Icons rechts) */
.header-inner.is-centered { display: grid; grid-template-columns: 1fr auto 1fr; }
.header-inner.is-centered .logo { grid-column: 2; justify-self: center; }
.header-inner.is-centered .header-actions { grid-column: 3; justify-self: end; }
.logo { position: relative; display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; display: block; }
.header-actions { display: flex; align-items: center; gap: 12px; }
/* Mobil: Header-Icons ausblenden (Logo bleibt zentriert) – WhatsApp/Telefon via Floating-Button */
@media (max-width: 820px) { .header-inner.is-centered .header-actions { display: none; } }
.main-nav { align-items: center; gap: 28px; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.main-nav a:hover { color: var(--brand); }
.header-phone { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.header-phone i { color: var(--brand); }
/* Icon-Buttons (mobiler Header: Telefon + WhatsApp) */
.icon-btn { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; flex-shrink: 0; }
.icon-btn-phone { background: var(--petrol); }
.icon-btn-wa { background: #25D366; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(118,171,57,.32) 0%, rgba(31,51,24,0) 55%),
    linear-gradient(160deg, #1f3318 0%, #18280f 55%, #14230d 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at 50% 15%, black 10%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 15%, black 10%, transparent 65%);
}
.hero .hero-grid {
  position: relative; display: grid; grid-template-columns: 1fr;
  justify-items: center; padding: 92px 24px 96px;
  max-width: 820px;
}
.hero-copy { text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(163,214,95,.14); color: var(--brand-bright);
  border: 1px solid rgba(163,214,95,.34);
  font-size: 12.5px; font-weight: 600; letter-spacing: .3px;
  padding: 7px 15px; border-radius: 30px; margin-bottom: 22px;
}
.badge i { font-size: 15px; }
/* Header-Sub-Leiste: Checkmarks unter dem Logo (Absichern · Vorsorgen · Vermögensaufbau · Gesundheit) */
.header-sub { border-top: 1px solid var(--line); }
.header-sub .header-sub-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 9px 28px; padding: 11px 24px; }
.header-sub-inner span {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700;
  letter-spacing: .2px; color: var(--ink); padding: 3px 10px; border-radius: 999px;
}
.header-sub-inner i { color: var(--brand); font-size: 17px; flex-shrink: 0; }
/* Die vier Bereiche werden nacheinander kurz „abgehakt", danach folgt eine Pause */
.header-sub-inner span { animation: hsGlow 3.8s ease-in-out infinite; }
.header-sub-inner i { animation: hsTick 3.8s ease-in-out infinite; }
.header-sub-inner span:nth-child(2), .header-sub-inner span:nth-child(2) i { animation-delay: .45s; }
.header-sub-inner span:nth-child(3), .header-sub-inner span:nth-child(3) i { animation-delay: .9s; }
.header-sub-inner span:nth-child(4), .header-sub-inner span:nth-child(4) i { animation-delay: 1.35s; }
@keyframes hsTick {
  0%, 3%    { transform: scale(1); color: var(--brand); text-shadow: none; }
  8%        { transform: scale(1.34); color: var(--brand-dark); text-shadow: 0 0 9px rgba(118,171,57,.55); }
  19%, 100% { transform: scale(1); color: var(--brand); text-shadow: none; }
}
@keyframes hsGlow {
  0%, 3%    { background-color: rgba(118,171,57,0); }
  8%, 14%   { background-color: rgba(118,171,57,.13); }
  25%, 100% { background-color: rgba(118,171,57,0); }
}
/* Mobil: zwei Spalten statt einer Zeile, damit alle vier Bereiche sichtbar bleiben */
@media (max-width: 820px) {
  .header-sub .header-sub-inner {
    display: grid; grid-template-columns: auto auto;
    justify-content: center; justify-items: start;
    gap: 5px 14px; padding: 11px 12px;
  }
  .header-sub-inner span { font-size: 12.5px; }
  .header-sub-inner i { font-size: 15px; }
}
.hero h1 { font-size: clamp(30px, 3.9vw, 48px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 18px; }
.hero h1 .hl { color: var(--brand-bright); }
.hero-sub { font-size: clamp(14px, 1.5vw, 15.5px); color: #c5d4cf; max-width: 600px; margin: 0 auto 26px; }
/* Liste als Block zentrieren, damit die Haken untereinander stehen statt zu treppen */
.hero-usps { display: flex; flex-direction: column; gap: 12px; width: fit-content; margin: 0 auto 26px; text-align: left; }
.hero-usps li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; font-weight: 500; color: #eaf3f0; }
.hero-usps i { color: var(--brand-bright); font-size: 21px; flex-shrink: 0; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-trust .ht-stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; line-height: 1; }
.hero-trust .ht-text { color: #cdded8; font-size: 14px; font-weight: 500; }
.hero-trust .ht-text strong { color: #fff; font-weight: 700; }
/* CTA im Hero: führt direkt in die Terminbuchung */
.hero-cal-cta { margin-top: 26px; white-space: normal; }

@media (max-width: 920px) {
  .hero .hero-grid { padding: 64px 22px 88px; }
  .hero-cal-cta { width: 100%; max-width: 340px; }
}

/* ---------- Trustbar ---------- */
.trustbar { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trustbar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; padding: 18px 24px;
  font-size: 13.5px; font-weight: 600; color: #3c4a45;
}
.trustbar-inner span { display: inline-flex; align-items: center; gap: 8px; padding: 0 20px; }
.trustbar-inner span:not(:last-child) { border-right: 1px solid var(--line); }
.trustbar i { color: var(--brand); font-size: 18px; }
.trustbar .stars { color: var(--gold); }
@media (max-width: 820px) {
  .trustbar { display: none; } /* auf Mobil ausgeblendet (Kundenwunsch) */
  .trustbar .trustbar-inner { flex-direction: column; gap: 16px; padding: 40px 24px; }
  .trustbar-inner span { padding: 0; border-right: none !important; justify-content: center; }
}

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
main section[id] { scroll-margin-top: 84px; }
.section-alt { background: var(--bg-alt); }
.eyebrow { display: block; text-align: center; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.section-title { text-align: center; font-size: clamp(23px, 3.5vw, 30px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--muted); font-size: 15.5px; max-width: 580px; margin: 0 auto 36px; }

.grid { display: grid; gap: 18px; }

/* ---------- Bewertungen (Google-Trust + Marquee) ---------- */
.google-rating-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  width: fit-content; max-width: 100%;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 22px 32px; margin: 6px auto 36px;
}
.grc-main { display: flex; align-items: center; gap: 16px; }
.google-g { width: 46px; height: 46px; flex-shrink: 0; display: block; }
.grc-info { text-align: left; }
.grc-headline { display: flex; align-items: center; gap: 12px; }
.grc-score { font-size: 38px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -1px; }
.grc-stars { color: var(--gold); font-size: 21px; letter-spacing: 2px; line-height: 1; }
.grc-count { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.grc-count strong { color: var(--ink); font-weight: 600; }
.grc-link { font-size: 13px; font-weight: 500; color: #5f6368; text-decoration: underline; text-underline-offset: 2px; }
.grc-link:hover { color: var(--ink); }
@media (max-width: 480px) {
  .google-rating-card { padding: 20px 18px; }
  .grc-score { font-size: 32px; }
  .grc-stars { font-size: 18px; }
}
.marquee-wrap { overflow: hidden; padding: 6px 0; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 9%; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg) 10%, rgba(255,255,255,0)); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg) 10%, rgba(255,255,255,0)); }
.section-alt .marquee-wrap::before { background: linear-gradient(to right, var(--bg-alt) 10%, rgba(244,248,246,0)); }
.section-alt .marquee-wrap::after { background: linear-gradient(to left, var(--bg-alt) 10%, rgba(244,248,246,0)); }
.marquee { display: flex; gap: 16px; width: max-content; padding: 0 16px; animation: scroll 40s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card { width: 300px; flex-shrink: 0; padding: 18px; position: relative; }
.review-g { position: absolute; top: 16px; right: 16px; width: 20px; height: 20px; opacity: .95; }
.review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; padding-right: 26px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--petrol); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.avatar-brand { background: var(--brand); }
.avatar-deep { background: #4a5a54; }
.review-head strong { display: block; font-size: 13.5px; color: var(--ink); }
.review-head .stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.review-card p { font-size: 13.5px; color: var(--text); margin-bottom: 12px; }
.review-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: 10px; }
.review-verified i { color: #34A853; font-size: 15px; }

/* ---------- Bereiche (4 Leistungs-Karten) ---------- */
#bereiche .container { max-width: 1280px; }
.areas-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.area-card { padding: 30px 26px; text-align: left; border: 1px solid var(--line); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(118,171,57,.40); }
.area-ico { width: 54px; height: 54px; border-radius: 14px; background: var(--bg-alt); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 16px; }
.area-card h3 { font-size: 17px; margin-bottom: 7px; }
.area-card > p { font-size: 13.5px; color: var(--text); margin-bottom: 14px; line-height: 1.6; }
.area-checks li { font-size: 13px; color: var(--ink); margin-bottom: 8px; padding-left: 25px; position: relative; }
.area-checks li::before { content: "\ea5e"; font-family: "tabler-icons"; color: var(--brand); position: absolute; left: 0; top: 1px; font-size: 15px; }
@media (max-width: 980px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .areas-grid { grid-template-columns: 1fr; } }

/* ---------- Vergleich (Vorteile) ---------- */
.compare-grid { grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 30px; align-items: start; }
.compare-card { padding: 28px 26px; }
.compare-good { border: 2px solid var(--brand); background: #fff; }
.compare-bad { background: #f7f7f6; border: 1px solid #ececec; box-shadow: none; }
.compare-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.compare-head .ch-ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.compare-good .ch-ico { background: rgba(118,171,57,.14); color: var(--brand); }
.compare-bad .ch-ico { background: #ededec; color: #9a9a96; }
.compare-head h3 { font-size: 18px; }
.compare-good .compare-head h3 { color: var(--ink); }
.compare-bad .compare-head h3 { color: #7c817d; }
.compare-logo { height: 40px; width: auto; display: block; }
.compare-head .ch-tag { margin-left: auto; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.compare-good .ch-tag { background: rgba(118,171,57,.14); color: var(--brand-dark); }
.compare-bad .ch-tag { background: #ededec; color: #9a9a96; }
.compare-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; margin-bottom: 14px; line-height: 1.5; }
.compare-list li:last-child { margin-bottom: 0; }
.compare-list i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.compare-good .compare-list li { color: var(--ink); }
.compare-good .compare-list i { color: var(--brand); }
.compare-bad .compare-list li { color: #84897f; }
.compare-bad .compare-list i { color: #c08a8a; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }

/* ---------- So einfach geht's (3 Schritte) ---------- */
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0 16px; margin: 44px 0 38px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 26px 28px; box-shadow: var(--shadow-sm); text-align: center; position: relative; }
.step-num { position: absolute; top: -17px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 14px rgba(118,171,57,.4); }
.step-ico { margin: 8px 0 14px; line-height: 1; display: flex; justify-content: center; }
.step-card h3 { font-size: 17px; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--text); line-height: 1.6; }
.step-connector { display: flex; align-items: center; justify-content: center; padding-top: 70px; color: var(--brand); font-size: 26px; opacity: .5; }
@media (max-width: 820px) {
  .steps-grid { grid-template-columns: 1fr; gap: 34px 0; margin: 40px 0 32px; }
  .step-connector { padding-top: 0; transform: rotate(90deg); font-size: 22px; opacity: .35; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 640px; margin: 0 auto; }
.faq details { border-bottom: 1px solid #e3e8e5; padding: 18px 0; }
.faq summary { cursor: pointer; list-style: none; font-size: 15.5px; 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(--brand); transition: transform .2s ease; flex-shrink: 0; font-size: 20px; }
.faq details[open] .faq-plus { transform: rotate(45deg); }
.faq details p { margin-top: 11px; font-size: 14.5px; color: var(--text); line-height: 1.7; }

/* ---------- Finale CTA ---------- */
.final-cta { position: relative; background: linear-gradient(150deg, #1f3318 0%, #18280f 60%, #14230d 100%); padding: 78px 0; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 120% at 80% 10%, rgba(118,171,57,.32), transparent 55%);
}
.final-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.final-cta .eyebrow { color: var(--brand-bright); }
.final-cta h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: #fff; line-height: 1.18; margin: 6px 0 18px; }
.final-cta p { font-size: 16.5px; color: #c5d4cf; line-height: 1.7; margin-bottom: 32px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.final-cta-trust { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.final-cta-trust span { color: #cdded8; font-size: 13.5px; display: flex; align-items: center; gap: 7px; }
.final-cta-trust i { color: var(--brand-bright); font-size: 16px; }
/* Platzhalter-Bild in der finalen CTA (später durch <img> ersetzen) */
.final-cta-media {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  margin: 42px auto 0; max-width: 680px; width: 100%; aspect-ratio: 16 / 6.5;
  border: 2px dashed rgba(255,255,255,.34); border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.72);
}
.final-cta-media i { font-size: 44px; color: var(--brand-bright); }
.final-cta-media span { font-size: 13.5px; font-weight: 600; letter-spacing: .3px; }
@media (max-width: 600px) { .final-cta-media { aspect-ratio: 4 / 3; margin-top: 34px; } }
@media (max-width: 600px) {
  .final-cta { padding: 60px 0; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions .btn { width: 100%; max-width: 320px; }
  .final-cta-trust { gap: 14px; flex-direction: column; align-items: center; }
}

/* ---------- Footer (schlank) ---------- */
.site-footer { background: var(--petrol-dark); color: #9fb0ab; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 40px 0 28px; }
.footer-logo { height: 52px; width: auto; display: block; }
.footer-claim { font-size: 13.5px; color: #8ea29c; max-width: 420px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-contact h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-contact a, .footer-contact p { color: #cfdcd8; font-size: 14px; display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
.footer-contact a:hover { color: var(--brand-bright); }
.footer-contact i { color: var(--brand-bright); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 14px; font-weight: 500; color: #cfdcd8; }
.footer-legal-links a:hover { color: var(--brand-bright); }
.footer-bottom-wrap { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; color: #7e918c; font-size: 12.5px; padding: 16px 0; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 640px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* ---------- Floating WhatsApp + Sprechblase (erscheint beim Scrollen) ---------- */
.float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 56;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 31px; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .15s ease;
}
.float-wa:hover { transform: scale(1.06); }
.float-wa-bubble {
  position: absolute; right: 72px; top: 50%;
  background: #fff; color: var(--ink); font-size: 13px; font-weight: 600;
  padding: 9px 14px; border-radius: 12px; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(16,34,29,.18);
  opacity: 0; transform: translateY(-50%) translateX(10px) scale(.9);
  pointer-events: none; transform-origin: right center;
  transition: opacity .28s ease, transform .28s ease;
}
.float-wa-bubble::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #fff;
}
/* Beim Scrollen: Sprechblase fährt aus dem Button heraus + wippt leicht */
.float-wa.is-scrolled .float-wa-bubble { opacity: 1; pointer-events: auto; animation: waBubble 2.6s ease-in-out infinite; }
@keyframes waBubble { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(-58%); } }
@media (max-width: 600px) {
  .float-wa { width: 56px; height: 56px; font-size: 29px; }
  .float-wa-bubble { font-size: 12.5px; padding: 8px 12px; right: 66px; }
}
@media (prefers-reduced-motion: reduce) {
  .float-wa.is-scrolled .float-wa-bubble { animation: none; transform: translateY(-50%); }
}

/* ---------- Teilen-Button + QR-Modal ---------- */
.btn-share {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
  color: #cfdcd8; font: inherit; font-size: 13.5px; font-weight: 600;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-share:hover { background: rgba(255,255,255,.12); color: #fff; border-color: var(--brand-bright); }
.btn-share i { font-size: 17px; color: var(--brand-bright); }
.btn-outline-green { background: #fff; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline-green:hover { background: var(--bg-alt); }
.share-modal { position: fixed; inset: 0; z-index: 9998; display: flex; align-items: center; justify-content: center; padding: 18px; }
.share-modal[hidden] { display: none !important; }
.share-backdrop { position: absolute; inset: 0; background: rgba(10,16,12,.6); backdrop-filter: blur(3px); }
.share-card { position: relative; z-index: 1; background: #fff; border-radius: 20px; padding: 32px 28px 26px; max-width: 360px; width: 100%; text-align: center; box-shadow: 0 24px 64px rgba(0,0,0,.35); animation: pop .2s ease; }
.share-close { position: absolute; top: 14px; right: 14px; background: none; border: none; cursor: pointer; font-size: 20px; color: var(--muted); }
.share-card h3 { font-size: 20px; margin-bottom: 6px; }
.share-card > p { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.share-qr { display: flex; justify-content: center; margin: 0 auto 16px; width: 188px; height: 188px; }
.share-qr img, .share-qr canvas { display: block; border-radius: 8px; }
#share-url { width: 100%; font: inherit; font-size: 12.5px; text-align: center; color: var(--text); padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px; background: var(--bg-alt); margin-bottom: 12px; }
.share-actions { display: flex; gap: 10px; }
.share-actions .btn { flex: 1; justify-content: center; padding: 11px 12px; font-size: 14px; }
@keyframes pop { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---------- Terminbuchung: Vollbild-Overlay ---------- */
.cal-modal { position: fixed; inset: 0; z-index: 9999; display: flex; background: #fff; }
.cal-modal[hidden] { display: none !important; }
.cal-modal-sheet {
  position: relative; display: flex; flex-direction: column;
  width: 100%; height: 100vh; height: 100dvh;
  background: #fff; overflow: hidden;
}
/* Eigene Kopfleiste, damit der Schliessen-Button nicht mit der Cal-Oberflaeche kollidiert */
.cal-modal-bar {
  flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 10px 9px 18px; background: #fff; border-bottom: 1px solid var(--line);
}
.cal-modal-title { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.cal-modal-close {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; cursor: pointer;
  background: var(--bg-alt); border: 1px solid var(--line); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.cal-modal-close:hover { background: #e8efe1; border-color: var(--brand); color: var(--brand-dark); }
.cal-modal-frame { flex: 1; width: 100%; border: 0; background: #fff; }

/* ---------- Dekorativer Akzent FAQ ---------- */
#faq { position: relative; overflow: hidden; }
#faq > .container { position: relative; z-index: 1; }
#faq::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background-image: radial-gradient(rgba(118,171,57,.16) 1.5px, transparent 1.5px);
  background-size: 20px 20px; pointer-events: none;
  mask-image: radial-gradient(ellipse at right center, black 22%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at right center, black 22%, transparent 70%);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 820px) {
  .desktop-only { display: none; }
  .mobile-only { display: flex; }
  .header-inner { gap: 7px; }
  .logo-img { height: 40px; }
  .header-actions.mobile-only { gap: 7px; }
  .header-actions.mobile-only .icon-btn { width: 38px; height: 38px; font-size: 18px; }
  .header-actions.mobile-only .btn-sm { padding: 8px 11px; font-size: 12.5px; }
  .section { padding: 48px 0; }
}
@media (max-width: 380px) {
  .logo-img { height: 34px; }
  .header-actions.mobile-only .btn-sm span.cta-long { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  /* lange CTA-Texte duerfen auf schmalen Displays umbrechen statt seitlich rauszulaufen */
  .btn-lg { white-space: normal; }
  .section-title { font-size: 1.85rem; }
  .section-sub { font-size: .95rem; }
  .trustbar-inner { font-size: 13.5px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { animation: none; }
  .btn-pulse::after { animation: none; opacity: 0; }
  .header-sub-inner span, .header-sub-inner i { animation: none; }
  .btn:hover, .area-card:hover { transform: none; }
}

/* =========================================================
   Rechtsseiten (Impressum / Datenschutz / Cookie)
   ========================================================= */
.legal-header { border-bottom: 1px solid var(--line); position: static; }
.legal-header .header-inner { height: 64px; }
.legal-back { font-size: 14px; font-weight: 600; color: var(--brand); 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: #46524d; 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(--brand); text-decoration: underline; }
.legal address { font-style: normal; line-height: 1.7; font-size: 15px; color: #46524d; }
.legal .note { background: var(--bg-alt); border-left: 3px solid var(--brand); padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 20px 0; font-size: 14px; color: var(--text); }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.legal table th, .legal table td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal table th { background: var(--bg-alt); color: var(--ink); font-weight: 600; }
