/* ═══════════════════════════════════════════════════════
   FrogEnergy – Landingpage Stylesheet (v2)
   RGN Marketing · 2025 · Brand: #79b434
═══════════════════════════════════════════════════════ */


:root {
  /* Brand-Grün */
  --brand:      #79b434;   /* Hauptgrün */
  --brand-2:    #8bc94a;   /* heller */
  --brand-d:    #5f9329;   /* dunkler (Hover) */
  --brand-dd:   #4a7320;   /* tief */

  /* Dunkle Grüntöne */
  --ink:        #14210b;   /* near-black green */
  --ink-2:      #1c2f12;
  --deep:       #0d1707;   /* tiefster Ton */

  /* Neutral */
  --cream:      #f5faee;   /* heller Tint-BG */
  --line:       #e4ece0;
  --text:       #18220f;
  --muted:      #5f6b54;
  --white:      #ffffff;
  --gold:       #fbbc04;   /* nur Google-Sterne */

  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 8px 30px rgba(20,33,11,.08);
  --shadow-lg:  0 20px 60px rgba(13,23,7,.16);
  --shadow-card:0 2px 14px rgba(20,33,11,.07);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --t: .22s ease;
  --container: 1200px;
  --header-h: 74px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.5; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { scroll-margin-top: var(--header-h); }
.section { padding: 100px 0; }
.section--light { background: var(--cream); }
.section--white { background: var(--white); }
.section--ablauf { position: relative; overflow: hidden; }
.ablauf-deko { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.section--ablauf > .container { position: relative; z-index: 1; }
.section--leistungen-deko { position: relative; overflow: hidden; }
.leistungen-deko { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.section--leistungen-deko > .container { position: relative; z-index: 1; }

/* ─── Section Header ─── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
@media (min-width: 900px) {
  #referenzen .section-header { max-width: 1000px; }
  #referenzen .section-header h2 { white-space: nowrap; }
  #kontakt .section-header,
  #ablauf .section-header,
  #rechner .section-header,
  #vorteile .section-header { max-width: 1000px; }
  #kontakt .section-header h2,
  #ablauf .section-header h2,
  #rechner .section-header h2,
  #vorteile .section-header h2 { white-space: nowrap; }
}
.section-tag {
  display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brand-dd); background: rgba(121,180,52,.14);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-tag--light { color: var(--brand-2); background: rgba(121,180,52,.2); }
.section-header h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
.section-header p { font-size: 1.08rem; color: var(--muted); line-height: 1.6; }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.82); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius); font-weight: 700; font-size: .95rem;
  transition: all var(--t); white-space: nowrap; border: 2px solid transparent; line-height: 1;
}
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
@media (max-width: 768px) { .btn-lg { font-size: .82rem; padding: 14px 20px; } }
.btn-block { width: 100%; }

/* Primary = leuchtendes Grün mit dunklem Text (modern) */
.btn-primary { background: var(--brand); color: var(--ink); border-color: var(--brand); box-shadow: 0 6px 18px rgba(121,180,52,.32); }
.btn-primary:hover { background: var(--brand-2); border-color: var(--brand-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(121,180,52,.42); }

.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline:hover { background: var(--cream); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-ghost-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn-back { background: transparent; color: var(--muted); border: 1px solid var(--line); padding: 11px 18px; font-size: .88rem; font-weight: 600; }
.btn-back:hover { background: var(--cream); color: var(--text); }

.btn-text { background: transparent; color: var(--muted); font-weight: 600; }
.btn-text:hover { color: var(--brand-dd); text-decoration: underline; }
.btn-text-light { background: transparent; color: rgba(255,255,255,.7); font-weight: 600; font-size: .875rem; }
.btn-text-light:hover { color: var(--white); }

.btn:disabled, .btn[disabled] { opacity: .4; pointer-events: none; }

/* Icon Buttons */
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.12); color: var(--white); font-size: 1.15rem; border: 1.5px solid rgba(255,255,255,.22); transition: background var(--t); }
.icon-btn:hover { background: rgba(255,255,255,.22); }
.icon-btn--wa { background: rgba(37,211,102,.22); border-color: rgba(37,211,102,.4); }

/* ─── Cookie Banner ─── */
.cw-overlay { position: fixed; inset: 0; background: rgba(10,31,18,.6); z-index: 9998; backdrop-filter: blur(3px); }
.cw-overlay[hidden] { display: none !important; }
.cw-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff; border-radius: 20px; padding: 36px 28px 28px;
  z-index: 9999; width: min(520px, calc(100vw - 24px));
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  text-align: center;
}
.cw-modal[hidden] { display: none !important; }
.cw-logo-wrap { display: flex; justify-content: center; margin-bottom: 18px; }
.cw-logo { height: 52px; width: auto; display: block; }
.cw-title { font-size: 1.2rem; font-weight: 800; color: #0a1f12; margin-bottom: 10px; }
.cw-desc { font-size: .875rem; line-height: 1.65; color: #4b5563; margin-bottom: 22px; }
.cw-settings { border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; margin-bottom: 20px; text-align: left; }
.cw-settings[hidden] { display: none !important; }
.cw-toggle-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f3f4f6; }
.cw-toggle-row:last-of-type { border-bottom: none; }
.cw-toggle-info strong { display: block; font-size: .85rem; font-weight: 700; color: #111827; margin-bottom: 2px; }
.cw-toggle-info span { font-size: .78rem; color: #6b7280; line-height: 1.4; }
.cw-always { font-size: .78rem; font-weight: 700; color: #79b434; white-space: nowrap; }
.cw-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cw-switch input { opacity: 0; width: 0; height: 0; }
.cw-slider { position: absolute; inset: 0; background: #d1d5db; border-radius: 24px; cursor: pointer; transition: background .2s; }
.cw-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s; }
.cw-switch input:checked + .cw-slider { background: #79b434; }
.cw-switch input:checked + .cw-slider::before { transform: translateX(20px); }
.cw-btn--save { display: block; width: 100%; background: #79b434; color: #fff; border: none; border-radius: 10px; font-family: inherit; font-size: .88rem; font-weight: 700; padding: 11px 18px; cursor: pointer; margin-top: 14px; transition: background .18s; }
.cw-btn--save:hover { background: #5f9329; }
.cw-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
@media (min-width: 480px) { .cw-actions { flex-direction: row; } }
.cw-btn { display: inline-flex; align-items: center; justify-content: center; font-family: inherit; font-size: .88rem; font-weight: 700; border-radius: 10px; padding: 13px 16px; cursor: pointer; border: 2px solid transparent; transition: all .18s; width: 100%; white-space: nowrap; }
.cw-btn--primary { background: #79b434; color: #fff; border-color: #79b434; }
.cw-btn--primary:hover { background: #5f9329; border-color: #5f9329; }
.cw-btn--outline { background: #fff; color: #1a5c35; border-color: #79b434; }
.cw-btn--outline:hover { background: #f0fdf4; }
.cw-btn--ghost { background: #fff; color: #6b7280; border-color: #d1d5db; }
.cw-btn--ghost:hover { border-color: #9ca3af; color: #374151; }
.cw-legal-links { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; padding-top: 4px; }
.cw-legal-links a { font-size: .75rem; color: #9ca3af; text-decoration: none; }
.cw-legal-links a:hover { color: #1a5c35; text-decoration: underline; }
.cw-legal-links span { color: #d1d5db; font-size: .75rem; }

/* ═══ HEADER ═══ */
.site-header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); background: rgba(13,23,7,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); z-index: 1000; border-bottom: 1px solid rgba(255,255,255,.08); transition: background .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(13,23,7,.96); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; height: 100%; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-accent { color: var(--brand); }
/* Echtes Logo (grün auf weiß) – Chip für dunkle Hintergründe */
.brand-logo { height: 44px; width: auto; display: block; }
.brand-logo--nav { height: 58px; filter: brightness(0) invert(1); }
.brand-logo--sm { height: 72px; }
.logo-chip { display: inline-flex; align-items: center; background: #fff; padding: 6px 13px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.cookie-logo .brand-logo { height: 32px; }
.footer-logo { display: inline-flex; }
.header-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; margin-right: auto; }
.header-nav a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; padding: 7px 13px; border-radius: 9px; transition: all var(--t); }
.header-nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-tel { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.88); font-size: .9rem; font-weight: 600; transition: color var(--t); }
.header-tel:hover { color: var(--brand); }
.header-mobile { display: none; align-items: center; gap: 8px; margin-left: auto; }
.header-trust-strip { display: none; }

/* ═══ HERO ═══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: calc(var(--header-h) + 56px) 0 64px; background: linear-gradient(135deg, var(--deep) 0%, var(--ink-2) 100%); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,23,7,.92) 0%, rgba(13,23,7,.78) 42%, rgba(13,23,7,.55) 100%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; width: 100%; }

.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(121,180,52,.16); color: var(--brand-2); border: 1px solid rgba(121,180,52,.32); font-size: .7rem; font-weight: 700; padding: 6px 13px; border-radius: 999px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.hero-headline { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 900; line-height: 1.1; letter-spacing: -.025em; color: var(--white); margin-bottom: 18px; }
.hero-headline .highlight { color: var(--brand); display: block; }
.hero-sub { font-size: .98rem; color: rgba(255,255,255,.72); line-height: 1.6; margin-bottom: 24px; max-width: 480px; }
.hero-usps { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.hero-usps li { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.92); font-size: .98rem; font-weight: 500; }
.hero-usps .ti-circle-check-filled { color: var(--brand); font-size: 1.2rem; }
.hero-action-btns { display: flex; flex-direction: row; gap: 12px; flex-wrap: wrap; }
.hero-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: var(--radius); font-size: .97rem; font-weight: 700; text-decoration: none; transition: opacity .18s, transform .15s; white-space: nowrap; }
.hero-btn:hover { opacity: .88; transform: translateY(-1px); }
.hero-btn--primary { background: var(--brand); color: #fff; }
.hero-btn--wa { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.hero-btn--wa:hover { border-color: #fff; opacity: 1; }
.hero-btn--calc { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.hero-btn--calc:hover { background: rgba(255,255,255,.2); border-color: #fff; opacity: 1; }
/* Hero Formular */
.hero-inner > * { min-width: 0; }
.hero-form { width: 100%; min-width: 0; }
.lead-form { width: 100%; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 30px; overflow: hidden; }
.lead-step { min-width: 0; }
.lead-head { margin-bottom: 18px; }
.lead-head h2 { font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
@media (min-width: 769px) { .lead-head h2 { font-size: 1.75rem; } }
.lead-head p { font-size: .9rem; color: var(--muted); margin-top: 3px; }
.lead-progress { height: 6px; background: var(--cream); border-radius: 999px; overflow: hidden; margin-bottom: 7px; }
.lead-bar { height: 100%; width: 25%; background: linear-gradient(90deg, var(--brand-d), var(--brand)); border-radius: 999px; transition: width .4s ease; }
.lead-steplabel { font-size: .76rem; color: var(--muted); font-weight: 600; margin-bottom: 20px; }

.lead-step { display: none; }
.lead-step.active { display: block; animation: fadeStep .3s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.lead-q { font-size: 1.12rem; font-weight: 800; color: var(--text); margin-bottom: 16px; letter-spacing: -.01em; }

.lead-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.lead-tiles--5 { grid-template-columns: repeat(3, 1fr); }
.lead-tiles--3 { grid-template-columns: repeat(3, 1fr); }
.lead-tile { cursor: pointer; }
.lead-tile input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.lead-tile-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 16px 8px; min-height: 92px; background: var(--cream); border: 2px solid var(--line); border-radius: var(--radius); font-size: .82rem; font-weight: 600; color: var(--text); transition: all var(--t); }
.lead-tile-inner i { font-size: 1.7rem; color: var(--brand-d); transition: color var(--t); }
.lead-tile:hover .lead-tile-inner { border-color: var(--brand); background: #fff; transform: translateY(-2px); }
.lead-tile input:checked ~ .lead-tile-inner, .lead-tile.selected .lead-tile-inner { border-color: var(--brand); background: rgba(121,180,52,.12); color: var(--brand-dd); }

.form-trust-bar { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; padding: 10px 12px; background: rgba(251,188,4,.08); border-radius: var(--radius); border: 1px solid rgba(251,188,4,.25); }
.form-trust-top { display: inline-flex; align-items: center; gap: 6px; }
.form-trust-stars { color: var(--gold); font-size: .95rem; display: inline-flex; gap: 1px; line-height: 1; }
.form-trust-text { font-size: .82rem; color: var(--muted); }
.form-trust-text strong { color: var(--text); font-weight: 700; }
.google-g-sm { flex-shrink: 0; }

.lead-field { margin-bottom: 13px; }
.lead-field label { display: block; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.lead-field input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius); font-size: .95rem; transition: border-color var(--t); background: #fff; color: var(--text); }
.lead-field input:focus { outline: none; border-color: var(--brand); }
.lead-dsgvo { display: flex; align-items: flex-start; gap: 10px; font-size: .8rem; color: var(--muted); line-height: 1.45; cursor: pointer; margin: 4px 0 18px; }
.lead-dsgvo input { margin-top: 2px; flex-shrink: 0; accent-color: var(--brand); width: 16px; height: 16px; }
.lead-dsgvo a { color: var(--brand-dd); text-decoration: underline; }
.lead-nav { display: flex; gap: 10px; align-items: center; justify-content: space-between; margin-top: 18px; }
.lead-nav .lead-submit { flex: 1; }

.lead-success { text-align: center; padding: 16px 0; }
.lead-success-icon { font-size: 3.2rem; color: var(--brand); margin-bottom: 12px; }
.lead-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.lead-success p { font-size: .92rem; color: var(--muted); line-height: 1.55; margin-bottom: 20px; }

/* ═══ TRUST-LEISTE ═══ */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); padding: 22px 0; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.trust-item > i { font-size: 1.5rem; color: var(--brand); }
.trust-item .ti-star-filled { color: var(--gold); }
.trust-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text); }
.trust-item span { font-size: .78rem; color: var(--muted); }
.trust-divider { width: 1px; height: 38px; background: var(--line); }

/* ═══ LEISTUNGEN ═══ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line); transition: transform var(--t), box-shadow var(--t); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-media { position: relative; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--brand-dd) 0%, var(--brand) 100%); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.svc-media i { font-size: 3rem; color: rgba(255,255,255,.85); }
.svc-media[style] i { display: none; } /* Icon ausblenden sobald Bild gesetzt */
.svc-body { padding: 22px 24px 26px; }
.svc-body h3 { font-size: 1.12rem; font-weight: 800; color: var(--ink); margin-bottom: 9px; }
.svc-body > p { font-size: .9rem; color: var(--muted); line-height: 1.55; margin-bottom: 15px; }
.svc-body ul { display: flex; flex-direction: column; gap: 7px; }
.svc-body li { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; color: var(--text); font-weight: 500; }
.svc-body .ti-check { color: var(--brand-d); font-size: .95rem; margin-top: 2px; flex-shrink: 0; }

/* ═══ VORTEILE (Image-Kacheln) ═══ */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg, var(--brand-dd), var(--ink)); background-size: cover; background-position: center; display: flex; align-items: flex-end; box-shadow: var(--shadow); transition: transform var(--t); }
.benefit-card:hover { transform: translateY(-5px); }
.benefit-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,23,7,.92) 0%, rgba(13,23,7,.45) 45%, rgba(13,23,7,.15) 100%); }
.benefit-content { position: relative; z-index: 1; padding: 30px 28px; }
.benefit-kicker { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); background: var(--brand); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.benefit-content h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 10px; letter-spacing: -.01em; }
.benefit-content p { font-size: .92rem; color: rgba(255,255,255,.82); line-height: 1.55; }

/* ═══ PV-RECHNER ═══ */
.section--rechner { position: relative; background: linear-gradient(160deg, var(--ink) 0%, var(--deep) 100%); background-size: cover; background-position: center; padding: 100px 0; overflow: hidden; }
.rechner-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(20,33,11,.93), rgba(13,23,7,.93)); z-index: 0; }
.section--rechner > .container { position: relative; z-index: 1; }
.pv-rechner { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); padding: 40px; max-width: 860px; margin: 0 auto; backdrop-filter: blur(10px); }
.rechner-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 38px; }
.rechner-step { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.step-dot { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.5); transition: all .3s; }
.rechner-step.active .step-dot, .rechner-step.done .step-dot { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.rechner-step span { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.rechner-step.active span { color: var(--brand-2); }
.step-line { flex: 1; height: 2px; background: rgba(255,255,255,.15); margin: 0 8px 22px; min-width: 30px; max-width: 80px; transition: background .3s; }
.step-line.done { background: var(--brand); }
.rechner-panel { display: none; } .rechner-panel.active { display: block; }
.rechner-panel h3 { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.rechner-hint { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.rechner-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 28px; }
.rechner-option { cursor: pointer; }
.rechner-option input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.option-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 14px; background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.12); border-radius: var(--radius); text-align: center; transition: all var(--t); }
.option-card i { font-size: 1.8rem; color: rgba(255,255,255,.6); }
.option-card strong { font-size: .92rem; color: var(--white); font-weight: 700; }
.option-card span { font-size: .76rem; color: rgba(255,255,255,.55); }
.rechner-option:hover .option-card { border-color: rgba(121,180,52,.5); background: rgba(121,180,52,.1); }
.rechner-option input:checked ~ .option-card, .rechner-option.selected .option-card { border-color: var(--brand); background: rgba(121,180,52,.16); }
.rechner-option input:checked ~ .option-card i, .rechner-option input:checked ~ .option-card strong,
.rechner-option.selected .option-card i, .rechner-option.selected .option-card strong { color: var(--brand-2); }
.rechner-nav { display: flex; gap: 12px; align-items: center; justify-content: space-between; }
.rechner-ergebnis { text-align: center; }
.ergebnis-header { margin-bottom: 28px; }
.ergebnis-header i { font-size: 2.6rem; color: var(--brand); margin-bottom: 8px; }
.ergebnis-header h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.ergebnis-header p { font-size: .88rem; color: rgba(255,255,255,.65); }
.ergebnis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }
.ergebnis-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 22px; }
.ergebnis-card--highlight { background: rgba(121,180,52,.18); border-color: rgba(121,180,52,.45); }
.ergebnis-card i { font-size: 1.5rem; color: var(--brand-2); margin-bottom: 8px; }
.ergebnis-label { display: block; font-size: .78rem; color: rgba(255,255,255,.62); margin-bottom: 6px; }
.ergebnis-value { font-size: 1.55rem; font-weight: 900; color: var(--white); }
.ergebnis-card--highlight .ergebnis-value { color: var(--brand-2); }
.ergebnis-hinweis { font-size: .8rem; color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); border-radius: var(--radius); padding: 13px 16px; text-align: left; margin-bottom: 24px; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.ergebnis-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }

/* ═══ ZWISCHEN-CTA ═══ */
.cta-band { background: linear-gradient(120deg, #0f3d1e 0%, #1a5c35 35%, var(--brand) 100%); padding: 52px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 22px, rgba(255,255,255,.025) 22px, rgba(255,255,255,.025) 23px); pointer-events: none; }
.cta-band-logo-ghost { position: absolute; left: -80px; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; opacity: .13; pointer-events: none; }
.cta-band-deco { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); width: 320px; height: 200px; opacity: .9; pointer-events: none; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band-text h3 { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.cta-band-text p { color: rgba(255,255,255,.78); margin-top: 4px; font-weight: 500; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 6px 20px rgba(121,180,52,.35); }
.cta-band .btn-primary:hover { background: #8fcc3e; border-color: #8fcc3e; }
.cta-band .btn-outline-white { color: #fff; border-color: rgba(255,255,255,.55); }
.cta-band .btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ═══ VERGLEICH ═══ */
.vergleich-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.vergleich-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-card); border: 2px solid transparent; }
.vergleich-card--pro { border-color: var(--brand); box-shadow: var(--shadow); }
.vergleich-card--con { border-color: var(--line); opacity: .9; }
.vergleich-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.vergleich-logo { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.vergleich-logo img { border-radius: 7px; }
.vergleich-logo--muted { color: var(--muted); }
.vergleich-logo--muted i { font-size: 1.4rem; }
.vergleich-badge { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: rgba(121,180,52,.14); color: var(--brand-dd); padding: 4px 11px; border-radius: 999px; }
.vergleich-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.vergleich-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--text); line-height: 1.4; }
.vergleich-list .ti-circle-check-filled { color: var(--brand); font-size: 1.2rem; flex-shrink: 0; }
.vergleich-list--con .ti-circle-x { color: #d1502f; font-size: 1.2rem; flex-shrink: 0; }
.vergleich-list--con li { color: var(--muted); }

/* ═══ VORHER / NACHHER ═══ */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ba-slider { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); cursor: ew-resize; user-select: none; touch-action: none; margin: 0; }
.ba-img { position: absolute; inset: 0; background-size: cover; background-position: 68% center; }
.ba-after { background: linear-gradient(135deg, #2a3d1a, var(--brand-dd)); }
.ba-before { background: linear-gradient(135deg, #4a4a4a, #6b6b6b); clip-path: inset(0 65% 0 0); }
.ba-tag { position: absolute; top: 14px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 5px 11px; border-radius: 999px; color: var(--white); }
.ba-tag--before { left: 14px; background: rgba(0,0,0,.55); }
.ba-tag--after { right: 14px; background: var(--brand); color: var(--ink); }
.ba-handle { position: absolute; top: 50%; left: 35%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.35); display: flex; align-items: center; justify-content: center; color: var(--brand-dd); font-size: 1.2rem; z-index: 2; pointer-events: none; }
.ba-handle::before { content: ''; position: absolute; top: -2000px; bottom: -2000px; left: 50%; transform: translateX(-50%); width: 3px; background: var(--white); z-index: -1; }
.ba-slider figcaption { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 14px 16px; background: linear-gradient(to top, rgba(13,23,7,.85), transparent); color: var(--white); font-size: .85rem; font-weight: 600; }

/* ═══ 3 SCHRITTE ═══ */
.schritte-grid { display: flex; align-items: stretch; gap: 0; max-width: 980px; margin: 0 auto 48px; }
.schritt-card { flex: 1; background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 34px 26px; text-align: center; transition: box-shadow var(--t), transform var(--t); }
.schritt-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.schritt-icon { width: 78px; height: 78px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.schritt-num { font-size: .74rem; font-weight: 800; color: var(--brand-dd); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.schritt-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.schritt-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.schritt-arrow { color: var(--brand); font-size: 1.5rem; display: flex; align-items: center; padding: 0 14px; flex-shrink: 0; }
.schritte-cta { text-align: center; }

/* ═══ BEWERTUNGEN (Google) ═══ */
.section--reviews { background: var(--cream); padding: 90px 0; overflow: hidden; }
.reviews-head { text-align: center; max-width: 740px; margin: 0 auto 50px; }
.reviews-head .section-tag { display: inline-block; margin-bottom: 14px; }
.reviews-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
@media (min-width: 900px) { .reviews-head h2 { white-space: nowrap; font-size: 2.2rem; } }
.reviews-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.6; }

.rev-marquee { width: 100%; overflow: hidden; margin-bottom: 22px; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.rev-track { display: flex; gap: 22px; width: max-content; }
.rev-track--ltr { animation: scrollLeft 42s linear infinite; }
.rev-track--rtl { animation: scrollRight 42s linear infinite; }
.rev-track:hover { animation-play-state: paused; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.rev-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; width: 360px; flex-shrink: 0; box-shadow: var(--shadow-card); }
.rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: var(--ink); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rev-meta { flex: 1; line-height: 1.2; } .rev-meta strong { display: block; font-size: .92rem; color: var(--text); } .rev-meta span { font-size: .78rem; color: var(--muted); }
.rev-g { flex-shrink: 0; }
.rev-stars { color: var(--gold); font-size: .95rem; margin-bottom: 10px; display: flex; gap: 1px; }
.rev-card p { font-size: .9rem; color: var(--text); line-height: 1.55; }
.reviews-cta { text-align: center; margin-top: 30px; }

/* ═══ EINZUGSGEBIET ═══ */
.section--einzug-deko { position: relative; overflow: hidden; }
.einzug-deko-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.section--einzug-deko > .container { position: relative; z-index: 1; }
.einzug-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.einzug-text .section-tag { display: inline-block; margin-bottom: 14px; }
.einzug-text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: var(--ink); margin-bottom: 16px; letter-spacing: -.02em; }
.einzug-text > p { color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.einzug-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.einzug-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .94rem; color: var(--text); line-height: 1.45; }
.einzug-list li i { margin-top: 2px; flex-shrink: 0; }
.einzug-list .ti-map-pin-filled { color: var(--brand-d); font-size: 1.1rem; }
.einzug-list .ti-circle-check-filled { color: var(--brand); font-size: 1.1rem; }
.einzug-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.einzug-map--img { background: transparent; border: none; box-shadow: none; }
.einzug-map-img { width: 100%; height: auto; display: block; }

/* ═══ KONTAKT (neu) ═══ */
.section--contact { position: relative; background: var(--ink) center/cover no-repeat; padding: 100px 0; }
.section--contact.has-img { background-color: transparent; }
.section--contact::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,31,18,.88) 0%, rgba(10,31,18,.75) 100%); pointer-events: none; z-index: 0; }
.section--contact > * { position: relative; z-index: 1; }
.contact-form-card { max-width: 720px; margin: 0 auto 40px; }
.contact-form-card .lead-form { padding: 36px; }
.contact-form-card .lead-tiles { grid-template-columns: repeat(2, 1fr); }
.contact-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto 48px; }
.contact-method { display: flex; align-items: center; gap: 13px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius); padding: 16px 18px; transition: all var(--t); backdrop-filter: blur(6px); }
.contact-method:not(.contact-method--hours):hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.42); transform: translateY(-3px); }
.cm-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(121,180,52,.35); color: var(--brand-2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-method--wa .cm-icon { background: rgba(37,211,102,.35); color: #3dd77e; }
.cm-text { line-height: 1.25; } .cm-text strong { display: block; font-size: .9rem; color: var(--white); } .cm-text span { font-size: .8rem; color: rgba(255,255,255,.78); }

.contact-map-band { position: relative; max-width: 1000px; margin: 0 auto; }
.contact-map-band iframe { width: 100%; border-radius: var(--radius-lg); display: block; }
.map-address-card { position: absolute; top: 24px; left: 24px; background: var(--white); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 4px; max-width: 230px; }
.map-address-card img { border-radius: 8px; margin-bottom: 4px; max-width: 150px; height: auto; display: block; }
.map-address-card strong { font-size: 1rem; color: var(--ink); }
.map-address-card span { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.map-consent-note { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 10px; display: flex; align-items: center; gap: 5px; justify-content: center; }

/* ═══ FAQ ═══ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; cursor: pointer; font-weight: 700; font-size: .98rem; color: var(--text); list-style: none; transition: background var(--t); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--cream); }
.faq-q i { flex-shrink: 0; font-size: 1.1rem; color: var(--brand-d); transition: transform .3s; }
.faq-item[open] .faq-q i { transform: rotate(180deg); }
.faq-item[open] .faq-q { background: var(--cream); color: var(--brand-dd); }
.faq-a { padding: 0 22px 20px; background: var(--cream); }
.faq-a p { font-size: .92rem; color: var(--muted); line-height: 1.65; }
.faq-a strong { color: var(--brand-dd); }

/* ═══ CLOSING CTA ═══ */
.closing-cta { position: relative; background: linear-gradient(135deg, var(--deep) 0%, var(--brand-dd) 130%); background-size: cover; background-position: center; padding: 110px 0; text-align: center; overflow: hidden; }
.closing-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(13,23,7,.9), rgba(20,33,11,.82)); }
.closing-inner { position: relative; z-index: 1; }
.closing-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(121,180,52,.18); color: var(--brand-2); border: 1px solid rgba(121,180,52,.32); font-size: .8rem; font-weight: 700; padding: 7px 17px; border-radius: 999px; margin-bottom: 24px; text-transform: uppercase; letter-spacing: .05em; }
.closing-inner h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: -.02em; }
.closing-inner p { font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 540px; margin: 0 auto 36px; line-height: 1.6; }
.closing-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.closing-trust { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.closing-trust span { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.7); font-weight: 600; }
.closing-trust i { color: var(--brand); }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--deep); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { border-radius: 9px; }
.footer-logo span { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.55; }
.footer-contact h4, .footer-links h4 { font-size: .82rem; font-weight: 800; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-contact a, .footer-contact span, .footer-links a { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 9px; transition: color var(--t); }
.footer-contact a:hover, .footer-links a:hover { color: var(--white); }
.footer-contact i, .footer-links i { color: var(--brand); font-size: .9rem; }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { text-align: center; font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .benefit-card { aspect-ratio: 4/5; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 0; }
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header-nav, .header-cta { display: none; }
  .header-mobile { display: flex; }
  .header-mobile .btn { display: none; }   /* Angebot-Button auf Mobil ausblenden, Tel+WA bleiben */
  .header-trust-strip { display: flex; justify-content: center; gap: 10px; flex-wrap: nowrap; padding: 6px 12px 8px; background: var(--deep); border-top: 1px solid rgba(255,255,255,.08); }
  .header-trust-strip span { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.88); font-size: .69rem; font-weight: 600; white-space: nowrap; }
  .header-trust-strip .ti-circle-check-filled { color: var(--brand); font-size: .82rem; flex-shrink: 0; }

  .hero-headline { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .hero-action-btns { flex-direction: column; }
  .hero-btn { justify-content: center; }
  .lead-form { padding: 22px; }
  .lead-tiles, .lead-tiles--5, .lead-tiles--3 { grid-template-columns: repeat(2, 1fr); }
  .lead-nav { flex-wrap: wrap; }

  .trust-bar-inner { flex-direction: column; gap: 14px; align-items: center; } .trust-divider { display: none; } .trust-item { flex: none; width: 100%; justify-content: center; }
  .trust-item--hide-mobile { display: none; }
  .trust-item--hide-mobile-stars { display: none; }

  .form-trust-bar { flex-direction: column; gap: 5px; }
  .form-trust-text { text-align: center; }

  .svc-grid { grid-template-columns: 1fr; }

  .section--rechner { padding: 64px 0; }
  .pv-rechner { padding: 22px 14px; }
  .rechner-steps { margin-bottom: 28px; }
  .step-dot { width: 30px; height: 30px; font-size: .78rem; }
  .rechner-step span { font-size: .58rem; letter-spacing: .02em; }
  .step-line { min-width: 6px; max-width: 40px; margin: 0 4px 20px; }
  .rechner-panel h3 { font-size: 1.05rem; }
  .rechner-options { grid-template-columns: repeat(2, 1fr); gap: 10px; grid-auto-rows: 1fr; }
  .rechner-option { height: 100%; }
  .option-card { padding: 14px 10px; height: 100%; justify-content: center; }
  .ergebnis-grid { grid-template-columns: 1fr 1fr; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { flex-direction: column; width: 100%; } .cta-band-btns .btn { width: 100%; }

  .vergleich-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }

  .schritte-grid { flex-direction: column; }
  .schritt-arrow { display: none; }   /* Pfeile auf Mobil entfernen */

  .reviews-head { gap: 20px; }
  .rev-card { width: 300px; }

  .einzug-grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-form-card .lead-form { padding: 24px; }
  .contact-methods { grid-template-columns: 1fr; }
  .map-address-card { position: static; max-width: none; margin-bottom: 16px; }
  .contact-map-band iframe { height: 260px; }

  .closing-btns { flex-direction: column; align-items: center; } .closing-btns .btn { width: 100%; max-width: 360px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; } .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .rechner-options { grid-template-columns: 1fr 1fr; }
  .ergebnis-grid { grid-template-columns: 1fr; }
  .lead-tiles, .lead-tiles--5, .lead-tiles--3 { grid-template-columns: repeat(2, 1fr); }
  .section-header h2 { font-size: 1.85rem; }
  .section-header p { font-size: .92rem; }
}

@media (prefers-reduced-motion: reduce) {
  .rev-track--ltr, .rev-track--rtl { animation: none; }
}

/* ═══ PROMO POPUP ═══ */
.promo-popup { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.55); backdrop-filter: blur(3px); padding: 16px; }
.promo-popup[hidden] { display: none; }
.promo-popup-inner { position: relative; max-width: 400px; width: 100%; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.promo-popup-img { width: 100%; height: auto; display: block; }
.promo-popup-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.55); border: none; color: #fff; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background .2s; }
.promo-popup-close:hover { background: rgba(0,0,0,.8); }
.promo-popup-btns { position: absolute; bottom: 0; left: 0; right: 0; display: flex; gap: 10px; padding: 16px; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%); }
.promo-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 10px; border-radius: 10px; font-size: .92rem; font-weight: 700; text-decoration: none; transition: opacity .2s, transform .15s; }
.promo-btn:hover { opacity: .9; transform: translateY(-1px); }
.promo-btn--call { background: var(--brand); color: #fff; }
.promo-btn--wa { background: #25D366; color: #fff; }
