/* ==========================================================================
   Senioren Landing Page v2 — Custom CSS
   Design-System-Klassen (.anbieter-section, .ratgeber-hero-wrapper, .faq-accordion)
   werden aus den geladenen CSS-Dateien uebernommen.
   Hier nur: zg2-* Klassen fuer senioren-spezifische Komponenten.
   ========================================================================== */

/* --- Smooth Scrolling for anchor links --- */
html {
  scroll-behavior: smooth;
}

/* --- CSS Variables (inherit from Design System, override where needed) --- */
:root {
  --zg2-teal: #0d9488;
  --zg2-teal-light: #ccfbf1;
  --zg2-teal-dark: #0f766e;
  --zg2-green: #16a34a;
  --zg2-green-light: #dcfce7;
  --zg2-red: #dc2626;
  --zg2-red-light: #fef2f2;
  --zg2-amber: #d97706;
  --zg2-amber-light: #fffbeb;
  --zg2-text: #1e293b;
  --zg2-text-light: #64748b;
  --zg2-bg-light: #f8fafc;
  --zg2-border: #e2e8f0;
  --zg2-radius: 12px;
  --zg2-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --zg2-shadow-lg: 0 4px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
}

/* --- Page Layout: Full-width alternating bands --- */
.zg2-band {
  padding: 48px 0;
}

.zg2-band--alt {
  background: var(--zg2-bg-light);
}

.zg2-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Reset section margin inside bands (band padding handles spacing) */
.zg2-band .anbieter-section {
  margin-bottom: 0;
}

/* Vergleichstabelle spacing inside shared band with Empfehlungen */
.zg2-band .zg2-vergleich {
  margin-top: 48px;
  margin-bottom: 0;
}

/* --- Hero Section (light gradient like Anbieter-Detail) --- */
.zg2-hero {
  padding: 0 0 40px;
  background: linear-gradient(135deg, #e8faf7 0%, #f0f9ff 50%, #faf5ff 100%);
}

.zg2-hero::before,
.zg2-hero::after {
  display: none; /* Dekorative Kreise nicht nötig auf hellem Hintergrund */
}

/* Override breadcrumb colors for light background */
.zg2-hero .breadcrumbs-item a {
  color: var(--zg2-text-light);
}
.zg2-hero .breadcrumbs-item a:hover {
  color: var(--zg2-text);
}
.zg2-hero .breadcrumbs-item--current span {
  color: var(--zg2-text);
}
.zg2-hero .breadcrumbs-separator {
  color: #cbd5e1;
}

.zg2-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.zg2-hero__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--zg2-text);
  line-height: 1.2;
  margin: 0 0 12px;
}

.zg2-hero__subtitle {
  font-size: 16px;
  color: var(--zg2-text-light);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 560px;
}

.zg2-hero__cta {
  display: inline-block;
  background: #23cfb2;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(35, 207, 178, 0.3);
}

.zg2-hero__cta:hover {
  background: #1db89d;
  transform: translateY(-1px);
}

.zg2-hero__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.zg2-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--zg2-text-light);
  font-size: 14px;
}

.zg2-hero__trust-item svg {
  flex-shrink: 0;
}

/* Hero Image */
.zg2-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.zg2-hero__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* --- Wissen Section --- */
.zg2-wissen__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zg2-wissen__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--zg2-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.zg2-wissen__item--info {
  background: #ffffff;
  border-color: var(--zg2-border);
}

.zg2-wissen__item--warning {
  background: var(--zg2-amber-light);
  border-color: #fcd34d;
}

.zg2-wissen__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 1px;
}

.zg2-wissen__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--zg2-text);
}

.zg2-wissen__headline {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--zg2-text);
  margin-bottom: 4px;
}

/* --- Pain Points Section (Option B: Sidebar + Panel) --- */

/* Desktop layout: hidden on mobile */
.zg2-pp__desktop {
  display: none;
}

/* Mobile layout: visible by default */
.zg2-pp__mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zg2-pp__mobile-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.zg2-pp__mobile-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--zg2-teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.zg2-pp__mobile-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--zg2-text);
  margin: 0 0 8px;
  line-height: 1.4;
}

.zg2-pp__mobile-answer {
  font-size: 15px;
  color: var(--zg2-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Desktop: Sidebar nav + Answer panel */
.zg2-pp__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 320px;
  max-width: 400px;
}

.zg2-pp__nav-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid var(--zg2-border);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  font-family: inherit;
}

.zg2-pp__nav-btn:hover {
  background: var(--zg2-bg-light);
  border-color: var(--zg2-teal);
}

.zg2-pp__nav-btn--active {
  background: var(--zg2-teal-light);
  border-color: var(--zg2-teal);
  box-shadow: inset 3px 0 0 var(--zg2-teal);
}

.zg2-pp__nav-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--zg2-bg-light);
  color: var(--zg2-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.zg2-pp__nav-btn--active .zg2-pp__nav-num {
  background: var(--zg2-teal);
  color: #fff;
}

.zg2-pp__nav-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--zg2-text);
  line-height: 1.4;
}

.zg2-pp__nav-btn--active .zg2-pp__nav-text {
  font-weight: 600;
  color: var(--zg2-teal-dark);
}

/* Answer panels */
.zg2-pp__panels {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.zg2-pp__panel {
  display: none;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--zg2-border);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow-y: auto;
}

.zg2-pp__panel--active {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.zg2-pp__panel-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--zg2-text);
  margin: 0 0 16px;
  line-height: 1.3;
}

.zg2-pp__panel-answer {
  font-size: 15px;
  color: var(--zg2-text);
  line-height: 1.7;
  margin: 0 0 12px;
}

.zg2-pp__panel-answer:last-of-type {
  margin-bottom: 0;
}

.zg2-pp__panel-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--zg2-teal);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 8px 16px;
  background: var(--zg2-teal-light);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.zg2-pp__panel-link:hover {
  background: var(--zg2-teal);
  color: #ffffff;
}

/* --- Pain Points Section (Option A: Accordion) --- */

.zg2-pp-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Accordion item container */
.zg2-pp-accordion__item {
  border: 1px solid var(--zg2-border);
  border-radius: 8px;
  overflow: hidden;
}

/* Question button */
.zg2-pp-accordion__question {
  background: #ffffff;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
  text-align: left;
  gap: 12px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--zg2-text);
  transition: background-color 0.2s ease;
}

.zg2-pp-accordion__question:hover {
  background: var(--zg2-bg-light);
}

.zg2-pp-accordion__question.active {
  background: var(--zg2-teal-light);
  border-bottom: 1px solid var(--zg2-border);
}

/* Numbered indicator */
.zg2-pp-accordion__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--zg2-bg-light);
  color: var(--zg2-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.zg2-pp-accordion__num--active {
  background: var(--zg2-teal);
  color: #ffffff;
}

/* Question text */
.zg2-pp-accordion__text {
  flex: 1;
  line-height: 1.4;
}

/* Arrow icon */
.zg2-pp-accordion__icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: var(--zg2-teal);
  flex-shrink: 0;
}

.zg2-pp-accordion__icon.active {
  transform: rotate(180deg);
}

/* Answer area */
.zg2-pp-accordion__answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  color: var(--zg2-text);
}

.zg2-pp-accordion__answer.active {
  max-height: 600px;
  padding: 20px;
}

.zg2-pp-accordion__answer p {
  color: var(--zg2-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.zg2-pp-accordion__answer p:last-child {
  margin-bottom: 0;
}

/* Anchor link to Ehrliche Rechnung */
.zg2-pp-accordion__link {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

.zg2-pp-accordion__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--zg2-teal-dark);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.zg2-pp-accordion__cta-link:hover {
  color: var(--zg2-teal);
  text-decoration: underline;
}

/* --- Empfehlungen Section --- */
.zg2-empfehlungen__hinweis {
  font-size: 14px;
  color: var(--zg2-text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

.zg2-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.zg2-card {
  background: #fff;
  border: 1px solid var(--zg2-border);
  border-radius: var(--zg2-radius);
  overflow: hidden;
  box-shadow: var(--zg2-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.zg2-card:hover {
  box-shadow: var(--zg2-shadow-lg);
  transform: translateY(-2px);
}

.zg2-card__label {
  background: var(--zg2-teal);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 6px 0;
  letter-spacing: 0.02em;
}

.zg2-card__logo {
  text-align: center;
  padding: 20px 20px 8px;
}

.zg2-card__logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.zg2-card__anbieter {
  font-size: 14px;
  color: var(--zg2-text-light);
  margin: 0;
  text-align: center;
  padding: 0 20px;
}

.zg2-card__tarif {
  font-size: 17px;
  font-weight: 600;
  color: var(--zg2-text);
  margin: 2px 0 0;
  text-align: center;
  padding: 0 20px 12px;
}

.zg2-card__features {
  padding: 0 20px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zg2-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--zg2-text);
}

.zg2-card__feature-icon {
  flex-shrink: 0;
  color: var(--zg2-teal);
}

.zg2-card__feature-key {
  flex: 1;
}

.zg2-card__feature-value {
  font-weight: 600;
  white-space: nowrap;
}

.zg2-card__bonus {
  padding: 12px 20px 0;
  margin-top: 8px;
  border-top: 1px solid var(--zg2-border);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.zg2-card__bonus-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--zg2-teal-dark);
  background: var(--zg2-teal-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.zg2-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--zg2-text);
  text-align: center;
  margin-top: auto;
  padding: 16px 20px 0;
}

.zg2-card__price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--zg2-text-light);
}

.zg2-card__gut-weil {
  font-size: 14px;
  line-height: 1.5;
  color: var(--zg2-text-light);
  padding: 8px 20px 0;
  margin: 0;
}

.zg2-card__button {
  display: block;
  text-align: center;
  background: var(--zg2-teal);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  margin: 12px 20px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.zg2-card__button:hover {
  background: var(--zg2-teal-dark);
  transform: translateY(-1px);
}

/* Beratungs-CTA (nach Detailvergleich) */
.zg2-beratung {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-top: 40px;
  padding: 28px 24px;
  background: #ffffff;
  border-radius: var(--zg2-radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid var(--zg2-border);
}

.zg2-beratung__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--zg2-teal);
}

.zg2-beratung__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zg2-beratung__content {
  flex: 1;
  min-width: 0;
}

.zg2-beratung__headline {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--zg2-text);
  line-height: 1.3;
}

.zg2-beratung__text {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--zg2-text-light);
  line-height: 1.5;
}

.zg2-beratung__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: var(--zg2-teal);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, transform 0.15s;
}

.zg2-beratung__phone:hover {
  background: var(--zg2-teal-dark);
  transform: translateY(-1px);
}

.zg2-beratung__phone svg {
  flex-shrink: 0;
}

/* --- Beratungs-CTA (Variante A: Split Card) --- */

.zg2-beratung-a__card {
  margin-top: 40px;
  padding: 28px 24px;
  background: #ffffff;
  border-radius: var(--zg2-radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid var(--zg2-border);
}

/* Mobile: single column, centered */
.zg2-beratung-a__split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Left side: Person + Quote */
.zg2-beratung-a__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.zg2-beratung-a__headline {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--zg2-text);
  line-height: 1.3;
}

.zg2-beratung-a__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.zg2-beratung-a__photo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--zg2-teal);
}

.zg2-beratung-a__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zg2-beratung-a__body {
  text-align: left;
}

.zg2-beratung-a__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--zg2-text);
  line-height: 1.3;
}

.zg2-beratung-a__role {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--zg2-text-light);
  line-height: 1.4;
}

.zg2-beratung-a__quote {
  margin: 0;
  font-size: 15px;
  color: var(--zg2-text);
  line-height: 1.6;
  font-style: italic;
}

/* Right side: Contact */
.zg2-beratung-a__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.zg2-beratung-a__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--zg2-text);
  text-decoration: none;
  transition: color 0.15s;
}

.zg2-beratung-a__phone:hover {
  color: var(--zg2-teal);
}

.zg2-beratung-a__phone svg {
  flex-shrink: 0;
  color: var(--zg2-teal);
}

.zg2-beratung-a__hours {
  margin: 0;
  font-size: 13px;
  color: var(--zg2-text-light);
}

.zg2-beratung-a__email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--zg2-teal);
  text-decoration: none;
  font-weight: 500;
}

.zg2-beratung-a__email:hover {
  text-decoration: underline;
}

.zg2-beratung-a__email svg {
  flex-shrink: 0;
}

/* CTA Button (mobile: prominent, desktop: accent) */
.zg2-beratung-a__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--zg2-teal);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, transform 0.15s;
  width: 100%;
  max-width: 280px;
}

.zg2-beratung-a__cta:hover {
  background: var(--zg2-teal-dark);
  transform: translateY(-1px);
}

.zg2-beratung-a__cta svg {
  flex-shrink: 0;
}

.zg2-empfehlungen__alle {
  text-align: center;
  margin-top: 24px;
}

.zg2-empfehlungen__alle a {
  color: var(--zg2-teal);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}

.zg2-empfehlungen__alle a:hover {
  text-decoration: underline;
}

/* --- Vergleichstabelle --- */
.zg2-vergleich {
  margin-top: 48px;
  margin-bottom: 48px;
}

.zg2-vergleich__headline {
  font-size: 20px;
  font-weight: 700;
  color: var(--zg2-text);
  margin: 0 0 8px;
}

.zg2-vergleich__desc {
  font-size: 14px;
  color: var(--zg2-text-light);
  margin: 0 0 16px;
  line-height: 1.5;
}

/* Border wraps the entire details (toggle + table) */
.zg2-vergleich details {
  border: 2px solid #23cfb2;
  border-radius: var(--zg2-radius);
}

.zg2-vergleich__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #1db89d;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s;
  border-radius: calc(var(--zg2-radius) - 2px);
}

.zg2-vergleich__toggle:hover {
  background: rgba(35, 207, 178, 0.08);
}

.zg2-vergleich__toggle::-webkit-details-marker {
  display: none;
}

.zg2-vergleich__toggle-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #23cfb2;
}

details[open] > .zg2-vergleich__toggle {
  border-bottom: 1px solid #e2e8f0;
  border-radius: calc(var(--zg2-radius) - 2px) calc(var(--zg2-radius) - 2px) 0 0;
}

details[open] > .zg2-vergleich__toggle .zg2-vergleich__toggle-icon {
  transform: rotate(180deg);
}

/* Tariff-Table within Vergleich toggle: spacing after summary button */
.zg2-vergleich .tariff-table-wrapper {
  padding: 16px;
  border-radius: 0 0 calc(var(--zg2-radius) - 2px) calc(var(--zg2-radius) - 2px);
  background: #ffffff;
}

/* Ensure tariff-table has min-width for horizontal scroll on mobile */
.zg2-vergleich .tariff-table {
  min-width: 500px;
  table-layout: fixed;
}

/* Equal column widths: 4 columns = 25% each */
.zg2-vergleich .tariff-table th,
.zg2-vergleich .tariff-table td {
  width: 25%;
}

/* Label cells with info icons are fully clickable */
.zg2-vergleich .tariff-table__label:has(.tariff-table__info) {
  cursor: pointer;
}

/* Mobile: smaller font sizes so info icons don't overlap values */
@media (max-width: 767px) {
  .zg2-vergleich .tariff-table th,
  .zg2-vergleich .tariff-table td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .zg2-vergleich .tariff-table__label {
    font-size: 12px;
  }

  .zg2-vergleich .tariff-table__value {
    font-size: 12px;
  }

  .zg2-vergleich .tariff-table__info {
    width: 44px;
    height: 44px;
    margin: -14px -14px -14px -10px;
  }

  .zg2-vergleich .tariff-table__info svg {
    width: 12px;
    height: 12px;
  }
}

.tariff-table__detail-note {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: #64748b;
  margin-top: 4px;
  font-weight: 400;
}

/* --- Ehrliche Rechnung (Unified Card) --- */
.zg2-rechnung__card {
  background: #ffffff;
  border: 1px solid var(--zg2-border);
  border-radius: var(--zg2-radius);
  overflow: hidden;
  box-shadow: var(--zg2-shadow);
}

.zg2-rechnung__context {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 16px;
  background: var(--zg2-bg-light);
  border-bottom: 1px solid var(--zg2-border);
  font-size: 14px;
  line-height: 1.6;
}

.zg2-rechnung__context svg {
  flex-shrink: 0;
  color: var(--zg2-teal);
  margin-top: 2px;
}

.zg2-rechnung__context p {
  margin: 0;
  font-weight: 700;
  color: var(--zg2-text);
}

/* Always 2 columns side by side */
.zg2-rechnung__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.zg2-rechnung__col {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.zg2-rechnung__col--ohne {
  border-right: 1px solid var(--zg2-border);
}

.zg2-rechnung__col-title {
  padding: 12px 12px;
  font-weight: 600;
  font-size: 13px;
  margin: 0;
}

.zg2-rechnung__col--ohne .zg2-rechnung__col-title {
  background: var(--zg2-red-light);
  color: var(--zg2-red);
  border-bottom: 2px solid var(--zg2-red);
}

.zg2-rechnung__col--mit .zg2-rechnung__col-title {
  background: var(--zg2-teal-light);
  color: var(--zg2-teal);
  border-bottom: 2px solid var(--zg2-teal);
}

.zg2-rechnung__items {
  list-style: none;
  padding: 12px 12px;
  margin: 0;
  flex: 1;
}

.zg2-rechnung__item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: var(--zg2-text);
}

.zg2-rechnung__item + .zg2-rechnung__item {
  border-top: 1px solid #f1f5f9;
}

.zg2-rechnung__label {
  flex: 1;
  min-width: 0;
}

.zg2-rechnung__betrag {
  font-weight: 600;
  white-space: nowrap;
  margin-left: 8px;
  text-align: right;
}

.zg2-rechnung__betrag--cost {
  color: var(--zg2-red);
}

.zg2-rechnung__betrag--credit {
  color: var(--zg2-teal);
}

.zg2-rechnung__col-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px;
  border-top: 2px solid var(--zg2-border);
  font-size: 14px;
  color: var(--zg2-text);
  margin-top: auto;
}

.zg2-rechnung__col--ohne .zg2-rechnung__col-total {
  color: var(--zg2-red);
}

.zg2-rechnung__col--mit .zg2-rechnung__col-total {
  color: var(--zg2-teal);
}

.zg2-rechnung__ersparnis {
  padding: 20px 20px 16px;
  text-align: right;
  font-size: 22px;
  color: var(--zg2-teal);
  font-weight: 600;
}

.zg2-rechnung__ersparnis strong {
  font-size: 26px;
  font-weight: 800;
}

.zg2-rechnung__warnung {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 12px 16px;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #92400e;
}

.zg2-rechnung__warnung svg {
  flex-shrink: 0;
  margin-top: 1px;
  stroke: #f59e0b;
}

.zg2-rechnung__warnung p {
  margin: 0;
}

/* --- Scroll Reveal Animation --- */
@keyframes zg2-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zg2-revealed {
  animation: zg2-reveal 0.6s ease forwards;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .zg2-hero__container {
    padding: 0 20px;
  }

  .zg2-band__inner {
    padding: 0 20px;
  }

  .zg2-hero__title {
    font-size: 34px;
  }

  .zg2-hero__subtitle {
    font-size: 17px;
  }

  .zg2-hero__trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .zg2-hero__image {
    /* Natural ratio — no height constraints, like Ratgeber hero */
  }

  .zg2-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .zg2-beratung {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 28px 28px;
  }

  .zg2-rechnung__context {
    padding: 20px 24px;
  }

  .zg2-rechnung__col-title {
    padding: 14px 20px;
    font-size: 15px;
  }

  .zg2-rechnung__items {
    padding: 16px 20px;
  }

  .zg2-rechnung__item {
    font-size: 14px;
  }

  .zg2-rechnung__betrag {
    margin-left: 16px;
  }

  .zg2-rechnung__col-total {
    padding: 14px 20px;
    font-size: 15px;
  }

  .zg2-rechnung__ersparnis {
    padding: 10px 20px 4px;
  }

  /* Pain Points: Switch to desktop sidebar layout */
  .zg2-pp__mobile {
    display: none;
  }

  .zg2-pp__desktop {
    display: flex;
    gap: 24px;
    align-items: stretch;
  }

  /* Beratungs-CTA Desktop (Variante A: Split Card) */
  .zg2-beratung-a__card {
    padding: 32px 36px;
  }

  .zg2-beratung-a__split {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  /* Left: takes ~70% */
  .zg2-beratung-a__left {
    flex: 7;
    align-items: flex-start;
    text-align: left;
    padding-right: 32px;
    border-right: 1px solid var(--zg2-border);
  }

  .zg2-beratung-a__photo {
    width: 72px;
    height: 72px;
  }

  /* Right: takes ~30% */
  .zg2-beratung-a__right {
    flex: 3;
    padding-left: 32px;
    align-items: center;
  }

  .zg2-beratung-a__cta {
    width: auto;
    max-width: none;
    padding: 10px 24px;
    font-size: 15px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .zg2-hero__container {
    padding: 0 20px;
  }

  .zg2-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .zg2-band {
    padding: 64px 0;
  }

  .zg2-hero__title {
    font-size: 40px;
  }

  .zg2-hero__subtitle {
    font-size: 18px;
  }

  .zg2-hero__image {
    /* Natural ratio — no height constraints, like Ratgeber hero */
  }

  .zg2-cards {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* Wide Desktop (1280px+) */
@media (min-width: 1280px) {
  .zg2-hero__container {
    padding: 0 20px;
  }

}
