/* =========================================================
   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%; }

.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); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 46px; width: auto; display: block; }
.header-actions { align-items: center; gap: 14px; }
.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 85% 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 75% 20%, black 10%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 75% 20%, black 10%, transparent 60%);
}
.hero .hero-grid {
  position: relative; display: grid; grid-template-columns: 1fr 0.92fr;
  column-gap: 54px; align-items: center; padding: 92px 24px 96px;
}
.hero-copy { text-align: left; }
.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; }
.hero h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 18px; }
.hero h1 .hl { color: var(--brand-bright); }
.hero-sub { font-size: clamp(15px, 2.1vw, 18px); color: #c5d4cf; max-width: 540px; margin-bottom: 26px; }
.hero-usps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.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; 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; }

/* ---------- Hero-Formularkarte (Herzstück) ---------- */
.hero-form-wrap { position: relative; }
.form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 28px 24px; box-shadow: 0 30px 70px rgba(0,0,0,.40);
}
.form-card-head { text-align: center; margin-bottom: 20px; }
.form-card-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.form-card-head h2 { font-size: 22px; color: var(--ink); margin-bottom: 6px; line-height: 1.25; }
.form-card-head p { font-size: 13.5px; color: var(--muted); }
/* Platzhalter-Formular (wird durch fertiges Formular ersetzt) */
.ph-form { display: flex; flex-direction: column; gap: 11px; }
.ph-field, .ph-select, .ph-area {
  font: inherit; font-size: 14px; width: 100%;
  padding: 13px 14px; border-radius: 10px;
  border: 1px solid #e3e9e6; background: var(--bg-alt); color: var(--ink);
}
.ph-area { resize: vertical; min-height: 84px; }
.ph-field:focus, .ph-select:focus, .ph-area:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(118,171,57,.18); }
.ph-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238a958f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; }
.form-consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12px; line-height: 1.45; color: var(--text); margin: 3px 0; }
.form-consent input { width: 17px; height: 17px; margin: 1px 0 0; flex-shrink: 0; accent-color: var(--brand); cursor: pointer; }
.form-consent a { color: var(--brand); text-decoration: underline; }
.form-note { font-size: 11.5px; color: var(--muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 3px; }
.ph-flag {
  margin-top: 14px; font-size: 11px; text-align: center; color: #9aa39e;
  border-top: 1px dashed #e3e9e6; padding-top: 10px;
}
.form-success { text-align: center; padding: 18px 6px; }
.form-success i { font-size: 46px; color: var(--brand); }
.form-success strong { display: block; font-size: 18px; color: var(--ink); margin: 8px 0 4px; }
.form-success p { font-size: 14px; color: var(--text); }

@media (max-width: 920px) {
  .hero .hero-grid { grid-template-columns: 1fr; gap: 34px; padding: 64px 22px 88px; text-align: center; }
  /* Mobil: erst das Kontaktformular, dann der Textteil */
  .hero-form-wrap { order: -1; }
  .hero-copy { order: 0; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-usps { width: fit-content; margin-left: auto; margin-right: auto; text-align: left; }
  .hero-trust { justify-content: center; }
}

/* ---------- 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-inner { flex-direction: column; gap: 14px; padding: 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; } }

/* ---------- 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-chip { display: inline-block; background: #fff; padding: 11px 18px; border-radius: 14px; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.footer-logo { height: 44px; width: auto; display: block; }
.footer-claim { font-size: 13.5px; color: #8ea29c; max-width: 420px; line-height: 1.6; }
.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; }
}

/* ---------- Sticky Mobile-CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 820px) {
  .site-header { position: static; }
  .sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    background: #fff; border-top: 1px solid var(--line);
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -6px 22px rgba(0,0,0,.12);
    transform: translateY(130%); opacity: 0; pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }
  .sticky-cta.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .sticky-cta .btn { width: 100%; }
  body { padding-bottom: 78px; }
}

/* ---------- 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; }
  .section-title { font-size: 1.85rem; }
  .section-sub { font-size: .95rem; }
  .trustbar-inner { font-size: 13.5px; }
  .form-card { padding: 24px 20px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { 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; }
