/* =========================================================
   GlanzPro Gebäudereinigung – Landingpage Styles
   Brand: Navy #0d2f66 · Royal-Blau #1a55b4 · Funke-Blau #4fa8e8
   (Navy + Funke exakt aus dem GlanzPro-Logo gesampelt)
   ========================================================= */

:root {
  --dark: #0d2f66;          /* dunkle Basis (Hero-Overlay, CTA-Band, Quiz, Footer) — Logo-Navy */
  --dark-deep: #081d40;     /* tiefes Navy (Footer) */
  --accent: #1a55b4;        /* Royal-Blau (CTAs / Akzente / Häkchen) */
  --accent-bright: #4fa8e8; /* Funke-Blau (Hero-USPs, Quiz-Progress) */
  --ink: #101b2e;
  --text: #45505e;
  --muted: #6d7a8a;
  --line: #e3e9f2;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 16px rgba(8, 29, 64, .07);
  --shadow: 0 8px 26px rgba(8, 29, 64, .10);
  --shadow-btn: 0 10px 24px rgba(26, 85, 180, .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: #12408c; }
.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(8,29,64,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 9px; }
.logo-img { height: 46px; width: auto; display: block; }
.header-actions { align-items: center; gap: 14px; }
.main-nav { align-items: center; gap: 26px; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--ink); }
.main-nav a:hover { color: var(--accent); }
.phone-link { font-size: 15px; font-weight: 600; color: var(--ink); }
.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); }

/* ---------- Hero (Variante B: Split – Info links, Formular rechts) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 560px at 84% -12%, rgba(79,168,232,.24), transparent 62%),
    linear-gradient(115deg, rgba(5,19,44,.94) 0%, rgba(8,30,66,.87) 52%, rgba(12,44,96,.74) 100%),
    url('../images/gp-hero.webp') center/cover no-repeat;
  background-color: #0a2a5a;
  color: #fff;
}
.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; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(79,168,232,.14); color: #a8d4f5;
  border: 1px solid rgba(79,168,232,.42);
  font-size: 13px; font-weight: 600; padding: 7px 15px; border-radius: 30px; margin-bottom: 18px;
}
.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); }
.hero-sub { font-size: clamp(15px, 2.2vw, 17px); color: #ccdcf0; max-width: 540px; 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(3,12,30,.45); }
.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: #b9c9de; }

/* 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: #e4ebf5; }
.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: #eaf1fa; border-color: var(--accent); }
.hero-form .q-opt i { color: var(--accent); }
.hero-form .q-field { background: var(--bg-alt); border: 1px solid #dfe5ee; color: var(--ink); }
.hero-form .q-field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,85,180,.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: #123c7f; }
.hero-form .quiz-urgent-wa { background: #25D366; }
.hero-form .quiz-urgent-wa:hover { background: #1ebe5d; }

@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; }
}

/* ---------- Trustbar ---------- */
.trustbar { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trustbar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap; padding: 16px 24px;
  font-size: 14px; font-weight: 600; color: #35404e;
}
.trustbar i { color: var(--accent); }
.stars { color: #E8B14C; }

/* ---------- 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(--accent); 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(26,85,180,.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(26,85,180,.24) 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-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .grid-3 { 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: #0d2f66;
  position: relative; overflow: hidden; padding: 16px;
}
.trade-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(6,20,44,.92) 0%, rgba(6,20,44,.42) 45%, rgba(6,20,44,.04) 100%); pointer-events:none;
}
.trade-img i { font-size: 40px; color: var(--accent-bright); position: relative; z-index: 1; line-height: 1; }
.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 ---------- */
.cta-band {
  background: linear-gradient(120deg, #0d2f66, #14417f);
  border-radius: var(--radius-lg); padding: 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 14px 34px rgba(8,29,64,.2);
}
.cta-band h2 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.cta-band p { color: #c9d6e8; font-size: 15px; max-width: 460px; }
.cta-band-actions { display: flex; flex-direction: row; gap: 12px; align-items: center; flex-shrink: 0; }

/* CTA-Band vollflächig mit Foto + Overlay */
.section-cta-photo { position: relative; padding: 68px 0; background: linear-gradient(115deg, rgba(5,19,44,.94) 0%, rgba(7,26,58,.82) 44%, rgba(10,38,82,.5) 100%), url('../images/gp-cta-band.webp') center/cover no-repeat; background-color: #0d2f66; overflow: hidden; }
.section-cta-photo::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px 320px at 88% 15%, rgba(79,168,232,.28), 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: #dde7f4; font-size: 15.5px; max-width: 480px; }
@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: #f7f8fa; box-shadow: none; border: 1px solid #e2e7ee; }
.compare-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; min-height: 52px; }
.compare-head h3 { font-size: 18px; }
.compare-logo { height: 52px; width: auto; display: block; }
.compare-head i { font-size: 24px; color: #9aa4b2; }
.compare-bad .compare-head h3 { color: #6b7686; }
.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: #6b7686; }
.compare-bad .compare-list li { color: #6b7686; }
.compare-bad .compare-list i { color: #c2705b; }

/* ---------- 3 Schritte ---------- */
.section-steps { background: linear-gradient(160deg, #f2f6fc 0%, #e5edf8 100%); }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0 16px; margin: 52px 0 44px; }
.step-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px 28px; box-shadow: var(--shadow); text-align: center; position: relative; }
.step-num { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: #fff; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(8,29,64,.25); }
.step-icon { font-size: 34px; color: var(--accent); margin: 8px 0 14px; line-height: 1; }
.step-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.step-text { font-size: 14.5px; color: #4d5a68; line-height: 1.65; margin: 0; }
.step-connector { display: flex; align-items: center; justify-content: center; padding-top: 60px; color: var(--accent); font-size: 28px; opacity: .55; }
.steps-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.steps-cta-sub { font-size: 13px; color: #6d7a8a; display: flex; align-items: center; gap: 6px; margin: 0; }
.steps-cta-sub i { color: var(--accent); font-size: 16px; }

@media (max-width: 820px) {
  .steps-grid { grid-template-columns: 1fr; gap: 36px 0; }
  .step-connector { padding-top: 0; transform: rotate(90deg); font-size: 22px; opacity: .35; }
}

/* ---------- Referenzen: gegenläufiges Ergebnis-Marquee (Lenaro-Stil) ---------- */
.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), var(--accent-bright));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.rev-avatar-b { background: linear-gradient(135deg, #0d2f66, #1a55b4); }
.rev-avatar-c { background: linear-gradient(135deg, #123f85, #4fa8e8); }
.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, #0d2f66 0%, #123f85 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(79,168,232,.22); 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, #4fa8e8, #8ecbf5); color: #0d2f66; }
.rev-featured .rev-who strong { color: #fff; }
.rev-featured .rev-who span { color: #b9c9de; }
.rev-featured .rev-verified { color: #b9c9de; 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); }
.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: 64px; 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: #a9b8cd; 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: #a9b8cd; }
.q-hint { text-align: center; color: #c3d1e4; font-size: 13px; margin: -8px 0 16px; }
.q-note { text-align: center; color: #a9b8cd; 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: #c3d1e4; 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: #a9b8cd; 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; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 580px; margin: 0 auto; }
.faq details { border-bottom: 1px solid #e4e9f0; 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(5,19,44,.90) 0%, rgba(7,26,58,.82) 55%, rgba(12,44,96,.78) 100%), url('../images/gp-cta.webp') center/cover no-repeat; background-color: #0d2f66; padding: 100px 0; overflow: hidden; }
.final-cta-overlay { position: absolute; inset: 0; background: radial-gradient(900px 460px at 78% 0%, rgba(79,168,232,.28), 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: #aebacc; }
.footer-logo-wrap { margin-bottom: 50px; }
@media (max-width: 820px) { .footer-logo-wrap { margin-bottom: 20px; } }
.footer-logo { height: 62px; 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: #aebacc; 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: #d3dce8; }
.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: #8896ab; 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-top { padding: 36px 0 28px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* ---------- 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(8,14,26,.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: 52px; width: auto; }
.cookie-title { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.cookie-text { font-size: 13.5px; color: #4d5866; line-height: 1.65; margin-bottom: 16px; }
.cookie-links { font-size: 12px; color: #8896ab; 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: #4d5866; 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: #4d5866; 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 #f1f4f8; }
.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: #8896ab; 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(8,14,26,.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 #dfe5ee; 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(26,85,180,.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: #c3d1e4; }
.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; }
  .cta-band { text-align: center; justify-content: center; }
  .cta-band p { margin: 0 auto; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .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; }
  .hero .badge { font-size: 11px; padding: 6px 13px; gap: 5px; margin-bottom: 14px; }
  .trustbar-inner { display: grid; grid-template-columns: auto auto; justify-content: center; justify-items: center; gap: 18px 22px; font-size: 13px; padding: 26px 18px; }
  .trustbar-inner span { display: inline-flex; align-items: center; gap: 8px; }
  .trustbar-inner i { font-size: 19px; }
  .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; }
}

@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: #38414e; 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: #38414e; }
.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, blaue Checkmarks)
   ========================================================= */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 26px; }
.area-pill, .area-pills > span { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 7px; transition: border-color .15s ease, color .15s ease, transform .12s ease; }
.area-pill:hover, .area-pills > span:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.area-pill i { color: var(--accent); font-size: 15px; }

.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; } }

/* 3-Schritte – selbst-animierte Inline-SVG-Icons (Fallback, DSGVO-sauber) */
.step-svg { width: 58px; height: 58px; color: var(--accent); display: block; margin: 0 auto; overflow: visible; }
.step-svg .sdot { animation: sdotPulse 1.4s infinite ease-in-out; }
.step-svg .s2 { animation-delay: .18s; }
.step-svg .s3 { animation-delay: .36s; }
@keyframes sdotPulse { 0%, 55%, 100% { opacity: .3; } 28% { opacity: 1; } }
.step-svg .scheck { stroke-dasharray: 26; stroke-dashoffset: 26; animation: scheckDraw 2.6s infinite ease-in-out; }
@keyframes scheckDraw { 0%, 8% { stroke-dashoffset: 26; } 44%, 74% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 26; } }
.step-svg .struck { transform-box: fill-box; transform-origin: center; animation: struckDrive 2.1s infinite ease-in-out; }
@keyframes struckDrive { 0%, 100% { transform: translateX(-2.5px); } 50% { transform: translateX(2.5px); } }
@media (prefers-reduced-motion: reduce) { .step-svg * { animation: none !important; stroke-dashoffset: 0 !important; } }

.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) */
.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(6,14,30,.72); backdrop-filter: blur(3px); }
.promo-card { position: relative; z-index: 1; width: 100%; max-width: 440px; 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; }
@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-img { height: 170px; background-size: cover; background-position: center; position: relative; }
.promo-badge { position: absolute; left: 16px; bottom: 14px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 800; padding: 7px 14px; border-radius: 30px; box-shadow: var(--shadow-btn); letter-spacing: .3px; }
.promo-body { padding: 22px 24px 24px; }
.promo-body h3 { font-size: 20px; line-height: 1.25; color: var(--ink); margin-bottom: 8px; }
.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; }
@media (max-width: 420px) {
  .promo-actions { flex-direction: column; }
  .promo-img { height: 144px; }
  .promo-body h3 { font-size: 18.5px; }
  .promo-checks li { font-size: 12.5px; padding-left: 20px; white-space: nowrap; }
  .promo-checks li::before { font-size: 14px; }
}
@media (max-width: 340px) { .promo-checks li { font-size: 10.5px; } }

.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); }

/* 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: 62px; }
  .footer-col-logo-hours .footer-logo-wrap { display: none; }
}

