/* ═══════════════════════════════════════════════════════
   LORE FINANCE – Landingpage Stylesheet
   RGN Marketing · Design-Rezept "Trust Blue / Fintech-Klarheit"
   Strom- & Gas-Wechselservice · Kassel & Nordhessen
═══════════════════════════════════════════════════════ */

:root {
  /* Marken-Blau (aus Logo) */
  --brand:      #2b5bb5;   /* Royal-Blau, Hauptton */
  --brand-2:    #4c82ea;   /* heller, für Verläufe/Akzente */
  --brand-d:    #1f468f;   /* dunkler (Hover) */
  --brand-dd:   #163a78;   /* tief */

  /* Navy (dunkle Kontrast-Sektionen) */
  --navy:       #0b1f3d;
  --navy-2:     #12294c;
  --navy-deep:  #071228;

  /* Spar-Grün – NUR für Ersparnis-/€-Beträge */
  --save:       #12b76a;
  --save-2:     #34d98a;
  --save-d:     #0e9257;

  /* Neutral */
  --ink:        #14213d;   /* dunkles Navy-Ink für Headlines */
  --surface:    #f3f6fc;   /* blau getönter heller BG */
  --surface-2:  #eaf0fa;
  --line:       #e2e9f4;
  --text:       #182742;
  --muted:      #5a6884;
  --white:      #ffffff;
  --gold:       #fbbc04;   /* nur Google-Sterne */

  --radius-sm:  9px;
  --radius:     13px;
  --radius-lg:  20px;
  --shadow:     0 10px 34px rgba(20,40,80,.10);
  --shadow-lg:  0 26px 64px rgba(11,31,61,.22);
  --shadow-card:0 3px 16px rgba(20,40,80,.07);
  --shadow-blue:0 10px 26px rgba(43,91,181,.30);

  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --t: .22s ease;
  --container: 1300px;
  --header-h: 76px;
}

/* ─── 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.55; }
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: 96px 0; }
.section--light { background: var(--surface); }
.section--white { background: var(--white); }
.section--deko { position: relative; overflow: hidden; }
.section--deko > .container { position: relative; z-index: 1; }
.deko-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

/* ─── Section Header ─── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--brand); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; opacity: .65; }
.section-tag--light { color: var(--brand-2); }
.section-tag--light::before { background: var(--brand-2); }
.section-header .section-tag { justify-content: center; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.7vw, 2.95rem); font-weight: 800; line-height: 1.12; letter-spacing: -.025em; color: var(--ink); margin-bottom: 15px; }
.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,.8); }
.hl { color: var(--brand); }
.hl-save { color: var(--save-d); }

/* ─── 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: .84rem; padding: 15px 22px; } }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--brand-d); border-color: var(--brand-d); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(43,91,181,.4); }

.btn-save { background: var(--save); color: #fff; border-color: var(--save); box-shadow: 0 10px 26px rgba(18,183,106,.32); }
.btn-save:hover { background: var(--save-d); border-color: var(--save-d); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--brand-d); border-color: var(--line); }
.btn-outline:hover { background: var(--surface); border-color: var(--brand); }

.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,.38); }
.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(--surface); color: var(--text); }

.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-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px; background: var(--surface-2); color: var(--brand-d); font-size: 1.15rem; border: 1.5px solid var(--line); transition: all var(--t); }
.icon-btn:hover { background: var(--surface); border-color: var(--brand); }
.icon-btn--wa { background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.35); color: #1ea952; }

/* ─── Logo (SVG-Mark + Wortmarke) ─── */
.logo { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word b { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: .01em; color: var(--ink); }
.logo-word b .e { color: var(--brand); }
.logo-word small { font-size: .62rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); margin-top: 3px; margin-left: 1px; }
.logo--light .logo-word b { color: #fff; }
.logo--light .logo-word b .e { color: var(--brand-2); }
.logo--light .logo-word small { color: rgba(255,255,255,.7); }
/* Original-Logo als Bild (transparent ausgeschnitten) */
.logo-img { height: 50px; width: auto; display: block; }
.logo-img--md { height: 62px; }
.logo-img--sm { height: 36px; }
.cw-logo { height: 64px; width: auto; display: block; margin: 0 auto; }
.logo-chip { display: inline-flex; align-items: center; background: #fff; padding: 9px 14px; border-radius: 13px; box-shadow: 0 3px 14px rgba(0,0,0,.2); }
.logo-chip .logo-img { height: 42px; }

/* ═══ HEADER (light glass) ═══ */
.site-header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); z-index: 1000; border-bottom: 1px solid var(--line); transition: box-shadow .3s, background .3s; }
.site-header.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 6px 24px rgba(20,40,80,.09); }
.header-inner { display: flex; align-items: center; height: 100%; gap: 24px; }
.header-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; margin-right: auto; }
.header-nav a { color: var(--text); font-size: .9rem; font-weight: 600; padding: 8px 13px; border-radius: 9px; transition: all var(--t); }
.header-nav a:hover { color: var(--brand); background: var(--surface); }
.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-tel { display: flex; align-items: center; gap: 7px; color: var(--ink); font-size: .9rem; font-weight: 700; transition: color var(--t); }
.header-tel i { color: var(--brand); font-size: 1.15rem; }
.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) + 54px) 0 60px; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-2) 100%); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.hero-media::after { content: ''; position: absolute; inset: 0; background:
  linear-gradient(105deg, rgba(7,18,40,.95) 0%, rgba(9,24,52,.86) 46%, rgba(9,24,52,.55) 100%); }
.hero-flow { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; opacity: .5; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 46px; align-items: center; width: 100%; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(76,130,234,.16); color: #a9c6f7; border: 1px solid rgba(76,130,234,.34); font-size: .72rem; font-weight: 700; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; letter-spacing: .04em; }
.hero-badge .ti-star-filled { color: var(--gold); }
.hero-h1 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--brand-2); margin-bottom: 16px; }
.hero-headline { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 3.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -.03em; color: var(--white); margin-bottom: 18px; }
.hero-headline .save { color: var(--save-2); }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.76); line-height: 1.6; margin-bottom: 24px; max-width: 490px; }
.hero-usps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.hero-usps li { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.94); font-size: .98rem; font-weight: 500; }
.hero-usps .ti { color: var(--save-2); font-size: 1.25rem; flex-shrink: 0; }
.hero-action-btns { display: flex; flex-direction: row; gap: 12px; flex-wrap: wrap; }

/* Hero Formular */
.hero-inner > * { min-width: 0; }
.hero-form { width: 100%; min-width: 0; position: relative; }
.lead-form { width: 100%; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 30px; overflow: hidden; }
.lead-head { margin-bottom: 16px; }
.lead-head h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
@media (min-width: 769px) { .lead-head h2 { font-size: 1.62rem; } }
.lead-head p { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.lead-head .lead-head-save { color: var(--save-d); font-weight: 700; }
.lead-progress { height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden; margin-bottom: 7px; }
.lead-progress[hidden] { display: none; }
.lead-bar { height: 100%; width: 20%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: 999px; transition: width .4s ease; }
.lead-steplabel { font-size: .76rem; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
.lead-steplabel[hidden] { display: none; }

.lead-step { display: none; min-width: 0; }
.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.14rem; font-weight: 800; font-family: var(--font-display); color: var(--text); margin-bottom: 6px; letter-spacing: -.01em; }
.lead-qsub { font-size: .84rem; color: var(--muted); margin-bottom: 16px; }

.lead-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.lead-tiles--2 { grid-template-columns: repeat(2, 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: 9px; text-align: center; padding: 16px 8px; min-height: 92px; background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius); font-size: .84rem; font-weight: 600; color: var(--text); transition: all var(--t); }
.lead-tile-inner i { font-size: 1.7rem; color: var(--brand); 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(43,91,181,.09); color: var(--brand-dd); }

.form-trust-bar { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; padding: 10px 12px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); }
.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); box-shadow: 0 0 0 3px rgba(43,91,181,.12); }
.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-d); 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(--save); margin-bottom: 12px; }
.lead-success h3 { font-family: var(--font-display); font-size: 1.35rem; 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(20,40,80,.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 (Icon-Karten) ═══ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.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), border-color var(--t); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(43,91,181,.3); }
.svc-media { position: relative; aspect-ratio: 16/10; background: linear-gradient(140deg, var(--brand-dd), var(--brand)); background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.svc-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,20,40,.9) 0%, rgba(9,20,40,.35) 45%, rgba(9,20,40,0) 78%); }
.svc-media h3 { position: relative; z-index: 1; font-family: var(--font-display); font-size: 1.16rem; font-weight: 700; color: #fff; padding: 16px 20px; margin: 0; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
.svc-body { padding: 20px 24px 26px; }
.svc-body > p { font-size: .9rem; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.svc-body ul { display: flex; flex-direction: column; gap: 8px; }
.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(--save-d); font-size: .95rem; margin-top: 3px; flex-shrink: 0; }

/* ═══ STAT-ROW ═══ */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.stat { text-align: center; padding: 8px; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; color: var(--brand); line-height: 1; }
.stat-num.is-save { color: var(--save-d); }
.stat-label { font-size: .86rem; color: var(--muted); margin-top: 8px; font-weight: 500; }

/* ═══ ERSPARNIS-RECHNER ═══ */
.section--rechner { position: relative; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); padding: 96px 0; overflow: hidden; }
.rechner-flow { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .55; z-index: 0; }
.section--rechner > .container { position: relative; z-index: 1; }
.pv-rechner { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 40px; max-width: 880px; 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,.1); 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 { background: var(--brand-2); border-color: var(--brand-2); color: #fff; }
.rechner-step.done .step-dot { background: var(--save); border-color: var(--save); color: #fff; }
.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: #cfe0fb; }
.step-line { flex: 1; height: 2px; background: rgba(255,255,255,.15); margin: 0 8px 22px; min-width: 26px; max-width: 80px; transition: background .3s; }
.step-line.done { background: var(--save); }
.rechner-panel { display: none; } .rechner-panel.active { display: block; }
.rechner-panel h3 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; 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,.06); border: 2px solid rgba(255,255,255,.12); border-radius: var(--radius); text-align: center; transition: all var(--t); height: 100%; justify-content: center; }
.option-card i { font-size: 1.8rem; color: rgba(255,255,255,.65); }
.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(76,130,234,.55); background: rgba(76,130,234,.12); }
.rechner-option input:checked ~ .option-card, .rechner-option.selected .option-card { border-color: var(--brand-2); background: rgba(76,130,234,.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: #cfe0fb; }
.rechner-nav { display: flex; gap: 12px; align-items: center; justify-content: space-between; }
.rechner-ergebnis { text-align: center; }
.ergebnis-header { margin-bottom: 26px; }
.ergebnis-header i { font-size: 2.6rem; color: var(--save-2); margin-bottom: 8px; }
.ergebnis-header h3 { font-family: var(--font-display); 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); }
/* großer Ersparnis-Hauptwert */
.ergebnis-hero { background: linear-gradient(135deg, rgba(18,183,106,.18), rgba(18,183,106,.06)); border: 1px solid rgba(52,217,138,.4); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 18px; }
.ergebnis-hero .eh-label { font-size: .82rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.ergebnis-hero .eh-value { font-family: var(--font-display); font-size: clamp(2.4rem, 7vw, 3.4rem); font-weight: 800; color: var(--save-2); line-height: 1.05; margin: 6px 0 2px; letter-spacing: -.02em; }
.ergebnis-hero .eh-sub { font-size: .84rem; color: rgba(255,255,255,.6); }
.ergebnis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.ergebnis-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 18px 16px; }
.ergebnis-card i { font-size: 1.4rem; color: var(--brand-2); margin-bottom: 8px; }
.ergebnis-label { display: block; font-size: .74rem; color: rgba(255,255,255,.6); margin-bottom: 5px; }
.ergebnis-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); }
.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: 22px; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.ergebnis-hinweis i { color: rgba(255,255,255,.5); flex-shrink: 0; margin-top: 1px; }
.ergebnis-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }

/* ═══ 3 SCHRITTE ═══ */
.schritte-grid { display: flex; align-items: stretch; gap: 0; max-width: 990px; margin: 0 auto 46px; }
.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), border-color var(--t); position: relative; }
.schritt-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(43,91,181,.3); }
.schritt-icon { width: 74px; height: 74px; background: var(--surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 2rem; color: var(--brand); }
.schritt-num { font-size: .74rem; font-weight: 800; color: var(--brand); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.schritt-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; 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 12px; flex-shrink: 0; }
.schritte-cta { text-align: center; }

/* ═══ ZWISCHEN-CTA ═══ */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--brand-dd) 55%, var(--brand) 100%); padding: 92px 0; position: relative; overflow: hidden; }
.cta-media { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.cta-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(11,31,61,.93) 0%, rgba(22,58,120,.86) 55%, rgba(43,91,181,.76) 100%); }
.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-deco { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 320px; height: 200px; opacity: .8; 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-family: var(--font-display); font-size: 1.55rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.cta-band-text p { color: rgba(255,255,255,.82); margin-top: 5px; font-weight: 500; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary { background: #fff; color: var(--brand-d); border-color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover { background: var(--surface); border-color: var(--surface); }

/* ═══ VERGLEICH / ANTI-POSITIONIERUNG ═══ */
.vergleich-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 940px; margin: 0 auto; }
.vergleich-card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-card); border: 2px solid transparent; }
.vergleich-card--pro > .btn-block { margin-top: auto; }
.vergleich-stat { margin-top: auto; background: rgba(192,72,58,.06); border: 1px solid rgba(192,72,58,.18); border-radius: var(--radius); padding: 20px 18px; text-align: center; }
.vs-num { font-family: var(--font-display); font-size: 2.7rem; font-weight: 800; color: #c0483a; line-height: 1; letter-spacing: -.02em; }
.vs-label { font-size: .83rem; color: var(--muted); line-height: 1.5; margin-top: 8px; }
.vergleich-card--pro { border-color: var(--brand); box-shadow: var(--shadow); }
.vergleich-card--con { border-color: var(--line); background: var(--surface); }
.vergleich-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.vergleich-logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; color: var(--ink); }
.vergleich-logo--muted { color: var(--muted); font-family: var(--font); font-weight: 700; }
.vergleich-logo--muted i { font-size: 1.4rem; }
.vergleich-badge { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: rgba(43,91,181,.12); color: var(--brand-d); padding: 4px 11px; border-radius: 999px; }
.vergleich-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.vergleich-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--text); line-height: 1.42; }
.vergleich-list .ti-circle-check-filled { color: var(--save); font-size: 1.2rem; flex-shrink: 0; }
.vergleich-list--con .ti-circle-x { color: #c0483a; font-size: 1.2rem; flex-shrink: 0; }
.vergleich-list--con li { color: var(--muted); }

/* ═══ BEWERTUNGEN (Google) ═══ */
.section--reviews { background: var(--surface); padding: 88px 0; overflow: hidden; }
.reviews-head { text-align: center; max-width: 740px; margin: 0 auto 46px; }
.reviews-head .section-tag { justify-content: center; }
.reviews-head h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; color: var(--ink); }
.reviews-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.6; }
.reviews-score { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 20px; margin-top: 20px; box-shadow: var(--shadow-card); }
.reviews-score .rs-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.reviews-score .rs-stars { color: var(--gold); display: inline-flex; gap: 1px; }
.reviews-score .rs-count { font-size: .82rem; color: var(--muted); }

.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 46s linear infinite; }
.rev-track--rtl { animation: scrollRight 46s 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: #fff; 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 (map-frei: Orts-Pills + Glass-Card) ═══ */
.einzug-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.einzug-text .section-tag { margin-bottom: 14px; }
.einzug-text h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; color: var(--ink); margin-bottom: 15px; letter-spacing: -.02em; }
.einzug-text > p { color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.einzug-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.einzug-pill { display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; font-weight: 600; color: var(--brand-dd); background: var(--white); border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 15px; box-shadow: var(--shadow-card); transition: all var(--t); }
.einzug-pill i { color: var(--brand); font-size: .95rem; }
.einzug-pill:hover { border-color: var(--brand); transform: translateY(-2px); }
.einzug-pill--more { background: var(--surface); color: var(--muted); box-shadow: none; }
.einzug-visual { position: relative; }
.einzug-card { position: relative; z-index: 1; background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%); border-radius: var(--radius-lg); padding: 38px 34px; color: #fff; box-shadow: var(--shadow-lg); overflow: hidden; }
.einzug-card-flow { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.einzug-card-inner { position: relative; z-index: 1; }
.einzug-card .ec-pin { width: 54px; height: 54px; border-radius: 15px; background: rgba(76,130,234,.2); border: 1px solid rgba(76,130,234,.4); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--brand-2); margin-bottom: 18px; }
.einzug-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 6px; }
.einzug-card > p { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.55; margin-bottom: 22px; }
.einzug-stats { display: flex; gap: 14px; margin-bottom: 24px; }
.einzug-stat { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 16px; }
.einzug-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.einzug-stat.is-save strong { color: var(--save-2); }
.einzug-stat span { font-size: .74rem; color: rgba(255,255,255,.6); }
.einzug-addr { display: flex; align-items: center; gap: 11px; font-size: .88rem; color: rgba(255,255,255,.85); border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }
.einzug-addr i { color: var(--brand-2); font-size: 1.3rem; }

/* ═══ KONTAKT ═══ */
.section--contact { position: relative; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); padding: 96px 0; overflow: hidden; }
.contact-flow { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .5; z-index: 0; }
.section--contact > .container { 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: 1000px; margin: 0 auto 46px; }
.contact-method { display: flex; align-items: center; gap: 13px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); 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,.15); border-color: rgba(255,255,255,.34); transform: translateY(-3px); }
.cm-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(76,130,234,.28); color: #a9c6f7; 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,.28); color: #4fe08a; }
.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,.72); }

.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: 240px; }
.map-address-card .logo { margin-bottom: 8px; }
.map-address-card strong { font-family: var(--font-display); 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-container { }
.faq-list { max-width: 800px; 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(--surface); }
.faq-q i { flex-shrink: 0; font-size: 1.1rem; color: var(--brand); transition: transform .3s; }
.faq-item[open] .faq-q i { transform: rotate(180deg); }
.faq-item[open] .faq-q { background: var(--surface); color: var(--brand-d); }
.faq-a { padding: 0 22px 20px; background: var(--surface); }
.faq-a p { font-size: .92rem; color: var(--muted); line-height: 1.65; }
.faq-a strong { color: var(--brand-d); }

/* ═══ CLOSING CTA ═══ */
.closing-cta { position: relative; background: linear-gradient(140deg, var(--navy-deep) 0%, var(--brand-dd) 130%); padding: 108px 0; text-align: center; overflow: hidden; }
.closing-flow { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .5; }
.closing-inner { position: relative; z-index: 1; }
.closing-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(18,183,106,.18); color: var(--save-2); border: 1px solid rgba(18,183,106,.34); font-size: .8rem; font-weight: 700; padding: 7px 17px; border-radius: 999px; margin-bottom: 22px; letter-spacing: .03em; }
.closing-inner h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.95rem); font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -.025em; }
.closing-inner p { font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 34px; line-height: 1.6; }
.closing-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.closing-trust { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.closing-trust span { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.72); font-weight: 600; }
.closing-trust i { color: var(--save-2); }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--navy-deep); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.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-2); font-size: .9rem; }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { text-align: center; font-size: .8rem; color: rgba(255,255,255,.32); line-height: 1.5; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: underline; }

/* ═══ COOKIE BANNER ═══ */
.cw-overlay { position: fixed; inset: 0; background: rgba(7,18,40,.62); 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: 34px 28px 26px; z-index: 9999; width: min(520px, calc(100vw - 24px)); max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,.28); text-align: center; }
.cw-modal[hidden] { display: none !important; }
.cw-logo-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.cw-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--ink); 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: var(--brand); 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: var(--brand); }
.cw-switch input:checked + .cw-slider::before { transform: translateX(20px); }
.cw-btn--save { display: block; width: 100%; background: var(--brand); 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: var(--brand-d); }
.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: var(--brand); color: #fff; border-color: var(--brand); }
.cw-btn--primary:hover { background: var(--brand-d); border-color: var(--brand-d); }
.cw-btn--outline { background: #fff; color: var(--brand-d); border-color: var(--brand); }
.cw-btn--outline:hover { background: var(--surface); }
.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; }
.cw-legal-links a:hover { color: var(--brand-d); text-decoration: underline; }
.cw-legal-links span { color: #d1d5db; font-size: .75rem; }

/* ═══ PROMO POPUP (HTML, kein Bild) ═══ */
.promo-popup { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; background: rgba(7,18,40,.6); backdrop-filter: blur(4px); padding: 16px; }
.promo-popup[hidden] { display: none; }
.promo-card { position: relative; max-width: 420px; width: 100%; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 28px 64px rgba(0,0,0,.4); }
.promo-img { aspect-ratio: 16/9; background: linear-gradient(140deg, var(--navy), var(--brand-d)); background-size: cover; background-position: center; }
.promo-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(18,183,106,.12); color: var(--save-d); border: 1px solid rgba(18,183,106,.3); font-size: .72rem; font-weight: 700; padding: 6px 13px; border-radius: 999px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.promo-body { padding: 22px 30px 28px; }
.promo-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: 8px; }
.promo-body h3 .save { color: var(--save-d); }
.promo-body > p { font-size: .9rem; color: var(--muted); line-height: 1.5; margin-bottom: 18px; }
.promo-body ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.promo-body li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text); font-weight: 500; }
.promo-body li i { color: var(--save-d); font-size: 1.15rem; flex-shrink: 0; }
.promo-popup-btns { display: flex; gap: 10px; }
.promo-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; border-radius: 11px; font-size: .92rem; font-weight: 700; transition: opacity .2s, transform .15s; }
.promo-btn:hover { opacity: .92; transform: translateY(-1px); }
.promo-btn--call { background: var(--brand); color: #fff; }
.promo-btn--wa { background: #25D366; color: #fff; }
.promo-popup-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: none; color: var(--ink); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 3; transition: background .2s, transform .15s; box-shadow: 0 3px 14px rgba(0,0,0,.3); }
.promo-popup-close:hover { background: var(--surface); transform: scale(1.08); }

/* ═══ INTERAKTIVER TARIFRECHNER (Hero-Karte) ═══ */
:root { --cta: #ffb020; --cta-d: #f59e0b; }   /* gelber Signal-CTA */
.btn-cta { background: var(--cta); color: #14213d; border-color: var(--cta); box-shadow: 0 8px 22px rgba(245,158,11,.32); font-weight: 800; }
.btn-cta:hover { background: var(--cta-d); border-color: var(--cta-d); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245,158,11,.42); }

.rechner-card { width: 100%; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px; }
.rc-head { margin-bottom: 16px; }
.rc-head h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
@media (min-width: 769px) { .rc-head h2 { font-size: 1.55rem; } }
.rc-head p { font-size: .88rem; color: var(--muted); margin-top: 4px; }

.energy-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--surface); padding: 5px; border-radius: 14px; margin-bottom: 18px; }
.et-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 10px; font-weight: 700; font-size: .95rem; color: var(--muted); background: transparent; border: 2px solid transparent; transition: all .18s; }
.et-btn i { font-size: 1.2rem; }
.et-btn.active { background: #fff; color: var(--brand-d); box-shadow: var(--shadow-card); }
.et-btn.active[data-energy="gas"] { color: #e07b1a; }

.rc-field { margin-bottom: 16px; }
.rc-label { display: block; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.person-picker { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-bottom: 8px; padding: 0; }
.person-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 4px 0 2px; border: none; background: none; font-weight: 700; font-size: .9rem; color: var(--muted); cursor: pointer; transition: transform .16s ease, color .16s; }
.person-btn i { font-size: 1.4rem; color: var(--muted); transition: color .16s; }
.person-btn:hover { color: var(--brand); }
.person-btn:hover i { color: var(--brand); }
.person-btn.active { color: var(--brand-dd); transform: translateY(-2px) scale(1.1); }
.person-btn.active i { color: var(--brand); }
.rc-slider { width: calc(80% + 22px); margin-left: calc(10% - 11px); -webkit-appearance: none; appearance: none; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%); outline: none; cursor: pointer; margin-top: 2px; }
.rc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(43,91,181,.45); cursor: pointer; }
.rc-slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--brand); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(43,91,181,.45); cursor: pointer; }

.rc-input-wrap { position: relative; display: flex; align-items: center; }
.rc-input-wrap input { width: 100%; padding: 13px 54px 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius); font-size: 1rem; font-weight: 600; color: var(--text); background: #fff; transition: border-color var(--t); }
.rc-input-wrap input::placeholder { font-weight: 500; color: #9aa6bd; }
.rc-input-wrap input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(43,91,181,.12); }
.rc-unit { position: absolute; right: 14px; font-size: .9rem; font-weight: 700; color: var(--muted); pointer-events: none; }
#rcCalcBtn { margin-top: 4px; }

.rc-result { margin-top: 20px; animation: fadeStep .35s ease; }
.rc-result[hidden] { display: none; }
.rc-result-card { background: linear-gradient(135deg, rgba(18,183,106,.12), rgba(18,183,106,.04)); border: 1px solid rgba(18,183,106,.32); border-radius: 16px; padding: 22px; text-align: center; margin-bottom: 14px; }
.rc-result-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 700; }
.rc-result-value { font-family: var(--font-display); font-size: clamp(2rem, 7vw, 2.7rem); font-weight: 800; color: var(--save-d); line-height: 1.05; margin: 5px 0 4px; letter-spacing: -.02em; }
.rc-result-range { font-size: .86rem; color: var(--text); }
.rc-result-range strong { color: var(--save-d); }
.rc-note { font-size: .8rem; color: var(--muted); line-height: 1.55; display: flex; gap: 7px; align-items: flex-start; margin-bottom: 12px; }
.rc-note i { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.rc-context { font-size: .86rem; color: var(--text); line-height: 1.5; background: var(--surface); border-left: 3px solid var(--brand); border-radius: 8px; padding: 12px 14px; margin-bottom: 6px; }
.rc-leadform { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.rc-lead-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.rc-trust-line { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .78rem; color: var(--muted); margin-top: 12px; text-align: center; }
.rc-trust-line i { color: var(--save-d); }
.lead-body[hidden] { display: none; }

/* ═══ TARIFRECHNER-WIZARD (Multi-Step) ═══ */
.rc-progress { height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden; margin-bottom: 7px; }
.rc-progress[hidden] { display: none; }
.rc-progress-bar { height: 100%; width: 16.6%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: 999px; transition: width .4s ease; }
.rc-steplabel { font-size: .76rem; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.rc-steplabel[hidden] { display: none; }
.rc-steps { position: relative; min-height: 300px; display: flex; flex-direction: column; }
.rc-step { display: none; }
.rc-step.active { display: flex; flex-direction: column; flex: 1; animation: fadeStep .3s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.rc-q { font-family: var(--font-display); font-size: 1.16rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; letter-spacing: -.01em; }
.rc-qsub { font-size: .86rem; color: var(--muted); margin-bottom: 16px; }
.rc-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rc-tiles--stack { grid-template-columns: 1fr; }
.rc-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-height: 92px; padding: 14px 8px; background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius); font-family: var(--font); font-weight: 600; font-size: .86rem; color: var(--text); cursor: pointer; transition: all var(--t); }
.rc-tile i { font-size: 1.7rem; color: var(--brand); transition: color var(--t); }
.rc-tile:hover { border-color: var(--brand); background: #fff; transform: translateY(-2px); }
.rc-tile.selected { border-color: var(--brand); background: rgba(43,91,181,.09); color: var(--brand-dd); }
.rc-combo { display: inline-flex; align-items: center; gap: 3px; }
.rc-combo i { font-size: 1.45rem; }
.rc-tile--wide { flex-direction: row; justify-content: flex-start; text-align: left; min-height: 0; padding: 15px 16px; gap: 14px; }
.rc-tile--wide i { flex-shrink: 0; }
.rc-tile--wide span { display: flex; flex-direction: column; gap: 2px; }
.rc-tile--wide strong { font-size: .95rem; color: var(--text); }
.rc-tile--wide small { font-size: .78rem; color: var(--muted); font-weight: 500; }
.rc-tile--wide.selected strong { color: var(--brand-dd); }
.rc-trust { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; padding: 10px 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); font-size: .82rem; color: var(--muted); flex-wrap: wrap; }
.rc-trust-stars { color: var(--gold); display: inline-flex; gap: 1px; }
.rc-trust strong { color: var(--text); }
.rc-field-block { margin-bottom: 14px; }
.rc-usps { display: flex; flex-direction: column; gap: 9px; margin: 16px 0 0; }
.rc-usps li { display: flex; align-items: center; gap: 9px; font-size: .88rem; color: var(--text); font-weight: 500; }
.rc-usps li i { color: var(--save); font-size: 1.15rem; flex-shrink: 0; }
.rc-vhint { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 12px; }
.rc-vhint strong { color: var(--brand-d); }
.rc-nav { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 18px; }
.rc-nav .btn-cta { flex: 1; }
.rc-success { text-align: center; align-items: center; justify-content: center; }
.rc-step .lead-field { margin-bottom: 10px; }
.rc-step .lead-field label { margin-bottom: 5px; }
.rc-step .lead-dsgvo { margin: 2px 0 12px; }

/* Spar-Badge (weiß, leicht schräg) – klebt als Sticker oben rechts an der Rechner-Box */
.spar-badge { position: absolute; top: -40px; right: -8px; z-index: 5; display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; padding: 14px 24px; border-radius: 18px 18px 18px 6px; box-shadow: var(--shadow-lg); transform: rotate(-3deg); }
.spar-badge i { color: var(--cta-d); font-size: 1.6rem; }
.spar-badge .sb-euro { color: var(--save-d); }

/* Sticky Kontakt: mobil Bottom-Bar, Desktop Floating rechts */
.sticky-contact { position: fixed; z-index: 900; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 12px; }
.sc-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1.55rem; color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.3); transition: transform .18s; }
.sc-btn:hover { transform: scale(1.07); }
.sc-btn .sc-label { display: none; }
.sc-wa { background: #25D366; }
.sc-call { background: var(--brand); }

@media (max-width: 768px) {
  body { padding-bottom: 58px; }
  .rechner-card { padding: 46px 18px 22px; }
  .hero-form { margin-top: 16px; }
  .spar-badge { font-size: 1.02rem; padding: 11px 18px; top: -22px; right: -2px; }
  .sticky-contact { left: 0; right: 0; bottom: 0; flex-direction: row; gap: 0; }
  .sc-btn { flex: 1; width: auto; height: 58px; border-radius: 0; font-size: 1.05rem; font-weight: 800; }
  .sc-btn .sc-label { display: inline; }
}

/* ═══ SEKTIONS-HINTERGRUNDBILDER (Kontakt + Finale CTA) ═══ */
.contact-media, .closing-media { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.contact-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(11,31,61,.86) 0%, rgba(7,18,40,.82) 100%); }
.closing-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(7,18,40,.9) 0%, rgba(22,58,120,.8) 130%); }

/* ═══ ERSPARNIS-VERGLEICH (Grafik-Sektion) ═══ */
.spar-compare { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.spar-chart { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 30px 26px; box-shadow: var(--shadow); }
.sc-head { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); text-align: center; margin-bottom: 22px; }
.sc-bars { display: flex; align-items: flex-end; justify-content: center; gap: 44px; height: 240px; margin-bottom: 22px; }
.sc-bar { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; width: 108px; }
.sc-bar-val { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; margin-bottom: 8px; }
.sc-bar--ist .sc-bar-val { color: #c0483a; }
.sc-bar--neu .sc-bar-val { color: var(--save-d); }
.sc-bar-fill { width: 100%; border-radius: 12px 12px 0 0; height: 0; transition: height 1.1s cubic-bezier(.2,.8,.2,1); }
.sc-bar--ist .sc-bar-fill { background: linear-gradient(180deg, #d9705f, #c0483a); }
.sc-bar--neu .sc-bar-fill { background: linear-gradient(180deg, var(--save-2), var(--save)); }
.sc-bar-label { font-size: .82rem; color: var(--text); font-weight: 600; margin-top: 12px; text-align: center; line-height: 1.3; }
.sc-save { display: flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--save-d); background: rgba(18,183,106,.08); border: 1px solid rgba(18,183,106,.28); border-radius: var(--radius); padding: 14px; }
.sc-save i { font-size: 1.4rem; }
.sc-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.spar-copy h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--ink); margin-bottom: 20px; letter-spacing: -.02em; }
.spar-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.spar-points li { display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; color: var(--muted); line-height: 1.5; }
.spar-points strong { color: var(--text); }
.sp-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: 1.15rem; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .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); }
  .einzug-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 62px 0; }
  .header-nav, .header-cta { display: none; }
  .header-mobile { display: flex; }
  .header-mobile .btn { display: none; }
  .header-trust-strip { display: flex; justify-content: center; gap: 14px; flex-wrap: nowrap; padding: 5px 8px 7px; background: var(--surface); border-top: 1px solid var(--line); }
  .header-trust-strip span { display: flex; align-items: center; gap: 4px; color: var(--text); font-size: .64rem; font-weight: 600; white-space: nowrap; }
  .header-trust-strip .ti-star-filled { color: var(--gold); font-size: .72rem; }
  .header-trust-strip .ti-circle-check-filled { color: var(--save-d); font-size: .72rem; }

  .hero-headline { font-size: clamp(1.75rem, 7vw, 2.35rem); }
  .hero-action-btns { flex-direction: column; }
  .hero-action-btns .btn { justify-content: center; width: 100%; }
  .lead-form { padding: 22px; }
  .lead-tiles, .lead-tiles--2 { 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 { width: 100%; justify-content: center; }
  .trust-item--hide-mobile { display: none; }
  .form-trust-bar { flex-direction: column; gap: 5px; }
  .form-trust-text { text-align: center; }

  .svc-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 24px 12px; }

  .section--rechner { padding: 62px 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: .56rem; letter-spacing: .02em; }
  .step-line { min-width: 6px; max-width: 40px; margin: 0 4px 20px; }
  .rechner-panel h3 { font-size: 1.08rem; }
  .rechner-options { grid-template-columns: repeat(2, 1fr); gap: 10px; grid-auto-rows: 1fr; }
  .ergebnis-grid { grid-template-columns: 1fr; }

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

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

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

  .einzug-stats { flex-direction: column; }
  .spar-compare { grid-template-columns: 1fr; gap: 30px; }
  .sc-bars { height: 200px; gap: 30px; }
  .sc-bar { width: 96px; }
  .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; }

  .schritte-grid { flex-direction: column; }
  .schritt-arrow { display: none; }

  .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; }
  .lead-tiles, .lead-tiles--2 { 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; }
  html { scroll-behavior: auto; }
}
