/* ===========================
   VOLT-GAS – TARIFRECHNER CSS
   =========================== */

:root {
  --primary:       #F5A500;
  --primary-dark:  #D48F00;
  --primary-light: #FFF3CD;
  --secondary:     #1A1F36;
  --secondary-mid: #2D3558;
  --accent:        #00C896;
  --accent-dark:   #00A87D;
  --danger:        #E53935;
  --success:       #2ECC71;
  --success-dark:  #27AE60;
  --text:          #1A1F36;
  --text-muted:    #6B7280;
  --border:        #E5E7EB;
  --bg:            #F8F9FA;
  --white:         #FFFFFF;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
  --transition:    0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
/* Absolute Sicherung gegen horizontalen Overflow */
img, video, svg, iframe { max-width: 100%; }

/* === UTILS === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.highlight { color: var(--primary); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary  { background: var(--primary); color: var(--secondary); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,165,0,0.35); }
.btn--ghost    { background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--success  { background: var(--success); color: #fff; }
.btn--success:hover { background: var(--success-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(46,204,113,0.35); }
.btn--sm  { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn--lg  { padding: 0.9rem 1.8rem; font-size: 1rem; }
.arrow { font-style: normal; }

/* === HEADER === */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 1rem; padding-bottom: 1rem;
}
.logo {
  text-decoration: none; display: flex; align-items: center;
}
.logo__img { height: 40px; width: auto; display: block; }
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1; }
.logo__slogan {
  font-size: 0.66rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-left: 2px;
}
@media (max-width: 540px) {
  .logo__slogan { display: none; }  /* Mobile: zu wenig Platz */
}
.logo__img--footer { height: 34px; opacity: 0.95; filter: brightness(0) invert(1); }
.nav { display: flex; gap: 0.25rem; margin-left: auto; align-items: center; }
.nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav a:hover { color: var(--primary); background: rgba(245, 165, 0, 0.08); }
/* 6 Items + Logo + CTA müssen auf mittlere Bildschirme passen */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav { gap: 0.15rem; }
  .nav a { font-size: 0.84rem; padding: 0.65rem 0.6rem; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 40%, #0d2235 70%, #0b1120 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(245,165,0,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(0,200,140,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(100,120,255,0.07) 0%, transparent 60%);
}

.hero__content {
  position: relative; z-index: 1;
  max-width: 820px; width: 100%;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(245,165,0,0.15);
  color: var(--primary); border: 1px solid rgba(245,165,0,0.35);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: 3.6rem; font-weight: 800; line-height: 1.1;
  color: #fff; letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.hero__headline-accent { color: var(--primary); }

.hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  margin-bottom: 0.8rem; max-width: 500px; margin-left: auto; margin-right: auto;
}
.hero__slogan {
  font-size: 1.25rem; font-weight: 700;
  color: var(--primary); letter-spacing: 0.01em;
  margin-bottom: 2rem;
}

/* ── Search Bar Wrapper (für Volti-Anker) ── */
.hero__searchbar-wrap {
  position: relative;
  margin-bottom: 2rem;
}

/* Volti steht RECHTS ÜBER dem Vergleichen-Button (ohne Überlappung) */
.hero__sb-volti {
  position: absolute;
  bottom: calc(100% + 6px);  /* steht komplett über der Searchbar, kleiner Abstand */
  right: 28px;               /* zentriert sich grob über dem Vergleichen-Button */
  width: 130px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 12px 22px rgba(245,165,0,0.35));
  animation: heroVoltiIn 0.9s ease 0.3s both, heroSceneFloat 5s ease-in-out 1.2s infinite;
  transform-origin: bottom center;
}
@keyframes heroVoltiIn {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Tablet → etwas kleiner */
@media (max-width: 900px) {
  .hero__sb-volti { width: 100px; right: 16px; }
}
/* Mobile → ausblenden (Searchbar wird vertikal, Volti würde stören) */
@media (max-width: 720px) {
  .hero__sb-volti { display: none; }
}

/* ── Search Bar ── */
.hero__searchbar {
  display: flex; align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}

.hero__sb-type {
  display: flex; flex-direction: column;
  padding: 0.5rem 0.6rem;
  gap: 0.25rem;
  flex-shrink: 0;
}
.hero__sb-tab {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 0.9rem; border-radius: 8px;
  border: none; background: none;
  font-family: inherit; font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer;
  transition: all 0.18s;
}
.hero__sb-tab.active {
  background: var(--primary-light); color: var(--primary-dark);
}
.hero__sb-tab:hover:not(.active) { background: var(--bg); color: var(--secondary); }

.hero__sb-divider {
  width: 1px; height: 48px;
  background: var(--border); flex-shrink: 0;
}

.hero__sb-field {
  flex: 1; padding: 0.6rem 1.2rem; text-align: left;
}
.hero__sb-field label {
  display: block; font-size: 0.7rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 0.15rem;
}
.hero__sb-field input {
  width: 100%; border: none; outline: none;
  font-family: inherit; font-size: 0.95rem; font-weight: 500;
  color: var(--text); background: transparent;
}
.hero__sb-field input::placeholder { color: #b0b8c8; }

.hero__sb-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: var(--secondary);
  border: none; font-family: inherit;
  font-size: 0.95rem; font-weight: 700;
  padding: 0 1.8rem; height: 100%; min-height: 72px;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
.hero__sb-btn:hover { background: var(--primary-dark); }

/* ── Trust Badges ── */
.hero__badges {
  display: flex; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.hero__badge-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.hero__badge-item svg { color: var(--primary); flex-shrink: 0; }

/* === SECTIONS === */
.section { padding: 6.5rem 0; position: relative; }
.section--calculator { background: var(--bg); padding: 5rem 0 6.5rem; }
.section--dark { background: var(--secondary); color: white; }
/* Tighter mobile padding */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section--calculator { padding: 3rem 0 4rem; }
}
/* Section-Header breathing room */
.section__header { margin-bottom: 3rem; }
.section__header h2 { margin-bottom: 0.8rem; }
.section__header p { max-width: 640px; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) { .section__header { margin-bottom: 2rem; } }

/* Subtle gradient divider between contrasting sections */
.section--persona::before,
.section--guarantees::before,
.section--about::before,
.section--features::before,
.section--testimonials::before,
.section--how::before,
.section--compare::before,
.section--faq::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
  border-radius: 2px;
}
.section__header { text-align: center; margin-bottom: 3rem; }
.section__header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.section__header p  { color: var(--text-muted); font-size: 1.05rem; }
.section__header--light h2 { color: white; }
.section__header--light p  { color: rgba(255,255,255,0.6); }

/* === CALCULATOR === */
.calculator {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 820px; margin: 0 auto;
}

/* Progress bar */
.progress-bar {
  padding: 1.5rem 2rem 0;
  position: relative;
}
.progress-bar__steps {
  display: flex; justify-content: space-between; position: relative; z-index: 1;
}
.step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
}
.step-dot span {
  width: 36px; height: 36px;
  border-radius: 50%; border: 2.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--text-muted);
  background: white; transition: all 0.3s;
}
.step-dot label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; transition: color 0.3s; }
.step-dot.active span  { background: var(--primary); border-color: var(--primary); color: var(--secondary); }
.step-dot.active label { color: var(--primary); }
.step-dot.done span    { background: var(--success); border-color: var(--success); color: white; }
.step-dot.done label   { color: var(--success); }

.progress-bar__line {
  height: 3px; background: var(--border);
  margin: -20px 2.5rem 0; position: relative; z-index: 0;
}
.progress-bar__fill {
  height: 100%; background: var(--primary);
  transition: width 0.4s ease; width: 0%;
}

/* Steps */
.calc-step { display: none; padding: 2rem 2.5rem 2.5rem; animation: fadeIn 0.3s ease; }
.calc-step.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.calc-step__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--secondary); }
.calc-step__sub   { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* Tiles */
.tile-group { display: flex; gap: 1rem; margin-bottom: 0.5rem; }
.tile {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 1.2rem 1rem; border-radius: var(--radius); border: 2px solid var(--border);
  background: var(--bg); cursor: pointer; font-family: inherit;
  transition: all var(--transition);
}
.tile:hover { border-color: var(--primary); background: var(--primary-light); }
.tile.active { border-color: var(--primary); background: var(--primary-light); box-shadow: 0 0 0 3px rgba(245,165,0,0.2); }
.tile__icon  { font-size: 1.8rem; }
/* Line-Icon-Variante (monochrom, B2B-Style wie Check24/Stripe/Tibber) */
svg.tile__icon {
  width: 40px; height: 40px;
  display: block;
  color: #5C6776;                         /* dezentes Slate-Grau (Default) */
  transition: color .18s ease, transform .18s ease;
}
.tile:hover svg.tile__icon  { color: var(--primary); transform: translateY(-1px); }
.tile.active svg.tile__icon { color: var(--primary); }
.tile__label { font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* Fields */
.field-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field-label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.optional { font-weight: 400; color: var(--text-muted); font-size: 0.78rem; }
.field-input {
  padding: 0.7rem 1rem; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 0.95rem;
  color: var(--text); background: white; transition: border-color var(--transition);
  width: 100%;
}
.field-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,165,0,0.15); }
.field-input--sm { width: auto; padding: 0.4rem 0.7rem; font-size: 0.85rem; }
.field-hint { font-size: 0.78rem; color: var(--danger); }

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem;
}
.field-group--half          { grid-column: span 1; }
.field-group--three-quarter { grid-column: span 1; }  /* Wird in größerem Grid überschrieben */
.field-group--quarter       { grid-column: span 1; }

/* Richtwerte */
.richtwerte { margin-bottom: 1.2rem; }
.richtwerte__label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; }
.richtwerte__items { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.richtwert-btn {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 0.5rem 0.8rem;
  font-family: inherit; font-size: 0.78rem; color: var(--text);
  cursor: pointer; text-align: center; line-height: 1.4;
  transition: all var(--transition);
}
.richtwert-btn:hover  { border-color: var(--primary); background: var(--primary-light); }
.richtwert-btn.is-active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(245,165,0,0.25), 0 8px 18px rgba(245,165,0,0.15);
  transform: translateY(-1px);
}
.richtwert-btn.is-active strong { color: var(--primary-dark); }
.richtwert-btn strong { display: block; color: var(--primary); }

/* Step-Dot Click-Hover (zurück-Navigation) */
.step-dot.done { cursor: pointer; }
.step-dot.done:hover span { transform: scale(1.1); box-shadow: 0 4px 12px rgba(34,139,69,0.3); }
.step-dot.done:hover label { text-decoration: underline; }

/* Volti-Hint bei Hausnummer-Eingabe im Straßen-Feld */
.strasse-hint {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, #FFF8EC, #FFEFD0);
  border: 1px solid rgba(245,165,0,0.3);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--text-strong);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.strasse-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.strasse-hint img {
  width: 42px;
  height: auto;
  flex-shrink: 0;
}
.strasse-hint strong { color: var(--primary-dark); }

/* Checkbox */
.checkbox-label {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text); cursor: pointer; margin-bottom: 0.5rem;
}
.checkbox-label input[type="checkbox"] { margin-top: 3px; accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }

/* Nav */
.calc-nav { display: flex; justify-content: flex-end; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* === RESULTS === */
.results-filter {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem; flex-wrap: wrap; gap: 0.8rem;
}
.filter-chips { display: flex; gap: 0.4rem; }
.chip {
  padding: 0.35rem 0.9rem; border-radius: 20px;
  border: 1.5px solid var(--border); background: white;
  font-family: inherit; font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.chip.active { background: var(--primary); border-color: var(--primary); color: var(--secondary); font-weight: 700; }
.chip:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.filter-sort { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); }

.results-summary { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.results-summary strong { color: var(--text); }

/* Tariff card */
.tariff-list { display: flex; flex-direction: column; gap: 1rem; }
.tariff-card {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; display: grid;
  grid-template-columns: 1fr auto; gap: 0.5rem 1.5rem;
  align-items: center; transition: all var(--transition); position: relative;
  background: white;
}
.tariff-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.tariff-card.recommended { border-color: var(--primary); }
.tariff-card__badge {
  position: absolute; top: -10px; left: 1.2rem;
  background: var(--primary); color: var(--secondary);
  font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 20px;
}
.tariff-card__eco-badge {
  position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: white;
  font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 20px;
}
.tariff-card__header {
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.5rem;
}
.tariff-card__logo {
  width: 72px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: white; border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 6px; overflow: hidden;
}
.tariff-card__logo svg,
.tariff-card__logo img {
  width: 100%; height: 100%; object-fit: contain;
}
.tariff-card__logo-placeholder {
  font-size: 1.2rem; font-weight: 800; color: var(--primary);
}
.tariff-card__name { font-size: 1.05rem; font-weight: 700; color: var(--secondary); }
.tariff-card__provider { font-size: 0.8rem; color: var(--text-muted); }
.tariff-card__tags { display: flex; gap: 0.4rem; margin-top: 0.4rem; flex-wrap: wrap; }
.tag {
  font-size: 0.72rem; padding: 0.15rem 0.55rem; border-radius: 4px;
  background: var(--bg); color: var(--text-muted); border: 1px solid var(--border);
}
.tariff-card__details { display: flex; gap: 1.5rem; margin-top: 0.5rem; }
.tariff-detail { font-size: 0.82rem; }
.tariff-detail__label { color: var(--text-muted); display: block; }
.tariff-detail__value { font-weight: 600; color: var(--text); }
.tariff-card__price-box { text-align: right; }
.tariff-card__price-total { font-size: 1.5rem; font-weight: 800; color: var(--secondary); }
.tariff-card__price-label { font-size: 0.75rem; color: var(--text-muted); }
.tariff-card__price-year  { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }
.tariff-card__bonus { font-size: 0.8rem; color: var(--accent-dark); font-weight: 600; margin-top: 0.2rem; }
.tariff-card__action { margin-top: 0.5rem; }

/* Form sections */
.form-section { margin-bottom: 2rem; }
.form-section__title {
  font-size: 1rem; font-weight: 700; color: var(--secondary);
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}

/* Selected tariff summary */
.selected-tariff-summary {
  background: var(--primary-light); border: 1.5px solid var(--primary);
  border-radius: var(--radius); padding: 1.2rem 1.5rem; margin-bottom: 2rem;
}
.selected-tariff-summary .summary-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.5rem;
}
.selected-tariff-summary .summary-label {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted);
}
.selected-tariff-summary .summary-provider-logo {
  height: 64px; width: auto; max-width: 200px;
  object-fit: contain;
  background: transparent;
  display: block;
}
.selected-tariff-summary .summary-provider-fallback {
  font-size: 0.85rem; font-weight: 700; color: var(--secondary);
}
.selected-tariff-summary .tariff-name { font-size: 1.2rem; font-weight: 700; color: var(--secondary); }
.selected-tariff-summary .tariff-price { font-size: 1rem; color: var(--primary-dark); font-weight: 600; margin-top: 0.25rem; }

/* Legal */
.legal-checks { display: flex; flex-direction: column; gap: 0.7rem; }
.link { color: var(--primary); text-decoration: underline; }

/* Success screen */
.success-screen { text-align: center; padding: 2rem 1rem; }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.success-screen h3 { font-size: 1.6rem; font-weight: 800; color: var(--secondary); margin-bottom: 0.8rem; }
.success-screen p  { color: var(--text-muted); margin-bottom: 1.5rem; }
.success-info { background: var(--bg); border-radius: var(--radius); padding: 1rem 1.5rem; margin: 1rem auto 1.5rem; max-width: 420px; text-align: left; font-size: 0.9rem; }
.success-info div { margin-bottom: 0.3rem; }
.success-info strong { color: var(--secondary); }

/* === FEATURES === */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 1.8rem; border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-card__icon {
  width: 56px; height: 56px;
  margin-bottom: 1rem;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  color: var(--primary-dark);
  transition: all var(--transition);
}
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card:hover .feature-card__icon { transform: scale(1.08) rotate(-3deg); }
.feature-card__icon--primary { background: #FFF3CD; color: #B47900; }
.feature-card__icon--green   { background: #D4F5E5; color: #00875F; }
.feature-card__icon--blue    { background: #DCEAFF; color: #2563EB; }
.feature-card__icon--violet  { background: #E9DDFF; color: #6D28D9; }
.feature-card__icon--rose    { background: #FFE0E0; color: #C0392B; }
.feature-card__icon--amber   { background: #FFE8B5; color: #92400E; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p  { font-size: 0.88rem; color: var(--text-muted); }

/* === KONTAKT === */
.kontakt-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.kontakt-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: all var(--transition);
}
.kontakt-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.kontakt-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 0.9rem;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,165,0,0.15);
  color: var(--primary);
  transition: all var(--transition);
}
.kontakt-card__icon svg { width: 28px; height: 28px; }
.kontakt-card:hover .kontakt-card__icon { transform: scale(1.08); background: var(--primary); color: var(--secondary); }
.kontakt-card--whatsapp .kontakt-card__icon,
.kontakt-card--whatsapp:hover .kontakt-card__icon { background: transparent !important; padding: 0; transform: none; color: inherit; }
.section__eyebrow--light {
  background: rgba(245,165,0,0.18);
  color: var(--primary);
  border: 1px solid rgba(245,165,0,0.35);
}
.kontakt-card h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.kontakt-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.kontakt-card--whatsapp { text-decoration: none; cursor: pointer; }
.kontakt-card--whatsapp:hover { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.4); transform: translateY(-3px); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
  animation: slideUp 0.35s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner__inner {
  max-width: 1100px; margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__text strong { font-size: 0.95rem; color: var(--secondary); display: block; margin-bottom: 0.3rem; }
.cookie-banner__text p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.cookie-banner__text a  { color: var(--primary); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* === FOOTER === */
.footer { background: #111827; color: rgba(255,255,255,0.7); padding: 3rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; padding-bottom: 3rem; }
.footer__brand .logo { color: white; font-size: 1.3rem; display: flex; align-items: center; gap: 0.3rem; }
.footer__brand p { margin-top: 0.8rem; font-size: 0.85rem; max-width: 240px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__links .fl-break { grid-column: 1; }
.footer__links h5 { color: white; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.8rem; }
.footer__links a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 0.4rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--primary); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 0; }
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* === PAYMENT METHOD CARDS === */
.payment-method-group {
  display: flex; gap: 1rem; margin-top: 0.5rem;
}
.payment-method-card {
  flex: 1; display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.2rem; border-radius: var(--radius);
  border: 2px solid var(--border); background: var(--bg);
  cursor: pointer; transition: all var(--transition);
}
.payment-method-card input[type="radio"] { display: none; }
.payment-method-card:hover { border-color: var(--primary); }
.payment-method-card.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(245,165,0,0.15);
}
.payment-method-card__icon { font-size: 1.8rem; flex-shrink: 0; }
.payment-method-card strong { display: block; font-size: 0.95rem; color: var(--secondary); }
.payment-method-card span  { font-size: 0.8rem; color: var(--text-muted); }

/* === INFO BOX === */
.info-box {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #EFF6FF; border: 1.5px solid #BFDBFE;
  border-radius: var(--radius); padding: 1rem 1.2rem;
}
.info-box__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-box strong { display: block; color: #1E40AF; margin-bottom: 0.3rem; font-size: 0.9rem; }
.info-box p { color: #3B82F6; font-size: 0.85rem; margin: 0; }

/* === SIGNATURE PAD === */
.signature-block { margin-bottom: 1.5rem; }
.signature-hint  { font-size: 0.82rem; color: var(--text-muted); margin: 0.2rem 0 0.6rem; }
.signature-pad-wrapper {
  position: relative; border: 2px solid var(--border);
  border-radius: var(--radius); background: #fafafa; overflow: hidden;
}
.signature-pad-wrapper:focus-within { border-color: var(--primary); }
.signature-pad {
  display: block; width: 100%; height: 160px; cursor: crosshair; touch-action: none;
}
.signature-clear {
  position: absolute; top: 8px; right: 8px;
  background: white; border: 1.5px solid var(--border);
  border-radius: 6px; padding: 0.25rem 0.6rem;
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.signature-clear:hover { border-color: var(--danger); color: var(--danger); }
.signature-pad-wrapper.signed { border-color: var(--success); background: #fff; }

/* === LOADING OVERLAY === */
.loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,31,54,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.loading-box {
  background: white; border-radius: var(--radius-lg);
  padding: 2.5rem 3rem; text-align: center;
  box-shadow: var(--shadow-lg); min-width: 220px;
}
.spinner {
  width: 44px; height: 44px; margin: 0 auto 1rem;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-box p { font-weight: 600; color: var(--secondary); font-size: 0.95rem; }

/* ─── Volti-Loading-Box (mit Animations-Video) ─────────────────────────── */
.loading-box--volti {
  padding: 1.4rem 2rem 1.8rem;
  min-width: 320px;
  max-width: 380px;
}
.loading-box--volti .volti-video {
  display: block;
  width: 240px;
  height: 240px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF8EC 0%, #FFEFD0 100%);
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(245,165,0,0.18), inset 0 0 0 2px rgba(245,165,0,0.15);
}
.loading-box--volti #loadingMsg {
  font-size: 1.05rem;
  color: var(--text-strong);
  margin: 0 0 0.3rem;
}
.loading-box--volti .loading-box__hint {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
@media (max-width: 480px) {
  .loading-box--volti { min-width: 280px; padding: 1.2rem 1.4rem 1.4rem; }
  .loading-box--volti .volti-video { width: 200px; height: 200px; }
}

/* === ERROR TOAST === */
.error-toast {
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%) translateY(-20px);
  background: #fff; border-left: 5px solid var(--danger);
  color: var(--text); padding: 1rem 1.6rem;
  border-radius: var(--radius); box-shadow: 0 8px 32px rgba(229,57,53,0.2);
  font-size: 0.95rem; font-weight: 600; z-index: 9998;
  opacity: 0; transition: all 0.3s ease; max-width: 500px; width: 92%;
}
.error-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* === SONDERKALKULATION === */
.sonderkalk-banner {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: linear-gradient(135deg, rgba(245,165,0,0.08) 0%, rgba(245,165,0,0.04) 100%);
  border: 1.5px solid rgba(245,165,0,0.3);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.sonderkalk-banner__icon {
  flex-shrink: 0; width: 52px; height: 52px;
  background: rgba(245,165,0,0.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.sonderkalk-banner h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--text); }
.sonderkalk-banner p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.sonderkalk-fields { display: flex; flex-direction: column; gap: 1rem; }

.sonderkalk-success {
  text-align: center; padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(0,180,120,0.06), rgba(0,180,120,0.02));
  border: 1.5px solid rgba(0,180,120,0.25);
  border-radius: var(--radius-lg);
}
.sonderkalk-success__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,180,120,0.15); color: #00b478;
  font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.sonderkalk-success h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.sonderkalk-success p  { color: var(--text-muted); font-size: 0.95rem; }

/* === NO RESULTS === */
.no-results {
  text-align: center; padding: 2.5rem 1rem;
  color: var(--text-muted); font-size: 0.95rem;
  background: var(--bg); border-radius: var(--radius); border: 1.5px dashed var(--border);
}

/* === LOAD MORE === */
.load-more-wrap {
  text-align: center; padding: 1.5rem 0 0.5rem;
}
.load-more-btn {
  padding: 0.75rem 2rem; font-size: 0.95rem; font-weight: 600;
  gap: 0.5rem; border-color: var(--primary); color: var(--primary);
}
.load-more-btn:hover { background: var(--primary-light); }
.load-more-count { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

/* === TARIFF PRICE MONTH === */
.tariff-card__price-month { font-size: 0.82rem; color: var(--text-muted); }

/* === RADIO GROUP === */
.radio-group { display: flex; flex-direction: column; gap: 0.5rem; }
.radio-label {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text); cursor: pointer;
}
.radio-label input[type="radio"] { margin-top: 3px; accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }

/* === AD CHECKS === */
.ad-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; }

/* === FIELD HINT VARIANTS === */
.field-hint--ok  { color: var(--accent-dark) !important; }
.field-hint--err { color: var(--danger) !important; }

/* === FORM GRID 3/4 + 1/4 FIX === */
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 3fr 1fr; }
  .field-group--half          { grid-column: span 1; }
  .field-group--three-quarter { grid-column: 1 / 2; }
  .field-group--quarter       { grid-column: 2 / 3; }
  .field-group:not([class*="field-group--half"]):not([class*="field-group--quarter"]):not([class*="field-group--three-quarter"]) {
    grid-column: 1 / -1;
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header__inner { flex-wrap: wrap; }
  .nav { display: none; }

  .hero { padding: 4rem 1rem 3rem; min-height: auto; }
  .hero__headline { font-size: 2.2rem; }
  .hero__searchbar { flex-direction: column; border-radius: 12px; }
  .hero__sb-type { flex-direction: row; padding: 0.8rem; width: 100%; justify-content: center; border-bottom: 1px solid var(--border); }
  .hero__sb-divider { width: 100%; height: 1px; }
  .hero__sb-field { padding: 0.8rem 1rem; width: 100%; }
  .hero__sb-btn { width: 100%; min-height: 52px; justify-content: center; border-radius: 0; }

  .calc-step { padding: 1.5rem; }
  .progress-bar { padding: 1rem 1rem 0; }
  .step-dot label { display: none; }
  .progress-bar__line { margin: -18px 1rem 0; }

  .form-grid { grid-template-columns: 1fr; }
  .field-group--half, .field-group--three-quarter, .field-group--quarter { grid-column: span 1; }

  .tile-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .tile-group .tile { flex: 1; min-width: 0; padding: 1rem 0.5rem; }
  .tile-group .tile__icon { margin-bottom: 0.4rem; }
  .tile-group .tile__label { font-size: 0.9rem; }
  .richtwerte__items { gap: 0.4rem; }

  .features-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__links { grid-template-columns: 1fr 1fr; }

  .tariff-card { grid-template-columns: 1fr; }
  .tariff-card__price-box { text-align: left; }

  /* Mobile-Fix: 4-Spalten Details (Grundpreis/Arbeitspreis/Laufzeit/Kündigung)
     wrappen in 2x2 statt einer Zeile — passt nicht aufs Handy. */
  .tariff-card__details {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
    margin-top: 0.7rem;
  }
  .tariff-detail__value { word-break: break-word; }
  .tariff-card__live-pick { justify-content: flex-start !important; }
  .tariff-card__bonus-sticker { max-width: 100%; white-space: normal; }

  .results-filter { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   /anbieter-wechseln/ Page (Wechsel-Anleitung Hub)
   ============================================================ */
.awch-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  position: relative;
}
.awch-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.awch-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 0.8rem 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.awch-hero__accent { color: var(--primary); }
.awch-hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 0 1.5rem;
}
.awch-hero__cta-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.awch-hero__cta-row .btn--ghost { color:#fff; border:1px solid rgba(255,255,255,0.3); }
.awch-hero__cta-row .btn--ghost:hover { background: rgba(255,255,255,0.08); }
.awch-hero__volti-wrap {
  margin: 0;
  text-align: center;
  position: relative;
}
.awch-hero__volti {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(245,165,0,0.3));
  animation: awchVoltiBob 4s ease-in-out infinite;
}
.awch-hero__volti-caption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}
@keyframes awchVoltiBob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-6px) rotate(-1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .awch-hero__volti { animation: none; }
}
@media (max-width: 880px) {
  .awch-hero__inner { grid-template-columns: 1fr; }
  .awch-hero__volti-wrap { order: -1; }
  .awch-hero__volti { max-width: 220px; }
}

.section--awch-tldr { padding: 2rem 0; }
.awch-tldr {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: #fffaf0; border: 1px solid #fde8b8;
  border-left: 4px solid var(--primary);
  border-radius: 14px;
}
.awch-tldr__icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.awch-tldr div { font-size: 0.98rem; line-height: 1.6; }

.section--awch-promise {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.awch-promise-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 2.5rem;
  align-items: center;
}
.awch-promise-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 38px rgba(11,17,32,0.12);
  position: relative;
}
.awch-promise-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.awch-promise-photo figcaption {
  padding: 1.2rem 1.3rem 1.3rem;
  background: var(--secondary);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.awch-promise-photo blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.4;
  color: #fff;
  font-style: italic;
  font-weight: 500;
}
.awch-promise-photo cite {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.awch-promise-photo cite strong {
  color: #fff;
  font-weight: 700;
}
.awch-promise__head { text-align: left; max-width: none; margin-bottom: 1.5rem; }
.awch-promise__head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.025em;
}
.awch-promise__head .v2-eyebrow {
  padding-left: 0;
}
.awch-promise__head .v2-eyebrow::before { display: none; }
.awch-promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.awch-promise-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem 1.4rem 1.6rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.awch-promise-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 14px 32px rgba(245,165,0,0.15);
}
.awch-promise-card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: rgba(245,165,0,0.1);
  border: 1px solid rgba(245,165,0,0.3);
  border-radius: 14px;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.awch-promise-card__icon svg { width: 26px; height: 26px; }
.awch-promise-card__num {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--secondary);
  font-feature-settings: "tnum";
  margin-bottom: 0.3rem;
}
.awch-promise-card__num small {
  font-size: 0.4em;
  font-weight: 700;
  margin-left: 0.15em;
  color: var(--text-muted);
  letter-spacing: 0;
}
.awch-promise-card__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.35;
}
.awch-promise-card--zero .awch-promise-card__num { color: #00875a; }
.awch-promise-card--zero .awch-promise-card__icon {
  background: rgba(0,200,150,0.1);
  border-color: rgba(0,200,150,0.3);
  color: #00875a;
}

@media (max-width: 880px) {
  .awch-promise-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .awch-promise-photo { max-width: 280px; margin-left: auto; margin-right: auto; }
  .awch-promise-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .awch-promise-card { padding: 1.4rem 1rem 1.3rem; }
  .awch-promise__head { text-align: center; }
}

.section--awch-process { padding: 4rem 0; background: #fff; }
.awch-process {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; gap: 1rem;
  counter-reset: awch-step;
}
.awch-process__step {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.awch-process__step:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(11,17,32,0.08); }
.awch-process__step--we { background: linear-gradient(135deg, #fffaef 0%, #fff5e0 100%); border-color: #f3d77a; }
.awch-process__num {
  font-size: 1.6rem; font-weight: 800;
  color: var(--primary);
  line-height: 1; letter-spacing: -0.03em;
  font-feature-settings: "tnum";
  min-width: 2.5rem;
}
.awch-process__who {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(11,17,32,0.08);
  color: var(--text);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  align-self: start;
  margin-top: 0.2rem;
}
.awch-process__who--we { background: var(--primary); color: #fff; }
.awch-process__step h3 { margin: 0 0 0.4rem; font-size: 1.1rem; color: var(--secondary); grid-column: 1 / -1; padding-top: 0.5rem; border-top: 1px dashed var(--border); }
.awch-process__step > h3 { padding-top: 1rem; margin-top: 0.5rem; }
.awch-process__step p { margin: 0; color: var(--text-muted); line-height: 1.55; font-size: 0.95rem; grid-column: 1 / -1; }
.awch-process__step a { color: var(--primary); font-weight: 600; }

.section--awch-tech { padding: 4rem 0; background: var(--bg); }
.awch-tech-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  margin-top: 2rem;
}
.awch-tech-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 1.5rem 1.5rem 1.6rem;
}
.awch-tech-card__icon { font-size: 1.8rem; line-height: 1; margin-bottom: 0.6rem; }
.awch-tech-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--secondary); }
.awch-tech-card p { margin: 0; color: var(--text-muted); line-height: 1.55; font-size: 0.93rem; }

.section--awch-checklist { padding: 4rem 0; background: #fff; }
.awch-checklist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.5rem;
  margin: 2rem 0 1.2rem;
}
.awch-checklist__item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.2rem;
  background: #fafbfc; border: 1px solid var(--border); border-radius: 12px;
}
.awch-checklist__num {
  width: 32px; height: 32px;
  background: var(--primary); color: #fff;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
  flex-shrink: 0;
}
.awch-checklist__item h4 { margin: 0 0 0.25rem; font-size: 0.95rem; color: var(--secondary); }
.awch-checklist__item p { margin: 0; color: var(--text-muted); font-size: 0.86rem; line-height: 1.5; }
.awch-checklist__item p a { color: var(--primary); font-weight: 600; }
.awch-checklist__hint { margin-top: 1rem; padding: 1rem 1.2rem; background: rgba(0,200,150,0.08); border-left: 3px solid var(--accent); border-radius: 8px; font-size: 0.92rem; line-height: 1.55; }
.awch-checklist__hint a { color: var(--primary); font-weight: 600; }

.section--awch-timeline { padding: 4rem 0; background: var(--bg); }
.awch-timeline {
  display: grid; gap: 1rem; margin-top: 2rem;
  position: relative;
}
.awch-timeline__item {
  display: grid; grid-template-columns: 8rem 1fr; gap: 1.5rem;
  padding: 1.2rem 1.4rem;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  align-items: start;
}
.awch-timeline__day {
  font-size: 0.85rem; font-weight: 800;
  color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding-top: 0.15rem;
}
.awch-timeline__item strong { display: block; font-size: 1rem; color: var(--secondary); margin-bottom: 0.3rem; }
.awch-timeline__item p { margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }

.section--awch-myths { padding: 4rem 0; background: #fff; }
.awch-myths { display: grid; gap: 1rem; margin-top: 2rem; }
.awch-myth {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.awch-myth__mythos {
  padding: 1.2rem 1.4rem;
  background: rgba(181,55,55,0.06);
  border-right: 1px solid #f4a8a8;
  color: #7a3030;
  font-weight: 600;
  font-style: italic;
}
.awch-myth__wahrheit {
  padding: 1.2rem 1.4rem;
  background: rgba(0,200,150,0.06);
  color: var(--text);
}

.section--awch-faq { padding: 4rem 0; background: var(--bg); }

.section--awch-lifestyle { padding: 3.5rem 0; background: #fff; }
.awch-lifestyle {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.awch-lifestyle figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(11,17,32,0.06);
  transition: transform 0.3s ease;
}
.awch-lifestyle figure:hover { transform: translateY(-4px); }
.awch-lifestyle img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
}
.awch-lifestyle figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
}
.awch-lifestyle__caption {
  text-align: center;
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

.section--awch-video {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fffaef 0%, #fff5e0 100%);
}
.awch-video-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem; align-items: center;
}
.awch-video-player {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 48px rgba(245,165,0,0.22);
  max-width: 360px;
  margin: 0 auto;
}
.awch-video-player video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.awch-video-text h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0.5rem 0 0.9rem;
  letter-spacing: -0.02em;
  color: var(--secondary);
}
.awch-video-text p {
  margin: 0 0 1.2rem;
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}
.awch-video-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.5rem;
}
.awch-video-list li {
  font-size: 0.95rem;
  color: var(--text);
}
@media (max-width: 880px) {
  .awch-lifestyle { grid-template-columns: 1fr; }
  .awch-lifestyle img { height: 220px; }
  .awch-video-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 820px) {
  .awch-tech-grid,
  .awch-checklist { grid-template-columns: 1fr; }
  .awch-process__step { grid-template-columns: auto auto; }
  .awch-process__step h3 { grid-column: 1 / -1; }
  .awch-process__step p { grid-column: 1 / -1; }
  .awch-myth { grid-template-columns: 1fr; }
  .awch-myth__mythos { border-right: 0; border-bottom: 1px solid #f4a8a8; }
  .awch-timeline__item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ============================================================
   /faq/ Page (zentrale FAQ-Hub)
   ============================================================ */
.faq-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}
.faq-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.8rem 0 0.8rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.faq-hero__accent { color: var(--primary); }
.faq-hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  max-width: 620px;
}
.faq-search-wrap {
  position: relative;
  max-width: 580px;
  margin: 0 0 1.5rem;
}
.faq-search__icon {
  position: absolute; left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: rgba(11,17,32,0.5);
}
.faq-search {
  width: 100%;
  padding: 0.95rem 2.8rem 0.95rem 2.85rem;
  border: 0;
  border-radius: 14px;
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}
.faq-search:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.faq-search__clear {
  position: absolute; right: 0.85rem; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border: 0; background: rgba(11,17,32,0.08);
  border-radius: 50%;
  font-size: 1.1rem; line-height: 1;
  color: var(--text-muted); cursor: pointer;
}
.faq-search__clear:hover { background: rgba(11,17,32,0.16); color: var(--text); }

.faq-toc {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1rem;
}
.faq-toc a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.faq-toc a:hover {
  background: rgba(245,165,0,0.18);
  border-color: rgba(245,165,0,0.5);
  color: #fff;
}

.section--faq-cat { padding: 3.5rem 0 1rem; }
.section--faq-cat:nth-of-type(odd) { background: var(--bg); }
.section--faq-cat:nth-of-type(even) { background: #fff; }
.faq-cat__head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.faq-cat__num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  font-feature-settings: "tnum";
  min-width: 2.5rem;
}
.faq-cat__head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--secondary);
  letter-spacing: -0.02em;
}
.faq-list--big { display: grid; gap: 0.7rem; }

.section--faq-fallback { padding: 4rem 0 5rem; background: #fff; }
.faq-fallback {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #fffaef 0%, #fff5e0 100%);
  border: 1px solid #f3d77a;
  border-radius: 18px;
}
.faq-fallback h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: var(--secondary);
}
.faq-fallback p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .faq-cat__head { gap: 0.7rem; }
  .faq-cat__num { font-size: 1.4rem; min-width: 2rem; }
  .faq-search { font-size: 0.95rem; padding: 0.85rem 2.6rem 0.85rem 2.5rem; }
}

/* ============================================================
   /kontakt/ Page
   ============================================================ */
.kontakt-hero { background: linear-gradient(135deg,#0b1120 0%, #1a2742 100%); color:#fff; padding: 3.5rem 0 4rem; }
.kontakt-hero h1 { color:#fff; font-size: clamp(2rem,4vw,2.8rem); margin: 0.8rem 0 1rem; letter-spacing: -0.02em; }
.kontakt-hero__accent { color: var(--primary); }
.kontakt-hero__sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.55; }

.section--kontakt-channels { padding: 3rem 0 1rem; }
.kontakt-channels {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
  margin-top: -3.5rem;
  position: relative; z-index: 2;
}
.kontakt-channel {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 1.6rem 1.3rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 0.35rem;
  box-shadow: 0 10px 28px rgba(11,17,32,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.kontakt-channel:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(11,17,32,0.12); border-color: var(--primary); }
.kontakt-channel__icon {
  width: 50px; height: 50px;
  background: rgba(245,165,0,0.1); border: 1px solid rgba(245,165,0,0.25);
  color: var(--primary);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 0.6rem;
}
.kontakt-channel__label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); font-weight: 600;
}
.kontakt-channel__value { font-size: 1.05rem; color: var(--secondary); }
.kontakt-channel__hint { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }
.kontakt-channel--whatsapp .kontakt-channel__icon { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.35); color: #25d366; }

.section--kontakt-form { padding: 3.5rem 0; background: var(--bg); }
.kontakt-form-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start;
}
.kontakt-form-intro h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin: 0.5rem 0 0.8rem; }
.kontakt-form-intro p { color: var(--text-muted); margin: 0 0 1rem; }
.kontakt-form-bullets { list-style: none; padding: 0; margin: 1rem 0 0; }
.kontakt-form-bullets li { padding: 0.45rem 0; color: var(--text); font-size: 0.95rem; }

.kontakt-form {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem 2rem 1.8rem;
  display: grid; gap: 1rem;
  box-shadow: 0 10px 24px rgba(11,17,32,0.05);
  position: relative;
}
.kontakt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.kontakt-form__field {
  display: flex; flex-direction: column; gap: 0.35rem;
}
.kontakt-form__field span { font-size: 0.85rem; font-weight: 600; color: var(--secondary); }
.kontakt-form__field small { color: var(--text-muted); font-weight: 400; }
.kontakt-form__field input,
.kontakt-form__field select,
.kontakt-form__field textarea {
  padding: 0.7rem 0.9rem; border: 1.5px solid var(--border);
  border-radius: 10px; font: inherit; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kontakt-form__field input:focus,
.kontakt-form__field select:focus,
.kontakt-form__field textarea:focus {
  border-color: var(--primary); outline: none;
  box-shadow: 0 0 0 4px rgba(245,165,0,0.15);
}
.kontakt-form__consent {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
}
.kontakt-form__consent input { margin-top: 0.15rem; }
.kontakt-form__status { margin: 0; font-size: 0.92rem; font-weight: 600; }

.section--kontakt-office { padding: 3.5rem 0; background: #fff; }
.kontakt-office-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.kontakt-office__map {
  aspect-ratio: 4/3; background: linear-gradient(135deg,#e8edf3 0%, #d2dae5 100%);
  border: 1px solid var(--border); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.kontakt-office__map-placeholder {
  text-align: center; color: #7b8898;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.kontakt-office__info h2 { font-size: clamp(1.6rem,3vw,2rem); margin: 0 0 0.6rem; }
.kontakt-office__info > p { color: var(--text-muted); margin: 0 0 1.5rem; }
.kontakt-office__details { display: grid; gap: 1.1rem; margin: 0; }
.kontakt-office__details > div { padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.kontakt-office__details > div:last-child { border-bottom: 0; }
.kontakt-office__details dt {
  font-weight: 700; color: var(--primary);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.kontakt-office__details dd {
  margin: 0; color: var(--text); line-height: 1.55; font-size: 0.95rem;
}
.kontakt-office__details a { color: var(--primary); font-weight: 600; }

.section--kontakt-faq { padding: 3.5rem 0; background: var(--bg); }

@media (max-width: 880px) {
  .kontakt-channels { grid-template-columns: 1fr 1fr; margin-top: -2rem; }
  .kontakt-form-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .kontakt-form__row { grid-template-columns: 1fr; }
  .kontakt-office-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .kontakt-channels { grid-template-columns: 1fr; margin-top: -1.5rem; }
}

/* ============================================================
   /energie-im-haus/ Page
   ============================================================ */
.eih-hero {
  background: linear-gradient(135deg,#0b1120 0%, #1a2742 100%);
  color:#fff; padding: 3.5rem 0 4rem;
}
.eih-hero h1 { color:#fff; font-size: clamp(2rem,4.2vw,3rem); margin: 0.8rem 0 1rem; letter-spacing: -0.02em; line-height: 1.1; }
.eih-hero__accent { color: var(--primary); }
.eih-hero__sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.6; max-width: 660px; }
.eih-hero__cta-row { margin-top: 1.5rem; display: flex; gap: 0.7rem; flex-wrap: wrap; }
.eih-hero__cta-row .btn--ghost { color:#fff; border:1px solid rgba(255,255,255,0.3); }
.eih-hero__cta-row .btn--ghost:hover { background: rgba(255,255,255,0.08); }

.section--eih-top { padding: 4rem 0; background: #fff; }
.eih-top-list { list-style: none; padding: 0; margin: 2rem 0 1.5rem; display: grid; gap: 1rem; }
.eih-top-item {
  display: flex; gap: 1.5rem;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 1.5rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eih-top-item:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(11,17,32,0.08); }
.eih-top-item__rank {
  font-size: 2rem; font-weight: 800; color: var(--primary);
  line-height: 1; letter-spacing: -0.04em;
  font-feature-settings: "tnum";
  flex-shrink: 0; min-width: 3rem;
}
.eih-top-item__body { flex: 1; min-width: 0; }
.eih-top-item__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.eih-top-item__head h3 { margin: 0; font-size: 1.1rem; color: var(--secondary); }
.eih-top-item__share { font-size: 1.05rem; font-weight: 800; color: var(--primary); white-space: nowrap; }
.eih-top-item p { margin: 0 0 0.6rem; color: var(--text-muted); line-height: 1.55; font-size: 0.95rem; }
.eih-top-item__stat {
  display: inline-block; font-size: 0.82rem; font-weight: 700;
  background: rgba(0,200,150,0.1); color: #00875a;
  padding: 0.3rem 0.7rem; border-radius: 8px;
  font-feature-settings: "tnum";
}
.eih-top-note { font-size: 0.9rem; color: var(--text-muted); margin-top: 1.2rem; }

.section--eih-rooms { padding: 4rem 0; background: var(--bg); }
.eih-rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 2rem;
}
.eih-room {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 1.4rem 1.4rem;
}
.eih-room__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.7rem; }
.eih-room__icon { font-size: 1.7rem; line-height: 1; }
.eih-room__head h3 { margin: 0; font-size: 1.05rem; color: var(--secondary); }
.eih-room__pct { font-size: 0.8rem; color: var(--primary); font-weight: 700; }
.eih-room > p { margin: 0 0 0.7rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.eih-room ul {
  list-style: none; padding: 0.7rem 0 0; margin: 0;
  border-top: 1px dashed var(--border);
  display: grid; gap: 0.3rem;
}
.eih-room ul li { font-size: 0.85rem; color: var(--text); }
.eih-room--rest { background: linear-gradient(135deg,#fffaef 0%, #fff5e0 100%); border-color: #f3d77a; }

.section--eih-tips { padding: 4rem 0; background: #fff; }
.eih-tips {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.5rem;
  margin: 2rem 0 0;
  counter-reset: tip;
}
.eih-tips li {
  position: relative;
  padding: 0.85rem 0.9rem 0.85rem 3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
}
.eih-tips li::before {
  counter-increment: tip;
  content: counter(tip, decimal-leading-zero);
  position: absolute;
  left: 0.85rem; top: 0.85rem;
  font-size: 0.82rem; font-weight: 800;
  color: var(--primary);
  font-feature-settings: "tnum";
}
.eih-tips li strong { color: var(--secondary); }

@media (max-width: 880px) {
  .eih-rooms-grid { grid-template-columns: 1fr 1fr; }
  .eih-tips { grid-template-columns: 1fr; }
  .eih-top-item { flex-direction: column; gap: 0.7rem; padding: 1.2rem 1.2rem; }
  .eih-top-item__rank { font-size: 1.7rem; }
}
@media (max-width: 540px) {
  .eih-rooms-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LP-PREVIEW: Landingpage für Instagram-Ads (/lp/)
   ============================================================ */
.lp-header { background: #fff; border-bottom: 1px solid var(--border); }
.lp-header .header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0;
}
.lp-header__cta {
  display: flex; align-items: center; gap: 1rem;
}
.lp-header__phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--secondary); font-weight: 600; font-size: 0.93rem;
  text-decoration: none;
  padding: 0.4rem 0;
}
.lp-header__phone:hover { color: var(--primary); }
.lp-header__phone svg { color: var(--primary); }

.lp-hero-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  color: #fff !important;
  padding: 0.55rem 1rem !important;
  border-radius: 999px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.lp-hero-eyebrow strong {
  color: #ffd954;
  font-weight: 800;
}
.lp-aktion-dot {
  width: 9px; height: 9px;
  background: #ffd954;
  border-radius: 999px;
  animation: lpDotPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,217,84,0.6);
}
@keyframes lpDotPulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,217,84,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,217,84,0);   }
  100% { box-shadow: 0 0 0 0   rgba(255,217,84,0);   }
}

/* === STICKY URGENCY BAR (oben, slide-in nach scroll) === */
.lp-sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9998;
  background: linear-gradient(90deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(255,215,84,0.3);
}
.lp-sticky-bar--visible { transform: translateY(0); }
.lp-sticky-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 0.6rem 1rem;
  flex-wrap: wrap;
}
.lp-sticky-bar__dot {
  width: 8px; height: 8px;
  background: #ffd954;
  border-radius: 999px;
  animation: lpDotPulse 1.5s ease-in-out infinite;
}
.lp-sticky-bar__text { font-size: 0.9rem; }
.lp-sticky-bar__text strong { color: #ffd954; }
.lp-sticky-bar__cta {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--primary); color: #fff;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.2s, background 0.2s;
}
.lp-sticky-bar__cta:hover { background: #d68f00; transform: translateY(-1px); }
#lpCountdown { font-feature-settings: "tnum"; font-weight: 700; color: #ffd954; }

/* === LIMITED STOCK STRIP === */
.lp-limited-strip {
  background: linear-gradient(135deg, #fff3d6 0%, #ffe9b3 100%);
  border-top: 1px solid #f5d68a;
  border-bottom: 1px solid #f5d68a;
  padding: 1.1rem 0;
}
.lp-limited-strip__inner {
  display: flex; align-items: center; gap: 1.5rem;
  max-width: 980px; margin: 0 auto;
}
.lp-limited-strip__item {
  display: flex; flex-direction: column; align-items: flex-start;
  flex-shrink: 0;
}
.lp-limited-strip__item--right { align-items: flex-end; margin-left: auto; }
.lp-limited-strip__num {
  font-size: 1.85rem; font-weight: 800;
  color: #00604a;
  line-height: 1;
  font-feature-settings: "tnum";
}
.lp-limited-strip__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.lp-limited-strip__remaining {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
}
.lp-limited-strip__remaining strong { color: #b53737; font-size: 1.15em; }
.lp-limited-strip__bar {
  flex: 1; max-width: 360px;
  height: 8px;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.lp-limited-strip__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00c896 0%, var(--primary) 60%, #b53737 100%);
  border-radius: 999px;
  transition: width 1s ease;
}
@media (max-width: 720px) {
  .lp-limited-strip__inner { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .lp-limited-strip__item--right { align-items: center; margin-left: 0; }
  .lp-limited-strip__bar { width: 100%; max-width: none; }
  .lp-limited-strip__item { align-items: center; text-align: center; }
}

/* === LP FAQ — nur 5 sichtbar, Rest hinter „Mehr anzeigen" === */
body.is-lp .section--faq .faq-item:nth-of-type(n+6) {
  display: none;
}
body.is-lp.lp-faq-expanded .section--faq .faq-item:nth-of-type(n+6) {
  display: block;
  animation: lpFaqFadeIn 0.3s ease;
}
@keyframes lpFaqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-faq-more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.lp-faq-more__btn { font-size: 0.95rem; padding: 0.7rem 1.5rem; }

/* === LP SECTION DIET — verstecke nur was wirklich nicht hingehört === */
body.is-lp .section--cities,
body.is-lp .section--discovery,
body.is-lp .section--dark,
body.is-lp .section--about,
body.is-lp .section--house { display: none !important; }
/* sichtbar bleiben: .section--persona, .savings-counter, .section--compare,
   .onsite-usp ("Wir kommen zu Ihnen") — Action + Trust für Cold-Traffic */

.lp-footer { background: var(--bg); padding: 2rem 0 1.5rem; border-top: 1px solid var(--border); }
.lp-footer__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  text-align: center;
}
.lp-footer__inner .logo__img--footer {
  height: 32px; filter: none; opacity: 1;
}
.lp-footer__links {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  justify-content: center;
}
.lp-footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.lp-footer__links a:hover { color: var(--primary); }
.lp-footer__copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Auf der LP: einige Mega-Sektionen verstecken die für Marken-Hub gedacht waren */
body.is-lp .section--cities,
body.is-lp .section--discovery,
body.is-lp .section--dark { display: none; }

/* ============================================================
   V2-EDITORIAL: Lebendigkeits-Animationen
   ============================================================ */
.v2-fade-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.v2-fade-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .v2-fade-init { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   V2-EDITORIAL: Premium-Beratung / Magazine-Style
   ============================================================ */

/* === Universelle Editorial-Typografie === */
.v2-headline { text-align: left; max-width: 720px; margin: 0 auto 2.5rem; padding: 0 0.25rem; }
.v2-headline h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--secondary);
  margin: 0.4rem 0 0.7rem;
}
.v2-headline p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 580px;
  margin: 0;
}
.v2-headline--light h2 { color: #fff; }
.v2-headline--light p { color: rgba(255,255,255,0.78); }
.v2-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  position: relative;
  padding-left: 2.5rem;
}
.v2-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 2px;
  background: var(--primary);
  transform: translateY(-50%);
}
.v2-eyebrow--light { color: #ffc870; }
.v2-eyebrow--light::before { background: #ffc870; }

/* === SVG-Icons sizing wrapper === */
.v2-icon-wrap svg, [class*="v2-"]:not(.v2-eyebrow) svg {
  width: 1em; height: 1em; display: inline-block; vertical-align: -0.12em;
}

/* ============================================================
   V2 SEKTION: 3 TÜREN (Bento-Asymmetric)
   ============================================================ */
.section--v2-doors-ed { padding: 5rem 0; background: #fafbfc; }
.v2-doors-bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 540px;
}
.v2-bento-card {
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.v2-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(11,17,32,0.1);
  border-color: var(--secondary);
}
.v2-bento-card--lg {
  grid-row: span 2;
  padding: 0;
  display: grid;
  grid-template-rows: 1fr auto;  /* Foto oben, Text unten */
  overflow: hidden;
  background: var(--secondary);  /* Fallback unterm Text */
}
.v2-bento-card--lg .v2-bento-card__visual {
  position: relative;
  inset: auto;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  min-height: 280px;
}
.v2-bento-card--lg:hover .v2-bento-card__visual { transform: scale(1.04); }
.v2-bento-card--lg::before { display: none; }  /* kein Gradient mehr */
.v2-bento-card__overlay {
  position: relative;
  padding: 1.75rem 1.9rem 1.9rem;
  color: #fff;
  background: var(--secondary);  /* fester dunkelnavy Block */
  z-index: 1;
}
.v2-bento-card__overlay h3 {
  font-size: 1.55rem; margin: 0.4rem 0 0.5rem;
  letter-spacing: -0.02em; font-weight: 700;
}
.v2-bento-card__overlay p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem; line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 360px;
}
.v2-bento-card__overlay .v2-bento-card__icon {
  background: rgba(245,165,0,0.15);
  border-color: rgba(245,165,0,0.32);
  color: var(--primary);
}
.v2-bento-card--lg .v2-bento-card__cta { color: var(--primary); }
.v2-bento-card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  font-size: 1.25rem;
  backdrop-filter: blur(8px);
}
.v2-bento-card--sm {
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.v2-bento-card--sm .v2-bento-card__icon {
  background: rgba(245,165,0,0.1);
  border: 1px solid rgba(245,165,0,0.25);
  color: var(--primary);
}
.v2-bento-card--sm h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--secondary);
}
.v2-bento-card--sm p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}
.v2-bento-card--accent { background: var(--secondary); color: #fff; }
.v2-bento-card--accent h3 { color: #fff; }
.v2-bento-card--accent p { color: rgba(255,255,255,0.78); }
.v2-bento-card--accent .v2-bento-card__icon {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2);
  color: var(--primary);
}
.v2-bento-card--accent .v2-bento-card__cta { color: var(--primary); }
.v2-bento-card__cta {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--primary); font-weight: 700; font-size: 0.92rem;
  margin-top: 0.4rem;
}

/* ============================================================
   V2 SEKTION: WARUM VOLT-GAS (Dark Bento)
   ============================================================ */
.section--v2-why-ed {
  padding: 5rem 0;
  background: #0b1120;
  color: #fff;
  position: relative;
}
.section--v2-why-ed::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,165,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.section--v2-why-ed > * { position: relative; z-index: 1; }

.v2-why-bento {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1rem;
  align-items: start;
}
.v2-why-bento__feature {
  grid-row: span 3;  /* Feature spannt über alle 3 Small-Karten */
  background: #131c2f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  align-self: stretch;
}
.v2-why-bento__photo {
  height: 340px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.v2-why-bento__feature-text { padding: 2rem 2rem 2.2rem; }
.v2-why-bento__pill {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--primary);
  background: rgba(245,165,0,0.12);
  border: 1px solid rgba(245,165,0,0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.v2-why-bento__feature h3 {
  font-size: 1.8rem; margin: 0 0 0.7rem;
  color: #fff; letter-spacing: -0.02em; font-weight: 700; line-height: 1.15;
}
.v2-why-bento__feature p { margin: 0; color: rgba(255,255,255,0.78); line-height: 1.6; font-size: 1rem; }

.v2-why-bento__small {
  background: #131c2f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.3rem 1.4rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.v2-why-bento__small:hover {
  transform: translateY(-2px);
  border-color: rgba(245,165,0,0.3);
}
.v2-why-bento__small-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(245,165,0,0.1);
  border: 1px solid rgba(245,165,0,0.25);
  border-radius: 10px;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.v2-why-bento__small h4 { margin: 0; font-size: 1.05rem; color: #fff; font-weight: 600; }
.v2-why-bento__small p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.5; }

.btn--ghost-on-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost-on-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.v2-why-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   V2 SEKTION: SO ARBEITEN WIR (Flow mit Pfeilen)
   ============================================================ */
.section--v2-how-ed { padding: 5rem 0; background: #fff; }
.v2-how-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 2.5rem;
}
.v2-how-flow__step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.6rem 1.7rem;
  position: relative;
}
.v2-how-flow__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  font-feature-settings: "tnum";
}
.v2-how-flow__step h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--secondary);
  font-weight: 700;
}
.v2-how-flow__step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}
.v2-how-flow__arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--border);
  font-weight: 300;
}

/* ============================================================
   V2 SEKTION: STIMMEN (Editorial Cards mit echten Fotos)
   ============================================================ */
.section--v2-voices-ed { padding: 5rem 0; background: #fafbfc; }
.v2-voices-edit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.v2-voice-edit {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v2-voice-edit:hover { transform: translateY(-3px); box-shadow: 0 18px 32px rgba(11,17,32,0.08); }
.v2-voice-edit img {
  width: 100%; height: 240px;
  object-fit: cover;
  display: block;
}
.v2-voice-edit figcaption { padding: 1.4rem 1.5rem 1.5rem; }
.v2-voice-edit__rating {
  color: var(--primary);
  display: flex; gap: 0.15rem;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.v2-voice-edit__rating svg { width: 1em; height: 1em; }
.v2-voice-edit blockquote {
  margin: 0 0 1rem;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--text);
  quotes: none;
}
.v2-voice-edit blockquote strong { color: var(--secondary); }
.v2-voice-edit cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
}
.v2-voice-edit cite strong { color: var(--secondary); font-weight: 700; }

/* ============================================================
   V2 SEKTION: BLOG (Magazin-Tiles mit großer Nummerierung)
   ============================================================ */
.section--v2-blog-ed { padding: 5rem 0; background: #fff; }
.v2-blog-edit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.v2-blog-tile {
  display: block;
  padding: 2rem 1.7rem 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.v2-blog-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(11,17,32,0.08);
  border-color: var(--primary);
}
.v2-blog-tile__num {
  position: absolute;
  top: 1.4rem; right: 1.7rem;
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(245,165,0,0.18);
  line-height: 1;
  font-feature-settings: "tnum";
}
.v2-blog-tile__tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.v2-blog-tile h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem; line-height: 1.35;
  color: var(--secondary);
  max-width: 90%;
}
.v2-blog-tile p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.v2-blog-tile__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}
.v2-blog-cta-edit { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   V2 SEKTION: TRUST (große Zahlen, dunkler Hintergrund)
   ============================================================ */
.section--v2-trust-ed {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
}
.v2-trust-edit {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.v2-trust-edit__item {
  padding: 1.5rem 0.5rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.v2-trust-edit__item:first-child { border-left: none; }
.v2-trust-edit__big {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.4rem;
  font-feature-settings: "tnum";
}
.v2-trust-edit__big small {
  font-size: 0.5em;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-left: 0.1em;
}
.v2-trust-edit__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.v2-trust-edit__item--accent .v2-trust-edit__big { color: var(--primary); }

/* ============================================================
   MOBILE ANPASSUNG
   ============================================================ */
@media (max-width: 880px) {
  .v2-doors-bento { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: 0; }
  .v2-bento-card--lg { grid-row: span 1; min-height: 380px; }
  .v2-why-bento { grid-template-columns: 1fr; }
  .v2-why-bento__feature { grid-row: span 1; }
  .v2-why-bento__photo { height: 240px; }
  .v2-how-flow {
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1rem;
    margin-top: 1.5rem;
  }
  .v2-how-flow__step {
    grid-column: 2;
    padding: 0.9rem 1.1rem 1rem;
    border-radius: 12px;
    position: relative;
  }
  .v2-how-flow__step::before {
    content: counter(step, decimal-leading-zero);
    counter-increment: step;
    position: absolute;
    left: -2.7rem; top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    width: 2rem; text-align: center;
    font-feature-settings: "tnum";
  }
  .v2-how-flow {
    counter-reset: step;
    position: relative;
  }
  .v2-how-flow::before {
    content: '';
    position: absolute;
    left: 1rem; top: 0.5rem; bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(245,165,0,0.3) 100%);
    border-radius: 1px;
  }
  .v2-how-flow__num { display: none; }
  .v2-how-flow__step h3 { font-size: 1rem; margin: 0 0 0.25rem; }
  .v2-how-flow__step p { font-size: 0.87rem; line-height: 1.5; }
  .v2-how-flow__arrow { display: none; }
  .v2-voices-edit { grid-template-columns: 1fr; }
  .v2-blog-edit { grid-template-columns: 1fr; }
  .v2-trust-edit { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .v2-trust-edit__item { padding: 1rem 0.5rem; }
  .v2-trust-edit__item:nth-child(3) { border-left: none; }
  .v2-headline { text-align: center; }
  .v2-eyebrow { padding-left: 0; }
  .v2-eyebrow::before { display: none; }
  .v2-headline p { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   V2-PREVIEW: Marken-Hub Konzept (/start-v2/)
   ============================================================ */

/* === V2-DRAMA: Lieber Gewinner oder Verlierer? (editorial, no Volti) === */
.section--v2-drama {
  padding: 3.5rem 0 4rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.v2-drama-footnote {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.8;
}
.v2-drama-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin: 2.5rem auto 2rem;
  max-width: 920px;  /* nicht breiter werden — sonst Photos zu groß */
}
.v2-drama-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.v2-drama-card--loser {
  border-color: #d8dde3;
  background: #f8f9fb;
}
.v2-drama-card--loser:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(11,17,32,0.06); }
.v2-drama-card--winner {
  border-color: var(--primary);
  border-width: 2px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(245,165,0,0.12);
}
.v2-drama-card--winner:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(245,165,0,0.2); }

.v2-drama-card__photo-wrap {
  position: relative;
  aspect-ratio: 16 / 10;  /* Desktop: weniger hoch */
  overflow: hidden;
}
@media (max-width: 880px) {
  .v2-drama-card__photo-wrap { aspect-ratio: 4 / 3; }  /* Mobile bleibt portrait-näher */
}
.v2-drama-card__photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.v2-drama-card--loser .v2-drama-card__photo { filter: grayscale(0.35) brightness(0.92); }
.v2-drama-card:hover .v2-drama-card__photo { transform: scale(1.04); }

.v2-drama-card__label {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: rgba(11,17,32,0.78);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.v2-drama-card__label--win {
  background: var(--primary);
  color: #fff;
}

.v2-drama-card__body { padding: 1.25rem 1.4rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.v2-drama-card__body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--secondary);
  font-weight: 600;
}
.v2-drama-card--loser .v2-drama-card__body h3 { color: #5b6675; }
.v2-drama-card__body > p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.v2-drama-card__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem 1rem;
  border-radius: 12px;
  background: rgba(11,17,32,0.05);
  margin-bottom: 0.85rem;
  text-align: center;
  border: 1px solid rgba(11,17,32,0.08);
}
.v2-drama-card__stat-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  font-weight: 700;
}
.v2-drama-card__stat-value {
  font-size: 1.7rem;  /* Desktop: original-Größe */
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #b53737;
  font-feature-settings: "tnum";
  margin-top: 0.1rem;
}
@media (max-width: 880px) {
  .v2-drama-card__stat-value {
    font-size: clamp(2.4rem, 8vw, 3.2rem);  /* Mobile: dominant */
    font-weight: 900;
    letter-spacing: -0.035em;
  }
}
.v2-drama-card__stat--win {
  background: rgba(245,165,0,0.1);
  border-color: rgba(245,165,0,0.3);
}
.v2-drama-card__stat--win .v2-drama-card__stat-value { color: #00875a; }

.v2-drama-card__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.v2-drama-card__points li {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.45;
}
.v2-drama-card--loser .v2-drama-card__points li { color: #6b7682; }

/* Mittelteil: schlichte vertikale Trennlinie mit "oder" Pill (kein Volti) */
.v2-drama-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.3rem;
  align-self: stretch;
}
.v2-drama-vs__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
  min-height: 60px;
}
.v2-drama-vs__or {
  display: inline-block;
  background: #fff;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.v2-drama-vs__bolt {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd954 0%, var(--primary) 100%);
  color: #fff;
  box-shadow:
    0 0 0 4px rgba(245,165,0,0.15),
    0 0 24px rgba(245,165,0,0.5),
    0 8px 20px rgba(245,165,0,0.35);
  animation: v2DramaBoltPulse 2.5s ease-in-out infinite;
}
.v2-drama-vs__bolt svg { width: 26px; height: 26px; }
@keyframes v2DramaBoltPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(245,165,0,0.15),
      0 0 24px rgba(245,165,0,0.5),
      0 8px 20px rgba(245,165,0,0.35);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(245,165,0,0.08),
      0 0 36px rgba(245,165,0,0.7),
      0 12px 28px rgba(245,165,0,0.5);
    transform: scale(1.06);
  }
}
@media (prefers-reduced-motion: reduce) {
  .v2-drama-vs__bolt { animation: none; }
}

/* === V2 FAQ (kompakt, Objection Handler) === */
.section--v2-faq-ed { padding: 4.5rem 0 5rem; background: #fff; }
.v2-faq-edit {
  display: grid; gap: 0.7rem;
  margin-top: 2.5rem;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
}
.v2-faq-item {
  background: #fafbfc;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.v2-faq-item[open] {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 6px 16px rgba(245,165,0,0.08);
}
.v2-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  user-select: none;
  font-weight: 600;
  color: var(--secondary);
}
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-q { font-size: 1.02rem; line-height: 1.4; flex: 1; }
.v2-faq-chev {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
  width: 24px; text-align: center;
}
.v2-faq-item[open] .v2-faq-chev { transform: rotate(45deg); }
.v2-faq-a {
  padding: 0 1.3rem 1.2rem;
  animation: v2FaqFadeIn 0.25s ease;
}
.v2-faq-a p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
}
@keyframes v2FaqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.v2-faq-more {
  text-align: center;
  margin-top: 2rem;
}

/* CTA-Block am Ende — schlicht, kein Box-Background */
.v2-drama-cta {
  text-align: center;
  margin-top: 2rem;
}
.v2-drama-cta .btn { font-size: 1.05rem; padding: 1rem 1.75rem; }

/* Mobile: stack — Mittelteil wird zur horizontalen Linie */
@media (max-width: 880px) {
  .v2-drama-compare { grid-template-columns: 1fr; gap: 0.75rem; }
  .v2-drama-vs {
    flex-direction: row;
    align-self: stretch;
    gap: 0.7rem;
    padding: 0.8rem 0;
  }
  .v2-drama-vs__line {
    flex: 1; width: auto; height: 1px; min-height: 0;
    background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
  }
  .v2-drama-vs__bolt { width: 44px; height: 44px; }
  .v2-drama-vs__bolt svg { width: 20px; height: 20px; }
  .v2-drama-card { max-width: 100%; }
}


.section--v2-doors,
.section--v2-why,
.section--v2-how,
.section--v2-voices,
.section--v2-blog,
.section--v2-trust { padding: 3.5rem 0; }
.section--v2-why    { background: var(--bg); }
.section--v2-voices { background: var(--bg); }
.section--v2-trust  { padding: 2rem 0; background: var(--secondary); color: #fff; }

/* 3-Türen-Block */
.v2-doors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2rem;
}
.v2-door {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 2rem 1.6rem; text-decoration: none; color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: left;
}
.v2-door:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(11,17,32,0.1);
  border-color: var(--primary);
}
.v2-door--primary {
  background: linear-gradient(135deg, #fff 0%, #fff9eb 100%);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(245,165,0,0.15);
}
.v2-door__icon { font-size: 2.4rem; line-height: 1; margin-bottom: 0.5rem; }
.v2-door h3 { margin: 0; color: var(--secondary); font-size: 1.2rem; }
.v2-door p { margin: 0.3rem 0 1rem; color: var(--text-muted); line-height: 1.55; font-size: 0.93rem; flex: 1; }
.v2-door__cta {
  display: inline-block; margin-top: auto;
  color: var(--primary); font-weight: 700; font-size: 0.92rem;
}

/* Warum Volt-Gas Teaser */
.v2-why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2rem;
}
.v2-why-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 1.4rem 1.2rem;
}
.v2-why-card__icon { font-size: 1.8rem; line-height: 1; margin-bottom: 0.5rem; }
.v2-why-card h3 { margin: 0 0 0.4rem; font-size: 1rem; color: var(--secondary); }
.v2-why-card p { margin: 0; color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.v2-why-cta { text-align: center; margin-top: 2rem; }

/* So arbeiten wir */
.v2-how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 2rem;
}
.v2-how-step {
  position: relative; padding: 2rem 1.4rem 1.5rem;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
}
.v2-how-step__num {
  position: absolute; top: -16px; left: 1.5rem;
  width: 36px; height: 36px; background: var(--primary);
  color: #fff; border-radius: 999px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(245,165,0,0.4);
}
.v2-how-step h3 { margin: 0.5rem 0 0.5rem; color: var(--secondary); font-size: 1.1rem; }
.v2-how-step p  { margin: 0; color: var(--text-muted); line-height: 1.55; font-size: 0.93rem; }

/* Kunden-Stimmen */
.v2-voices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 2rem;
}
.v2-voice {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.v2-voice__rating { font-size: 1.05rem; line-height: 1; letter-spacing: 0.1em; }
.v2-voice__quote {
  margin: 0; color: var(--text); line-height: 1.55; font-size: 0.95rem;
  font-style: italic; flex: 1;
}
.v2-voice__author { display: flex; flex-direction: column; padding-top: 0.6rem; border-top: 1px solid var(--border); }
.v2-voice__author strong { color: var(--secondary); font-size: 0.95rem; }
.v2-voice__author span { color: var(--text-muted); font-size: 0.82rem; }

/* Blog-Teaser */
.v2-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 2rem;
}
.v2-blog-card {
  display: block; padding: 1.4rem 1.3rem;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  text-decoration: none; color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.v2-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11,17,32,0.08);
  border-color: var(--primary);
}
.v2-blog-card__tag {
  display: inline-block; margin-bottom: 0.6rem;
  font-size: 0.72rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em;
}
.v2-blog-card h3 { margin: 0 0 0.5rem; color: var(--secondary); font-size: 1.02rem; line-height: 1.35; }
.v2-blog-card p { margin: 0 0 0.8rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }
.v2-blog-card__more { color: var(--primary); font-weight: 600; font-size: 0.85rem; }
.v2-blog-cta { text-align: center; margin-top: 2rem; }

/* Trust-Streifen kompakt (dunkel) */
.v2-trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  text-align: center;
}
.v2-trust-item { display: flex; flex-direction: column; gap: 0.2rem; }
.v2-trust-item strong { color: var(--primary); font-size: 1.6rem; font-weight: 800; }
.v2-trust-item span { color: rgba(255,255,255,0.75); font-size: 0.82rem; }

@media (max-width: 820px) {
  .v2-doors-grid,
  .v2-why-grid,
  .v2-how-steps,
  .v2-voices-grid,
  .v2-blog-grid { grid-template-columns: 1fr; }
  .v2-trust-row { grid-template-columns: 1fr 1fr; gap: 1rem 0.5rem; }
  .v2-trust-item strong { font-size: 1.35rem; }
}

/* ============================================================
   GLOBALER MOBILE-OVERFLOW-FIX
   verhindert horizontales Scrollen durch breite Kinder-Elemente
   ============================================================ */
@media (max-width: 820px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
  }
  body > * { max-width: 100vw; }
  .container, .container--narrow {
    max-width: 100% !important;
    overflow-x: clip; /* moderne Browser */
  }
  /* WhatsApp-Floater + alle position:fixed Elemente nicht über Rand */
  .whatsapp-float, .whatsapp-floating, [class*="whatsapp"] {
    max-width: calc(100vw - 1rem);
  }
  /* Tabellen scrollbar machen statt Viewport zu sprengen */
  table { display: block; max-width: 100%; overflow-x: auto; }
  /* Lange Strings nicht überlaufen lassen */
  h1, h2, h3, p, span, strong, em { overflow-wrap: anywhere; word-break: break-word; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 1.9rem; }
  .hero__badges { gap: 0.8rem; }
  .btn--lg { width: 100%; justify-content: center; }
  .calc-nav { flex-direction: column-reverse; }
  .calc-nav .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   CRO-COMPONENTS – Decoy, Social Proof, Modal, Timer, Sticky
   ============================================================ */

/* === Section variants & helpers === */
.container--narrow { max-width: 820px; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(245,165,0,0.1);
  padding: 0.3rem 0.8rem; border-radius: 20px;
  margin-bottom: 0.8rem;
}
.section--faq { background: var(--bg); }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: 1rem; color: var(--secondary);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(245,165,0,0.04); }
.faq-item__icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; background: var(--primary-light);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 600; line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-item__answer { padding: 0 1.4rem 1.2rem; color: var(--text-muted); line-height: 1.65; font-size: 0.95rem; }
.faq-item__answer ul { margin: 0.5rem 0 0 1.2rem; }
.faq-item__answer li { margin: 0.2rem 0; }
.faq-item__answer strong { color: var(--text); }
.faq-cta {
  margin-top: 2rem; text-align: center;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.faq-cta p { color: var(--text-muted); margin: 0; }

/* === Live Stats / Social Proof === */
.results-summary {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1rem;
}
.results-summary__main { font-size: 0.9rem; color: var(--text-muted); }
.live-stats {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text);
  background: linear-gradient(90deg, rgba(0,200,150,0.08), rgba(245,165,0,0.08));
  padding: 0.45rem 0.85rem; border-radius: 20px;
  border: 1px solid rgba(0,200,150,0.18);
  width: fit-content;
}
.live-stats__sep { color: var(--text-muted); opacity: 0.5; }
.live-stats strong { color: var(--secondary); font-weight: 700; }
.live-stats__pulse,
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  position: relative; flex-shrink: 0;
  animation: pulse-glow 2s infinite;
}
.pulse-dot { display: inline-block; margin-right: 0.35rem; vertical-align: middle; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.7); }
  50%      { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
}

/* === Tariff card – Decoy labels (top-3) === */
.tariff-card__decoy {
  position: absolute; top: -10px; left: 1.2rem;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.22rem 0.75rem; border-radius: 20px;
  display: inline-flex; align-items: center; gap: 0.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  letter-spacing: 0.01em;
}
.tariff-card__decoy--top {
  background: linear-gradient(135deg, var(--primary), #FFB733);
  color: var(--secondary);
}
.tariff-card__decoy--popular {
  background: linear-gradient(135deg, #FF4D6D, #FF7A5C);
  color: white;
}
.tariff-card__decoy--safe {
  background: linear-gradient(135deg, var(--accent), #34D8B0);
  color: white;
}

/* Highlighted tariff card (Top-1 oder API-Empfehlung) */
.tariff-card.is-highlighted {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #FFFCF6 0%, white 30%);
  box-shadow: 0 6px 24px rgba(245,165,0,0.18);
}
.tariff-card.is-highlighted .tariff-card__price-total { color: var(--primary-dark); }

/* Bonus-Sticker (Reciprocity) */
.tariff-card__bonus-sticker {
  display: inline-block;
  background: linear-gradient(135deg, #FFF3CD, #FFE08A);
  color: #8A6500;
  font-size: 0.78rem; font-weight: 700;
  padding: 0.3rem 0.7rem; border-radius: 6px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(245,165,0,0.3);
  cursor: help;
}

/* Live-Pick Microcopy */
.tariff-card__live-pick {
  margin-top: 0.4rem;
  font-size: 0.72rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: flex-end; gap: 0.3rem;
}

/* === Email-Button + Filter Actions Wrapper === */
.filter-actions {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
}
.btn-email-tariffs {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: white; color: var(--text);
  border: 1.5px solid var(--border);
  padding: 0.45rem 0.9rem; border-radius: 8px;
  font-family: inherit; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.btn-email-tariffs:hover {
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,165,0,0.18);
}

/* === Modal === */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(11,17,32,0.6);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; transition: opacity 0.2s ease;
}
.modal.is-open { opacity: 1; }
.modal__box {
  background: white; border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  padding: 2rem; position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95); transition: transform 0.2s ease;
}
.modal.is-open .modal__box { transform: scale(1); }
.modal__close {
  position: absolute; top: 0.8rem; right: 0.8rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg); border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--text-muted); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal__close:hover { background: var(--border); color: var(--text); }
.modal__header { text-align: center; margin-bottom: 1.4rem; }
.modal__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #FFE08A);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 0.8rem;
}
.modal__header h3 { font-size: 1.3rem; font-weight: 800; color: var(--secondary); margin-bottom: 0.4rem; }
.modal__header p  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.modal__body { margin-bottom: 1.4rem; }
.modal__footer {
  display: flex; gap: 0.6rem; justify-content: flex-end;
}
.modal__footer .btn { flex: 1; justify-content: center; }
.modal__trust {
  margin-top: 1.2rem; text-align: center;
  font-size: 0.75rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap;
}

/* === Reservation Banner (Step 5 Header) === */
.reservation-banner {
  display: flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, #FFF8E5 0%, #FFE7C2 100%);
  border: 1px solid rgba(245,165,0,0.35);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  margin-bottom: 1.5rem; position: relative;
  overflow: hidden;
}
.reservation-banner__icon { font-size: 1.6rem; flex-shrink: 0; }
.reservation-banner__text { flex: 1; }
.reservation-banner__text strong {
  display: block; color: var(--secondary); font-size: 0.98rem; font-weight: 700;
}
.reservation-banner__sub {
  display: block; font-size: 0.85rem; color: var(--text); margin-top: 0.15rem;
}
.reservation-banner__timer {
  display: inline-block;
  background: var(--secondary); color: var(--primary);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 700; font-size: 0.95rem;
  padding: 0.1rem 0.45rem; border-radius: 4px;
  margin: 0 0.15rem;
  font-variant-numeric: tabular-nums;
}
.reservation-banner__pulse {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--primary);
  animation: pulse-glow-primary 2s infinite;
}
@keyframes pulse-glow-primary {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,165,0,0.7); }
  50%      { box-shadow: 0 0 0 10px rgba(245,165,0,0); }
}
.reservation-banner.is-expired {
  background: linear-gradient(135deg, #FFF2F0 0%, #FFE0DC 100%);
  border-color: rgba(229,57,53,0.3);
}
.reservation-banner.is-expired .reservation-banner__timer {
  background: var(--danger); color: white;
}

/* === Risk-Reversal-Strip === */
.risk-reversal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem; padding: 1.2rem;
  background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.risk-reversal__item {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--text);
}
.risk-reversal__item svg {
  width: 24px; height: 24px; flex-shrink: 0;
  color: var(--success);
  background: white; padding: 0;
  border-radius: 50%;
}
.risk-reversal__item > div { display: flex; flex-direction: column; gap: 0.1rem; }
.risk-reversal__item strong { font-size: 0.85rem; color: var(--secondary); font-weight: 700; }
.risk-reversal__item span  { font-size: 0.75rem; color: var(--text-muted); }

/* === Sticky Summary Bar (Mobile primary) === */
.sticky-summary {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.sticky-summary__info { flex: 1; min-width: 0; }
.sticky-summary__name {
  font-size: 0.85rem; font-weight: 700; color: var(--secondary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-summary__price {
  font-size: 0.95rem; font-weight: 800; color: var(--primary-dark);
}
@media (min-width: 769px) {
  /* Auf Desktop nur als dezente Hilfe, nicht aufdringlich */
  .sticky-summary { max-width: 480px; left: auto; right: 1rem; bottom: 1rem; border-radius: var(--radius); border: 1px solid var(--border); }
}

/* === Success Toast Variant === */
.error-toast--success {
  background: var(--success) !important;
  color: white !important;
}

/* === Mobile: Adjustments für CRO-Komponenten === */
@media (max-width: 768px) {
  .filter-actions { width: 100%; justify-content: space-between; }
  .tariff-card.is-highlighted .btn--lg { width: 100%; }
  .reservation-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .reservation-banner__pulse { display: none; }
  .risk-reversal { grid-template-columns: 1fr 1fr; padding: 0.9rem; }
  .modal__box { padding: 1.4rem; }
  .modal__footer { flex-direction: column-reverse; }
  /* Sticky-Bar: Platz unten reservieren damit Submit nicht überdeckt wird */
  #step-5.active ~ .calc-nav,
  #step-5.active { padding-bottom: 80px; }
}
@media (max-width: 480px) {
  .tariff-card__decoy { font-size: 0.65rem; padding: 0.18rem 0.55rem; }
  .live-stats { font-size: 0.74rem; flex-wrap: wrap; }
  .faq-item summary { font-size: 0.92rem; padding: 0.95rem 1.1rem; }
}

/* ============================================================
   ERSPARNIS-MECHANIK – Anchoring + Loss Aversion
   ============================================================ */

/* Optionale Eingabe in Step 3 (klappbar) */
.savings-prompt {
  margin: 1.2rem 0 0;
  border: 1.5px dashed rgba(245,165,0,0.45);
  background: linear-gradient(135deg, #FFFBF1, #FFF8E5);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.savings-prompt:hover { border-color: var(--primary); }
.savings-prompt__header {
  display: flex; align-items: center; gap: 0.9rem;
  width: 100%; padding: 0.9rem 1.1rem;
  background: transparent; border: none; cursor: pointer;
  font-family: inherit; text-align: left;
  color: var(--secondary);
  transition: background var(--transition);
}
.savings-prompt__header:hover { background: rgba(245,165,0,0.06); }
.savings-prompt__icon { font-size: 1.4rem; flex-shrink: 0; }
.savings-prompt__title { flex: 1; display: flex; flex-direction: column; gap: 0.1rem; }
.savings-prompt__title strong { font-size: 0.95rem; font-weight: 700; }
.savings-prompt__title span { font-size: 0.78rem; color: var(--text-muted); }
.savings-prompt__chevron {
  font-size: 0.9rem; color: var(--primary-dark);
  flex-shrink: 0; transition: transform var(--transition);
}
.savings-prompt__body {
  padding: 0 1.1rem 1.1rem;
  border-top: 1px dashed rgba(245,165,0,0.3);
  padding-top: 1rem;
  animation: fadeSlideDown 0.3s ease;
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.savings-prompt__hint {
  margin-top: 0.7rem;
  font-size: 0.75rem; color: var(--text-muted);
}

/* Auto-Fill Block in Persönliche-Ersparnis-Sektion
   --subtle: dezente Tipp-Variante unter den Eingabefeldern */
.savings-autofill--subtle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.6rem;
  padding: 0.55rem 0.85rem;
  background: rgba(0, 200, 150, 0.06);
  border: 1px dashed rgba(0, 200, 150, 0.35);
  border-radius: 10px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.savings-autofill--subtle .savings-autofill__text {
  flex: 1 1 240px;
  min-width: 0;
  color: var(--text-muted);
  line-height: 1.45;
}
.savings-autofill--subtle .savings-autofill__text strong {
  color: #00875a;
  font-weight: 600;
  margin-right: 0.15rem;
}
.savings-autofill--subtle .savings-autofill__btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(0, 200, 150, 0.5);
  color: #00875a;
  padding: 0.35rem 0.75rem;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.savings-autofill--subtle .savings-autofill__btn:hover {
  background: #00c896;
  color: #fff;
  border-color: #00c896;
}

/* Inline-Link im Step-Sub-Text */
.calc-step__sub-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.calc-step__sub-link:hover {
  color: #d68f00;
  text-decoration: none;
}
@media (max-width: 600px) {
  .savings-autofill { padding: 0.75rem 0.85rem; }
  .savings-autofill__btn { width: 100%; }
}
.input-with-suffix {
  position: relative;
}
.input-with-suffix input { padding-right: 4.5rem; }
.input-with-suffix__suffix {
  position: absolute; right: 0.9rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem; color: var(--text-muted); font-weight: 500;
  pointer-events: none;
}

/* === Savings Banner über Tariflist === */
.savings-banner {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #E8F8F1 0%, #D4F5E5 100%);
  border: 1.5px solid rgba(0,168,125,0.35);
  position: relative; overflow: hidden;
  animation: bannerSlideIn 0.5s ease;
}
@keyframes bannerSlideIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.savings-banner__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(0,168,125,0.2);
}
.savings-banner__content { flex: 1; min-width: 0; }
.savings-banner__top { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.savings-banner__top .savings-banner__headline { flex: 1 1 auto; }
.savings-banner__headline {
  font-size: 1.05rem; color: var(--secondary); line-height: 1.3;
}
.savings-banner__headline strong {
  font-size: 1.5rem; font-weight: 800; color: var(--accent-dark);
}
.savings-banner__sub {
  font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem;
}
.savings-banner__sub strong { color: var(--text); }
.savings-banner__hint { display: inline; color: var(--text-muted); font-size: 0.78rem; }
.savings-banner__hint a {
  color: var(--primary-dark); text-decoration: underline;
  font-weight: 600;
}
.savings-banner__hint a:hover { color: var(--primary); }
/* Inline-Ersparnis-Eingabe im grünen Ergebnis-Banner */
.savings-inline {
  margin-top: 0.75rem;
  padding: 0.95rem;
  background: #fff;
  border: 1.5px solid rgba(245,165,0,0.55);
  border-radius: var(--radius-sm, 8px);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  animation: savingsInlinePulse 2.2s ease-in-out infinite;
}
.savings-inline[hidden] { display: none; }
.gv-compare__footer--toggle { cursor: pointer; user-select: none; transition: background 0.15s; }
.gv-compare__footer--toggle:hover { background: rgba(245,165,0,0.06); }
.gv-compare__toggle-link { color: var(--primary-dark, #d68f00); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.gv-compare__footer--toggle:hover .gv-compare__toggle-link { color: var(--primary, #F5A500); }
.gv-compare__chevron { vertical-align: middle; margin-left: 0.3rem; color: var(--primary, #F5A500); transition: transform 0.2s ease; }
.gv-compare__footer--toggle.is-open .gv-compare__chevron { transform: rotate(180deg); }
@keyframes savingsInlinePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,165,0,0); border-color: rgba(245,165,0,0.4); }
  50%      { box-shadow: 0 0 0 4px rgba(245,165,0,0.16); border-color: rgba(245,165,0,0.95); }
}
@media (prefers-reduced-motion: reduce) { .savings-inline { animation: none; } }
.savings-inline__fields { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.savings-inline__field { flex: 1 1 165px; display: flex; flex-direction: column; gap: 0.28rem; }
.savings-inline__label { font-size: 0.72rem; font-weight: 600; color: var(--secondary, #1a2b4a); }
.savings-inline__head { margin: 0; font-size: 0.8rem; font-weight: 600; color: var(--secondary, #1a2b4a); line-height: 1.35; }
.savings-inline__inputwrap { display: flex; align-items: stretch; background: #fff; border: 1.5px solid #cdd4df; border-radius: var(--radius-sm, 8px); overflow: hidden; transition: border-color 0.15s, box-shadow 0.15s; }
.savings-inline__inputwrap:focus-within { border-color: var(--primary, #F5A500); box-shadow: 0 0 0 3px rgba(245,165,0,0.18); }
.savings-inline__inputwrap input { flex: 1; min-width: 0; border: none; padding: 0.6rem 0.7rem; font-size: 0.95rem; color: var(--secondary, #1a2b4a); background: transparent; }
.savings-inline__inputwrap input:focus { outline: none; }
.savings-inline__suffix { display: flex; align-items: center; padding: 0 0.7rem; font-size: 0.78rem; color: var(--text-muted, #667); background: #f1f3f6; border-left: 1.5px solid #cdd4df; white-space: nowrap; }
.savings-inline__select { border: 1.5px solid #cdd4df; border-radius: var(--radius-sm, 8px); padding: 0.6rem 0.7rem; font-size: 0.95rem; color: var(--secondary, #1a2b4a); background: #fff; transition: border-color 0.15s, box-shadow 0.15s; }
.savings-inline__select:focus { outline: none; border-color: var(--primary, #F5A500); box-shadow: 0 0 0 3px rgba(245,165,0,0.18); }
.savings-inline__input--err { box-shadow: 0 0 0 2px #ff8f8f inset; }
.savings-inline__btn { align-self: flex-start; background: var(--primary, #F5A500); color: #fff; font-weight: 700; font-size: 0.85rem; border: none; border-radius: var(--radius-sm, 8px); padding: 0.6rem 1.15rem; cursor: pointer; box-shadow: 0 2px 8px rgba(245,165,0,0.3); transition: transform 0.15s, box-shadow 0.15s, background 0.15s; }
.savings-inline__btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(245,165,0,0.4); background: #e09600; }
@media (max-width: 560px) {
  .savings-inline__fields { flex-direction: column; }
  .savings-inline__field { flex: 0 0 auto; }
  .savings-inline__btn { align-self: stretch; text-align: center; }
}
.savings-banner__percent {
  flex-shrink: 0; align-self: center;
  background: var(--accent-dark); color: white;
  font-size: 1.05rem; font-weight: 800;
  padding: 0.35rem 0.7rem; border-radius: 8px;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 14px rgba(0,168,125,0.25);
}

/* Banner-Variante wenn nur Default-Anker (etwas zurückhaltender) */
.savings-banner--default {
  background: linear-gradient(135deg, #F1F8F4 0%, #E8F5EE 100%);
  border-color: rgba(0,168,125,0.2);
}
.savings-banner--default .savings-banner__headline strong { color: var(--accent-dark); }

/* === Per-Card Ersparnis-Anzeige === */
.tariff-card__savings {
  margin-top: 0.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  align-items: flex-end;
}
.tariff-card__savings-bar {
  width: 110px; height: 6px;
  background: rgba(0,168,125,0.12);
  border-radius: 4px; overflow: hidden;
}
.tariff-card__savings-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 4px;
  transition: width 0.6s ease;
}
.tariff-card__savings-text {
  font-size: 0.78rem; color: var(--text-muted);
  white-space: nowrap;
}
.tariff-card__savings-text strong {
  font-size: 0.92rem; color: var(--accent-dark); font-weight: 800;
}

/* Variante: teurer als Vergleich (rote Anzeige – Decoy-Effekt) */
.tariff-card__savings.is-more-expensive .tariff-card__savings-bar {
  background: rgba(229,57,53,0.1);
}
.tariff-card__savings.is-more-expensive .tariff-card__savings-bar-fill {
  background: linear-gradient(90deg, #FFA391, var(--danger));
}
.tariff-card__savings.is-more-expensive .tariff-card__savings-text strong {
  color: var(--danger);
}

/* Mobile-Anpassungen Ersparnis */
@media (max-width: 768px) {
  .tariff-card__savings { align-items: flex-start; }
  .tariff-card__savings-bar { width: 100%; max-width: 200px; }
  .savings-banner { flex-direction: column; align-items: flex-start; text-align: left; gap: 0.6rem; }
  .savings-banner__percent { align-self: flex-start; }
}
@media (max-width: 480px) {
  .savings-banner__headline { font-size: 0.95rem; }
  .savings-banner__headline strong { font-size: 1.25rem; }
}

/* ============================================================
   TRUST · STATS · HOW IT WORKS · COUNTER · TESTIMONIALS · COMPARE
   ============================================================ */

/* === Trust-Strip (Authority) === */
.trust-strip {
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-strip__intro {
  text-align: center;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
  margin-bottom: 1.5rem;
}
.trust-strip__logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2.2rem; row-gap: 1.5rem;
}
.trust-logo {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  color: var(--text-muted);
  opacity: 0.7; transition: all var(--transition);
  filter: grayscale(100%);
}
.trust-logo:hover { opacity: 1; filter: grayscale(0%); transform: translateY(-2px); }
.trust-logo svg { color: var(--text-muted); }
.trust-logo span { font-size: 0.7rem; font-weight: 500; text-align: center; }
.trust-logo--text { text-align: center; }
.trust-logo__big {
  display: block;
  font-size: 0.95rem; font-weight: 900; color: var(--secondary);
  line-height: 1.1;
}

/* === Statistik-Kacheln === */
.stats-tiles {
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.stats-tiles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 1100px; margin: 0 auto;
}
.stat-tile {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.stat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.stat-tile--accent {
  background: linear-gradient(135deg, #FFF9E8, #FFEFC2);
  border-color: rgba(245,165,0,0.3);
}
.stat-tile__icon {
  width: 48px; height: 48px;
  margin: 0 auto 0.8rem;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  color: var(--primary-dark);
}
.stat-tile__icon svg { width: 24px; height: 24px; }
.stat-tile--accent .stat-tile__icon { background: white; color: var(--primary-dark); }
.stat-tile__number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-tile--accent .stat-tile__number { color: var(--primary-dark); }
.stat-tile__label {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* === So funktioniert's === */
.section--how {
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFC 100%);
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 1rem;
  margin-top: 2.5rem;
}
.how-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.how-step__number {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--secondary); color: var(--primary);
  border-radius: 50%;
  font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.how-step__visual {
  margin: 0.6rem auto 1rem;
  display: flex; justify-content: center;
}
.how-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.how-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.how-step__time {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent-dark);
  background: rgba(0,200,150,0.1);
  padding: 0.25rem 0.7rem; border-radius: 12px;
}
.how-step__arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  align-self: center;
}
.how-after {
  margin-top: 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(0,200,150,0.06);
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
}
.how-after svg { color: var(--accent-dark); flex-shrink: 0; }
.how-after strong { color: var(--secondary); }

/* === Live Spar-Counter === */
.savings-counter {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
  color: white;
  text-align: center;
}
.savings-counter__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 50%, #0d2235 100%);
}
.savings-counter__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(245,165,0,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,200,150,0.12) 0%, transparent 60%);
}
.savings-counter__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.savings-counter__label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem; border-radius: 24px;
  backdrop-filter: blur(6px);
}
.savings-counter__pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--success);
  animation: pulse-glow 2s infinite;
}
.savings-counter__amount {
  display: flex; align-items: center; justify-content: center;
  gap: 0.3rem;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-variant-numeric: tabular-nums;
  margin: 0.6rem 0;
}
.savings-counter__currency {
  font-size: 2.4rem; font-weight: 700;
  color: var(--primary);
}
.savings-counter__number {
  font-size: 4.4rem; font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(245,165,0,0.4);
}
.savings-counter__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}
.savings-counter__sub strong {
  color: var(--primary); font-weight: 700; font-variant-numeric: tabular-nums;
}
.savings-counter__cta { margin-top: 0.8rem; }

/* === Testimonials === */
.section--testimonials { background: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: all var(--transition);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.testimonial__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--bg);
  box-shadow: 0 0 0 2px white, 0 0 0 3px var(--border);
  transition: transform var(--transition);
}
.testimonial:hover .testimonial__avatar {
  transform: scale(1.06);
  box-shadow: 0 0 0 2px white, 0 0 0 3px var(--primary);
}
.testimonial__name { font-weight: 700; color: var(--secondary); font-size: 0.95rem; }
.testimonial__location { font-size: 0.78rem; color: var(--text-muted); }
.testimonial__stars {
  color: var(--primary);
  font-size: 0.9rem; letter-spacing: 0.05em;
}
.testimonial__quote {
  color: var(--text);
  font-size: 0.95rem; line-height: 1.6;
  font-style: italic;
  position: relative; padding-left: 1rem;
  border-left: 3px solid var(--primary-light);
}
.testimonial__savings {
  margin-top: auto;
  font-size: 0.85rem; color: var(--accent-dark);
  background: rgba(0,200,150,0.08);
  padding: 0.4rem 0.75rem; border-radius: 8px;
  display: inline-block; width: fit-content;
}
.testimonial__savings strong { font-weight: 800; font-size: 0.95rem; }
.testimonial-cta {
  margin-top: 2rem; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap;
}
.testimonial-cta span {
  color: var(--text-muted); font-size: 0.88rem;
}

/* === Vergleichstabelle === */
.section--compare { background: white; }
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%; min-width: 760px;
  border-collapse: collapse;
  background: white;
}
.compare-table thead th {
  background: var(--bg);
  padding: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid var(--border);
}
.compare-table thead th.is-us {
  background: linear-gradient(180deg, var(--primary-light), white);
  color: var(--secondary);
  border-bottom-color: var(--primary);
}
.compare-table__logo {
  font-size: 1.05rem; font-weight: 800;
  color: var(--secondary);
}
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(245,165,0,0.03); }
.compare-table td {
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
}
.compare-table td:first-child {
  font-weight: 500; max-width: 320px;
}
.compare-table td:not(:first-child) {
  text-align: center;
}
.compare-table td.is-us {
  background: rgba(245,165,0,0.04);
  font-weight: 600;
}
.ct-yes, .ct-no, .ct-partial {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-weight: 800; font-size: 0.95rem;
}
.ct-yes     { background: rgba(0,200,150,0.15); color: var(--accent-dark); }
.ct-no      { background: rgba(229,57,53,0.1);  color: var(--danger);      }
.ct-partial { background: rgba(245,165,0,0.15); color: var(--primary-dark); }
.compare-table__footnote {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* === Mobile-Anpassungen === */
@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
  .how-step__arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .stats-tiles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-tile__number { font-size: 1.9rem; }
  .savings-counter__number { font-size: 2.8rem; }
  .savings-counter__currency { font-size: 1.8rem; }
  .trust-strip__logos { gap: 1.5rem; row-gap: 1.2rem; }
  .testimonial-cta { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .stats-tiles__grid { grid-template-columns: 1fr; }
  .savings-counter__number { font-size: 2.2rem; }
  .trust-logo svg { width: 38px; height: 22px; }
  .trust-logo__big { font-size: 0.8rem; }
  .compare-table td:first-child { font-size: 0.85rem; }
}

/* ============================================================
   POLISH: Mobile Sticky-CTA · Scroll-Reveal · Hero-Polish
   ============================================================ */

/* === Mobile Sticky CTA (nur sichtbar mobile + nach Hero) === */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: linear-gradient(135deg, var(--primary) 0%, #FFB733 100%);
  color: var(--secondary);
  text-decoration: none;
  padding: 0.85rem 1rem;
  align-items: center; gap: 0.85rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta__pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  animation: pulse-glow-dark 2s infinite;
}
@keyframes pulse-glow-dark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,31,54,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(26,31,54,0); }
}
.mobile-cta__label {
  flex: 1; display: flex; flex-direction: column; line-height: 1.15;
}
.mobile-cta__label strong { font-size: 0.95rem; font-weight: 800; }
.mobile-cta__label span   { font-size: 0.75rem; font-weight: 500; opacity: 0.85; }
.mobile-cta__arrow {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--secondary); color: var(--primary);
  flex-shrink: 0;
}
/* Nur auf Mobile sichtbar machen */
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  /* Wenn Sticky-Summary (Step 5) sichtbar: Mobile-CTA aus */
  body.has-sticky-summary .mobile-cta { display: none !important; }
  /* Footer-Abstand auf Mobile */
  body.show-mobile-cta { padding-bottom: 72px; }
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === Hero Illustration (dekorative Energie-Szene) === */
.hero__scene {
  position: absolute;
  bottom: 0;
  width: 240px;
  height: 320px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: heroSceneIn 1.4s ease 0.5s forwards;
}
.hero__scene--left  { left: 2vw; }
.hero__scene--right { right: 2vw; width: 280px; }
.hero__scene svg { width: 100%; height: 100%; display: block; }
@keyframes heroSceneIn {
  to { opacity: 1; }
}
/* Sanftes Schwebe-Floating */
.hero__scene--left  svg { animation: heroSceneFloat 8s ease-in-out infinite; }
.hero__scene--right svg { animation: heroSceneFloat 9s ease-in-out infinite reverse; }
@keyframes heroSceneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Mobile: ausblenden, da zu klein für Detail */
@media (max-width: 1100px) {
  .hero__scene--left { display: none; }
}
@media (max-width: 900px) {
  .hero__scene { display: none; }
}

/* Volti-Variante: Image statt SVG, 3× Höhe der Headline (3.6rem * 3 = 10.8rem) */
.hero__scene--volti {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: calc(3.6rem * 3);
  filter: drop-shadow(0 14px 24px rgba(245,165,0,0.3));
}
.hero__scene--volti img {
  width: auto;
  height: 100%;
  display: block;
  animation: heroSceneFloat 5s ease-in-out infinite;
}
.hero__scene--right.hero__scene--volti img { animation: heroSceneFloat 5s ease-in-out infinite; }
@media (max-width: 1100px) {
  .hero__scene--volti { height: calc(2.2rem * 3); right: 1vw; }
}

/* === Hero Polish: Floating Energy Particles === */
.hero__particles {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.55;
  box-shadow: 0 0 10px rgba(245,165,0,0.7);
  animation: floatParticle 14s infinite ease-in-out;
}
.hero__particle:nth-child(1)  { left:  8%; top: 70%; animation-delay: 0s;   animation-duration: 12s; }
.hero__particle:nth-child(2)  { left: 18%; top: 40%; animation-delay: 1.5s; animation-duration: 14s; background: var(--accent); box-shadow: 0 0 10px rgba(0,200,150,0.6); }
.hero__particle:nth-child(3)  { left: 35%; top: 85%; animation-delay: 3s;   animation-duration: 16s; }
.hero__particle:nth-child(4)  { left: 55%; top: 25%; animation-delay: 4.5s; animation-duration: 13s; background: #ffffff; opacity: 0.4; }
.hero__particle:nth-child(5)  { left: 72%; top: 60%; animation-delay: 6s;   animation-duration: 15s; }
.hero__particle:nth-child(6)  { left: 85%; top: 35%; animation-delay: 7.5s; animation-duration: 11s; background: var(--accent); box-shadow: 0 0 8px rgba(0,200,150,0.5); }
.hero__particle:nth-child(7)  { left: 92%; top: 75%; animation-delay: 2s;   animation-duration: 14s; }
.hero__particle:nth-child(8)  { left: 28%; top: 15%; animation-delay: 8s;   animation-duration: 13s; background: #ffffff; opacity: 0.3; }
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
  25%      { transform: translateY(-30px) translateX(10px) scale(1.3); opacity: 0.8; }
  50%      { transform: translateY(-15px) translateX(-15px) scale(0.9); opacity: 0.4; }
  75%      { transform: translateY(-40px) translateX(5px) scale(1.1); opacity: 0.7; }
}

/* === Consistent Hover Polish for Cards === */
.tariff-card,
.feature-card,
.kontakt-card,
.stat-tile,
.how-step,
.testimonial,
.faq-item {
  will-change: transform;
}

/* ============================================================
   PERSONA-TILES · GUARANTEES · ABOUT
   ============================================================ */

/* === Persona-Tiles === */
.section--persona { background: linear-gradient(180deg, #FAFBFC 0%, white 100%); }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.persona-tile {
  position: relative;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.persona-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
  background: linear-gradient(180deg, white 0%, #FFFBF1 100%);
}
.persona-tile:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.persona-tile__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.4rem;
  transition: all var(--transition);
}
.persona-tile__icon svg { width: 26px; height: 26px; }
.persona-tile:hover .persona-tile__icon {
  background: var(--primary); color: var(--secondary);
  transform: scale(1.08) rotate(-3deg);
}
.persona-tile h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
}
.persona-tile p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.persona-tile__cta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding-top: 0.6rem;
  transition: transform var(--transition);
}
.persona-tile:hover .persona-tile__cta { transform: translateX(4px); }
.persona-tile--accent {
  background: linear-gradient(180deg, #FFF9E8 0%, #FFEFC2 100%);
  border-color: var(--primary);
}
.persona-tile--accent .persona-tile__icon {
  background: white;
}
.persona-tile__badge {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--secondary); color: var(--primary);
  font-size: 0.7rem; font-weight: 800;
  padding: 0.25rem 0.7rem; border-radius: 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Highlight-Animation für Rechner nach Persona-Klick */
#rechner.is-persona-highlight .calculator {
  animation: personaPulse 1.2s ease-out;
}
@keyframes personaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,165,0,0.4); }
  50%  { box-shadow: 0 0 0 14px rgba(245,165,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,165,0,0); }
}

/* === Garantien-Sektion === */
.section--guarantees {
  background: linear-gradient(180deg, white 0%, #FAFBFC 100%);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.guarantee-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.guarantee-card__seal {
  width: 90px; height: 90px;
  margin: 0 auto 1.1rem;
  color: var(--accent-dark);
  transition: transform 0.5s ease;
}
.guarantee-card:hover .guarantee-card__seal {
  transform: rotate(-12deg) scale(1.05);
}
.guarantee-card__seal svg { width: 100%; height: 100%; }
.guarantee-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.6rem;
}
.guarantee-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.guarantee-after {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  background: rgba(0,168,125,0.06);
  border: 1px solid rgba(0,168,125,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 0.7rem;
  justify-content: center;
  font-size: 0.92rem; color: var(--text);
}
.guarantee-after svg { color: var(--accent-dark); flex-shrink: 0; }
.guarantee-after a { color: var(--primary-dark); font-weight: 600; }

/* === Über uns === */
.section--about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-content h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.about-lead {
  font-size: 1.1rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.about-content p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-values {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}
.about-value {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.about-value__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-value__icon svg { width: 22px; height: 22px; }
.about-value h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}
.about-value p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* About-Card (Sidebar Trust-Facts) */
.about-card {
  background: linear-gradient(180deg, var(--secondary) 0%, #2a3354 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  position: sticky; top: 100px;
  box-shadow: var(--shadow);
}
.about-card__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.about-card__avatar {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, #FFB733 100%);
  color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
  flex-shrink: 0;
}
.about-card__company {
  font-weight: 700; font-size: 1.05rem;
}
.about-card__location {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  margin-top: 0.15rem;
}
.about-card__facts {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.7rem;
}
.about-card__facts li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  font-size: 0.88rem;
}
.about-card__facts strong {
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.about-card__facts span {
  color: white;
  font-weight: 600;
  text-align: right;
}
.about-card__cta {
  margin-top: 1.4rem;
  display: inline-flex;
  width: 100%; justify-content: center;
  background: white !important;
  color: var(--secondary) !important;
  border-color: white !important;
}
.about-card__cta:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* Mobile-Anpassungen */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-card { position: static; }
}
@media (max-width: 480px) {
  .guarantee-card__seal { width: 76px; height: 76px; }
  .persona-tile { padding: 0; }
}

/* ============================================================
   IMAGE INTEGRATIONS
   ============================================================ */

/* === Hero Background Photo === */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  /* Stelle sicher dass Photo nicht zu hell wird durch BG */
  filter: saturate(0.85) contrast(0.95);
}

/* === Persona-Tile mit Photo-Banner === */
/* Override base: persona-tile bekommt jetzt overflow:hidden für Photo */
.persona-tile {
  padding: 0;
  overflow: hidden;
}
.persona-tile__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.persona-tile__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.persona-tile:hover .persona-tile__photo {
  transform: scale(1.06);
}
.persona-tile__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
/* Icon jetzt overlay auf Photo */
.persona-tile__photo-wrap .persona-tile__icon {
  position: absolute;
  bottom: 12px; left: 12px;
  width: 40px; height: 40px;
  margin: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--primary-dark);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.persona-tile__photo-wrap .persona-tile__icon svg { width: 22px; height: 22px; }
.persona-tile:hover .persona-tile__photo-wrap .persona-tile__icon {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.1);
}
/* Badge bleibt sichtbar oben rechts auf dem Photo */
.persona-tile__photo-wrap .persona-tile__badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
}
.persona-tile__content {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  flex: 1;
}
.persona-tile__content h3 { margin: 0; font-size: 1.05rem; font-weight: 700; color: var(--secondary); }
.persona-tile__content p  { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
.persona-tile__content .persona-tile__cta { margin-top: auto; padding-top: 0.6rem; }
/* Accent-Variante */
.persona-tile--accent .persona-tile__content {
  background: linear-gradient(180deg, #FFF9E8 0%, #FFEFC2 100%);
}

/* === How-Step Photo Visual === */
.how-step__visual--photo {
  width: 110px;
  height: 110px;
  margin: 0.4rem auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 6px 20px rgba(245,165,0,0.18), inset 0 0 0 4px white;
  transition: transform var(--transition);
}
.how-step:hover .how-step__visual--photo {
  transform: scale(1.05) rotate(-2deg);
}
.how-step__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === Über-uns Card: CEO-Foto-Block === */
.about-card__ceo {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.about-card__ceo-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--primary), 0 6px 18px rgba(0,0,0,0.3);
}
.about-card__ceo-name  { font-size: 1.05rem; font-weight: 700; color: white; }
.about-card__ceo-title { font-size: 0.82rem; color: var(--primary); margin-top: 0.15rem; font-weight: 500; letter-spacing: 0.02em; }
/* Top-Block jetzt ohne Avatar */
.about-card__top {
  grid-template-columns: 1fr;
  align-items: start;
}

/* Mobile-Anpassungen für Bild-Integrationen */
@media (max-width: 480px) {
  .hero__photo { opacity: 0.16; }
  .how-step__visual--photo { width: 90px; height: 90px; }
  .about-card__ceo-photo { width: 70px; height: 70px; }
}

/* ============================================================
   CITY LANDING PAGES (/strom-{slug}/)
   ============================================================ */

/* === City Hero === */
.city-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  color: white;
  overflow: hidden;
}
.city-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 50%, #2c4d8c 100%);
}
.city-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 30%, rgba(245,165,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(0,200,150,0.12) 0%, transparent 60%);
}
.city-hero__content { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span[aria-current] { color: var(--primary); font-weight: 600; }

.city-hero__eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(245,165,0,0.15);
  border: 1px solid rgba(245,165,0,0.3);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.city-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.city-hero__accent { color: var(--primary); }
.city-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 720px;
}
.city-hero__sub strong { color: white; }

/* City Search Form */
.city-search {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.city-search__fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.8rem;
  align-items: end;
}
.city-search__field { display: flex; flex-direction: column; gap: 0.3rem; }
.city-search__field label {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.03em; text-transform: uppercase;
}
.city-search__field input {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: border-color var(--transition);
}
.city-search__field input:focus { border-color: var(--primary); outline: none; }
.city-search__btn { white-space: nowrap; }
@media (max-width: 720px) {
  .city-search__fields { grid-template-columns: 1fr; }
  .city-search__btn { width: 100%; justify-content: center; }
}

/* === City Facts Grid === */
.section--city-facts { background: linear-gradient(180deg, var(--bg) 0%, white 100%); }
.city-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.city-fact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: all var(--transition);
}
.city-fact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.city-fact-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.city-fact-card__value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.city-fact-card__hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.city-fact-card--accent {
  background: linear-gradient(135deg, #FFF9E8, #FFEFC2);
  border-color: rgba(245,165,0,0.4);
}
.city-fact-card--accent .city-fact-card__value {
  color: var(--primary-dark);
  font-size: 1.8rem;
}

/* === City Content/Prose === */
.section--city-content { background: white; }
.city-prose {
  margin-top: 2rem;
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
}
.city-prose p { margin-bottom: 1.2rem; }
.city-prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}
.city-prose strong { color: var(--secondary); }

.city-cta-box {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #FFFBF1 0%, #FFF3D6 100%);
  border: 1.5px solid rgba(245,165,0,0.35);
  border-radius: var(--radius-lg);
  text-align: center;
}
.city-cta-box h3 {
  margin: 0 0 0.5rem;
  color: var(--secondary);
}
.city-cta-box p {
  margin: 0 0 1.3rem;
  color: var(--text-muted);
}

/* === Other Cities Grid === */
.section--other-cities { background: var(--bg); }
.other-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}
.other-city-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.other-city-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(245,165,0,0.15);
}
.other-city-card__name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
}
.other-city-card__hint {
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 600;
}

/* Mobile-Anpassungen */
@media (max-width: 768px) {
  .city-hero { padding: 3rem 1rem 2.5rem; }
  .city-search { padding: 1rem; }
  .city-fact-card { padding: 1.2rem; }
  .city-fact-card--accent .city-fact-card__value { font-size: 1.5rem; }
}

/* === Homepage: Cities-Grid (20 Städte) === */
.section--cities { background: linear-gradient(180deg, white 0%, var(--bg) 100%); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
  margin-top: 2rem;
}
.city-link-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 0.15rem;
  position: relative;
}
.city-link-card::before {
  content: '📍';
  position: absolute;
  top: 0.85rem; right: 0.9rem;
  font-size: 0.85rem;
  opacity: 0.4;
  transition: all var(--transition);
}
.city-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(245,165,0,0.18);
  background: linear-gradient(180deg, white 0%, #FFFBF1 100%);
}
.city-link-card:hover::before { opacity: 1; transform: scale(1.2); }
.city-link-card__name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1rem;
}
.city-link-card__hint {
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 600;
}
.cities-grid-footnote {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cities-grid-footnote a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
}
.cities-grid-footnote a:hover { color: var(--primary); }
@media (max-width: 480px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .city-link-card { padding: 0.85rem 1rem; }
}

/* ============================================================
   ENERGIE IM HAUS – Interaktive Hotspot-Illustration
   ============================================================ */

.section--house { background: linear-gradient(180deg, var(--bg) 0%, white 100%); }
.section--house--full { background: white; }

.house-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.house-illustration {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.house-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}
.house-illustration--lg {
  position: static;
}

/* === Hotspot-Animation === */
.house-hotspot {
  cursor: pointer;
  transition: transform 0.18s ease;
  outline: none;
  transform-origin: center;
  transform-box: fill-box;
}
.house-hotspot:focus-visible .house-hotspot__pill,
.house-hotspot:focus-visible .house-hotspot__dot {
  stroke: #1A2540;
  stroke-width: 3;
}
.house-hotspot:hover { transform: translateY(-2px); }

/* === Pill-Hotspots (Schlafzimmer/Bad/Wohnzimmer/Küche/Heizung) === */
.house-hotspot__pill {
  fill: var(--secondary);
  stroke: white;
  stroke-width: 2.5;
  filter: drop-shadow(0 4px 10px rgba(11,17,32,0.22));
  transition: all 0.22s ease;
}
.house-hotspot:hover .house-hotspot__pill {
  fill: var(--primary);
}
.house-hotspot:hover .house-hotspot__pct {
  fill: var(--secondary);
}
.house-hotspot.is-active .house-hotspot__pill {
  fill: var(--primary);
  stroke: var(--secondary);
  stroke-width: 3;
  filter: drop-shadow(0 6px 14px rgba(245,165,0,0.45));
}
.house-hotspot.is-active .house-hotspot__pct {
  fill: var(--secondary);
}

/* === Accent-Variante (Heizung — größter Anteil) === */
.house-hotspot--accent .house-hotspot__pill {
  fill: var(--primary);
  stroke: var(--secondary);
  filter: drop-shadow(0 5px 12px rgba(245,165,0,0.35));
}
.house-hotspot--accent .house-hotspot__pct {
  fill: var(--secondary);
}
.house-hotspot--accent:hover .house-hotspot__pill {
  fill: #FFB733;
}
.house-hotspot--accent.is-active .house-hotspot__pill {
  fill: var(--secondary);
  stroke: var(--primary);
}
.house-hotspot--accent.is-active .house-hotspot__pct {
  fill: var(--primary);
}

/* === Solar (Dach) — runder Dot wie früher === */
.house-hotspot--green .house-hotspot__dot {
  fill: var(--accent);
  stroke: white;
  stroke-width: 2.5;
  filter: drop-shadow(0 3px 8px rgba(0,200,150,0.45));
  transition: all 0.22s ease;
}
.house-hotspot--green .house-hotspot__pulse {
  fill: var(--accent);
  opacity: 0.32;
  animation: hotspotPulse 2.5s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.house-hotspot--green:hover .house-hotspot__dot {
  transform: scale(1.12);
  transform-origin: center;
  transform-box: fill-box;
}
.house-hotspot--green.is-active .house-hotspot__dot {
  fill: var(--secondary);
  stroke: var(--accent);
  stroke-width: 3;
}

@keyframes hotspotPulse {
  0%   { transform: scale(1);   opacity: 0.45; }
  100% { transform: scale(2.2); opacity: 0;    }
}

/* === Details-Panel === */
.house-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.house-detail-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  position: relative;
  display: none;
  animation: detailFadeIn 0.35s ease;
}
.house-detail-card.is-active { display: block; }
@keyframes detailFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.house-detail-card__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.house-detail-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}
.house-detail-card h4 {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--secondary);
}
.house-detail-card__share {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 0.3rem 0.75rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}
.house-detail-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.house-detail-card ul, .house-detail-card ol {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}
.house-detail-card li {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}
.house-detail-card li strong { color: var(--accent-dark); font-weight: 700; }

.house-detail-card__savings {
  background: linear-gradient(135deg, #E8F8F1 0%, #D4F5E5 100%);
  border: 1px solid rgba(0,168,125,0.3);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  color: var(--accent-dark);
  font-weight: 500;
}
.house-detail-card__savings strong {
  color: var(--accent-dark);
  font-size: 1.05rem;
  font-weight: 800;
}
.house-detail-card__savings span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.house-detail-card--accent {
  background: linear-gradient(135deg, #FFF9E8 0%, #FFEFC2 100%);
  border-color: var(--primary);
}

.house-details__cta {
  margin-top: 0.4rem;
  justify-self: stretch;
}

/* Mobile-Anpassungen */
@media (max-width: 900px) {
  .house-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .house-illustration { position: static; }
}
@media (max-width: 480px) {
  .house-detail-card { padding: 1.3rem 1.2rem; }
  .house-detail-card h3 { font-size: 1.05rem; }
}

/* ============================================================
   SCHOCK-SEKTION – Loss-Aversion + Cognitive Dissonance
   ============================================================ */

.section--shock {
  background: linear-gradient(180deg, white 0%, #FFF5F5 100%);
  padding: 0 0 4rem;
}

/* === A) Live-Verlust-Ticker === */
.loss-banner {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem 3rem;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}
.loss-banner__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #2a0a0a 0%, #4d0e0e 50%, #2a0a0a 100%);
}
.loss-banner__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(229,57,53,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255,122,92,0.18) 0%, transparent 60%);
}
.loss-banner__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.loss-banner__label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700;
  color: white;
  background: rgba(255,255,255,0.1);
  padding: 0.45rem 1rem; border-radius: 24px;
  backdrop-filter: blur(8px);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.loss-banner__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #FF4444;
  box-shadow: 0 0 0 0 rgba(255,68,68,0.7);
  animation: lossPulse 1.4s infinite;
}
@keyframes lossPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.7); }
  50%      { box-shadow: 0 0 0 12px rgba(255,68,68,0); }
}
.loss-banner__amount {
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-variant-numeric: tabular-nums;
  margin: 0.5rem 0 0.3rem;
}
.loss-banner__currency {
  font-size: 2.4rem; font-weight: 700;
  color: #FFA391;
}
.loss-banner__number {
  font-size: 5rem; font-weight: 800;
  color: #FF4444;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 4px 28px rgba(255,68,68,0.5);
}
.loss-banner__sub {
  font-size: 1rem; color: rgba(255,255,255,0.9);
  max-width: 580px; line-height: 1.6;
  margin: 0;
}
.loss-banner__sub small {
  display: block; margin-top: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 500;
}
.loss-banner__totals {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.5rem;
  margin-top: 1.2rem;
  padding: 1.1rem 1.8rem;
  background: rgba(0,0,0,0.25);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}
.loss-banner__total { display: flex; flex-direction: column; gap: 0.15rem; align-items: center; }
.loss-banner__total-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.loss-banner__total-value {
  font-size: 1.15rem; font-weight: 800; color: #FFA391;
  font-variant-numeric: tabular-nums;
}
.loss-banner__cta {
  margin-top: 1rem;
  background: white !important;
  color: #2a0a0a !important;
  border-color: white !important;
  font-weight: 700 !important;
}
.loss-banner__cta:hover {
  background: #FFD9B8 !important;
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 700px) {
  .loss-banner__number { font-size: 3.5rem; }
  .loss-banner__currency { font-size: 1.8rem; }
  .loss-banner__totals { grid-template-columns: 1fr; gap: 0.8rem; padding: 1rem; }
  .loss-banner__total { flex-direction: row; gap: 0.6rem; justify-content: space-between; }
}

/* === B) 97/3 Group-Split === */
.group-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin: 2rem 0 1.5rem;
}
.group-split__col {
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.group-split__col--loser {
  background: linear-gradient(135deg, #FFF0F0 0%, #FFD9D9 100%);
  border: 1.5px solid rgba(229,57,53,0.25);
}
.group-split__col--winner {
  background: linear-gradient(135deg, #E8F8F1 0%, #C5F0DA 100%);
  border: 1.5px solid rgba(0,168,125,0.25);
}

/* Photo on top of each column */
.group-split__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #1a1a1a;
}
.group-split__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}
/* Sehr subtile Filter — Fotos behalten authentischen Look */
.group-split__col--loser .group-split__photo {
  filter: saturate(0.9) brightness(0.96);
}
.group-split__col--loser:hover .group-split__photo {
  filter: saturate(0.95) brightness(0.98);
  transform: scale(1.03);
}
.group-split__col--winner .group-split__photo {
  filter: saturate(1.05);
}
.group-split__col--winner:hover .group-split__photo {
  transform: scale(1.03);
}
.group-split__photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
}
.group-split__col--loser .group-split__photo-wrap::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(229,57,53,0.25) 100%);
}
.group-split__col--winner .group-split__photo-wrap::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,168,125,0.18) 100%);
}

.group-split__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(229,57,53,0.95);
  color: white;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.group-split__badge--win {
  background: rgba(0,168,125,0.95);
}

.group-split__body {
  padding: 1.6rem 1.8rem 2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  flex: 1;
}
.group-split__divider {
  display: flex; align-items: center; justify-content: center;
}
.group-split__divider span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--secondary); color: var(--primary);
  font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.group-split__percent {
  font-size: 3.4rem; font-weight: 800;
  line-height: 1;
}
.group-split__col--loser .group-split__percent { color: var(--danger); }
.group-split__col--winner .group-split__percent { color: var(--accent-dark); }
.group-split__title {
  font-size: 1.2rem; font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}
.group-split__col p {
  font-size: 0.93rem; color: var(--text); line-height: 1.6;
  margin: 0 0 0.5rem;
}
.group-split__cost {
  margin-top: auto;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.group-split__cost span { font-size: 0.78rem; color: var(--text-muted); }
.group-split__cost strong {
  font-size: 1.15rem; font-weight: 800;
  color: var(--danger);
  font-variant-numeric: tabular-nums;
}
.group-split__cost--win strong { color: var(--accent-dark); }

.group-split__question {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Trophäe & Hint nach dem Button anzeigen — DOM-Reihenfolge bleibt, visuell verschoben */
.group-split__question > .winner-trophy { order: 1; margin-top: 1.4rem; margin-bottom: 0; }
.group-split__question > .group-split__hint { order: 2; }
/* h2 / p / a behalten default order 0 → erscheinen in DOM-Reihenfolge oben */
.group-split__question > h2,
.group-split__question > p:not(.group-split__hint),
.group-split__question > a { width: 100%; }
.group-split__question h2 {
  font-size: 1.8rem; font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.7rem;
}
.group-split__question p {
  color: var(--text);
  font-size: 1rem; line-height: 1.6;
  margin-bottom: 1.3rem;
}
.group-split__question p strong { color: var(--accent-dark); font-weight: 800; }
.group-split__hint {
  margin-top: 1.4rem !important;
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  display: inline-block;
}
.group-split__hint a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(245,165,0,0.4);
  text-underline-offset: 3px;
  white-space: nowrap;
}
.group-split__hint a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

@media (max-width: 768px) {
  .group-split { grid-template-columns: 1fr; }
  .group-split__divider {
    height: auto;
  }
  .group-split__divider span { transform: rotate(90deg); }
  .group-split__percent { font-size: 2.6rem; }
}

/* === C) Secrets Cards === */
.secrets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.secret-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  position: relative;
  transition: all var(--transition);
}
.secret-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--danger);
}
.secret-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--secondary);
  color: var(--primary);
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.secret-card__big {
  font-size: 3rem;
  font-weight: 800;
  color: var(--danger);
  line-height: 1;
  margin-bottom: 0.7rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.secret-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.secret-card p {
  font-size: 0.92rem; color: var(--text); line-height: 1.65;
  margin-bottom: 0.8rem;
}
.secret-card__source {
  display: block;
  font-size: 0.72rem; color: var(--text-muted);
  font-style: italic;
  border-top: 1px dashed var(--border);
  padding-top: 0.6rem;
}
.secrets-cta {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, #FFFBF1 0%, #FFF3D6 100%);
  border: 1.5px solid rgba(245,165,0,0.35);
  border-radius: var(--radius-lg);
}
.secrets-cta p {
  margin: 0 0 1.2rem;
  color: var(--text); font-size: 1rem;
}
.secrets-cta strong { color: var(--secondary); }

/* ============================================================
   EXIT-INTENT MODAL – Lead-Capture für Abspringer
   ============================================================ */

.modal--exit { background: rgba(15,20,40,0.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.28s ease; }
.modal--exit.is-visible { opacity: 1; }

.modal__box--exit {
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal--exit.is-visible .modal__box--exit { transform: scale(1); }

.modal__header--exit {
  background: linear-gradient(135deg, #1A1F36 0%, #2a3354 100%);
  color: white;
  padding: 1.8rem 1.6rem 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.modal__header--exit::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(245,165,0,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.modal__header--exit > * { position: relative; z-index: 1; }

.modal__exit-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--primary);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem; border-radius: 16px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(245,165,0,0.35);
  backdrop-filter: blur(8px);
}

.modal__header--exit h3 {
  color: white;
  font-size: 1.45rem; font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}
.modal__header--exit p {
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem; line-height: 1.55;
  margin: 0;
}
.modal__header--exit p strong { color: var(--primary); }

.modal__small-note {
  margin-top: 0.7rem !important;
  text-align: center;
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.02em;
}

.modal__success {
  padding: 2rem 1.5rem;
  text-align: center;
}
.modal__success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-size: 2.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(0,168,125,0.3);
  animation: successBurst 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes successBurst {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.modal__success h4 {
  font-size: 1.3rem; color: var(--secondary);
  margin-bottom: 0.5rem;
}
.modal__success p {
  color: var(--text-muted); font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

@media (max-width: 480px) {
  .modal__header--exit { padding: 1.4rem 1.2rem 1.2rem; }
  .modal__header--exit h3 { font-size: 1.2rem; }
}

/* ============================================================
   ECHTE GESCHICHTE – Video-Testimonial
   ============================================================ */

.section--story {
  background: linear-gradient(180deg, white 0%, #FFF9F0 100%);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.story-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.story-video__player {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.story-video__play {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.6rem;
  background: linear-gradient(135deg, rgba(11,17,32,0.55), rgba(26,37,64,0.45));
  border: none;
  color: white;
  font-family: inherit;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(2px);
}
.story-video__play:hover { background: linear-gradient(135deg, rgba(11,17,32,0.4), rgba(26,37,64,0.3)); }
.story-video__play.is-hidden { display: none; }
.story-video__play svg {
  width: 64px; height: 64px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}
.story-video__play:hover svg { transform: scale(1.08); }

.story-video__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.32rem 0.7rem;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 0.4rem;
  backdrop-filter: blur(8px);
  z-index: 3;
}
.story-video__badge--sm {
  top: 10px; left: 10px;
  padding: 0.22rem 0.55rem;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  border-radius: 7px;
  gap: 0.32rem;
}
.story-video__badge--sm .story-video__pulse {
  width: 6px; height: 6px;
}
.story-video__pulse {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,200,150,0.6);
  animation: actPulse 1.6s infinite;
}

/* Untertitel-Overlay (Video läuft permanent stumm) */
.story-video__cc {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  max-width: 88%;
  padding: 0.55rem 1rem;
  background: rgba(0,0,0,0.78);
  color: #fff;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  border-radius: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 3;
  letter-spacing: 0.005em;
}
.story-video__cc.is-active { opacity: 1; }
.story-video__cc strong {
  color: var(--primary);
  font-weight: 800;
}

.story-video__muted-hint {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.92);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 0.4rem;
  backdrop-filter: blur(8px);
  z-index: 3;
}
.story-video__muted-hint svg {
  opacity: 0.85;
}

.story-grid__text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--secondary);
  margin: 0.6rem 0 1rem;
  line-height: 1.18;
}
.story-grid__lead {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 1.4rem;
}
.story-grid__lead strong { color: var(--secondary); }

.story-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 480px) {
  .story-facts { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}
.story-fact {
  display: flex; flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-align: center;
}
.story-fact__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.story-fact__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
@media (max-width: 480px) {
  .story-fact__num { font-size: 1.1rem; }
  .story-fact__label { font-size: 0.72rem; }
}

.story-quote {
  margin: 0 0 1.5rem;
  padding: 1rem 1.3rem;
  border-left: 4px solid var(--primary);
  background: rgba(245,165,0,0.06);
  border-radius: 8px;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.6;
}

/* ============================================================
   ARTICLE META (Author-Bio + Datumsstempel) — E-E-A-T Signals
   ============================================================ */

.article-meta {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  margin: 0 0 2rem;
}
.article-meta__author {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.article-meta__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #FFB733);
  color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
}
.article-meta__author-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1rem;
}
.article-meta__author-title {
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 0.1rem;
}
.article-meta__author-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 0.45rem;
}
.article-meta__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.article-meta__dates strong { color: var(--text); font-weight: 600; }

/* Discovery-Grid (Homepage: Statistik / Vergleich / News / Ratgeber) */
.section--discovery { background: linear-gradient(180deg, var(--bg) 0%, white 100%); }
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.discovery-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: all var(--transition);
  position: relative;
}
.discovery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
  background: linear-gradient(180deg, white 0%, #FFFBF1 100%);
}
.discovery-card__icon {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.discovery-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--secondary);
  margin: 0;
}
.discovery-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.discovery-card__cta {
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 700;
  transition: transform var(--transition);
}
.discovery-card:hover .discovery-card__cta { transform: translateX(4px); }

/* Ranking-Cards (für Vergleich/Test-Pages) */
.rank-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.rank-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.3rem;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.2rem;
  align-items: start;
  transition: all var(--transition);
}
.rank-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--primary); }
.rank-card--top {
  background: linear-gradient(135deg, #FFFBF1 0%, #FFEFC2 100%);
  border-color: var(--primary);
  border-width: 2px;
}
.rank-card__rank {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--secondary); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.rank-card--top .rank-card__rank {
  background: linear-gradient(135deg, var(--primary), #FFB733);
  color: var(--secondary);
  box-shadow: 0 6px 16px rgba(245,165,0,0.35);
}
.rank-card__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.7rem; margin-bottom: 0.55rem;
}
.rank-card__head h3 { margin: 0; font-size: 1.15rem; font-weight: 800; color: var(--secondary); }
.rank-card__score {
  background: var(--bg);
  color: var(--secondary);
  font-weight: 800; font-size: 0.85rem;
  padding: 0.25rem 0.7rem; border-radius: 10px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.rank-card--top .rank-card__score { background: var(--secondary); color: var(--primary); }
.rank-card__ratings {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.rank-card__strengths, .rank-card__weaknesses {
  font-size: 0.88rem; line-height: 1.5;
  margin: 0.25rem 0;
}
.rank-card__strengths strong { color: var(--accent-dark); font-size: 1rem; margin-right: 0.3rem; }
.rank-card__weaknesses strong { color: var(--danger); font-size: 1rem; margin-right: 0.3rem; }
.rank-card__review {
  margin-top: 0.55rem; font-size: 0.82rem; color: var(--text-muted);
  padding-top: 0.55rem; border-top: 1px dashed var(--border);
}
.rank-card__review strong { color: var(--primary-dark); font-weight: 700; }
@media (max-width: 600px) {
  .rank-card { grid-template-columns: 44px 1fr; gap: 0.9rem; padding: 1.1rem 1.1rem; }
  .rank-card__rank { width: 44px; height: 44px; font-size: 1.05rem; }
  .rank-card__head { flex-direction: column; align-items: flex-start; }
  .rank-card__head h3 { font-size: 1.02rem; }
}

/* Page-level Date-Stamp (for City-Pages, Use-Cases, etc.) */
.page-stand {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(0,0,0,0.04);
  padding: 0.35rem 0.85rem;
  border-radius: 12px;
  margin-top: 1rem;
}
.page-stand strong { color: var(--text); font-weight: 600; }

@media (max-width: 600px) {
  .article-meta__author { grid-template-columns: 48px 1fr; }
  .article-meta__avatar { width: 48px; height: 48px; font-size: 0.95rem; }
  .article-meta__dates { font-size: 0.78rem; gap: 0.7rem; }
}

/* ============================================================
   AD-LANDING-PAGES v2 (/aktion/*) — Vollausbau
   ============================================================ */

body.ad-landing { background: white; }
body.ad-landing .header,
body.ad-landing #exitIntentModal { display: none !important; }

/* Sofort-Bonus-Countdown */
.ad-bonus {
  position: sticky; top: 0; z-index: 30;
  background: linear-gradient(90deg, #FFA000 0%, #FFB733 100%);
  color: var(--secondary);
  padding: 0.55rem 1rem;
  font-size: 0.88rem; font-weight: 600;
  text-align: center;
}
.ad-bonus__inner { display: inline-flex; align-items: center; gap: 0.4rem; }
.ad-bonus__countdown {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 800;
  background: rgba(0,0,0,0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}

/* Header */
.ad-header {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 1.2rem;
  position: sticky; top: 33px; z-index: 20;
  backdrop-filter: blur(8px);
}
.ad-header__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.ad-header__logo img { display: block; height: 32px; width: auto; }
.ad-header__trust {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-muted); font-weight: 500;
}
.ad-header__stars { color: var(--primary); letter-spacing: 0.02em; }
.ad-header__divider { color: var(--border); }
@media (max-width: 480px) {
  .ad-bonus { font-size: 0.78rem; padding: 0.45rem 0.8rem; }
  .ad-header__trust { font-size: 0.74rem; gap: 0.3rem; }
  .ad-header__trust > span:nth-child(4) { display: none; }
  .ad-header__divider { display: none; }
}

/* HERO mit Foto */
.ad-hero {
  position: relative;
  padding: 2rem 1.2rem 2.5rem;
  color: white; overflow: hidden;
  min-height: 720px;
}
.ad-hero__photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.ad-hero__overlay { position: absolute; inset: 0; z-index: 1; }
.ad-hero__content {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
}

/* Versorger-Logo-Strip */
.ad-providers {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
}
.ad-providers__label { color: rgba(255,255,255,0.85); font-weight: 600; }
.ad-providers__item {
  background: rgba(255,255,255,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 0.76rem;
  backdrop-filter: blur(8px);
}
.ad-providers__more { color: var(--primary); font-weight: 700; font-size: 0.76rem; }

.ad-hero__badge {
  display: inline-block;
  background: rgba(245,165,0,0.22); color: var(--primary);
  border: 1px solid rgba(245,165,0,0.5);
  font-size: 0.82rem; font-weight: 700;
  padding: 0.42rem 1rem; border-radius: 18px;
  margin-bottom: 0.9rem;
  backdrop-filter: blur(8px);
}
.ad-hero__headline {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 800; line-height: 1.12;
  margin: 0 0 0.7rem;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.ad-hero__headline .hi-acc { color: var(--primary); }
.ad-hero__subline {
  font-size: 1.02rem; line-height: 1.5;
  color: rgba(255,255,255,0.94);
  margin: 0 0 1.5rem;
  max-width: 580px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ad-hero__subline strong { color: white; }

/* Mini-Live-Rechner */
.ad-calc {
  background: white; color: var(--text);
  padding: 1.3rem 1.4rem 1.2rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
}
.ad-calc__head { margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.6rem; }
.ad-calc__step {
  background: var(--primary-light); color: var(--primary-dark);
  padding: 0.25rem 0.7rem; border-radius: 12px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.ad-calc__grid {
  display: grid; grid-template-columns: 0.7fr 1fr; gap: 0.8rem;
  margin-bottom: 1rem;
}
@media (max-width: 520px) { .ad-calc__grid { grid-template-columns: 1fr; } }
.ad-calc__field { display: flex; flex-direction: column; gap: 0.3rem; }
.ad-calc__field label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.ad-calc__field label strong {
  font-weight: 800; color: var(--primary-dark); font-variant-numeric: tabular-nums;
}
.ad-calc__field input[type="text"],
.ad-calc__field input[type="email"] {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 1rem; font-family: inherit;
  transition: border-color var(--transition);
}
.ad-calc__field input:focus {
  border-color: var(--primary); outline: none;
  box-shadow: 0 0 0 3px rgba(245,165,0,0.15);
}
.ad-calc__field--slider { justify-content: space-between; }
.ad-calc__field input[type="range"] {
  -webkit-appearance: none; appearance: none;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: 4px; outline: none;
  margin: 0.6rem 0 0.2rem;
}
.ad-calc__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px;
  background: var(--secondary);
  border: 3px solid var(--primary); border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.15s;
}
.ad-calc__field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.ad-calc__field input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--secondary);
  border: 3px solid var(--primary); border-radius: 50%; cursor: pointer;
}
.ad-calc__slider-marks {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Live-Savings-Anzeige */
.ad-calc__savings {
  background: linear-gradient(135deg, #FFFBF1 0%, #FFEFC2 100%);
  border: 1.5px solid rgba(245,165,0,0.35);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.ad-calc__savings-label {
  font-size: 0.82rem; color: var(--text-muted); font-weight: 600;
  margin-bottom: 0.3rem;
}
.ad-calc__savings-big {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  color: var(--accent-dark); line-height: 1;
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.ad-calc__savings-unit { font-size: 0.65em; color: var(--text); }
.ad-calc__savings-sub { margin-top: 0.4rem; font-size: 0.85rem; color: var(--text); }
.ad-calc__savings-sub strong { color: var(--accent-dark); }

.ad-calc__email-row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.7rem;
}
@media (max-width: 580px) { .ad-calc__email-row { grid-template-columns: 1fr; } }
.ad-calc__email-row input[type="email"] {
  padding: 0.95rem 1rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 1rem; font-family: inherit;
}
.ad-calc__submit {
  background: linear-gradient(135deg, var(--primary) 0%, #FFB733 100%);
  color: var(--secondary); border: none;
  padding: 0.95rem 1.6rem; border-radius: 10px;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all var(--transition);
  font-family: inherit; white-space: nowrap;
}
.ad-calc__submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,165,0,0.4); }
.ad-calc__consent {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.74rem; color: var(--text-muted); line-height: 1.5;
}
.ad-calc__consent input { margin-top: 2px; }
.ad-calc__consent a { color: var(--primary-dark); text-decoration: underline; }

/* USPs */
.ad-usp {
  list-style: none; padding: 0; margin: 1.2rem 0 0;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.ad-usp li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.92rem; color: rgba(255,255,255,0.93);
}
.ad-usp__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: rgba(0,200,150,0.25); color: #6EEABE;
  border-radius: 50%;
  font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid rgba(0,200,150,0.4);
}

/* Activity-Ticker */
.ad-activity-bar {
  background: #1A1F36; color: white;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ad-activity-bar__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.86rem;
}
.ad-activity-bar__pulse {
  width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,200,150,0.7);
  animation: actPulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes actPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,150,0.65); }
  50%      { box-shadow: 0 0 0 8px rgba(0,200,150,0); }
}
.ad-activity-bar__msg { transition: opacity 0.3s ease; }
.ad-activity-bar__amount { color: var(--primary); }
.ad-activity-bar__time { opacity: 0.6; font-size: 0.8rem; margin-left: 0.4rem; }
@media (max-width: 480px) {
  .ad-activity-bar { font-size: 0.78rem; }
  .ad-activity-bar__time { display: none; }
}

/* Live-Wechsel-Counter */
.ad-counter {
  background: linear-gradient(135deg, var(--bg) 0%, #ECEFF3 100%);
  padding: 1.5rem 1rem;
}
.ad-counter__inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 1rem;
  background: white;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.ad-counter__icon { font-size: 1.8rem; flex-shrink: 0; }
.ad-counter__body { flex: 1; }
.ad-counter__num { font-size: 1rem; color: var(--text); line-height: 1.3; }
.ad-counter__num strong {
  font-size: 1.5rem; font-weight: 800; color: var(--accent-dark);
  font-variant-numeric: tabular-nums;
}
.ad-counter__sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }
.ad-counter__cta a {
  background: var(--primary); color: var(--secondary);
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-weight: 700; font-size: 0.85rem;
  text-decoration: none; white-space: nowrap;
  transition: transform var(--transition);
}
.ad-counter__cta a:hover { transform: scale(1.04); }
@media (max-width: 580px) {
  .ad-counter__inner { flex-direction: column; text-align: center; gap: 0.6rem; padding: 1rem; }
  .ad-counter__cta a { display: block; }
}

/* Vorher-Nachher-Visual */
.ad-compare { background: white; padding: 2.5rem 1.2rem; }
.ad-compare__inner { max-width: 760px; margin: 0 auto; }
.ad-compare__head { text-align: center; margin-bottom: 1.6rem; }
.ad-compare__badge {
  display: inline-block;
  background: rgba(245,165,0,0.12); color: var(--primary-dark);
  padding: 0.35rem 0.9rem; border-radius: 14px;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 0.6rem;
}
.ad-compare__head h2 {
  font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800;
  color: var(--secondary); margin: 0 0 0.4rem;
}
.ad-compare__head p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }
.ad-compare__bars { display: flex; flex-direction: column; gap: 0.8rem; }
.ad-compare__row { display: flex; flex-direction: column; gap: 0.3rem; }
.ad-compare__row-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem;
}
.ad-compare__row-label { font-size: 0.92rem; font-weight: 600; color: var(--text); }
.ad-compare__row-amount {
  font-size: 1.1rem; font-weight: 800; font-variant-numeric: tabular-nums;
}
.ad-compare__row--old .ad-compare__row-amount { color: var(--danger); }
.ad-compare__row--new .ad-compare__row-amount { color: var(--accent-dark); }
.ad-compare__bar {
  height: 30px; background: var(--bg);
  border-radius: 8px; overflow: hidden;
}
.ad-compare__bar-fill { height: 100%; border-radius: 8px; transition: width 0.8s ease; }
.ad-compare__row--old .ad-compare__bar-fill { background: linear-gradient(90deg, #FFA391, var(--danger)); }
.ad-compare__row--new .ad-compare__bar-fill { background: linear-gradient(90deg, var(--accent), var(--accent-dark)); }
.ad-compare__diff {
  margin-top: 1.4rem;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, #E8F8F1, #C5F0DA);
  border: 1.5px solid rgba(0,168,125,0.35);
  border-radius: 12px;
  text-align: center;
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.5rem; font-size: 1rem;
}
.ad-compare__diff strong {
  font-size: 1.8rem; font-weight: 800;
  color: var(--accent-dark); font-variant-numeric: tabular-nums;
}

/* Seals */
.ad-seals { background: var(--bg); padding: 2.5rem 1.2rem; }
.ad-seals__inner { max-width: 1000px; margin: 0 auto; }
.ad-seals__head { text-align: center; margin-bottom: 1.8rem; }
.ad-seals__badge {
  display: inline-block;
  background: rgba(245,165,0,0.12); color: var(--primary-dark);
  padding: 0.35rem 0.9rem; border-radius: 14px;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 0.6rem;
}
.ad-seals__head h2 {
  font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800;
  color: var(--secondary); margin: 0;
}
.ad-seals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.ad-seal {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.2rem 1.4rem;
  text-align: center;
  transition: transform 0.4s ease;
}
.ad-seal:hover { transform: translateY(-4px); }
.ad-seal__visual {
  width: 110px; height: 110px;
  margin: 0 auto 0.9rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}
.ad-seal:hover .ad-seal__visual { animation: sealRotate 1.2s ease; }
@keyframes sealRotate {
  0%, 100% { transform: rotate(0); }
  50%      { transform: rotate(-8deg) scale(1.05); }
}
.ad-seal__svg { width: 100%; height: 100%; }
.ad-seal h3 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--secondary); margin: 0 0 0.3rem;
}
.ad-seal p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Testimonials */
.ad-testimonials { background: white; padding: 2.5rem 1.2rem; }
.ad-testimonials__inner { max-width: 1100px; margin: 0 auto; }
.ad-testimonials__head { text-align: center; margin-bottom: 1.6rem; }
.ad-testimonials__badge {
  display: inline-block;
  background: rgba(245,165,0,0.12); color: var(--primary-dark);
  padding: 0.35rem 0.9rem; border-radius: 14px;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 0.6rem;
}
.ad-testimonials__head h2 {
  font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800;
  color: var(--secondary); margin: 0;
}
.ad-testimonials__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.ad-testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1.3rem 1.2rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all var(--transition);
}
.ad-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.ad-testimonial__photo {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(245,165,0,0.2);
}
.ad-testimonial__body { flex: 1; min-width: 0; }
.ad-testimonial__stars {
  color: var(--primary);
  font-size: 0.92rem; letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
}
.ad-testimonial__quote {
  font-size: 0.92rem; color: var(--text); line-height: 1.5;
  font-style: italic; margin: 0 0 0.7rem;
}
.ad-testimonial__foot {
  font-size: 0.8rem; color: var(--text-muted);
  display: flex; flex-direction: column; gap: 0.25rem;
}
.ad-testimonial__foot strong { color: var(--secondary); font-size: 0.85rem; }
.ad-testimonial__savings {
  background: rgba(0,168,125,0.1); color: var(--accent-dark);
  padding: 0.18rem 0.55rem; border-radius: 8px;
  font-weight: 700; font-size: 0.75rem;
  align-self: flex-start;
}

/* FAQ */
.ad-faq { background: var(--bg); padding: 2.5rem 1.2rem; }
.ad-faq__inner { max-width: 720px; margin: 0 auto; }
.ad-faq__inner h2 {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800;
  color: var(--secondary); margin: 0 0 1.4rem;
}

/* Final CTA */
.ad-final {
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 50%, #2a3354 100%);
  padding: 3rem 1.2rem; text-align: center; color: white;
}
.ad-final__inner { max-width: 600px; margin: 0 auto; }
.ad-final__inner h2 {
  font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; margin: 0 0 0.5rem;
}
.ad-final__inner p {
  color: rgba(255,255,255,0.85); margin: 0 0 1.4rem; font-size: 1rem;
}
.ad-final__cta {
  display: inline-block;
  background: var(--primary); color: var(--secondary);
  padding: 1.1rem 2.2rem; border-radius: 12px;
  font-weight: 800; font-size: 1.05rem;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(245,165,0,0.3);
}
.ad-final__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(245,165,0,0.45);
}
.ad-final__trust {
  margin-top: 1.2rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}

/* Footer */
.ad-footer {
  background: #fafbfc; padding: 1.4rem 1.2rem;
  font-size: 0.78rem; color: var(--text-muted);
}
.ad-footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.ad-footer__links { display: flex; gap: 1rem; }
.ad-footer__links a { color: var(--text-muted); text-decoration: none; }
.ad-footer__links a:hover { color: var(--primary-dark); text-decoration: underline; }
@media (max-width: 480px) {
  .ad-footer__inner { flex-direction: column; gap: 0.7rem; text-align: center; }
}

.ad-redirect-hint { margin-top: 0.7rem; font-size: 0.85rem; color: var(--text-muted); }
.ad-redirect-hint strong { color: var(--primary-dark); font-variant-numeric: tabular-nums; }


/* ============================================================
   SPARTIPPS · GLOSSAR
   ============================================================ */

/* === Spartipps-Sektion === */
.section--tips { background: linear-gradient(180deg, var(--bg) 0%, white 100%); }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.tip-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.6rem;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.tip-card__amount {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 500;
  background: rgba(0,168,125,0.08);
  border: 1px solid rgba(0,168,125,0.25);
  padding: 0.3rem 0.7rem;
  border-radius: 14px;
  display: inline-block; align-self: flex-start;
}
.tip-card__amount strong {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.95rem;
}
.tip-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.tip-card__icon svg { width: 24px; height: 24px; }
.tip-card:hover .tip-card__icon { transform: scale(1.08) rotate(-3deg); }
.tip-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--secondary);
  margin: 0;
}
.tip-card p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
  margin: 0;
}
.tip-card p strong { color: var(--secondary); }
.tip-card--accent {
  background: linear-gradient(135deg, #FFF9E8 0%, #FFEFC2 100%);
  border-color: var(--primary);
}
.tip-card--accent .tip-card__amount {
  background: rgba(245,165,0,0.18);
  border-color: var(--primary);
}
.tip-card--accent .tip-card__amount strong { color: var(--primary-dark); }
.tip-card--accent .tip-card__icon { background: white; }
.tip-card__cta { margin-top: 0.4rem; align-self: flex-start; }

.tips-grid-footnote {
  margin-top: 2rem;
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(245,165,0,0.06);
  border: 1px solid rgba(245,165,0,0.18);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
}
.tips-grid-footnote strong { color: var(--secondary); }

/* === Glossar-Page === */
.glossar-hero { padding-bottom: 3rem; }
.section--glossar-nav {
  background: var(--bg);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(248,250,252,0.95);
}
.glossar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}
.glossar-nav a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: white;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700; font-size: 0.92rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.glossar-nav a:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.section--glossar { background: white; padding-top: 3rem; }
.glossar-letter {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 3rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary-light);
  scroll-margin-top: 90px;
}
.glossar-letter:first-of-type { margin-top: 0; }
.glossar-term {
  background: white;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin-bottom: 1rem;
  scroll-margin-top: 90px;
  transition: all var(--transition);
}
.glossar-term:hover {
  background: #FFFBF1;
  border-left-color: var(--primary-dark);
  transform: translateX(4px);
}
.glossar-term h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--secondary);
  margin: 0 0 0.5rem;
}
.glossar-term p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.glossar-term p a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(245,165,0,0.4);
  text-underline-offset: 2px;
}
.glossar-term p a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

@media (max-width: 600px) {
  .glossar-nav a { width: 32px; height: 32px; font-size: 0.85rem; }
  .glossar-letter { font-size: 1.8rem; margin: 2rem 0 0.8rem; }
  .glossar-term { padding: 1.1rem 1.2rem; }
}

/* === MOBILE-MENU (Hamburger Drawer) ============================ */
/* Hamburger-Button — nur ≤768px sichtbar */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 1001;
}
.nav-toggle:hover { background: rgba(0,0,0,0.04); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.is-open { background: var(--primary); border-color: var(--primary); }
.nav-toggle.is-open span { background: var(--secondary); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer-Container (Backdrop + Panel) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,17,32,0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.4rem 1.8rem;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.18);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__logo img { height: 32px; width: auto; display: block; }
.mobile-menu__close {
  width: 40px; height: 40px;
  border: none;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.mobile-menu__close:hover { background: rgba(0,0,0,0.1); }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.4rem;
}
.mobile-menu__nav a {
  display: block;
  padding: 0.95rem 1rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.18s ease, color 0.18s ease;
  border-left: 3px solid transparent;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible {
  background: rgba(245,165,0,0.08);
  color: var(--primary);
  border-left-color: var(--primary);
}

.mobile-menu__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 1.2rem;
}

.mobile-menu__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
}
.mobile-menu__footer a {
  color: var(--text-muted);
  text-decoration: none;
}
.mobile-menu__footer a:hover { color: var(--primary); }

.mobile-menu__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  margin-bottom: 1rem;
  background: rgba(0,200,150,0.08);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--secondary);
}
.mobile-menu__trust strong { color: var(--accent); }

/* Body-Scroll-Lock wenn Menü offen */
body.menu-open { overflow: hidden; }

/* Sichtbarkeits-Toggle nach Breakpoint */
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  /* CTA-Button im Header bleibt — Hamburger steht daneben */
  .header__inner .btn--sm { font-size: 0.82rem; padding: 0.5rem 0.9rem; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* ============================================================
   GEWERBESTROM B2B-CONVERSION-PAGE
   ============================================================ */

/* --- BIZ HERO ------------------------------------------------ */
.biz-hero {
  position: relative;
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 60%, #0b1120 100%);
  color: #fff;
  overflow: hidden;
}
.biz-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245,165,0,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(0,200,150,0.12), transparent 55%);
  pointer-events: none;
}
.biz-hero__photo {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  /* Photo nur rechts sichtbar, links fade-out für Lesbarkeit der H1 */
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.85) 100%);
          mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 0;
}
.biz-hero--with-photo .biz-hero__bg {
  background:
    radial-gradient(ellipse at 0% 40%, rgba(11,17,32,0.85), transparent 70%),
    radial-gradient(ellipse at 20% 30%, rgba(245,165,0,0.12), transparent 60%);
}
@media (max-width: 720px) {
  .biz-hero__photo { opacity: 0.32; }
}
.biz-hero__inner {
  position: relative;
  z-index: 1;
}
.biz-hero .breadcrumb { color: rgba(255,255,255,0.7); }
.biz-hero .breadcrumb a { color: var(--primary); }
.biz-hero__eyebrow {
  display: inline-block;
  background: rgba(245,165,0,0.15);
  color: var(--primary);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 1rem 0 1.2rem;
  border: 1px solid rgba(245,165,0,0.3);
}
.biz-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.2rem;
  color: #fff;
  max-width: 900px;
}
.biz-hero__accent {
  background: linear-gradient(120deg, var(--primary), #FFD566);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.biz-hero__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 720px;
  margin: 0 0 1.8rem;
}
.biz-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.biz-hero__cta .btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.biz-hero__cta .btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--primary);
  color: var(--primary);
}
.biz-hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.biz-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.biz-trust-item strong {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.biz-trust-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* --- LOGO STRIP --------------------------------------------- */
.biz-logo-strip {
  background: #F8F9FA;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
}
.biz-logo-strip__label {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
}
.biz-logo-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.92rem;
  color: var(--secondary);
  font-weight: 600;
}
.biz-logo-strip__row span {
  white-space: nowrap;
}

/* === Dual-Marquee (Logo-Slider · scrollt automatisch in 2 Richtungen) === */
.biz-marquee {
  margin-top: 0.4rem;
  position: relative;
  overflow: hidden;
  /* Edge-Fade per Mask (links/rechts ausblenden) */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.biz-marquee__row {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0.55rem 0;
}
.biz-marquee__track {
  display: flex;
  gap: 1.6rem;
  padding-right: 1.6rem;
  flex-shrink: 0;
  align-items: center;
}
.biz-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.78rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.biz-marquee__track span:hover {
  border-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-1px);
}
.biz-marquee__row--left {
  animation: marqueeLeft 38s linear infinite;
}
.biz-marquee__row--right {
  animation: marqueeRight 44s linear infinite;
}
.biz-marquee:hover .biz-marquee__row {
  animation-play-state: paused;
}
@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .biz-marquee__row { animation: none; transform: translateX(0); }
}
@media (max-width: 640px) {
  .biz-marquee__track { gap: 0.7rem; padding-right: 0.7rem; }
  .biz-marquee__track span { padding: 0.28rem 0.6rem; font-size: 0.68rem; }
  .biz-marquee__row--left  { animation-duration: 28s; }
  .biz-marquee__row--right { animation-duration: 32s; }
}

/* --- BIZ LEAD CARD ------------------------------------------ */
.section--biz-lead {
  background: #fff;
  padding: 3.5rem 0;
}
.biz-lead-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.4rem 2rem 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.biz-lead-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #FFD566, var(--primary));
}
.biz-lead-card__head {
  text-align: center;
  margin-bottom: 1.8rem;
}
.biz-lead-card__badge {
  display: inline-block;
  background: rgba(0,200,150,0.10);
  color: var(--accent);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,200,150,0.25);
}
.biz-lead-card__head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  color: var(--secondary);
  margin: 0 0 0.8rem;
  font-weight: 800;
  line-height: 1.2;
}
.biz-lead-card__head p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.biz-lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.biz-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.biz-field--full {
  grid-column: 1 / -1;
}
.biz-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
}
.biz-field input,
.biz-field select,
.biz-field textarea {
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.biz-field input:focus,
.biz-field select:focus,
.biz-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,165,0,0.15);
}
.biz-field textarea { resize: vertical; min-height: 80px; }

.biz-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem;
  background: #F8F9FA;
  border-radius: 10px;
}
.biz-consent input { margin-top: 0.18rem; flex-shrink: 0; }
.biz-consent a { color: var(--primary); }

.biz-lead-form__submit {
  width: 100%;
  justify-content: center;
}
.biz-lead-form__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.2rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.biz-lead-form__status {
  margin-top: 1rem;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}
.biz-lead-form__status.is-ok {
  padding: 1rem 1.2rem;
  background: rgba(0,200,150,0.10);
  color: var(--accent);
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: 10px;
}
.biz-lead-form__status.is-err {
  padding: 1rem 1.2rem;
  background: rgba(220,53,69,0.08);
  color: #c0392b;
  border: 1px solid rgba(220,53,69,0.25);
  border-radius: 10px;
}

/* --- BRANCHEN GRID ------------------------------------------ */
.section--biz-branches { background: #F8F9FA; }
.biz-branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.biz-branch-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.biz-branch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: rgba(245,165,0,0.35);
}
.biz-branch-card__icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.biz-branch-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  color: var(--secondary);
  font-weight: 700;
}
.biz-branch-card__usage {
  margin: 0 0 0.3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.biz-branch-card__saving {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 700;
}
.biz-branch-card__note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}
.biz-branch-card--featured {
  background: linear-gradient(135deg, rgba(245,165,0,0.06), rgba(255,213,102,0.04));
  border-color: var(--primary);
}
.biz-branch-card--featured h3 { color: var(--secondary); }
.biz-branches-cta { text-align: center; }

/* --- TIER CARDS --------------------------------------------- */
.biz-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.biz-tier {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.biz-tier--featured {
  border-color: var(--primary);
  box-shadow: 0 20px 48px rgba(245,165,0,0.18);
  transform: translateY(-8px);
}
.biz-tier__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--secondary);
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.biz-tier__head { margin-bottom: 1.2rem; }
.biz-tier__eyebrow {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.biz-tier__head h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin: 0 0 0.5rem;
  font-weight: 800;
}
.biz-tier__range {
  margin: 0;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 700;
}
.biz-tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
  flex-grow: 1;
}
.biz-tier__list li { line-height: 1.5; }
.biz-tier__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* --- USP GRID ----------------------------------------------- */
.biz-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.biz-usp {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.biz-usp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.biz-usp__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(245,165,0,0.12), rgba(255,213,102,0.18));
  border-radius: 12px;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}
.biz-usp h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--secondary);
  font-weight: 700;
}
.biz-usp p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}

/* --- PROCESS ------------------------------------------------ */
.section--biz-process { background: #F8F9FA; }
.biz-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}
.biz-process__step {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem 1.3rem;
  border: 1px solid var(--border);
  position: relative;
}
.biz-process__num {
  width: 40px; height: 40px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 4px 12px rgba(245,165,0,0.3);
}
.biz-process__step h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.biz-process__step p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}
.biz-process__time {
  display: inline-block;
  background: rgba(0,200,150,0.10);
  color: var(--accent);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* --- TESTIMONIALS ------------------------------------------- */
.biz-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.biz-testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.biz-testimonial blockquote {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}
.biz-testimonial__author {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}
.biz-testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.biz-testimonial__author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--secondary);
}
.biz-testimonial__author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.biz-testimonial__stars {
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* --- COMPLIANCE --------------------------------------------- */
.section--biz-compliance { background: #F8F9FA; }
.biz-compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.biz-compliance {
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.biz-compliance h3 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.biz-compliance p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

/* --- FINAL CTA ---------------------------------------------- */
.section--biz-final-cta {
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 100%);
  color: #fff;
  padding: 3.5rem 0;
}
.biz-final-cta {
  text-align: center;
  padding: 1rem 0;
}
.biz-final-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: #fff;
  margin: 0 0 1rem;
  font-weight: 800;
  line-height: 1.2;
}
.biz-final-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
}
.biz-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.biz-final-cta__buttons .btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.biz-final-cta__buttons .btn--outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--primary);
  border-color: var(--primary);
}
.biz-final-cta__hint {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0.6rem 0 0;
}
.biz-final-cta__hint a {
  color: var(--primary);
}

/* --- RESPONSIVE B2B ----------------------------------------- */
@media (max-width: 900px) {
  .biz-branches-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-tiers { grid-template-columns: 1fr; }
  .biz-tier--featured { transform: none; }
  .biz-usp-grid { grid-template-columns: 1fr 1fr; }
  .biz-process { grid-template-columns: 1fr 1fr; }
  .biz-testimonials { grid-template-columns: 1fr; }
  .biz-compliance-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .biz-hero { padding: 3rem 0 2.5rem; }
  .biz-hero__trust { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .biz-lead-form__grid { grid-template-columns: 1fr; }
  /* Branchen-Cards bleiben 2-spaltig auf Mobile (kompaktere Cards) */
  .biz-branches-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .biz-branch-card { padding: 1rem 0.85rem; }
  .biz-branch-card__icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
  .biz-branch-card h3 { font-size: 0.92rem; margin-bottom: 0.4rem; }
  .biz-branch-card__usage { font-size: 0.74rem; }
  .biz-branch-card__saving { font-size: 0.82rem; }
  .biz-branch-card__note { font-size: 0.68rem; }
  .biz-usp-grid { grid-template-columns: 1fr; }
  .biz-process { grid-template-columns: 1fr; }
  .biz-lead-card { padding: 1.6rem 1.2rem 1.3rem; }
}

/* ============================================================
   GEWERBESTROM BRANCHEN-SUBPAGES (Extras)
   ============================================================ */
.biz-branches-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .biz-branches-grid--3col { grid-template-columns: 1fr; }
}

.biz-testimonial--big {
  background: linear-gradient(135deg, #fff 0%, #FFFBF0 100%);
  border: 1px solid var(--primary);
  padding: 2.5rem 2.2rem;
  box-shadow: 0 18px 40px rgba(245,165,0,0.10);
}
.biz-testimonial--big blockquote {
  font-size: 1.15rem;
  border-left: 4px solid var(--primary);
  padding-left: 1.3rem;
}
.biz-testimonial--big .biz-testimonial__author {
  grid-template-columns: 56px 1fr auto;
}
.biz-testimonial--big .biz-testimonial__avatar {
  width: 56px; height: 56px;
  font-size: 1.1rem;
}
.biz-testimonial__saving {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}
.biz-testimonial__saving strong {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.biz-testimonial__saving span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section--biz-tips { background: #F8F9FA; }
.biz-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.biz-tips-list li {
  background: #fff;
  padding: 1.1rem 1.3rem 1.1rem 3.3rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}
.biz-tips-list li::before {
  content: '💡';
  position: absolute;
  left: 1.1rem;
  top: 1.05rem;
  font-size: 1.2rem;
}
.biz-tips-list li strong { color: var(--secondary); }

@media (max-width: 640px) {
  .biz-testimonial--big { padding: 1.6rem 1.3rem; }
  .biz-testimonial--big .biz-testimonial__author { grid-template-columns: 48px 1fr; gap: 0.6rem; }
  .biz-testimonial__saving { grid-column: 1 / -1; padding-left: 0; padding-top: 0.8rem; margin-top: 0.4rem; border-left: 0; border-top: 1px solid var(--border); flex-direction: row; align-items: baseline; gap: 0.6rem; }
  .biz-tips-list li { padding-left: 3rem; }
}

.biz-branches-links {
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.biz-branches-links__label {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.biz-branches-links__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.biz-branches-links__row a {
  display: inline-block;
  padding: 0.55rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.18s ease;
}
.biz-branches-links__row a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245,165,0,0.2);
}

/* ============================================================
   BLOG (Editorial-Pages /blog/ + /blog/{slug}/)
   ============================================================ */

/* --- BLOG HERO ---------------------------------------------- */
.blog-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}
.blog-hero .breadcrumb { color: rgba(255,255,255,0.7); }
.blog-hero .breadcrumb a { color: var(--primary); }
.blog-hero__eyebrow {
  display: inline-block;
  background: rgba(245,165,0,0.18);
  color: var(--primary);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0.9rem 0 1.2rem;
  border: 1px solid rgba(245,165,0,0.3);
}
.blog-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.2rem;
  color: #fff;
  max-width: 820px;
}
.blog-hero__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 720px;
  margin: 0 0 1.5rem;
}
.blog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.blog-hero__meta .blog-tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}

.blog-hero__lead .hi-acc,
.blog-hero h1 .hi-acc {
  background: linear-gradient(120deg, var(--primary), #FFD566);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- BLOG ARTICLE ------------------------------------------- */
.blog-article {
  background: #fff;
  padding-bottom: 4rem;
}

.blog-author {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 0;
  margin: 1.8rem 0 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.blog-author__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #FFD566);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.15rem;
}
.blog-author__meta { display: flex; flex-direction: column; gap: 0.15rem; }
.blog-author__meta strong {
  font-size: 1rem;
  color: var(--secondary);
}
.blog-author__meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.blog-author__expertise { font-size: 0.78rem !important; opacity: 0.85; }
.blog-author__date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.blog-author__date strong { color: var(--secondary); font-size: 0.92rem; }

/* --- TOC ---------------------------------------------------- */
.blog-toc {
  background: #F8F9FA;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  margin: 0 0 2rem;
}
.blog-toc h2 {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.blog-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}
.blog-toc a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.18s ease;
}
.blog-toc a:hover { color: var(--primary); }

/* --- PROSE -------------------------------------------------- */
.blog-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}
.blog-prose h2 {
  margin: 2.5rem 0 0.9rem;
  font-size: clamp(1.4rem, 2.8vw, 1.7rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.25;
  scroll-margin-top: 80px;
}
.blog-prose h3 {
  margin: 1.8rem 0 0.7rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
}
.blog-prose p { margin: 0 0 1.1rem; }
.blog-prose ul,
.blog-prose ol {
  margin: 0 0 1.3rem 0;
  padding-left: 1.4rem;
}
.blog-prose li { margin-bottom: 0.55rem; line-height: 1.65; }
.blog-prose strong { color: var(--secondary); font-weight: 700; }
.blog-prose a:not(.btn) { color: var(--primary); }
.blog-prose .btn--primary { color: var(--secondary); }
.blog-prose .btn--outline { color: inherit; }

/* --- CALLOUT ------------------------------------------------ */
.blog-callout {
  margin: 1.6rem 0;
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  background: #FFFBF0;
}
.blog-callout strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary);
}
.blog-callout p { margin: 0; font-size: 0.98rem; }
.blog-callout--warning {
  background: #FFEBEE;
  border-left-color: #c0392b;
}
.blog-callout--warning strong { color: #c0392b; }
.blog-callout--info {
  background: #E8F4FD;
  border-left-color: #0078d4;
}
.blog-callout--info strong { color: #0078d4; }
.blog-callout--tip {
  background: #E8F8F0;
  border-left-color: var(--accent);
}
.blog-callout--tip strong { color: var(--accent); }

/* --- BLOG QUOTE --------------------------------------------- */
.blog-quote {
  margin: 1.8rem 0;
  padding: 1.4rem 1.6rem;
  background: #F8F9FA;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--secondary);
}
.blog-quote cite { display: block; margin-top: 0.6rem; font-size: 0.88rem; color: var(--text-muted); font-style: normal; }

/* --- LEAD CTA INSIDE ARTICLE -------------------------------- */
.blog-lead-cta {
  margin: 2.4rem 0;
  padding: 2rem 2rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 100%);
  color: #fff;
  text-align: center;
}
.blog-lead-cta h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin: 0 0 0.8rem;
  font-weight: 800;
}
.blog-lead-cta p {
  margin: 0 0 1.4rem;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* --- SOURCES ------------------------------------------------ */
.blog-sources {
  margin: 2.8rem 0 1.8rem;
  padding: 1.2rem 1.4rem;
  background: #F8F9FA;
  border-radius: 8px;
  font-size: 0.9rem;
}
.blog-sources h3 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 700;
}
.blog-sources ul {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.blog-sources a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.blog-sources a:hover { color: var(--primary); }

/* --- SHARE -------------------------------------------------- */
.blog-share {
  margin: 2.4rem 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
}
.blog-share h3 {
  margin: 0 0 0.8rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.blog-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.blog-share__buttons a {
  display: inline-block;
  padding: 0.55rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.18s ease;
}
.blog-share__buttons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

/* --- AUTHOR-CARD AT END ------------------------------------- */
.blog-author-card {
  margin: 2.4rem 0 0;
  padding: 1.6rem 1.6rem;
  background: #F8F9FA;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.blog-author-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #FFD566);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.5rem;
}
.blog-author-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--secondary);
}
.blog-author-card__title {
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.blog-author-card__body p {
  margin: 0 0 0.7rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text);
}
.blog-author-card__expertise {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
}

/* --- BLOG HUB-GRID ------------------------------------------ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.blog-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  border-color: var(--primary);
}
.blog-card__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: rgba(245,165,0,0.10);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.blog-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--secondary);
  font-weight: 700;
}
.blog-card p {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text);
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  align-items: center;
}

@media (max-width: 720px) {
  .blog-author { grid-template-columns: 48px 1fr; }
  .blog-author__date { grid-column: 1 / -1; align-items: flex-start; padding-top: 0.6rem; border-top: 1px dashed var(--border); margin-top: 0.5rem; }
  .blog-author-card { grid-template-columns: 1fr; text-align: center; }
  .blog-author-card__avatar { margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG-CHARTS & VISUAL BLOCKS
   ============================================================ */

/* --- Chart-Container generisch ------------------------------ */
.blog-chart {
  margin: 2rem 0;
  padding: 1.5rem 1.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.blog-chart__head { margin: 0 0 1rem; padding: 0; text-align: left; }
.blog-chart__head h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.35;
}
.blog-chart__head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
}
.blog-chart__svg {
  width: 100%;
  height: auto;
  display: block;
}
.blog-chart__axis-label {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
}

/* --- Donut ------------------------------------------------- */
.blog-chart--donut .blog-donut__wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.4rem;
  align-items: center;
}
.blog-donut__svg {
  width: 220px;
  height: 220px;
  display: block;
}
.blog-donut__label {
  font-size: 1.05rem;
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.5;
}

/* --- Data-Grid (Big-Numbers) ------------------------------- */
.blog-data-grid {
  margin: 2rem 0;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 100%);
  color: #fff;
  border-radius: 14px;
}
.blog-data-grid__title {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-data-grid__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.blog-stat {
  text-align: left;
  padding: 0.6rem 0;
}
.blog-stat strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.blog-stat span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.blog-stat--warning strong { color: #ffb088; }
.blog-stat--ok strong      { color: var(--accent); }
.blog-stat--info strong    { color: #6cb4ff; }

/* --- Comparison-Table -------------------------------------- */
.blog-table {
  margin: 2rem 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.blog-table__head {
  padding: 1.2rem 1.4rem 0.8rem;
  background: #fff;
  text-align: left;
}
.blog-table__head h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 700;
}
.blog-table__head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.blog-table__wrap {
  overflow-x: auto;
}
.blog-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.blog-table thead th {
  background: #F8F9FA;
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.blog-table tbody td {
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.blog-table tbody tr:last-child td { border-bottom: 0; }
.blog-table td.ct-label  { font-weight: 600; color: var(--secondary); }
.blog-table td.ct-before { color: var(--warn, #c0392b); font-weight: 600; }
.blog-table td.ct-after  { color: var(--accent); font-weight: 700; }
.blog-table td.ct-impr   { font-weight: 800; color: var(--accent); white-space: nowrap; }

/* --- Process / Schritte-Infografik ------------------------- */
.blog-process {
  margin: 2.2rem 0;
  padding: 1.8rem 1.6rem;
  background: linear-gradient(180deg, #FFFBF0 0%, #fff 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
}
.blog-process__title {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  color: var(--secondary);
  font-weight: 800;
}
.blog-process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  align-items: start;
  border-top: 1px dashed rgba(0,0,0,0.06);
}
.blog-process-step:first-of-type { border-top: 0; padding-top: 0; }
.blog-process-step__num {
  width: 40px; height: 40px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(245,165,0,0.25);
}
.blog-process-step__body h4 {
  margin: 0.15rem 0 0.3rem;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 700;
}
.blog-process-step__body p {
  margin: 0 0 0.4rem;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.55;
}
.blog-process-step__timing {
  display: inline-block;
  background: rgba(0,200,150,0.10);
  color: var(--accent);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Image-Block ------------------------------------------- */
.blog-image {
  margin: 2rem 0;
  padding: 0;
}
.blog-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.blog-image figcaption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}
.blog-image--hero {
  margin: 0 0 2rem;
}
.blog-image--hero img {
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* --- Mobile-Responsive ------------------------------------- */
@media (max-width: 720px) {
  .blog-chart { padding: 1.2rem 1rem; }
  .blog-chart--donut .blog-donut__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .blog-donut__svg { margin: 0 auto; }
  .blog-data-grid__row { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .blog-stat strong { font-size: 1.5rem; }
  .blog-table { font-size: 0.85rem; }
  .blog-table thead th, .blog-table tbody td { padding: 0.65rem 0.7rem; }
  .blog-process { padding: 1.3rem 1.1rem; }
  .blog-process-step { grid-template-columns: 36px 1fr; gap: 0.7rem; }
  .blog-process-step__num { width: 32px; height: 32px; font-size: 0.95rem; }
}

/* === BIZ-CHART (Inline-SVG-Vergleich in Branchen-Sektion) === */
.biz-chart {
  margin: 2.4rem auto 0;
  padding: 1.6rem 1.8rem 1.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  max-width: 820px;
}
.biz-chart__head { text-align: left; margin: 0 0 1rem; }
.biz-chart__head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--secondary);
  font-weight: 700;
}
.biz-chart__head p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.biz-chart svg { width: 100%; height: auto; display: block; }
.biz-chart__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  align-items: center;
}
.biz-chart__legend-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 0.35rem;
}

@media (max-width: 720px) {
  .biz-chart { padding: 1.2rem 1rem 1rem; }
  .biz-chart__head h3 { font-size: 0.95rem; }
}

/* ============================================================
   BIZ-STORY-VIDEO (Echte B2B-Geschichte auf /gewerbestrom/)
   ============================================================ */
.section--biz-story {
  background: linear-gradient(180deg, #fff 0%, #F8F9FA 100%);
  padding: 3.5rem 0;
}
.biz-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.6rem;
  align-items: center;
}
.biz-story-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1120;
  box-shadow: 0 24px 60px rgba(11,17,32,0.18);
}
.biz-story-video__player {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}

.biz-story-video__cc {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  max-width: 88%;
  padding: 0.6rem 1.05rem;
  background: rgba(0,0,0,0.78);
  color: #fff;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border-radius: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 3;
}
.biz-story-video__cc.is-active { opacity: 1; }
.biz-story-video__cc strong {
  color: var(--primary);
  font-weight: 800;
}

.biz-story-video__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.32rem 0.7rem;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 0.4rem;
  backdrop-filter: blur(8px);
  z-index: 3;
}
.biz-story-video__badge--sm {
  top: 10px; left: 10px;
  padding: 0.22rem 0.55rem;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  border-radius: 7px;
  gap: 0.32rem;
}
.biz-story-video__badge--sm .biz-story-video__pulse {
  width: 6px; height: 6px;
}
.biz-story-video__pulse {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,200,150,0.6);
  animation: actPulse 1.6s infinite;
}

.biz-story-video__muted-hint {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.92);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 0.4rem;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.biz-story-grid__text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--secondary);
  margin: 0.6rem 0 1rem;
  line-height: 1.18;
}
.biz-story-grid__lead {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 1.4rem;
}
.biz-story-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 0 0 1.4rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.biz-story-fact { display: flex; flex-direction: column; gap: 0.15rem; }
.biz-story-fact__num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.biz-story-fact__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.biz-story-quote {
  margin: 0 0 1.4rem;
  padding: 1.1rem 1.3rem;
  background: rgba(245,165,0,0.06);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .biz-story-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 640px) {
  .biz-story-facts { grid-template-columns: 1fr; gap: 0.6rem; }
  .biz-story-fact { flex-direction: row; align-items: baseline; gap: 0.5rem; }
  .biz-story-fact__num { font-size: 1.15rem; }
}

/* ============================================================
   HEADER-PHONE (sticky persönliche Beratung)
   ============================================================ */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(0,200,150,0.10);
  border: 1px solid rgba(0,200,150,0.25);
  transition: all 0.18s ease;
  white-space: nowrap;
}
.header-phone svg {
  color: var(--accent);
  flex-shrink: 0;
}
.header-phone:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,200,150,0.25);
}
.header-phone:hover svg { color: #fff; }
.header-phone__num { letter-spacing: -0.01em; }

@media (max-width: 1100px) and (min-width: 769px) {
  .header-phone { padding: 0.42rem 0.7rem; font-size: 0.82rem; }
}
@media (max-width: 768px) {
  /* Auf Mobile: nur Icon, keine Nummer */
  .header-phone__num { display: none; }
  .header-phone { padding: 0.5rem; }
}

/* ============================================================
   PROVIDER-STRIP (Wir vergleichen Tarife von ...)
   ============================================================ */
.provider-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2rem 0 2.2rem;
}
.provider-strip__head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.provider-strip__count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.provider-strip__count strong {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.provider-strip__intro {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
  min-width: 280px;
}

.provider-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.7rem;
  align-items: center;
}
.provider-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.78rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  transition: all 0.18s ease;
  letter-spacing: -0.01em;
}
.provider-pill:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* Brand-Colors (typografische Differenzierung) */
.provider-pill[data-brand="eon"]       { color: #E2001A; font-family: 'Helvetica Neue', sans-serif; font-style: italic; }
.provider-pill[data-brand="vattenfall"]{ color: #1F4E8C; }
.provider-pill[data-brand="enbw"]      { color: #FF6900; }
.provider-pill[data-brand="rwe"]       { color: #1d1d1d; font-weight: 800; letter-spacing: 0.05em; }
.provider-pill[data-brand="yello"]     { background: #ffd400; border-color: #e6be00; color: #1d1d1d; font-style: italic; font-size: 0.8rem; }
.provider-pill[data-brand="eprimo"]    { color: #009ee0; font-style: italic; }
.provider-pill[data-brand="lichtblick"]{ color: #ffd400; background: #1d1d1d; border-color: #1d1d1d; }
.provider-pill[data-brand="naturen"]   { color: #2d7d3a; }
.provider-pill[data-brand="polarstern"]{ color: #003c63; }
.provider-pill[data-brand="mainova"]   { color: #c1281e; }
.provider-pill[data-brand="swm"]       { color: #00538a; }
.provider-pill[data-brand="swb"]       { color: #007236; }
.provider-pill[data-brand="rhein"]     { color: #001f5f; }
.provider-pill[data-brand="stadtwerk"] { color: var(--text-muted); font-weight: 600; font-style: italic; }

@media (max-width: 640px) {
  .provider-strip { padding: 1.4rem 0 1.6rem; }
  .provider-strip__count { font-size: 0.78rem; padding: 0.4rem 0.85rem; }
  .provider-strip__intro { font-size: 0.88rem; }
  .provider-pill { padding: 0.3rem 0.62rem; font-size: 0.68rem; }
}

/* ============================================================
   VOR-ORT-BERATUNG (auf /gewerbestrom/ und Homepage)
   ============================================================ */

/* === Section auf /gewerbestrom/ === */
.section--biz-onsite {
  background: linear-gradient(180deg, #FFFBF0 0%, #fff 100%);
  padding: 4rem 0;
}
.biz-onsite-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.biz-onsite-grid__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.18;
  margin: 0.6rem 0 1.1rem;
}
.biz-onsite__accent {
  background: linear-gradient(120deg, var(--primary), #FFD566);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.biz-onsite__lead {
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1.8rem;
}

.biz-onsite-points {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.biz-onsite-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.biz-onsite-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.biz-onsite-point__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(245,165,0,0.12), rgba(255,213,102,0.18));
  border-radius: 10px;
  font-size: 1.4rem;
}
.biz-onsite-point strong {
  display: block;
  font-size: 0.98rem;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}
.biz-onsite-point p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
}

.biz-onsite-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.biz-onsite-cta .btn--outline {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.biz-onsite-cta .btn--outline:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* === Photo-Seite === */
.biz-onsite-grid__photo {
  position: relative;
}
.biz-onsite-grid__photo figure { margin: 0; }
.biz-onsite-grid__photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(11,17,32,0.15);
}
.biz-onsite-grid__photo figcaption {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 600;
}
.biz-onsite-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--secondary);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 10px 30px rgba(11,17,32,0.25);
  max-width: 220px;
  border: 2px solid var(--primary);
}
.biz-onsite-badge__num {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
}
.biz-onsite-badge__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .biz-onsite-grid { grid-template-columns: 1fr; gap: 2rem; }
  .biz-onsite-badge { left: 12px; bottom: -14px; }
}

/* === Homepage USP-Card === */
.onsite-usp {
  background: linear-gradient(180deg, #F8F9FA 0%, #fff 100%);
  padding: 1.6rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.onsite-usp__card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
.onsite-usp__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(245,165,0,0.14), rgba(255,213,102,0.20));
  border-radius: 12px;
  font-size: 2rem;
}
.onsite-usp__body strong {
  display: block;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
  font-weight: 800;
}
.onsite-usp__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}
.onsite-usp__body p a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.onsite-usp__body p a:hover { text-decoration: underline; }

.onsite-usp__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.18s ease;
}
.onsite-usp__phone:hover {
  background: #00a87d;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,200,150,0.3);
}

@media (max-width: 768px) {
  .onsite-usp__card { grid-template-columns: 48px 1fr; gap: 0.9rem; padding: 1rem 1.1rem; }
  .onsite-usp__icon { width: 48px; height: 48px; font-size: 1.6rem; }
  .onsite-usp__phone { grid-column: 1 / -1; justify-content: center; }
  .onsite-usp__body strong { font-size: 0.98rem; }
}

/* ============================================================
   VOR-ORT-BERATUNG — Premium-Ausbau (Compare, Process, Map)
   ============================================================ */

/* Head-Block */
.biz-onsite-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.4rem;
}
.biz-onsite-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(245,165,0,0.10);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(245,165,0,0.25);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.biz-onsite-h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.biz-onsite-h2__strike {
  position: relative;
  color: var(--text-muted);
  font-weight: 600;
}
.biz-onsite-h2__strike::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 3px;
  background: var(--warn, #c0392b);
  transform: rotate(-2deg);
  transform-origin: center;
  border-radius: 2px;
}
.biz-onsite-h2__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* Photo-Treatment (Premium-Lift) */
.biz-onsite-grid__photo {
  position: relative;
}
.biz-onsite-grid__photo figure { margin: 0; }
.biz-onsite-grid__photo img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: 0 28px 64px rgba(11,17,32,0.20);
}
.biz-onsite-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--secondary);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 8px 20px rgba(245,165,0,0.4);
  transform: rotate(4deg);
}
.biz-onsite-stamp strong {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
}
.biz-onsite-stamp span {
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.85;
}

/* Compare-Tabelle */
.biz-onsite-compare-wrap {
  margin-top: 3.5rem;
}
.biz-onsite-compare {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 2rem 1.6rem;
  box-shadow: 0 16px 40px rgba(11,17,32,0.08);
  border: 1px solid var(--border);
}
.biz-onsite-compare h3 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  color: var(--secondary);
  font-weight: 800;
  text-align: center;
}
.biz-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.biz-compare-table th,
.biz-compare-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.biz-compare-table thead th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 700;
  padding-top: 0.5rem;
  padding-bottom: 0.7rem;
}
.biz-compare-table th:first-child { width: 30%; }
.biz-compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--secondary);
}
.biz-compare-table__competitor {
  color: #b04545 !important;
}
.biz-compare-table__us {
  background: rgba(245,165,0,0.07);
  color: var(--primary) !important;
  font-weight: 800 !important;
  border-radius: 12px 12px 0 0;
}
.biz-compare-table tbody td:nth-child(2) {
  color: var(--text-muted);
  font-style: italic;
}
.biz-compare-table tbody td:last-child {
  background: rgba(245,165,0,0.05);
  color: var(--secondary);
  border-left: 3px solid var(--primary);
}
.biz-compare-table tbody td:last-child strong {
  color: var(--primary);
}
.biz-compare-table tbody tr:last-child td { border-bottom: 0; }
.biz-compare-table tbody tr:last-child td:last-child { border-radius: 0 0 12px 12px; }

/* Process Timeline */
.biz-onsite-process-wrap { margin-top: 3.5rem; }
.biz-onsite-process-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.biz-onsite-process-head h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  color: var(--secondary);
  font-weight: 800;
}
.biz-onsite-process-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}
.biz-onsite-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}
.biz-onsite-process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.3rem 1.3rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.biz-onsite-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.biz-onsite-process-step--featured {
  background: linear-gradient(180deg, #FFFBF0 0%, #fff 100%);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(245,165,0,0.15);
}
.biz-onsite-process-step__num {
  position: absolute;
  top: -18px;
  left: 22px;
  width: 38px; height: 38px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 4px 10px rgba(245,165,0,0.4);
  border: 2px solid #fff;
}
.biz-onsite-process-step__icon {
  font-size: 1.8rem;
  margin: 0.8rem 0 0.7rem;
  display: block;
}
.biz-onsite-process-step h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--secondary);
  font-weight: 800;
}
.biz-onsite-process-step p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}
.biz-onsite-process-step__time {
  display: inline-block;
  background: rgba(0,200,150,0.10);
  color: var(--accent);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Deutschland-Karte */
.biz-onsite-map-wrap { margin-top: 3.5rem; }
.biz-onsite-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.8rem;
  align-items: center;
  padding: 2.2rem 2rem;
  background: linear-gradient(135deg, #fff 0%, #F8F9FA 100%);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(11,17,32,0.06);
}
.biz-onsite-map-side h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.3rem, 2.8vw, 1.6rem);
  color: var(--secondary);
  font-weight: 800;
}
.biz-onsite-map-side p {
  margin: 0 0 1.4rem;
  color: var(--text);
  line-height: 1.6;
  font-size: 0.96rem;
}
.biz-onsite-cities {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.9rem;
  font-size: 0.88rem;
  color: var(--text);
}
.biz-onsite-cities li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.biz-onsite-cities__dot {
  width: 9px; height: 9px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(245,165,0,0.2);
}
.biz-onsite-cities__dot--free {
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(0,200,150,0.2);
}

/* SVG-Map + Pins */
.biz-onsite-map-side--svg {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.biz-de-map {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}
.biz-pin__pulse {
  fill: var(--primary);
  opacity: 0.35;
  transform-origin: center;
  transform-box: fill-box;
  animation: bizPinPulse 2.2s ease-out infinite;
}
.biz-pin__dot {
  fill: var(--primary);
  stroke: #fff;
  stroke-width: 2;
}
.biz-pin--free .biz-pin__pulse {
  fill: var(--accent);
}
.biz-pin--free .biz-pin__dot {
  fill: var(--accent);
}
@keyframes bizPinPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0;   }
}
.biz-onsite-map-legend {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.biz-onsite-map-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* Responsive */
@media (max-width: 900px) {
  .biz-onsite-process { grid-template-columns: 1fr 1fr; }
  .biz-onsite-map-grid { grid-template-columns: 1fr; gap: 2rem; padding: 1.6rem 1.3rem; }
}
@media (max-width: 640px) {
  .biz-onsite-process { grid-template-columns: 1fr; }
  .biz-onsite-compare { padding: 1.4rem 1rem 1.2rem; }
  .biz-compare-table { font-size: 0.85rem; }
  .biz-compare-table th, .biz-compare-table td { padding: 0.7rem 0.6rem; }
  .biz-onsite-cities { grid-template-columns: 1fr; }
  .biz-onsite-stamp { top: 12px; right: 12px; padding: 0.55rem 0.8rem; transform: rotate(3deg); }
  .biz-onsite-stamp strong { font-size: 0.82rem; }
  .biz-onsite-stamp span { font-size: 0.68rem; }
}

/* ============================================================
   PROVIDER-MARQUEE (Homepage · gegenläufige Slider)
   ============================================================ */
.provider-marquee {
  margin-top: 1.2rem;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.provider-marquee__row {
  display: flex;
  width: max-content;
  padding: 0.5rem 0;
}
.provider-marquee__track {
  display: flex;
  gap: 0.8rem;
  padding-right: 0.8rem;
  flex-shrink: 0;
  align-items: center;
}
.provider-marquee__row--left {
  animation: providerMarqueeLeft 42s linear infinite;
}
.provider-marquee__row--right {
  animation: providerMarqueeRight 48s linear infinite;
}
.provider-marquee:hover .provider-marquee__row {
  animation-play-state: paused;
}
@keyframes providerMarqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes providerMarqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .provider-marquee__row { animation: none; transform: translateX(0); }
}
@media (max-width: 640px) {
  .provider-marquee__row--left  { animation-duration: 32s; }
  .provider-marquee__row--right { animation-duration: 36s; }
  .provider-marquee__track { gap: 0.55rem; padding-right: 0.55rem; }
}

/* ============================================================
   BURN-MONEY-VIDEO (Vor Live-Verlust-Ticker)
   ============================================================ */
.burn-video {
  padding: 2.4rem 0 1.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.04) 100%);
}
.burn-video__wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px rgba(0,0,0,0.40);
}
.burn-video__player {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.burn-video__cc {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  max-width: 88%;
  padding: 0.6rem 1.1rem;
  background: rgba(0,0,0,0.82);
  color: #fff;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border-radius: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 3;
}
.burn-video__cc.is-active { opacity: 1; }
.burn-video__cc strong {
  color: #ff6b35;
  font-weight: 800;
}

.burn-video__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.88);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.55rem;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  backdrop-filter: blur(6px);
  z-index: 3;
}
.burn-video__pulse {
  width: 6px; height: 6px;
  background: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,107,53,0.6);
  animation: actPulse 1.6s infinite;
}

.burn-video__caption {
  max-width: 720px;
  margin: 1.2rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--secondary);
}
.burn-video__caption strong { color: #c0392b; }
.burn-video__caption em { color: var(--primary); font-style: normal; font-weight: 700; }

@media (max-width: 640px) {
  .burn-video { padding: 1.6rem 0 1rem; }
  .burn-video__caption { font-size: 0.92rem; padding: 0 0.5rem; }
  .burn-video__cc { bottom: 12px; font-size: 0.92rem; padding: 0.45rem 0.85rem; }
}

/* ============================================================
   BESTPREIS-GARANTIE (Risk-Reversal Trust-Block)
   ============================================================ */
.bestpreis-guarantee {
  padding: 2.4rem 0 2rem;
  background: linear-gradient(180deg, #fff 0%, rgba(245,165,0,0.04) 100%);
}
.bestpreis-guarantee__card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.8rem;
  align-items: center;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  box-shadow: 0 18px 44px rgba(245,165,0,0.14);
  position: relative;
  overflow: hidden;
}
.bestpreis-guarantee__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(245,165,0,0.06), transparent 60%);
  pointer-events: none;
}

.bestpreis-guarantee__seal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bpSealPulse 4s ease-in-out infinite;
}
@keyframes bpSealPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

.bestpreis-guarantee__body { position: relative; z-index: 1; }
.bestpreis-guarantee__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(245,165,0,0.12);
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(245,165,0,0.3);
}
.bestpreis-guarantee__body h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.3;
  color: var(--secondary);
  font-weight: 800;
}
.bestpreis-guarantee__accent {
  background: linear-gradient(120deg, var(--primary), #FFD566);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bestpreis-guarantee__body p {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}
.bestpreis-guarantee__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.bestpreis-guarantee__cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  white-space: nowrap;
}
.bestpreis-guarantee__details-link {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}
.bestpreis-guarantee__details-link:hover { color: var(--primary); }

@media (max-width: 900px) {
  .bestpreis-guarantee__card { grid-template-columns: 84px 1fr; gap: 1.2rem; padding: 1.4rem 1.3rem; }
  .bestpreis-guarantee__cta { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; justify-content: center; padding-top: 0.4rem; border-top: 1px dashed var(--border); margin-top: 0.4rem; }
  .bestpreis-guarantee__cta .btn--lg { flex: 1 1 200px; justify-content: center; }
}
@media (max-width: 560px) {
  .bestpreis-guarantee__card { grid-template-columns: 1fr; text-align: center; padding: 1.3rem 1.1rem; }
  .bestpreis-guarantee__seal { margin: 0 auto; }
  .bestpreis-guarantee__points { justify-content: center; }
}

/* ============================================================
   BURN-STATIC (Animiertes Standbild statt Video)
   ============================================================ */
.burn-static-wrap {
  position: relative;
  overflow: hidden;
}
.burn-static__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Ken-Burns: langsame Zoom + Pan-Bewegung */
  animation: burnKenBurns 22s ease-in-out infinite alternate;
  transform-origin: 35% 55%;  /* Fokus auf Feuer-Bereich */
}
@keyframes burnKenBurns {
  0%   { transform: scale(1.00) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

/* Feuer-Flicker-Overlay (warmer Glow + variable Intensität) */
.burn-static__flicker {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 25% 60%, rgba(255,120,40,0.25) 0%, transparent 40%);
  mix-blend-mode: screen;
  animation: burnFlicker 0.18s linear infinite;
  z-index: 1;
}
@keyframes burnFlicker {
  0%   { opacity: 0.85; transform: scale(1.00); }
  18%  { opacity: 1.00; transform: scale(1.02); }
  36%  { opacity: 0.90; transform: scale(0.99); }
  54%  { opacity: 1.00; transform: scale(1.03); }
  72%  { opacity: 0.80; transform: scale(0.98); }
  100% { opacity: 0.95; transform: scale(1.01); }
}

/* Glow-Strahlen aus dem Kamin (Lichtstreifen) */
.burn-static__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 30% at 25% 65%, rgba(255,150,50,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 25% 60%, rgba(255,90,20,0.12) 0%, transparent 60%);
  animation: burnGlow 3.2s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes burnGlow {
  0%   { opacity: 0.65; }
  100% { opacity: 1.00; }
}

/* Untertitel über allen Layern */
.burn-video__cc { z-index: 4; }
.burn-video__badge { z-index: 4; }

@media (prefers-reduced-motion: reduce) {
  .burn-static__img,
  .burn-static__flicker,
  .burn-static__glow {
    animation: none;
  }
}

/* ============================================================
   STROMPREIS-ATLAS (Verivox-Style interaktive DE-Karte)
   ============================================================ */
.atlas-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 60%, #0b1120 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}
.atlas-hero .breadcrumb { color: rgba(255,255,255,0.7); }
.atlas-hero .breadcrumb a { color: var(--primary); }
.atlas-hero__eyebrow {
  display: inline-block;
  background: rgba(245,165,0,0.15);
  color: var(--primary);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  margin: 1rem 0 1.2rem;
  border: 1px solid rgba(245,165,0,0.3);
}
.atlas-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.2rem;
  color: #fff;
}
.atlas-hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 0 1.8rem;
}
.atlas-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.atlas-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.atlas-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* Interaktive Karte */
.section--atlas-map { background: #F8F9FA; padding: 3.5rem 0; }
.atlas-map-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.atlas-map {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.atlas-state {
  cursor: pointer;
  transition: opacity 0.18s ease, stroke-width 0.18s ease;
}
.atlas-state:hover {
  opacity: 0.85;
  stroke-width: 2.5;
}
.atlas-state.is-active {
  stroke: var(--primary);
  stroke-width: 3;
}
.atlas-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  fill: #1A2540;
  pointer-events: none;
}
.atlas-label--small { font-size: 9px; }

.atlas-legend {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1rem auto 0;
  max-width: 320px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.atlas-legend__bar {
  flex: 1;
  height: 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Detail-Panel */
.atlas-detail {
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem;
  min-height: 280px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.atlas-detail__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
}
.atlas-detail__head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}
.atlas-detail__rank {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.atlas-detail__head h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
}
.atlas-detail__grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.atlas-detail__grid > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  background: #F8F9FA;
  border-radius: 8px;
}
.atlas-detail__grid strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
}
.atlas-detail__grid span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.atlas-detail__highlight {
  background: rgba(0,200,150,0.10) !important;
  border-left: 3px solid var(--accent);
}
.atlas-detail__highlight strong { color: var(--accent) !important; }
.atlas-detail .btn { width: 100%; justify-content: center; }

/* Ranking-Tabelle */
.section--atlas-ranking { padding: 3.5rem 0; }
.atlas-rank-table-wrap {
  background: #fff;
  border-radius: 14px;
  overflow-x: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.atlas-rank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.atlas-rank-table thead th {
  background: var(--secondary);
  color: #fff;
  text-align: left;
  padding: 0.95rem 1.1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.atlas-rank-table tbody td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.atlas-rank-table tbody tr:last-child td { border-bottom: 0; }
.atlas-rank-table tbody tr:hover { background: #F8F9FA; }
.atlas-rank-table tbody td:first-child {
  font-weight: 800;
  color: var(--text-muted);
  width: 50px;
}
.atlas-rank-table tbody td:nth-child(2) {
  font-weight: 700;
  color: var(--secondary);
}
.atlas-rank-table tbody td:nth-child(3),
.atlas-rank-table tbody td:nth-child(4) {
  font-variant-numeric: tabular-nums;
}
.atlas-rank-table tbody td:nth-child(5) {
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.atlas-rank-table tbody td:last-child a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.atlas-rank-row--best td:first-child { background: var(--accent); color: #fff; border-radius: 8px 0 0 8px; }
.atlas-rank-row--best { background: rgba(0,200,150,0.06); }
.atlas-rank-row--worst td:first-child { background: var(--warn, #c0392b); color: #fff; border-radius: 8px 0 0 8px; }
.atlas-rank-row--worst { background: rgba(231,76,60,0.06); }

.atlas-ranking-note {
  margin: 1.6rem 0 0;
  padding: 1.2rem 1.4rem;
  background: rgba(245,165,0,0.08);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}

/* Methodik */
.section--atlas-methodology { background: #F8F9FA; padding: 3rem 0; }
.atlas-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.atlas-method-card {
  background: #fff;
  padding: 1.4rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.atlas-method-card__icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.atlas-method-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--secondary);
  font-weight: 700;
}
.atlas-method-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

/* CTA */
.section--atlas-cta {
  background: linear-gradient(135deg, #0b1120 0%, #1a2540 100%);
  padding: 3rem 0;
}
.atlas-cta {
  text-align: center;
  color: #fff;
}
.atlas-cta h2 {
  color: #fff;
  margin: 0 0 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.atlas-cta p {
  color: rgba(255,255,255,0.85);
  margin: 0 0 1.4rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .atlas-hero__stats { grid-template-columns: 1fr 1fr; }
  .atlas-map-wrap { grid-template-columns: 1fr; }
  .atlas-method-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .atlas-rank-table { font-size: 0.78rem; }
  .atlas-rank-table thead th, .atlas-rank-table tbody td { padding: 0.6rem 0.5rem; }
}

/* ============================================================
   NEWSLETTER-FOOTER-FORM
   ============================================================ */
.footer-newsletter {
  background: linear-gradient(135deg, rgba(245,165,0,0.06) 0%, rgba(0,200,150,0.04) 100%);
  border-top: 1px solid var(--border);
  padding: 2.4rem 0;
}
.footer-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.footer-newsletter__intro h3 {
  margin: 0.5rem 0 0.5rem;
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 800;
}
.footer-newsletter__intro p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}
.footer-newsletter__badge {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-newsletter__form { position: relative; }
.footer-newsletter__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.footer-newsletter__form input[type="email"] {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text);
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.footer-newsletter__form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,165,0,0.15);
}
.footer-newsletter__form .btn { white-space: nowrap; }

.footer-newsletter__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
}
.footer-newsletter__consent input { margin-top: 0.15rem; flex-shrink: 0; }
.footer-newsletter__consent a { color: var(--primary); }

.footer-newsletter__status {
  margin-top: 0.6rem;
  padding: 0 0.2rem;
  font-size: 0.85rem;
}
.footer-newsletter__status.is-ok {
  padding: 0.7rem 0.9rem;
  background: rgba(0,200,150,0.10);
  color: var(--accent);
  border-radius: 8px;
  border: 1px solid rgba(0,200,150,0.25);
}
.footer-newsletter__status.is-err {
  padding: 0.7rem 0.9rem;
  background: rgba(220,53,69,0.08);
  color: #c0392b;
  border-radius: 8px;
  border: 1px solid rgba(220,53,69,0.25);
}

@media (max-width: 720px) {
  .footer-newsletter__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-newsletter__row { grid-template-columns: 1fr; }
  .footer-newsletter__form .btn { justify-self: stretch; justify-content: center; }
}

/* ─── SPARTIPPS 52-TIPS LAYOUT ─────────────────────────────────────────── */
.spartipps-toc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin: 1.8rem 0 0.5rem;
}
.spartipps-toc a {
  display: block;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(245,165,0,0.08), rgba(245,165,0,0.02));
  border: 1px solid rgba(245,165,0,0.25);
  border-radius: 12px;
  color: var(--text-strong);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.spartipps-toc a:hover {
  background: linear-gradient(135deg, rgba(245,165,0,0.18), rgba(245,165,0,0.06));
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245,165,0,0.18);
}

.section--tip-cat { padding-top: 3rem; padding-bottom: 3rem; }
.section--tip-cat:nth-of-type(even) { background: #fafbfc; }
.section--tip-cat:target { scroll-margin-top: 90px; }

.tip-cat-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid rgba(245,165,0,0.15);
}
.tip-cat-head__icon {
  font-size: 2.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.tip-cat-head h2 {
  margin: 0 0 0.3rem;
  font-size: 1.7rem;
}
.tip-cat-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tip-card__effort {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.25rem 0.6rem;
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  align-self: flex-start;
}

@media (max-width: 720px) {
  .spartipps-toc { grid-template-columns: 1fr; }
  .tip-cat-head { flex-direction: column; align-items: flex-start; text-align: left; gap: 0.6rem; }
  .tip-cat-head__icon { font-size: 2.2rem; }
  .tip-cat-head h2 { font-size: 1.4rem; }
}

/* ─── WHATSAPP FLOATING BUTTON ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem 0.75rem 0.85rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.15);
  color: #fff;
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  opacity: 0.5;
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.45; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
.wa-float__icon { flex-shrink: 0; }
.wa-float__label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 0.85rem;
}
.wa-float__label strong { font-size: 0.95rem; font-weight: 700; }
.wa-float__label span { font-size: 0.72rem; opacity: 0.92; }

@media (max-width: 720px) {
  .wa-float {
    bottom: 96px; /* über mobile-cta */
    right: 14px;
    padding: 0.7rem;
  }
  .wa-float__label { display: none; }
}

/* ─── TARIFF LEAD-CAPTURE (Unter Tarifliste) ────────────────────────────── */
.tariff-lead-capture {
  margin: 2rem 0;
  padding: 1.5rem 1.8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  background: linear-gradient(135deg, #FFF8EC 0%, #FFEFD0 100%);
  border: 1px solid rgba(245,165,0,0.3);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(245,165,0,0.08);
}
.tariff-lead-capture__icon {
  font-size: 2.4rem;
  line-height: 1;
}
.tariff-lead-capture__body h4 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: var(--text-strong);
}
.tariff-lead-capture__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.tariff-lead-capture .btn { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 720px) {
  .tariff-lead-capture {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
    padding: 1.2rem;
  }
  .tariff-lead-capture__icon { margin: 0 auto; }
  .tariff-lead-capture .btn { width: 100%; justify-content: center; }
}

/* ─── BRANCHEN-BENCHMARK-TOOL (Gewerbestrom) ────────────────────────────── */
.biz-benchmark {
  margin: 3rem 0 1rem;
  padding: 2rem 2.2rem;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border: 1px solid #e6e9ef;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}
.biz-benchmark__head { text-align: center; margin-bottom: 1.8rem; }
.biz-benchmark__eyebrow {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(245,165,0,0.12);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.biz-benchmark__head h3 { margin: 0 0 0.4rem; font-size: 1.5rem; }
.biz-benchmark__head p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

.biz-benchmark__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1rem;
  align-items: end;
}
.biz-benchmark__field { display: flex; flex-direction: column; gap: 0.35rem; }
.biz-benchmark__field label { font-size: 0.85rem; font-weight: 600; color: var(--text-strong); }
.biz-benchmark__hint { font-size: 0.72rem; color: var(--text-muted); opacity: 0.85; }
.biz-benchmark__form .btn { white-space: nowrap; padding-top: 0.85rem; padding-bottom: 0.85rem; }

.biz-benchmark__result {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 2px dashed rgba(245,165,0,0.3);
  animation: bbFadeIn 0.4s ease;
}
@keyframes bbFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.biz-benchmark__bars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}
.biz-benchmark__bar {
  display: grid;
  grid-template-columns: 130px 1fr 110px;
  align-items: center;
  gap: 0.9rem;
}
.biz-benchmark__bar-label { font-size: 0.88rem; font-weight: 600; color: var(--text-strong); }
.biz-benchmark__bar-track { height: 22px; background: #f0f2f5; border-radius: 11px; overflow: hidden; }
.biz-benchmark__bar-fill { height: 100%; width: 0%; border-radius: 11px; transition: width 0.8s cubic-bezier(.2,.8,.2,1); }
.biz-benchmark__bar-fill--current { background: linear-gradient(90deg, #dc3545, #c82333); }
.biz-benchmark__bar-fill--bench   { background: linear-gradient(90deg, #6c757d, #5a6268); }
.biz-benchmark__bar-fill--volt    { background: linear-gradient(90deg, #F5A500, #E89000); }
.biz-benchmark__bar-value { font-size: 0.92rem; font-weight: 700; color: var(--text-strong); text-align: right; }

.biz-benchmark__verdict {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.biz-benchmark__verdict--bad  { background: linear-gradient(135deg, #fff1f0, #ffe2dc); border: 1px solid rgba(220,53,69,0.25); }
.biz-benchmark__verdict--ok   { background: linear-gradient(135deg, #fff8e6, #ffefcc); border: 1px solid rgba(245,165,0,0.25); }
.biz-benchmark__verdict--good { background: linear-gradient(135deg, #e6f8ee, #d4f0e0); border: 1px solid rgba(34,139,69,0.25); }
.biz-benchmark__verdict-num {
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}
.biz-benchmark__verdict--bad  .biz-benchmark__verdict-num { color: #c82333; }
.biz-benchmark__verdict--ok   .biz-benchmark__verdict-num { color: #d97706; }
.biz-benchmark__verdict--good .biz-benchmark__verdict-num { color: #1e8b3f; font-size: 1.6rem; }
.biz-benchmark__verdict p { margin: 0; font-size: 1rem; color: var(--text-strong); line-height: 1.45; }

.biz-benchmark__potential {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.biz-benchmark__potential > div {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem; color: var(--text-muted);
}
.biz-benchmark__potential > div strong { font-size: 1.15rem; color: var(--text-strong); }
.biz-benchmark__potential--hi { padding-top: 0.55rem; border-top: 1px solid #f0f2f5; }
.biz-benchmark__potential--hi strong { color: var(--primary-dark); font-size: 1.3rem; }

.biz-benchmark__cta { display: block; text-align: center; }

@media (max-width: 920px) {
  .biz-benchmark__form { grid-template-columns: 1fr 1fr; }
  .biz-benchmark__form .btn { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .biz-benchmark { padding: 1.4rem 1.2rem; }
  .biz-benchmark__form { grid-template-columns: 1fr; }
  .biz-benchmark__bar { grid-template-columns: 1fr; gap: 0.25rem; }
  .biz-benchmark__bar-value { text-align: left; }
  .biz-benchmark__verdict { flex-direction: column; text-align: center; gap: 0.6rem; }
  .biz-benchmark__potential > div { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
}

/* ─── WINNER-TROPHY (3D-Gold mit Shine + Funken) ───────────────────────── */
.winner-trophy {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 1.4rem;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.winner-trophy__beams {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  animation: trophyBeams 14s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes trophyBeams {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.winner-trophy__volti {
  position: relative;
  width: 220px;
  height: auto;
  z-index: 2;
  animation: trophyFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 14px 22px rgba(180, 120, 0, 0.4));
}
@keyframes trophyFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Funken um den Pokal */
.winner-trophy__spark {
  position: absolute;
  filter: drop-shadow(0 0 6px rgba(255, 217, 84, 0.7));
}
.winner-trophy__spark--1 { top: 18px;  left: 10px;  animation: sparkTwinkle 2.2s ease-in-out infinite; }
.winner-trophy__spark--2 { top: 50px;  right: 18px; animation: sparkTwinkle 2.6s ease-in-out 0.4s infinite; }
.winner-trophy__spark--3 { top: 120px; left: 4px;   animation: sparkTwinkle 1.8s ease-in-out 1s infinite; }
.winner-trophy__spark--4 { top: 90px;  right: 6px;  animation: sparkTwinkle 2.4s ease-in-out 0.7s infinite; }
@keyframes sparkTwinkle {
  0%, 100% { opacity: 0;   transform: scale(0.4) rotate(0deg); }
  40%      { opacity: 1;   transform: scale(1.1) rotate(45deg); }
  60%      { opacity: 0.9; transform: scale(1)   rotate(60deg); }
}

@media (max-width: 720px) {
  .winner-trophy { width: 220px; height: 220px; margin-bottom: 1rem; }
  .winner-trophy__volti { width: 170px; }
  .winner-trophy__spark--1 { width: 18px; height: 18px; }
  .winner-trophy__spark--2 { width: 12px; height: 12px; }
  .winner-trophy__spark--3 { width: 10px; height: 10px; }
  .winner-trophy__spark--4 { width: 15px; height: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .winner-trophy__beams, .winner-trophy__volti, .winner-trophy__spark { animation: none; }
}

/* ─── TESTIMONIAL SLIDER (Page-basiert, 2x2 Desktop / 1x2 Mobile) ──────── */
.testimonial-slider {
  position: relative;
  margin-top: 2rem;
  padding: 0 56px;  /* Platz für Pfeile außen */
}
.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonial-track {
  display: grid;
  grid-template-rows: 1fr;
  transition: transform 0.55s cubic-bezier(.4, .15, .3, 1);
  will-change: transform;
}
.ts-page {
  display: grid;
  gap: 1.2rem;
  /* grid-template-columns wird via JS gesetzt (1fr 1fr Desktop / 1fr Mobile) */
}
.ts-page .testimonial {
  margin: 0;
  height: 100%;
}

/* Pfeile — außen */
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.18s ease;
  z-index: 2;
}
.ts-arrow:hover:not(:disabled) {
  background: var(--primary);
  color: var(--text-strong);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 22px rgba(245,165,0,0.3);
}
.ts-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
.ts-arrow--prev { left: 0; }
.ts-arrow--next { right: 0; }

/* Dot-Indikatoren */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.ts-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d8dde6;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.ts-dot:hover { background: #b0b8c4; transform: scale(1.15); }
.ts-dot.is-active {
  background: var(--primary);
  width: 28px;
  border-radius: 6px;
}

@media (max-width: 720px) {
  .testimonial-slider { padding: 0 0 4px; }
  .ts-arrow {
    top: auto;
    bottom: -2px;
    transform: none;
    width: 38px;
    height: 38px;
  }
  .ts-arrow--prev { left: 8px; }
  .ts-arrow--next { right: 8px; }
  .ts-arrow:hover:not(:disabled) { transform: scale(1.08); }
  .testimonial-dots { margin-top: 1rem; padding: 0 60px; }
  .ts-page { gap: 0.9rem; }
}

/* ─── Cities-Grid: Initial nur 6 sichtbar (3 Reihen × 2 Spalten Mobile) ─── */
.cities-grid:not(.cities-grid--expanded) .city-link-card:nth-child(n+7) {
  display: none;
}
.cities-grid--expanded .city-link-card {
  animation: cityFadeIn 0.35s ease both;
}
.cities-grid--expanded .city-link-card:nth-child(n+7) {
  animation-delay: calc((var(--i, 0) * 0.025s));
}
@keyframes cityFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cities-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.4rem auto 0;
  padding: 0.7rem 1.4rem;
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.cities-toggle:hover {
  background: var(--primary);
  color: var(--text-strong);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(245,165,0,0.28);
}
.cities-toggle__icon { transition: transform 0.25s ease; }
.cities-toggle[aria-expanded="true"] .cities-toggle__icon { transform: rotate(180deg); }

/* Toggle-Button zentrieren */
.section--cities .container,
.section--cities .cities-grid + .cities-toggle {
  text-align: center;
}
.cities-grid + .cities-toggle {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

/* ─── TARIFRECHNER STANDALONE PAGE ─────────────────────────────────────── */
.tr-hero {
  position: relative;
  padding: 4rem 0 2.4rem;
  background: linear-gradient(160deg, #fff 0%, #FFF8EC 100%);
  border-bottom: 1px solid rgba(245,165,0,0.15);
}
.tr-hero__inner { max-width: 820px; text-align: center; }
.breadcrumb--light { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 0.85rem; }
.breadcrumb--light a { color: var(--text-muted); text-decoration: none; }
.breadcrumb--light a:hover { color: var(--primary-dark); }
.tr-hero__badge {
  display: inline-block;
  background: rgba(245,165,0,0.12);
  color: var(--primary-dark);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}
.tr-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--text-strong);
}
.tr-hero__accent { color: var(--primary); }
.tr-hero__sub {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 1.6rem;
}
.tr-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.tr-hero__pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}

/* Nav-Active-State */
.nav a.is-active {
  color: var(--primary-dark);
  font-weight: 700;
  position: relative;
}
.nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.3rem;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
@media (max-width: 1100px) and (min-width: 769px) {
  .nav a.is-active::after { left: 0.6rem; right: 0.6rem; bottom: 0.25rem; }
}

/* USPs */
.section--tr-usps { background: #fafbfc; }
.tr-usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2rem;
}
.tr-usp {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tr-usp:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.tr-usp--featured {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(245,165,0,0.15);
  background: linear-gradient(135deg, #fff 0%, #FFF8EC 100%);
}
.tr-usp__icon { font-size: 2.2rem; line-height: 1; }
.tr-usp h3 { font-size: 1.1rem; margin: 0; color: var(--text-strong); }
.tr-usp p { margin: 0; color: var(--text); font-size: 0.95rem; line-height: 1.55; }
.tr-usp__proof {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(0,0,0,0.08);
  font-size: 0.84rem;
  color: var(--primary-dark);
  font-weight: 600;
}
.tr-usp__proof a { color: var(--primary-dark); text-decoration: none; }
.tr-usp__proof a:hover { text-decoration: underline; }

@media (max-width: 920px) {
  .tr-usps-grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 720px) {
  .tr-hero { padding: 2.4rem 0 1.6rem; }
  .tr-hero__pills { gap: 0.4rem; }
  .tr-hero__pill { font-size: 0.74rem; padding: 0.3rem 0.7rem; }
}

/* ─── BIZ-OFFICE / FIRMENSITZ-TRUST-SECTION ────────────────────────────── */
.section--biz-office {
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  padding: 4rem 0;
}
.biz-office__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.biz-office__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 17, 32, 0.18), 0 4px 12px rgba(11, 17, 32, 0.08);
  background: #0b1120;
}
.biz-office__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.biz-office__photo-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(11, 17, 32, 0.85);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.biz-office__body { padding: 0.3rem 0; }
.biz-office__eyebrow {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(245, 165, 0, 0.12);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.biz-office__body h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 0.9rem;
  line-height: 1.15;
  color: var(--text-strong);
}
.biz-office__accent { color: var(--primary); }
.biz-office__lead {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.biz-office__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.biz-office__bullets li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
}
.biz-office__bullet-icon {
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.biz-office__bullets li strong {
  display: block;
  font-size: 1rem;
  color: var(--text-strong);
  margin-bottom: 0.15rem;
}
.biz-office__bullets li span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.biz-office__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.biz-office__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: #fff;
  border: 1.5px solid #25D366;
  color: #128C7E;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}
.biz-office__wa:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37,211,102,0.3);
}

@media (max-width: 920px) {
  .biz-office__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .biz-office__photo img { aspect-ratio: 4 / 3; }
}
@media (max-width: 720px) {
  .section--biz-office { padding: 2.4rem 0; }
  .biz-office__photo-badge { font-size: 0.72rem; padding: 0.4rem 0.8rem; bottom: 0.6rem; left: 0.6rem; }
  .biz-office__bullets li { grid-template-columns: 36px 1fr; gap: 0.6rem; }
  .biz-office__bullet-icon { width: 36px; height: 36px; font-size: 1.3rem; }
  .biz-office__cta { flex-direction: column; align-items: stretch; }
  .biz-office__cta .btn { justify-content: center; }
  .biz-office__wa { justify-content: center; }
}

/* ─── SLOGAN-STYLING (Hero + Footer) ───────────────────────────────────── */
.tr-hero__slogan,
.biz-hero__slogan {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.005em;
  margin: 0.5rem 0 1.2rem;
  color: var(--text-strong);
  text-transform: none;
}
.tr-hero__slogan span,
.biz-hero__slogan span {
  color: var(--primary);
  position: relative;
}
.tr-hero__slogan span::after,
.biz-hero__slogan span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 60%, transparent 100%);
  border-radius: 1px;
}

/* Footer-Slogan: prominenter als der Claim-Text */
.footer__slogan {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  letter-spacing: 0.005em;
}
.footer__slogan strong {
  color: var(--primary);
  font-weight: 800;
}
.footer__claim {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.78;
  line-height: 1.5;
}

/* ─── VOLTI-INTEGRATIONEN (5 strategische Platzierungen) ─────────────────── */

/* 2) Calc-Buddy (Volti mit Daumen hoch rechts neben Rechner — Desktop only) */
.calc-volti-buddy {
  display: none;
}
@media (min-width: 1200px) {
  .section--calculator,
  .section--calculator > .container { overflow: visible !important; }
  .calculator { position: relative !important; overflow: visible !important; }
  .calc-volti-buddy {
    display: block !important;
    position: absolute !important;
    left: -120px !important;
    right: auto !important;
    bottom: 0 !important;
    width: 160px !important;
    height: auto;
    pointer-events: none;
    z-index: 2;
    /* Original-Orientierung (Daumen-Hand auf seiner rechten, Viewer-linken Seite) */
    animation: voltiBob 3s ease-in-out infinite;
    filter: drop-shadow(0 14px 22px rgba(245,165,0,0.25));
  }
}
@media (min-width: 1500px) {
  .calc-volti-buddy { width: 180px !important; left: -150px !important; }
}
@keyframes voltiBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* 3) Kontakt-Volti (zwischen Email + WhatsApp Cards, mittlere Grid-Spalte) */
.kontakt-grid--with-volti {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.kontakt-volti-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.kontakt-volti {
  display: block;
  width: 220px;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(245,165,0,0.35));
  animation: voltiBobSlow 4s ease-in-out infinite;
}
@keyframes voltiBobSlow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
/* Mobile: Volti ausblenden (Pointing-Pose macht nur Sinn wenn Cards L+R sind),
   Cards bleiben nebeneinander oder stacken */
@media (max-width: 720px) {
  .kontakt-grid--with-volti {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .kontakt-volti-slot { display: none; }
}
@media (max-width: 480px) {
  .kontakt-grid--with-volti {
    grid-template-columns: 1fr;
  }
}

/* 4) Spartipps-Hero Volti mit Euro */
.spartipps-hero-volti {
  display: block;
  margin: 1.5rem auto 0;
  width: 240px;
  max-width: 70vw;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(245,165,0,0.3));
  animation: voltiBobSlow 4s ease-in-out infinite;
}
@media (max-width: 720px) {
  .spartipps-hero-volti { width: 180px; }
}

/* 5) Success-Screen Volti mit Vertrag (Konfetti-Animation drumherum) */
.success-screen {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem 2rem;
}
.success-volti {
  display: block;
  margin: 0 auto 1.2rem;
  width: 260px;
  max-width: 80vw;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(245,165,0,0.3));
  animation: voltiBounceIn 0.7s cubic-bezier(.34, 1.56, .64, 1), voltiBobSlow 4s ease-in-out 0.7s infinite;
}
@keyframes voltiBounceIn {
  0%   { opacity: 0; transform: scale(0.4) translateY(40px); }
  60%  { opacity: 1; transform: scale(1.08) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.success-screen h3 {
  font-size: 1.8rem;
  color: var(--text-strong);
  margin: 0 0 0.6rem;
}
@media (max-width: 720px) {
  .success-volti { width: 200px; }
  .success-screen h3 { font-size: 1.4rem; }
}

/* ─── COMBOBOX (Straßen-Auswahl mit Filter, mobile-friendly) ─────────────── */
.field-group--combobox { position: relative; }
.field-hint { font-weight: 400; color: var(--text-muted); font-size: 0.78rem; margin-left: 0.4rem; }

.combobox { position: relative; }
.combobox__input { padding-right: 2.5rem; -webkit-appearance: none; appearance: none; }
/* Native search-clear / cancel buttons unterdrücken (sonst doppelte Icons) */
.combobox__input::-webkit-search-decoration,
.combobox__input::-webkit-search-cancel-button,
.combobox__input::-webkit-search-results-button,
.combobox__input::-webkit-search-results-decoration { display: none; -webkit-appearance: none; }
.combobox__input::-ms-clear { display: none; }
.combobox__toggle {
  position: absolute;
  right: 0.4rem; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border: 0; background: transparent;
  font-size: 1.2rem; color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.combobox__toggle:hover { color: var(--primary); }
.combobox__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  max-height: 280px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 50;
  list-style: none;
  padding: 0.3rem 0;
  margin: 0;
}
.combobox__option,
.combobox__empty {
  padding: 0.6rem 1rem;
  font-size: 0.92rem;
  color: var(--text-strong);
  cursor: pointer;
  user-select: none;
  transition: background 0.12s;
}
.combobox__option:hover,
.combobox__option.is-highlighted {
  background: var(--primary-light);
  color: var(--text-strong);
}
.combobox__empty {
  color: var(--text-muted);
  font-style: italic;
  cursor: default;
}

/* Mobile: Dropdown öffnet NACH OBEN damit Keyboard es nicht verdeckt */
@media (max-width: 720px) {
  .combobox__dropdown:not([hidden]) {
    position: fixed;
    left: 8px;
    right: 8px;
    top: auto;
    bottom: 0;
    max-height: 45vh;
    font-size: 1rem;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
    z-index: 9999;
    animation: comboSlideUp 0.25s cubic-bezier(.3,1.2,.5,1);
  }
  /* Header für mobile Dropdown (zum Schließen + Klarheit) */
  .combobox__dropdown:not([hidden])::before {
    content: '⇣ Straße auswählen';
    display: block;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
  }
  .combobox__option { padding: 0.95rem 1rem; min-height: 48px; border-bottom: 1px solid #f3f4f6; }
  .combobox__option:last-child { border-bottom: 0; }
  /* Overlay-Hintergrund hinter dem Mobile-Dropdown */
  body.combobox-open::after {
    content: '';
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    animation: fadeIn 0.2s;
  }
}
@keyframes comboSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ─── Floating "Zurück zum Rechner"-Button (Mobile) ──────────────────────── */
.back-to-calc {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9000;
  background: var(--secondary);
  color: var(--primary);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(11,17,32,0.35), 0 2px 8px rgba(0,0,0,0.15);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s cubic-bezier(.3,1.5,.5,1), opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.back-to-calc.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .back-to-calc { left: auto; right: 24px; transform: translateY(120%); }
  .back-to-calc.is-visible { transform: translateY(0); }
}

/* Lade-Mehr-Button-Verbesserungen */
.load-more-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; margin: 1.5rem 0; }
.load-all-btn {
  background: transparent; border: 0; color: var(--text-muted);
  font-size: 0.85rem; text-decoration: underline; cursor: pointer;
  padding: 0.3rem 0.8rem;
}
.load-all-btn:hover { color: var(--primary-dark); }
.btn-link { font-family: inherit; }

/* ============================================================================
   ENERGIEPRÜFER — /energiepruefer/
============================================================================ */

/* HERO */
.ep-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 60%, #2a3a5c 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.ep-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(245,165,0,0.18), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(0,200,150,0.12), transparent 50%);
  pointer-events: none;
}
.ep-hero__inner { position: relative; max-width: 1000px; margin: 0 auto; text-align: center; }
/* Hero-Content: Grid mit Volti-Maskottchen rechts (Desktop) / oben (Mobile) */
.ep-hero__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  text-align: left;
}
.ep-hero__text { min-width: 0; }
.ep-hero__volti {
  width: 240px; height: auto; display: block;
  filter: drop-shadow(0 20px 40px rgba(245,165,0,0.35));
  animation: epVoltiFloat 4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes epVoltiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-2deg); }
}
@media (max-width: 760px) {
  .ep-hero__content { grid-template-columns: 1fr; text-align: center; gap: 0.5rem; }
  .ep-hero__volti  { width: 160px; margin: 0 auto 0.5rem; order: -1; }
  .ep-hero__pills  { justify-content: center; }
}
.ep-hero__badge {
  display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.88rem; font-weight: 500;
  margin-bottom: 1.5rem; backdrop-filter: blur(6px);
}
.ep-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1;
  margin: 0 0 1rem; letter-spacing: -0.02em;
}
.ep-hero__accent { color: var(--primary); }
.ep-hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem); line-height: 1.6;
  color: rgba(255,255,255,0.85); margin: 0 auto 1.8rem; max-width: 720px;
}
.ep-hero__pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
  margin-bottom: 2rem;
}
.ep-hero__pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.86rem; font-weight: 500;
  white-space: nowrap;
}
.ep-hero__cta { font-size: 1.05rem; padding: 1rem 2rem; box-shadow: 0 10px 30px rgba(245,165,0,0.35); }

/* ========================================================================
   /energiepruefer/  Pure-Tool: Outcomes + DeepDive
======================================================================== */
.section--ep-outcomes { background: #fff; padding: 3.5rem 0 2.5rem; }
.ep-outcomes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 1.5rem;
}
.ep-outcome-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.3rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ep-outcome-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 17, 32, 0.08);
  border-color: rgba(245, 165, 0, 0.4);
}
.ep-outcome-card__icon {
  font-size: 2rem; line-height: 1;
  margin-bottom: 0.7rem;
}
.ep-outcome-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; color: var(--secondary); }
.ep-outcome-card p  { margin: 0; color: var(--text-muted); line-height: 1.55; font-size: 0.93rem; }

.section--ep-deepdive { background: var(--bg); padding: 3.5rem 0; }
.ep-deepdive-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 1.5rem;
}
.ep-deepdive-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ep-deepdive-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 17, 32, 0.08);
  border-color: var(--primary);
}
.ep-deepdive-card__icon { font-size: 1.7rem; line-height: 1; margin-bottom: 0.5rem; }
.ep-deepdive-card h3 {
  margin: 0 0 0.4rem; font-size: 1.05rem; color: var(--secondary);
}
.ep-deepdive-card p {
  margin: 0 0 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.9rem;
}
.ep-deepdive-card__cta {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
}
@media (max-width: 820px) {
  .ep-outcomes-grid,
  .ep-deepdive-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   /stromrechnung-verstehen/  Landingpage
======================================================================== */
.srv-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
  padding: 3.5rem 0 4rem;
}
.srv-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.srv-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin: 0.8rem 0 1rem;
}
.srv-hero__accent { color: var(--primary); }
.srv-hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.srv-hero__pills {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.srv-hero__pill {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}
.srv-hero__volti-wrap {
  margin: 0;
  text-align: center;
}
.srv-hero__volti-wrap img {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(245,165,0,0.25));
}
.srv-hero__volti-wrap figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
.section--srv-tldr { padding: 2rem 0; }
.srv-tldr {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: #fffaf0;
  border: 1px solid #fde8b8;
  border-left: 4px solid var(--primary);
  border-radius: 14px;
}
.srv-tldr__icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.srv-tldr div { font-size: 0.97rem; line-height: 1.6; }

.section--srv-main { padding: 3rem 0; background: #fff; }
.srv-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.srv-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.4rem 1.4rem;
  box-shadow: 0 4px 18px rgba(11,17,32,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.srv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11,17,32,0.09);
}
.srv-card__num {
  position: absolute;
  top: -14px; left: 1.3rem;
  background: var(--primary);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(245,165,0,0.4);
}
.srv-card h3 { margin: 0.2rem 0 0.6rem; color: var(--secondary); font-size: 1.1rem; }
.srv-card p  { margin: 0 0 0.7rem; color: var(--text); line-height: 1.55; font-size: 0.95rem; }
.srv-card__list {
  margin: 0.4rem 0 0.7rem 1.1rem; padding: 0;
  font-size: 0.9rem; line-height: 1.55; color: var(--text);
}
.srv-card__example {
  background: var(--bg);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  margin: 0.6rem 0;
  border-left: 3px solid var(--accent);
}
.srv-card__hint {
  margin: 0.7rem 0 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.srv-card__hint a { color: var(--primary); font-weight: 600; }

.section--srv-glossar { padding: 3.5rem 0; background: var(--bg); }
.srv-glossar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.5rem;
  margin: 2rem 0 0;
}
.srv-glossar__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}
.srv-glossar dt {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.srv-glossar dd {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
  font-size: 0.92rem;
}
.srv-glossar dd a { color: var(--primary); font-weight: 600; }

.section--srv-example { padding: 3.5rem 0; background: #fff; }
.srv-bill {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin: 1.5rem 0 1rem;
  font-size: 0.95rem;
}
.srv-bill th,
.srv-bill td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.srv-bill thead th {
  background: var(--bg);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.srv-bill__amount {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.srv-bill__sub td { color: var(--text-muted); font-size: 0.88rem; background: #fafbfc; }
.srv-bill__bonus td { color: #00875a; font-weight: 600; }
.srv-bill__total td {
  background: rgba(245,165,0,0.08);
  font-size: 1.05rem;
  border-top: 2px solid var(--primary);
}
.srv-bill__abschlag td {
  background: var(--secondary);
  color: #fff;
}
.srv-example__hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  line-height: 1.55;
}
.section--srv-faq { padding: 3.5rem 0; background: var(--bg); }

@media (max-width: 820px) {
  .srv-hero__inner { grid-template-columns: 1fr; }
  .srv-hero__volti-wrap { order: -1; max-width: 200px; margin-left: auto; margin-right: auto; }
  .srv-card-grid,
  .srv-glossar { grid-template-columns: 1fr; }
  .srv-bill { font-size: 0.85rem; }
  .srv-bill th, .srv-bill td { padding: 0.6rem 0.55rem; }
}

/* ========================================================================
   /typische-rechnungsfehler/  Landingpage
======================================================================== */
.trf-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
  padding: 3.5rem 0 3.5rem;
}
.trf-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 0.8rem 0 1rem;
}
.trf-hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 720px;
}
.trf-hero__sub a { color: var(--primary); font-weight: 600; }

.section--trf-stats { padding: 3rem 0; background: #fff; }
.trf-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}
.trf-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(11,17,32,0.08);
}
.trf-stat--accent { border-top: 4px solid var(--primary); }
.trf-stat__number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.trf-stat__headline {
  margin: 0 0 0.5rem;
  font-size: 0.97rem;
  color: var(--secondary);
  line-height: 1.35;
}
.trf-stat__desc {
  margin: 0 0 0.7rem;
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.5;
  flex: 1;
}
.trf-stat__source {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.section--trf-patterns { padding: 3.5rem 0; background: var(--bg); }
.trf-patterns {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
  counter-reset: pattern;
}
.trf-pattern {
  display: flex;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trf-pattern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11,17,32,0.08);
}
.trf-pattern__no {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  min-width: 2.2rem;
}
.trf-pattern__body { flex: 1; min-width: 0; }
.trf-pattern__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--secondary);
}
.trf-pattern__body p {
  margin: 0 0 0.5rem;
  color: var(--text);
  line-height: 1.55;
  font-size: 0.94rem;
}
.trf-pattern__action {
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  background: var(--bg);
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  margin-top: 0.5rem !important;
}
.trf-pattern__action a { color: var(--primary); font-weight: 600; }

.section--trf-action { padding: 3.5rem 0; background: #fff; }
.trf-action-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.trf-action-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.3rem 1.4rem;
  position: relative;
  text-align: center;
}
.trf-action-step__num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245,165,0,0.4);
}
.trf-action-step h3 {
  margin: 0.5rem 0 0.5rem;
  font-size: 1.05rem;
  color: var(--secondary);
}
.trf-action-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.trf-action-step a { color: var(--primary); font-weight: 600; }

.section--trf-faq { padding: 3.5rem 0; background: var(--bg); }

@media (max-width: 820px) {
  .trf-stats-grid { grid-template-columns: 1fr 1fr; margin-top: -1.5rem; }
  .trf-action-steps { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .trf-stats-grid { grid-template-columns: 1fr; }
  .trf-pattern { flex-direction: column; gap: 0.4rem; padding: 1.2rem 1.1rem; }
}

/* UPLOAD SECTION */
.section--ep-upload { background: var(--bg); padding: 3.5rem 0; }
.ep-upload-wrap {
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
.ep-volti {
  width: 200px; height: auto; display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
  align-self: end;
}
@media (max-width: 860px) {
  .ep-upload-wrap { grid-template-columns: 1fr; gap: 1.2rem; }
  .ep-volti {
    width: 220px;             /* deutlich größer auf Mobile */
    margin: 0.5rem auto 0;    /* Abstand nach oben, zentriert */
    order: 2;                  /* UNTER der Dropzone */
    align-self: center;
  }
}

/* DROPZONE */
.ep-dropzone {
  background: #fff; border: 3px dashed #c9d0db; border-radius: 1.25rem;
  padding: 3rem 1.5rem; text-align: center; cursor: pointer;
  transition: all 0.2s ease; outline: none;
}
.ep-dropzone:hover, .ep-dropzone:focus-visible {
  border-color: var(--primary); background: #fffbf2;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,165,0,0.12);
}
.ep-dropzone.is-dragover {
  border-color: var(--primary); background: #fff5db;
  border-style: solid; transform: scale(1.01);
  box-shadow: 0 12px 32px rgba(245,165,0,0.2);
}
.ep-dropzone__icon { font-size: 3.5rem; margin-bottom: 0.75rem; line-height: 1; }
.ep-dropzone__title { font-size: 1.3rem; font-weight: 700; margin: 0 0 0.5rem; color: var(--text); }
.ep-dropzone__link { color: var(--primary); text-decoration: underline; }
.ep-dropzone__hint { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 1.25rem; }
.ep-dropzone__actions {
  display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ep-dropzone__privacy {
  font-size: 0.82rem; color: var(--text-muted); margin: 1rem 0 0; line-height: 1.5;
}
.ep-dropzone__privacy a { color: var(--primary); }

/* LOADING */
.ep-loading {
  background: #fff; border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 3rem 1.5rem; text-align: center;
}
.ep-loading__spinner {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  border: 5px solid #f0f2f5; border-top-color: var(--primary);
  border-radius: 50%; animation: ep-spin 0.9s linear infinite;
}
@keyframes ep-spin { to { transform: rotate(360deg); } }
.ep-loading h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.ep-loading__steps { color: var(--primary); font-weight: 600; margin: 0 0 0.5rem; min-height: 1.5em; transition: opacity 0.3s; }
.ep-loading__hint { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ERROR */
.ep-error {
  background: #fff; border: 2px solid #f4a8a8; border-radius: 1.25rem;
  padding: 2.5rem 1.5rem; text-align: center;
}
.ep-error__icon { font-size: 2.8rem; margin-bottom: 0.75rem; }
.ep-error h3 { margin: 0 0 0.5rem; color: #b53737; }
.ep-error p { color: var(--text-muted); margin: 0 0 1.25rem; }

/* RESULT */
.ep-result {
  background: #fff; border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.ep-result__head { text-align: center; margin-bottom: 1.5rem; }
.ep-result__badge {
  display: inline-block; padding: 0.35rem 0.85rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 0.75rem;
}
.ep-result__badge--ok { background: #e6f9f1; color: #00805f; }
.ep-result h3 { margin: 0; font-size: 1.4rem; }
.ep-result__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.ep-card {
  display: flex; gap: 0.75rem; align-items: center;
  background: var(--bg); border: 1px solid var(--border); border-radius: 0.75rem;
  padding: 0.9rem 1rem;
}
.ep-card__icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.ep-card__body { display: flex; flex-direction: column; min-width: 0; }
.ep-card__label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.ep-card__value { font-size: 1rem; font-weight: 700; color: var(--text); margin-top: 0.15rem; overflow: hidden; text-overflow: ellipsis; }

.ep-warning {
  grid-column: 1 / -1;
  background: #fff8e6; border: 1px solid #f5d68a; border-radius: 0.75rem;
  padding: 0.85rem 1rem; font-size: 0.9rem; color: #7a5c00;
}

/* SAVINGS */
.ep-savings {
  background: linear-gradient(135deg, #00c896 0%, #00805f 100%);
  border-radius: 1rem; padding: 1.8rem 1.5rem; text-align: center;
  color: #fff; margin-bottom: 1.5rem;
  box-shadow: 0 8px 28px rgba(0,200,150,0.25);
}
.ep-savings__label {
  display: block; font-size: 0.9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85;
  margin-bottom: 0.5rem;
}
.ep-savings__number {
  display: flex; align-items: baseline; justify-content: center; gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.ep-savings__amount { font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 800; line-height: 1; }
.ep-savings__unit { font-size: 1.1rem; font-weight: 600; opacity: 0.9; }
.ep-savings__note { font-size: 0.88rem; opacity: 0.88; margin: 0; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.5; }

.ep-cta-row {
  display: flex; flex-direction: column; gap: 0.6rem;
  align-items: center; margin-bottom: 1rem;
}
.ep-cta-row .btn--lg { width: 100%; max-width: 520px; }

.ep-result__disclaimer {
  font-size: 0.78rem; color: var(--text-muted); text-align: center;
  margin: 1rem 0 0; line-height: 1.5;
}

/* HOW IT WORKS */
.section--how { background: #fff; padding: 3.5rem 0; }
.how-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}
.how-step { text-align: center; padding: 1.5rem 1rem; }
.how-step__num {
  width: 56px; height: 56px; line-height: 56px; margin: 0 auto 1rem;
  background: var(--primary); color: #fff; border-radius: 50%;
  font-size: 1.5rem; font-weight: 800;
  box-shadow: 0 6px 18px rgba(245,165,0,0.3);
}
.how-step h3 { font-size: 1.15rem; margin: 0 0 0.5rem; }
.how-step p { color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* TRUST PRIVACY */
.section--trust-privacy { background: var(--bg); padding: 3.5rem 0; }
.trust-privacy__grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; align-items: center;
}
.trust-privacy__text h2 { margin-top: 0; font-size: 1.8rem; }
.trust-privacy__list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.trust-privacy__list li {
  padding: 0.6rem 0 0.6rem 1.8rem; position: relative; line-height: 1.6;
  border-bottom: 1px solid var(--border);
}
.trust-privacy__list li:last-child { border-bottom: none; }
.trust-privacy__list li::before {
  content: '✓'; position: absolute; left: 0; top: 0.65rem;
  color: #00805f; font-weight: 700; font-size: 1.1rem;
}
.trust-privacy__visual { display: flex; justify-content: center; }
.trust-privacy__seal {
  background: #fff; border: 2px solid var(--border); border-radius: 1rem;
  padding: 2rem 1.5rem; text-align: center; min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.trust-privacy__seal-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.trust-privacy__seal strong { display: block; font-size: 1.1rem; margin-bottom: 0.25rem; }
.trust-privacy__seal span { color: var(--text-muted); font-size: 0.88rem; }
@media (max-width: 720px) {
  .trust-privacy__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* PRE-FILL-BANNER im Tarifrechner */
.ep-prefill-banner {
  display: flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, #e6f9f1 0%, #d2f3e3 100%);
  border: 1px solid #9fdebe; border-radius: 0.85rem;
  padding: 0.9rem 1rem; margin-bottom: 1.5rem;
  animation: ep-banner-in 0.4s ease both;
}
@keyframes ep-banner-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ep-prefill-banner img {
  width: 48px; height: 48px; flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.ep-prefill-banner__text { flex: 1; line-height: 1.4; }
.ep-prefill-banner__text strong { display: block; color: #00805f; font-size: 0.98rem; }
.ep-prefill-banner__text span { color: #00604a; font-size: 0.86rem; }
.ep-prefill-banner__close {
  background: transparent; border: none; cursor: pointer;
  font-size: 1.4rem; color: #00805f; padding: 0.25rem 0.5rem;
  line-height: 1; border-radius: 0.3rem;
}
.ep-prefill-banner__close:hover { background: rgba(0,128,95,0.1); }


/* NEU-Badge in Nav */
.nav__badge {
  display: inline-block;
  background: linear-gradient(135deg, #00c896, #00805f);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.3rem;
  vertical-align: middle;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,200,150,0.35);
}

/* ============================================================================
   ENERGIEPRÜFER — Internal Crosslinks
============================================================================ */
/* Crosslink Kompakt-Pille — smooth slide-down, bleibt zentriert */
.ep-crosslink-compact {
  display: inline-block;            /* bleibt durch text-align:center der parent zentriert */
  vertical-align: top;
  margin-top: 0.85rem;
  text-align: left;
  background: #e6f9f1;
  border: 1px solid #9fdebe;
  border-radius: 999px;             /* Pille im geschlossenen Zustand */
  overflow: hidden;
  max-width: 640px;
  width: auto;                       /* Browser wählt natürliche Breite */
  transition:
    border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    border-color 0.3s ease;
}
.ep-crosslink-compact[open] {
  border-radius: 1.1rem;             /* abgerundetes Rechteck beim Öffnen */
  background: linear-gradient(135deg, #e6f9f1 0%, #d2f3e3 100%);
  border-color: #00c896;
}
.ep-crosslink-compact > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem 0.4rem 0.75rem;
  color: #00604a;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
.ep-crosslink-compact > summary::-webkit-details-marker,
.ep-crosslink-compact > summary::marker { display: none; content: ''; }
.ep-crosslink-compact:not([open]) > summary:hover {
  background: #d2f3e3;
}
.ep-crosslink-compact__icon { font-size: 1rem; }
.ep-crosslink-compact__label { font-weight: 600; }
.ep-crosslink-compact__info {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: #00805f; color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
  margin-left: auto;
  padding-left: 0.4rem;
  box-sizing: content-box;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.ep-crosslink-compact[open] > summary .ep-crosslink-compact__info {
  transform: rotate(180deg);
}

/* SMOOTH SLIDE-DOWN: grid-template-rows-Trick (0fr → 1fr) */
.ep-crosslink-compact__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ep-crosslink-compact[open] .ep-crosslink-compact__body {
  grid-template-rows: 1fr;
}
.ep-crosslink-compact__body > * {
  min-height: 0;
  overflow: hidden;
}
/* Padding & Trennlinie animiert mit */
.ep-crosslink-compact__body-inner {
  padding: 0 1.1rem;
  border-top: 1px dashed transparent;
  transition: padding 0.3s ease, border-color 0.3s ease;
}
.ep-crosslink-compact[open] .ep-crosslink-compact__body-inner {
  padding: 0.85rem 1.1rem 1rem;
  border-top-color: #9fdebe;
}
.ep-crosslink-compact__body p {
  margin: 0 0 0.85rem;
  color: #00604a;
  font-size: 0.92rem;
  line-height: 1.5;
}
.ep-crosslink-compact__body p strong { color: #00805f; }
.ep-crosslink-compact__body .btn { background: #00805f; color: #fff; }
.ep-crosslink-compact__body .btn:hover { background: #00604a; }

/* AUTO-HIDE: Wenn Tarif-Ergebnisse (Step 4) sichtbar sind → Pille raus */
.calculator:has(#step-4.active) ~ * .ep-crosslink-compact,
.section--calculator:has(#step-4.active) .ep-crosslink-compact,
body.calc-step-4 .ep-crosslink-compact,
body.calc-step-5 .ep-crosslink-compact {
  display: none;
}

/* Inline-Tip auf Spartipps-Page */
.ep-inline-tip {
  background: linear-gradient(135deg, #fff8e6 0%, #fff1c4 100%);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}
.ep-inline-tip a { color: #00805f; text-decoration: underline; text-underline-offset: 2px; }
.ep-inline-tip a:hover { color: #00604a; }

/* Footer NEU-Badge + Hot-Marker */
.footer__new {
  display: inline-block;
  background: linear-gradient(135deg, #00c896, #00805f);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.08rem 0.4rem;
  border-radius: 999px;
  margin-left: 0.25rem;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
.footer__hot { font-size: 0.85em; vertical-align: middle; }

/* ============================================================================
   STROMRECHNUNG VERSTEHEN — Bill-Guide-Section
============================================================================ */
.section--bill-guide { background: #fff; padding: 4rem 0; }
.bill-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.bill-guide-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.bill-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  border-color: var(--primary);
}
.bill-guide-card h3 { font-size: 1.1rem; margin: 0 0 0.75rem; line-height: 1.35; }
.bill-guide-card h3 em { color: var(--primary); font-style: normal; }
.bill-guide-card p { margin: 0 0 0.6rem; line-height: 1.6; color: var(--text); font-size: 0.95rem; }
.bill-guide-card p:last-child { margin-bottom: 0; }
.bill-guide-card__hint {
  background: #fff8e6;
  border-left: 3px solid var(--primary);
  padding: 0.6rem 0.85rem;
  border-radius: 0.4rem;
  font-size: 0.88rem;
  color: #5c4500;
  margin-top: 0.85rem !important;
}
.bill-guide-cta {
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
.bill-guide-cta p { color: rgba(255,255,255,0.9); margin: 0 0 1.25rem; font-size: 1.05rem; line-height: 1.5; }
.bill-guide-cta strong { color: #FFE08A; }

.section--newbie-faq { background: var(--bg); padding: 4rem 0; }

/* Ergebnis-Karten Detail-Aufklapper */
.ep-card { flex-direction: column; align-items: stretch; gap: 0; }
.ep-card > .ep-card__icon {
  margin-bottom: 0.3rem;
}
.ep-card__details {
  margin-top: 0.6rem;
  padding-top: 0.55rem;
  border-top: 1px dashed var(--border);
}
.ep-card__details summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.76rem;
  color: var(--primary);
  font-weight: 600;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.ep-card__details summary::-webkit-details-marker { display: none; }
.ep-card__details summary::before { content: 'ⓘ'; font-size: 0.95rem; }
.ep-card__details summary::after {
  content: '▼';
  font-size: 0.55rem;
  margin-left: 0.15rem;
  transition: transform 0.2s;
}
.ep-card__details[open] summary::after { transform: rotate(180deg); }
.ep-card__details summary:hover { color: var(--primary-dark); }
.ep-card__details p {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.ep-card:has(.ep-card__details[open]) { background: #fffaef; border-color: #f5d68a; }
.ep-card--open { background: #fffaef; border-color: #f5d68a; }

/* ============================================================================
   ENERGIEPRÜFER — Mode-spezifische Result-Elemente
============================================================================ */
/* Volti im Output (1x oben im Result für non-default Modes) */
.ep-volti-output {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #fffaf0 0%, #fff5e0 100%);
  border: 1px solid #fde8b8;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 0.5rem;
}
.ep-volti-output img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 16px rgba(245,165,0,0.25));
}
.ep-volti-output__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.ep-volti-output__text strong {
  font-size: 1.1rem;
  color: var(--secondary);
  line-height: 1.25;
}
.ep-volti-output__text span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Subheads zwischen Result-Blöcken (explain/errors-Modus) */
.ep-result__subhead {
  grid-column: 1 / -1;
  margin: 0.8rem 0 0.25rem;
  font-size: 1.05rem;
  color: var(--secondary);
  font-weight: 700;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

@media (max-width: 540px) {
  .ep-volti-output { flex-direction: column; align-items: center; text-align: center; padding: 1rem; }
  .ep-volti-output img { width: 100px; }
}

/* CTA-Box am Ende der Beispielrechnung (/stromrechnung-verstehen/) */
.srv-example-cta {
  background: linear-gradient(135deg, #fffaf0 0%, #fff5e0 100%);
  border: 1px solid #fde8b8;
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.srv-example-cta strong { color: var(--secondary); font-size: 1.05rem; display: block; margin-bottom: 0.3rem; }
.srv-example-cta p { margin: 0 0 1rem; color: var(--text-muted); font-size: 0.92rem; }

/* ============================================================================
   ENERGIEPRÜFER — Auffälligkeiten / Fehler-Sektion
============================================================================ */
.ep-checkresult {
  grid-column: 1 / -1;
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid;
}
.ep-checkresult--ok {
  background: #e6f9f1;
  border-color: #9fdebe;
  display: flex; gap: 0.75rem; align-items: center;
}
.ep-checkresult--ok .ep-checkresult__icon {
  font-size: 1.8rem; color: #00805f;
}
.ep-checkresult--ok strong { display: block; color: #00604a; font-size: 1.05rem; margin-bottom: 0.15rem; }
.ep-checkresult--ok span { color: #00604a; font-size: 0.9rem; line-height: 1.5; }

.ep-checkresult--warn {
  background: #fff8e6;
  border-color: #f4d68a;
}
.ep-checkresult__head {
  display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1rem;
}
.ep-checkresult__icon { font-size: 1.8rem; flex-shrink: 0; }
.ep-checkresult__title strong {
  display: block; font-size: 1.1rem; color: #7a5400; margin-bottom: 0.15rem;
}
.ep-checkresult__title span { color: #8a6800; font-size: 0.88rem; line-height: 1.5; }

.ep-issues-list {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.ep-issue {
  background: var(--issue-bg, #fff8e6);
  border: 1px solid var(--issue-bd, #f4d68a);
  border-left: 4px solid var(--issue-col, #a06700);
  border-radius: 0.6rem;
  overflow: hidden;
  transition: box-shadow 0.18s;
}
.ep-issue:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.ep-issue > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.8rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: start;
  user-select: none;
}
.ep-issue > summary::-webkit-details-marker { display: none; }
.ep-issue__sev {
  display: inline-block;
  background: var(--issue-col, #a06700);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-top: 2px;
}
.ep-issue__title {
  color: var(--text);
  font-weight: 500;
  font-size: 0.93rem;
  line-height: 1.45;
}
.ep-issue__chev {
  color: var(--issue-col, #a06700);
  font-size: 0.9rem;
  transition: transform 0.2s;
  margin-top: 2px;
}
.ep-issue[open] .ep-issue__chev { transform: rotate(180deg); }
.ep-issue__body {
  padding: 0 1rem 0.9rem;
  border-top: 1px dashed var(--issue-bd, #f4d68a);
  padding-top: 0.7rem;
  margin: 0 0.1rem;
}
.ep-issue__body p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
}
.ep-issue__body strong { color: var(--issue-col, #a06700); }

/* ============================================================================
   ENERGIEPRÜFER — Warum-Prüfen-Sektion mit Stats
============================================================================ */
.section--why-check {
  background: linear-gradient(180deg, #fff 0%, #fef9ed 100%);
  padding: 4rem 0;
}
.why-check__highlight {
  background: linear-gradient(120deg, transparent 0%, #fff1c4 30%, #fff1c4 70%, transparent 100%);
  padding: 0.1em 0.25em;
  border-radius: 0.15em;
}
.why-check-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
  align-items: stretch;            /* gleiche Höhe für alle Karten */
}
.why-check-stat {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;          /* Source ans untere Ende */
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.why-check-stat__desc { flex: 1; }  /* nutzt Restraum, schiebt Source nach unten */
.why-check-stat:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(245,165,0,0.12);
}
.why-check-stat--accent {
  background: linear-gradient(135deg, var(--primary) 0%, #d89000 100%);
  color: #fff;
  border: none;
}
.why-check-stat--accent:hover { box-shadow: 0 12px 30px rgba(245,165,0,0.35); }
.why-check-stat--accent .why-check-stat__source { color: rgba(255,255,255,0.75); }

.why-check-stat__number {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);  /* etwas kleiner — verhindert Umbruch */
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: var(--primary);
  white-space: nowrap;                       /* kein Umbruch im Number-Feld */
  overflow: hidden;
  text-overflow: ellipsis;
}
.why-check-stat--accent .why-check-stat__number { color: #fff; }
.why-check-stat__headline {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  line-height: 1.35;
  color: var(--text);
}
.why-check-stat--accent .why-check-stat__headline { color: #fff; }
.why-check-stat__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
}
.why-check-stat--accent .why-check-stat__desc { color: rgba(255,255,255,0.9); }
.why-check-stat__source {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}
.why-check-stat--accent .why-check-stat__source { border-top-color: rgba(255,255,255,0.25); }

.why-check-types {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
}
.why-check-types h3 { margin: 0 0 1.25rem; font-size: 1.25rem; text-align: center; }
.why-check-types__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem 1.25rem;
}
.why-check-types__list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.why-check-types__list li strong { color: var(--text); }
.why-check-types__list li:last-child { border-bottom: none; }

.why-check-cta {
  text-align: center;
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: 0.85rem;
  margin-top: 1.5rem;
}
.why-check-cta p { color: rgba(255,255,255,0.9); margin: 0 0 1.25rem; font-size: 1.05rem; line-height: 1.5; }
.why-check-cta strong { color: #FFE08A; }

@media (max-width: 720px) {
  .why-check-stats { gap: 1rem; }
  .why-check-stat { padding: 1.5rem 1.25rem; }
  .why-check-types { padding: 1.5rem 1.25rem; }
}

/* ============================================================================
   ENERGIEPRÜFER — Simple-Modus (Tarifrechner-Helfer)
   Aktiviert via ?simple=1 in URL — Body bekommt Klasse "ep-simple"
============================================================================ */

/* Im Simple-Modus: Long-Form-SEO-Sektionen ausblenden */
body.ep-simple .section--why-check,
body.ep-simple .section--bill-guide,
body.ep-simple .section--newbie-faq {
  display: none;
}

/* Hero kompakter */
body.ep-simple .ep-hero { padding: 2.5rem 0 2rem; }
body.ep-simple .ep-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
body.ep-simple .ep-hero__sub { font-size: 0.95rem; }

/* CTA im Hero anders beschriften (per ::after-Trick wäre möglich, einfacher direkt im HTML) */
/* siehe entsprechende HTML-Anpassung mit data-attr */

/* Im Result-Modus: prominenter "Zurück zum Tarifrechner"-Button */
body.ep-simple .ep-cta-row { flex-direction: column-reverse; }
body.ep-simple #epToCalc {
  font-size: 1.1rem; padding: 1.1rem 2rem;
  background: linear-gradient(135deg, #00c896 0%, #00805f 100%);
  border: none; color: #fff;
  box-shadow: 0 10px 28px rgba(0,200,150,0.35);
  animation: epSimplePulse 2s ease-in-out infinite;
}
@keyframes epSimplePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}

/* Anderer Disclaimer-Text im Simple-Modus */
body.ep-simple .ep-result__disclaimer::before {
  content: "Diese Werte werden im Tarifrechner automatisch eingesetzt. ";
}


/* ============================================================================
   STADTWERKE-LANDING — Preisvergleich-Tabelle + Transparenz
============================================================================ */
.section--price-compare { background: var(--bg); padding: 4rem 0; }
.price-compare-table {
  background: #fff; border: 1px solid var(--border); border-radius: 1rem;
  overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.price-compare-table table {
  width: 100%; border-collapse: collapse; font-size: 0.95rem;
}
.price-compare-table thead {
  background: #0b1120; color: #fff;
}
.price-compare-table th {
  padding: 1rem 1.2rem; text-align: left; font-weight: 600; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.price-compare-table td {
  padding: 1rem 1.2rem; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.price-compare-table tbody tr:hover { background: #fafbfc; }
.price-compare-table small { color: var(--text-muted); font-weight: normal; }
.price-compare-table__row--bad {
  background: linear-gradient(90deg, rgba(244,168,168,0.15) 0%, rgba(244,168,168,0.05) 100%);
}
.price-compare-table__row--bad strong { color: #a73838; }
.price-compare-table__row--good {
  background: linear-gradient(90deg, rgba(0,200,150,0.12) 0%, rgba(0,200,150,0.04) 100%);
}
.price-compare-table__row--good strong { color: #00805f; }
.price-compare-table__row--savings {
  background: linear-gradient(90deg, var(--primary) 0%, #d89000 100%);
  color: #fff;
}
.price-compare-table__row--savings td { font-size: 1.05rem; padding: 1.25rem; }
.price-compare-table__row--savings strong { color: #fff; }
.price-compare-table__note {
  padding: 1rem 1.2rem; background: var(--bg);
  font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.5;
}
@media (max-width: 720px) {
  .price-compare-table { font-size: 0.85rem; }
  .price-compare-table th, .price-compare-table td { padding: 0.75rem 0.7rem; }
}

/* Transparenz-Sektion */
.section--transparency { background: #fff; padding: 4rem 0; }
.transparency-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-bottom: 1.5rem;
}
.transparency-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 0.85rem;
  padding: 1.5rem;
}
.transparency-card h3 { margin: 0 0 0.75rem; font-size: 1.05rem; line-height: 1.4; }
.transparency-card p { margin: 0; line-height: 1.6; color: var(--text-muted); font-size: 0.93rem; }
.transparency-note {
  background: #fff8e6; border-left: 4px solid var(--primary);
  padding: 1rem 1.2rem; border-radius: 0.5rem;
  font-size: 0.92rem; line-height: 1.6; color: #5c4500; margin: 0;
}


/* ============================================================================
   STADTWERKE-LANDING — Hero mit Volti-Szene
============================================================================ */
.sw-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 60%, #2a3a5c 100%);
  color: #fff;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.sw-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(245,165,0,0.2), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(0,200,150,0.12), transparent 50%);
  pointer-events: none;
}
.sw-hero .breadcrumb { position: relative; z-index: 1; margin-bottom: 1rem; }
.sw-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.sw-hero__text { min-width: 0; }
.sw-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}
.sw-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.sw-hero__accent { color: var(--primary); }
.sw-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin: 0 0 1.5rem;
  line-height: 1.55;
}
.sw-hero__sub strong { color: #FFE08A; }
.sw-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.sw-hero__pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.sw-hero__cta {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  box-shadow: 0 10px 30px rgba(245,165,0,0.35);
}

.sw-hero__visual {
  margin: 0;
  text-align: center;
  position: relative;
}
.sw-hero__visual img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 1rem;                                            /* sanft abgerundete Ecken */
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 80px rgba(245,165,0,0.08);
  animation: swHeroSubtleFloat 6s ease-in-out infinite;
}
@keyframes swHeroSubtleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.sw-hero__caption {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

@media (max-width: 860px) {
  .sw-hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .sw-hero__pills { justify-content: center; }
  .sw-hero__visual { order: -1; }
  .sw-hero__visual img { max-width: 420px; }
}


/* ============================================================================
   STADTWERKE-LANDING — Visuelle Preis-Bars (statt Tabelle)
============================================================================ */
.price-compare-chart {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.price-bar {
  margin-bottom: 1.5rem;
}
.price-bar:last-of-type { margin-bottom: 0; }
.price-bar__label {
  margin-bottom: 0.4rem;
}
.price-bar__label strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}
.price-bar__label span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.price-bar__visual {
  background: #f0f2f5;
  border-radius: 0.6rem;
  overflow: hidden;
  height: 44px;
  position: relative;
}
.price-bar__fill {
  height: 100%;
  width: 0;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.85rem;
  animation: priceBarGrow 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.15);
}
@keyframes priceBarGrow {
  to { width: var(--w); }
}
.price-bar__amount {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.price-savings-banner {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #d89000 100%);
  border-radius: 0.85rem;
  padding: 1.25rem 1.5rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,165,0,0.3);
}
.price-savings-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}
.price-savings-banner__label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.95;
}
.price-savings-banner__amount {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
}

.price-compare-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border-left: 3px solid var(--text-muted);
  border-radius: 0.4rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.price-compare-note strong { color: var(--text); }

@media (max-width: 720px) {
  .price-compare-chart { padding: 1.25rem; }
  .price-bar__amount { font-size: 0.92rem; }
}


/* ============================================================================
   ENERGIEPRÜFER — Verdict-Box (klare Antwort: "Zahle ich zu viel?")
============================================================================ */
.ep-verdict {
  grid-column: 1 / -1;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  border: 2px solid;
  animation: epVerdictIn 0.5s ease both;
}
@keyframes epVerdictIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.ep-verdict__icon {
  font-size: 2.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.ep-verdict__body { flex: 1; min-width: 0; }
.ep-verdict__lead {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ep-verdict__answer {
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.ep-verdict__detail {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

/* Severity-Varianten */
.ep-verdict--hoch {
  background: linear-gradient(135deg, #fff0f0 0%, #ffe5e5 100%);
  border-color: #d04848;
}
.ep-verdict--hoch .ep-verdict__answer { color: #b53737; }

.ep-verdict--mittel {
  background: linear-gradient(135deg, #fff8e6 0%, #fff0d0 100%);
  border-color: #e6a800;
}
.ep-verdict--mittel .ep-verdict__answer { color: #a06700; }

.ep-verdict--gering {
  background: linear-gradient(135deg, #fff4dd 0%, #ffe9bf 100%);
  border-color: #e6a800;
}
.ep-verdict--gering .ep-verdict__answer { color: #a06700; }

/* Neue Stufe: leichte Optimierung möglich (20-59€) — warmes Hellgelb,
   bewusst positiv, nicht abschreckend */
.ep-verdict--optimierung {
  background: linear-gradient(135deg, #fffaef 0%, #fff1c4 100%);
  border-color: #f5d680;
}
.ep-verdict--optimierung .ep-verdict__answer { color: #7a5500; }

.ep-verdict--okay,
.ep-verdict--fair {
  background: linear-gradient(135deg, #e6f9f1 0%, #d2f3e3 100%);
  border-color: #00c896;
}
.ep-verdict--okay .ep-verdict__answer,
.ep-verdict--fair .ep-verdict__answer { color: #00805f; }

.ep-verdict--neutral {
  background: var(--bg);
  border-color: var(--border);
}
.ep-verdict--neutral .ep-verdict__answer { color: var(--text-muted); }

/* Im Simple-Modus auch zeigen */
body.ep-simple .ep-verdict { display: flex; }

@media (max-width: 600px) {
  .ep-verdict { padding: 1.25rem; gap: 1rem; }
  .ep-verdict__icon { font-size: 2rem; }
}


/* ============================================================================
   ENERGIEPRÜFER QUICK-MODAL — Inline-Upload aus Tarifrechner
============================================================================ */

/* Trigger-Button (statt Pille) — pill-style, klickbar */
.ep-quickbutton {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, #e6f9f1 0%, #d2f3e3 100%);
  border: 1px solid #9fdebe;
  border-radius: 999px;
  color: #00604a;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ep-quickbutton:hover {
  border-color: #00c896;
  background: linear-gradient(135deg, #d2f3e3 0%, #b8ebd1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,200,150,0.2);
}
.ep-quickbutton__icon { font-size: 1.1rem; }
.ep-quickbutton__arrow {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}
.ep-quickbutton:hover .ep-quickbutton__arrow { transform: translateX(4px); }

/* Inline-Variante: in Step 3 unter dem Verbrauch-Block — volle Breite, dezent */
.ep-quickbutton--inline {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 1rem 0 0.6rem;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

/* Modal */
.ep-quick-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: epQuickFadeIn 0.2s ease;
}
.ep-quick-modal[hidden] { display: none; }
@keyframes epQuickFadeIn { from { opacity: 0; } to { opacity: 1; } }
.ep-quick-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 17, 32, 0.7);
  backdrop-filter: blur(4px);
}
.ep-quick-modal__box {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 1.2rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.75rem;
  box-shadow: 0 25px 70px rgba(0,0,0,0.3);
  animation: epQuickPop 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes epQuickPop {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.ep-quick-modal__close {
  position: absolute; top: 0.85rem; right: 0.85rem;
  width: 32px; height: 32px;
  background: var(--bg); border: none; border-radius: 50%;
  font-size: 1.4rem; line-height: 1;
  cursor: pointer; color: var(--text-muted);
  transition: all 0.18s;
}
.ep-quick-modal__close:hover { background: var(--border); color: var(--text); }
.ep-quick-modal h2, .ep-quick-modal h3 { margin: 0 0 0.5rem; font-size: 1.35rem; line-height: 1.25; }
.ep-quick-modal h3 { font-size: 1.2rem; }
.ep-quick-modal__sub { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 1.25rem; line-height: 1.5; }

/* Dropzone */
.ep-quick-drop {
  border: 2.5px dashed #c9d0db;
  border-radius: 0.85rem;
  padding: 1.75rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
  outline: none;
}
.ep-quick-drop:hover, .ep-quick-drop:focus-visible {
  border-color: var(--primary); background: #fffbf2;
}
.ep-quick-drop.is-dragover {
  border-color: var(--primary); background: #fff5db; border-style: solid;
  transform: scale(1.01);
}
.ep-quick-drop__icon { font-size: 2.4rem; line-height: 1; margin-bottom: 0.5rem; }
.ep-quick-drop strong { display: block; font-size: 1.05rem; color: var(--text); margin-bottom: 0.3rem; }
.ep-quick-drop__link { color: var(--primary); text-decoration: underline; }
.ep-quick-drop__hint { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.85rem; }
.ep-quick-drop__actions {
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
}
.ep-quick-modal__privacy {
  font-size: 0.78rem; color: var(--text-muted);
  margin: 1rem 0 0; text-align: center; line-height: 1.5;
}

/* Loading */
.ep-quick-view--loading { text-align: center; padding: 1rem 0; }
.ep-quick-spinner {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border: 4px solid #f0f2f5; border-top-color: var(--primary);
  border-radius: 50%; animation: epQuickSpin 0.9s linear infinite;
}
@keyframes epQuickSpin { to { transform: rotate(360deg); } }
.ep-quick-view--loading p { color: var(--primary); font-weight: 600; margin: 0; }

/* Result */
.ep-quick-result__badge {
  display: inline-block; background: #e6f9f1; color: #00805f;
  padding: 0.3rem 0.85rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 0.6rem;
}
.ep-quick-result__list {
  margin: 1rem 0 1.5rem; padding: 0;
}
.ep-quick-row {
  display: flex; gap: 0.85rem; align-items: center;
  padding: 0.8rem 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 0.6rem;
  margin-bottom: 0.5rem;
}
.ep-quick-row:last-child { margin-bottom: 0; }
.ep-quick-row__icon { font-size: 1.4rem; flex-shrink: 0; }
.ep-quick-row__body { flex: 1; min-width: 0; }
.ep-quick-row__body dt {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600;
}
.ep-quick-row__body dd {
  margin: 0.1rem 0 0; font-weight: 700; color: var(--text);
  font-size: 1rem;
}
.ep-quick-result__actions {
  display: flex; gap: 0.6rem; align-items: center;
  flex-wrap: wrap-reverse;
}
.ep-quick-result__primary {
  flex: 1; min-width: 220px;
  background: linear-gradient(135deg, #00c896 0%, #00805f 100%);
  border: none;
  box-shadow: 0 8px 20px rgba(0,200,150,0.3);
}
.ep-quick-result__primary:hover {
  background: linear-gradient(135deg, #00b288 0%, #006e51 100%);
}

/* Error */
.ep-quick-view--error { text-align: center; padding: 1rem 0; }
.ep-quick-error__icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.ep-quick-view--error p { color: var(--text-muted); margin: 0.5rem 0 1.25rem; }

@media (max-width: 480px) {
  .ep-quick-modal__box { padding: 1.5rem 1.25rem; max-height: 100vh; border-radius: 0; }
  .ep-quick-modal { padding: 0; }
}

/* ============================================================================
   WARUM-VOLT-GAS PAGE — Hero, Comparison, Personal, Gewerbe, Tech, Fair
============================================================================ */

/* HERO */
.wvg-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 60%, #2a3a5c 100%);
  color: #fff;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.wvg-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(245,165,0,0.18), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(0,200,150,0.12), transparent 50%);
  pointer-events: none;
}
.wvg-hero .breadcrumb { margin-bottom: 1rem; position: relative; z-index: 1; }
.wvg-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.wvg-hero__text { min-width: 0; }
.wvg-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.86rem; font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}
.wvg-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.wvg-hero__accent { color: var(--primary); }
.wvg-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin: 0 0 1.5rem;
  line-height: 1.55;
}
.wvg-hero__sub strong { color: #FFE08A; }
.wvg-hero__pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.wvg-hero__pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
}
.wvg-hero__cta {
  font-size: 1.05rem; padding: 1rem 2rem;
  box-shadow: 0 10px 30px rgba(245,165,0,0.35);
}

/* Volti-Stage mit Energiewirbeln */
.wvg-hero__volti-wrap {
  margin: 0;
  text-align: center;
  position: relative;
}
.wvg-volti-stage {
  position: relative;
  display: inline-block;
}
.wvg-hero__volti {
  width: 100%; max-width: 380px; height: auto;
  filter: drop-shadow(0 25px 50px rgba(245,165,0,0.35));
  animation: wvgVoltiFloat 4.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes wvgVoltiFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.wvg-hero__caption {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* Energiewirbel um Manschetten — CSS-Animation */
.wvg-energy {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}
.wvg-energy::before,
.wvg-energy::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.wvg-energy::before {
  border-top-color: rgba(255, 200, 80, 0.85);
  border-right-color: rgba(255, 165, 0, 0.55);
  animation: wvgSwirl 1.8s linear infinite;
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.45);
}
.wvg-energy::after {
  border-bottom-color: rgba(255, 224, 138, 0.75);
  border-left-color: rgba(255, 200, 80, 0.5);
  animation: wvgSwirl 2.4s linear infinite reverse;
  inset: 8px;
  box-shadow: inset 0 0 20px rgba(255, 200, 80, 0.4);
}
@keyframes wvgSwirl {
  to { transform: rotate(360deg); }
}
/* Glow-Position um Volti's Manschetten herum (relative zu Stage) */
.wvg-energy--left  { bottom: 22%; left:  4%;  width: 95px; height: 95px; }
.wvg-energy--right { bottom: 22%; right: 4%;  width: 95px; height: 95px; }

@media (max-width: 860px) {
  .wvg-hero__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .wvg-hero__pills { justify-content: center; }
  .wvg-hero__volti-wrap { order: -1; }
  .wvg-hero__volti { max-width: 280px; }
  .wvg-energy--left, .wvg-energy--right { width: 70px; height: 70px; bottom: 24%; }
}

/* PERSONAL Section */
.section--wvg-personal { background: var(--bg); padding: 4rem 0; }
.wvg-personal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.wvg-personal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.wvg-personal-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(245,165,0,0.12);
}
.wvg-personal-card__icon { font-size: 2.4rem; line-height: 1; margin-bottom: 0.75rem; }
.wvg-personal-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.wvg-personal-card p { margin: 0; color: var(--text-muted); line-height: 1.55; font-size: 0.92rem; }

.wvg-acc { color: var(--primary); }

/* COMPARISON Table */
.section--wvg-compare { background: #fff; padding: 4rem 0; }
.wvg-compare-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.wvg-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.wvg-compare-table thead { background: #0b1120; color: #fff; }
.wvg-compare-table th, .wvg-compare-table td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.wvg-compare-table thead th {
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: none;
}
.wvg-compare-table tbody th {
  font-weight: 600;
  background: var(--bg);
  width: 22%;
}
.wvg-compare-table tbody tr:hover { background: #fafbfc; }
.wvg-compare-table .wvg-col-vg {
  background: linear-gradient(135deg, var(--primary) 0%, #d89000 100%);
  color: #fff;
}
.wvg-compare-table td:nth-child(2) {
  background: rgba(245,165,0,0.06);
  font-weight: 500;
}
.wvg-compare-table td:nth-child(3) {
  color: var(--text-muted);
}
.wvg-compare-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-left: 3px solid var(--text-muted);
  border-radius: 0.4rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.wvg-compare-note strong { color: var(--text); }

/* GEWERBE Section */
.section--wvg-gewerbe { background: var(--bg); padding: 4rem 0; }
.wvg-gewerbe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.wvg-gewerbe-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0.6rem;
  padding: 1.4rem;
}
.wvg-gewerbe-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.wvg-gewerbe-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }
.wvg-gewerbe-cta {
  text-align: center;
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: 0.85rem;
}
.wvg-gewerbe-cta p { color: rgba(255,255,255,0.9); margin: 0 0 1.25rem; font-size: 1.05rem; }
.wvg-gewerbe-cta strong { color: #FFE08A; }

/* FAIR Section */
.section--wvg-fair { background: #fff; padding: 4rem 0; }
.wvg-fair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.wvg-fair-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.75rem 1.5rem;
}
.wvg-fair-card--good {
  background: linear-gradient(135deg, #e6f9f1 0%, #d2f3e3 100%);
  border-color: #9fdebe;
}
.wvg-fair-card h3 { margin: 0 0 0.85rem; font-size: 1.08rem; color: var(--text); }
.wvg-fair-card--good h3 { color: #00604a; }
.wvg-fair-card ul { margin: 0; padding-left: 1.25rem; }
.wvg-fair-card li { padding: 0.3rem 0; line-height: 1.55; color: var(--text); }
.wvg-fair-card--good li { color: #00604a; }

/* TECH Section */
.section--wvg-tech { background: var(--bg); padding: 4rem 0; }
.wvg-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.wvg-tech-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.5rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.wvg-tech-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(245,165,0,0.12);
}
.wvg-tech-card__badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.wvg-tech-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.wvg-tech-card p { margin: 0; color: var(--text-muted); line-height: 1.55; font-size: 0.92rem; }
.wvg-tech-card a { color: var(--primary); font-weight: 600; }

/* ========================================================================
   warum-volt-gas: GELD SPAREN Section
======================================================================== */
.section--wvg-savings {
  background: linear-gradient(135deg, #fffaf0 0%, #fff5e0 100%);
  padding: 4.5rem 0;
  border-top: 1px solid #fde8b8;
  border-bottom: 1px solid #fde8b8;
}
.wvg-savings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}
.wvg-savings-card {
  background: #fff;
  border: 1px solid #f3d77a;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 18px rgba(245, 165, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wvg-savings-card--primary {
  background: linear-gradient(135deg, #fff 0%, #fff9eb 100%);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(245, 165, 0, 0.18);
}
.wvg-savings-card--bonus { border-color: #00c896; }
.wvg-savings-card--longterm { border-color: #0b1120; }
.wvg-savings-card__big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #f3d77a;
}
.wvg-savings-card__amount {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.wvg-savings-card--bonus .wvg-savings-card__amount { color: #00a878; }
.wvg-savings-card--longterm .wvg-savings-card__amount { color: #0b1120; }
.wvg-savings-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wvg-savings-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
  font-size: 0.95rem;
}
.wvg-savings-how {
  background: #fff;
  border: 1px solid #fde8b8;
  border-radius: 18px;
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 4px 18px rgba(245, 165, 0, 0.06);
}
.wvg-savings-how h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--secondary);
}
.wvg-savings-steps {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.7rem;
}
.wvg-savings-steps li {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--text);
}
.wvg-savings-steps li::marker { color: var(--primary); font-weight: 700; }
.wvg-savings-cta {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px dashed #fde8b8;
}
.wvg-savings-cta .btn { font-size: 1.05rem; padding: 0.95rem 1.5rem; }
.wvg-savings-cta-note {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================================================
   warum-volt-gas: LIFESTYLE PEOPLE Gallery
======================================================================== */
.section--wvg-people { padding: 4.5rem 0; background: #fff; }
.wvg-people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.wvg-people-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(11, 17, 32, 0.1);
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wvg-people-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(11, 17, 32, 0.14);
}
.wvg-people-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.wvg-people-card figcaption {
  padding: 1.1rem 1.25rem 1.35rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.wvg-people-card figcaption strong {
  display: block;
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

@media (max-width: 820px) {
  .wvg-savings-grid,
  .wvg-people-grid { grid-template-columns: 1fr; }
  .wvg-savings-card__amount { font-size: 2rem; }
  .wvg-savings-how { padding: 1.5rem 1.25rem; }
  .wvg-people-card img { height: 220px; }
}

/* ========================================================================
   warum-volt-gas: VOLTI VIDEO GREETING Section
======================================================================== */
.section--wvg-greeting {
  background: linear-gradient(135deg, #0b1120 0%, #1a2742 100%);
  color: #fff;
  padding: 4rem 0;
}
.wvg-greeting-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}
.wvg-greeting-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(245, 165, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.08);
  aspect-ratio: 3 / 4;
  max-width: 420px;
}
.wvg-greeting-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wvg-greeting-text h2 {
  color: #fff;
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.2;
}
.wvg-greeting-text p {
  color: rgba(255,255,255,0.82);
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.wvg-greeting-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(245, 165, 0, 0.15);
  color: var(--primary);
  border: 1px solid rgba(245, 165, 0, 0.4);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.wvg-greeting-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.wvg-greeting-cta .btn--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
}
.wvg-greeting-cta .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
}
@media (max-width: 820px) {
  .wvg-greeting-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .wvg-greeting-video { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   GV-COMPARE (Grundversorger Preisvergleich, Check24-Stil)
   ============================================================ */
@keyframes gvCompareIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.gv-compare { margin-bottom:1.2rem; border-radius:14px; border:1.5px solid #e2e8f0; background:#fff;
  box-shadow:0 4px 24px rgba(0,0,0,.07); overflow:hidden; animation:gvCompareIn .4s ease; }
.gv-compare__header { display:flex; align-items:center; justify-content:space-between;
  padding:.6rem 1.2rem; background:linear-gradient(90deg,#0f172a,#1e293b); color:#fff; gap:.6rem; }
.gv-compare__header-label { font-size:.75rem; font-weight:600; letter-spacing:.07em; text-transform:uppercase; opacity:.75; }
.gv-compare__save-badge { display:flex; align-items:center; gap:.4rem; background:#16a34a; color:#fff;
  border-radius:999px; padding:.28rem .8rem; font-weight:800; font-size:.9rem; white-space:nowrap;
  box-shadow:0 2px 10px rgba(22,163,74,.4); }
.gv-compare__body { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; }
.gv-compare__box { padding:.9rem 1.1rem; }
.gv-compare__box--gv     { background:#f8fafc; border-right:1px solid #e2e8f0; }
.gv-compare__box--tariff { background:#f0fdf4; }
.gv-compare__box-tag { display:inline-flex; align-items:center; gap:.25rem; font-size:.7rem; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; border-radius:4px; padding:.13rem .5rem; margin-bottom:.4rem; }
.gv-compare__box--gv     .gv-compare__box-tag { background:#fee2e2; color:#b91c1c; }
.gv-compare__box--tariff .gv-compare__box-tag { background:#dcfce7; color:#15803d; }
.gv-compare__box-provider { font-size:.87rem; font-weight:700; color:#1e293b; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gv-compare__box-rate     { font-size:.73rem; color:#64748b; margin-bottom:.5rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gv-compare__box-price    { font-size:1.55rem; font-weight:800; line-height:1; font-variant-numeric:tabular-nums; }
.gv-compare__box--gv     .gv-compare__box-price { color:#dc2626; }
.gv-compare__box--tariff .gv-compare__box-price { color:#16a34a; }
.gv-compare__box-peryear { font-size:.73rem; color:#94a3b8; font-weight:500; margin-bottom:.4rem; }
.gv-compare__box-ct      { font-size:.78rem; font-weight:600; color:#64748b; }
.gv-compare__box--gv     .gv-compare__box-ct { color:#7f1d1d; }
.gv-compare__box--tariff .gv-compare__box-ct { color:#166534; }
.gv-compare__arrow-col { display:flex; flex-direction:column; align-items:center; gap:.25rem; padding:0 .5rem; }
.gv-compare__arrow-icon { width:34px; height:34px; border-radius:50%;
  background:linear-gradient(135deg,#16a34a,#15803d); display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 12px rgba(22,163,74,.3); }
.gv-compare__pct { font-size:.8rem; font-weight:800; color:#16a34a; background:#dcfce7; border-radius:999px; padding:.13rem .45rem; }
.gv-compare__footer { border-top:1px solid #e2e8f0; padding:.45rem 1.1rem;
  font-size:.73rem; color:#94a3b8; display:flex; align-items:center; justify-content:space-between; gap:.5rem; background:#f8fafc; }
.gv-compare__footer a { color:#2563eb; text-decoration:none; font-weight:600; }
.gv-compare__footer a:hover { text-decoration:underline; }
.gv-compare__live-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:#16a34a;
  animation:livePulse 2s ease infinite; margin-right:4px; vertical-align:middle; }
@keyframes livePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
@media (max-width:600px) {
  .gv-compare__body { grid-template-columns:1fr; }
  .gv-compare__box--gv { border-right:none; border-bottom:1px solid #e2e8f0; }
  .gv-compare__arrow-col { flex-direction:row; justify-content:center; padding:.5rem 1rem; border-bottom:1px solid #e2e8f0; background:#f0fdf4; }
  .gv-compare__footer { flex-direction:column; align-items:flex-start; }
}

/* ── GV-Compare Inline-Kosteneingabe ───────────────────────────────────────── */
.gv-compare__edit-btn {
  background: none; border: none; cursor: pointer;
  color: #2563eb; font-weight: 600; font-size: inherit;
  padding: 0; text-decoration: underline; font-family: inherit;
}
.gv-compare__edit-btn:hover { color: #1d4ed8; }

.gv-compare__input-panel {
  border-top: 1px solid #e2e8f0;
  padding: .75rem 1.1rem;
  background: #fefce8;
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
  animation: gvCompareIn .25s ease;
}
.gv-compare__input-label { font-size: .82rem; color: #374151; font-weight: 500; white-space: nowrap; }
.gv-compare__input-wrap  { display: flex; align-items: center; gap: .3rem; }
.gv-compare__input {
  width: 80px; padding: .35rem .55rem;
  border: 1.5px solid #d1d5db; border-radius: 7px;
  font-size: .9rem; font-weight: 600; color: #111827;
  background: #fff; outline: none; font-family: inherit;
}
.gv-compare__input:focus { border-color: #F5A500; box-shadow: 0 0 0 3px rgba(245,165,0,.15); }
.gv-compare__input-suffix { font-size: .82rem; color: #6b7280; white-space: nowrap; }
.gv-compare__apply-btn {
  padding: .35rem .85rem; background: #F5A500; color: #0b1120;
  border: none; border-radius: 7px; font-weight: 700; font-size: .82rem;
  cursor: pointer; font-family: inherit; white-space: nowrap;
}
.gv-compare__apply-btn:hover { background: #d08a00; }
.gv-compare__reset-btn {
  background: none; border: none; color: #9ca3af; font-size: .78rem;
  cursor: pointer; font-family: inherit; text-decoration: underline; padding: 0;
}
.gv-compare__reset-btn:hover { color: #dc2626; }

/* ============================================================
   PREMIUM FORMULAR – Step 5 Vertragsabschluss
   ============================================================ */

/* ── Wrapper ─────────────────────────────────────────────── */
#step-5 .form-section {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow .2s;
}
#step-5 .form-section:focus-within {
  box-shadow: 0 6px 32px rgba(245,165,0,.15);
  border-color: rgba(245,165,0,.4);
}

/* ── Section Header ──────────────────────────────────────── */
#step-5 .form-section__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 18px 24px;
  background: linear-gradient(90deg, #0b1120 0%, #1a2540 100%);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 0;
}
#step-5 .form-section__title::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: #F5A500;
  color: #0b1120;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
}
#step-5 .form-section > *:not(.form-section__title) {
  padding: 20px 24px;
}
#step-5 .form-section > .form-grid {
  padding: 20px 24px 8px;
}
#step-5 .form-section > div:last-child,
#step-5 .form-section > label:last-child {
  padding-bottom: 24px;
}

/* ── Inputs ───────────────────────────────────────────────── */
#step-5 .field-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}
#step-5 .field-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}
#step-5 .field-input {
  height: 50px;
  padding: 0 16px;
  font-size: .95rem;
  font-weight: 500;
  color: #0b1120;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color .15s, background .15s, box-shadow .15s;
  outline: none;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
#step-5 .field-input:focus {
  background: #fff;
  border-color: #F5A500;
  box-shadow: 0 0 0 3px rgba(245,165,0,.15);
}
#step-5 select.field-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%2364748b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
#step-5 input[type="date"].field-input { cursor: pointer; }
#step-5 .field-hint { font-size: .76rem; color: #94a3b8; margin-top: 4px; }
#step-5 .field-hint--ok  { color: #16a34a; font-weight: 600; }
#step-5 .field-hint--err { color: #dc2626; font-weight: 600; }
#step-5 .optional { font-weight: 400; text-transform: none; font-size: .75rem; color: #94a3b8; letter-spacing: 0; }

/* ── Checkbox & Radio ─────────────────────────────────────── */
#step-5 .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: #374151;
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 8px;
}
#step-5 .checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #F5A500;
  cursor: pointer;
}
#step-5 .radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
#step-5 .radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  font-size: .88rem;
  color: #374151;
  transition: border-color .15s, background .15s;
}
#step-5 .radio-label:has(input:checked) {
  background: #fff7e6;
  border-color: #F5A500;
  color: #0b1120;
  font-weight: 600;
}
#step-5 .radio-label input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: #F5A500;
  flex-shrink: 0;
}

/* ── Zahlungsart ──────────────────────────────────────────── */
#step-5 .payment-method-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
#step-5 .payment-method-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
#step-5 .payment-method-card.active,
#step-5 .payment-method-card:has(input:checked) {
  background: #fff7e6;
  border-color: #F5A500;
  box-shadow: 0 2px 12px rgba(245,165,0,.2);
}
#step-5 .payment-method-card__icon { font-size: 1.6rem; }
#step-5 .payment-method-card strong { display: block; font-size: .9rem; color: #0b1120; }
#step-5 .payment-method-card span   { font-size: .78rem; color: #64748b; }
#step-5 .payment-method-card input  { display: none; }

/* ── Unterschrift ────────────────────────────────────────── */
#step-5 .signature-pad-wrapper {
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
  background: #fafafa;
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}
#step-5 .signature-pad-wrapper.signed { border-color: #16a34a; border-style: solid; }
#step-5 .signature-pad { display: block; width: 100%; touch-action: none; }
#step-5 .signature-clear {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.9); border: 1px solid #e2e8f0;
  border-radius: 7px; padding: 5px 12px;
  font-size: .78rem; font-weight: 600; color: #64748b; cursor: pointer;
}
#step-5 .signature-clear:hover { background: #fff; color: #dc2626; border-color: #dc2626; }
#step-5 .signature-hint { font-size: .82rem; color: #94a3b8; margin: 0 0 10px; }

/* ── Legal Checks ─────────────────────────────────────────── */
#step-5 .legal-checks {
  display: flex; flex-direction: column; gap: 12px;
}
#step-5 .legal-checks .checkbox-label {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0;
}
#step-5 .legal-checks .checkbox-label:has(input:checked) {
  background: #f0fdf4;
  border-color: #16a34a;
}

/* ── Submit Button ────────────────────────────────────────── */
#step-5 .btn--success {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 8px 28px rgba(22,163,74,.35);
  letter-spacing: .02em;
}
#step-5 .btn--success:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(22,163,74,.45);
}

/* ── Ad-Checks ────────────────────────────────────────────── */
#step-5 .ad-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 540px) {
  #step-5 .ad-checks { grid-template-columns: 1fr; }
  #step-5 .payment-method-group { grid-template-columns: 1fr; }
  #step-5 .form-section > * { padding-left: 16px; padding-right: 16px; }
  #step-5 .form-section__title { padding: 16px; }
}

/* ── MaLo-ID: gleiche Höhe wie Zählernummer ─────────────────────────────── */
#step-5 .form-grid {
  align-items: end;
}
