/* ============================================================
   cg-lp-krankenhauszusatz - LP-eigene Styles
   Stand: 2026-05-31 (Initial-Build Phase A1)

   Diese Datei lebt im LP-Repo (nicht aus brand-src), wird vom
   Build-Skript nicht ueberschrieben. Brand-Konvention §4.
   ============================================================ */

:root {
  --lp-shadow-soft: 0 8px 32px rgb(30 62 107 / 0.08);
  --lp-shadow-stage: 0 24px 60px rgb(30 62 107 / 0.18);
  --lp-radius-card: 12px;
  --lp-grey-bg: #f7f8fa;
}

/* ============================================================
   Globale Mobile-Safety + Hyphen (§16.3 + Lesefluss)
   ============================================================ */
* { box-sizing: border-box; }
body { overflow-x: hidden; }
img, video, iframe, svg { max-width: 100%; height: auto; }

.lp-hero__card > *,
.lp-mechanik__steps > *,
.lp-vergleich__grid > *,
.lp-beispiele__grid > *,
.cg-team__grid > * {
  min-width: 0;
}

.lp-section p,
.lp-hero__sub,
.lp-story__lead,
.lp-story__anschluss,
.lp-vergleich__fuer {
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 12 4 4;
}

/* ============================================================
   Container
   ============================================================ */
.lp-container {
  width: 100%;
  max-width: var(--cg-container-default, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ============================================================
   Section-Generika
   ============================================================ */
.lp-section {
  padding-block: clamp(3rem, 6vw, 6rem);
}
.lp-section__headline {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 600;
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 var(--cg-space-3, 0.75rem) 0;
}
.lp-section__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.55;
  color: var(--cg-text-muted, #4a5568);
  max-width: 60ch;
  margin: 0 0 var(--cg-space-8, 2rem) 0;
}

/* ============================================================
   Header-LP — Container + z-index
   ============================================================ */
header.cg-header-lp {
  max-width: var(--cg-container-default, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* Header im Hero: padding-inline 0, weil lp-container schon padding
   bringt — sonst doppeltes Padding und Logo verschiebt sich nach
   innen, ist nicht mehr linksbündig zum Hero-Card. Fix aus zahn-lp. */
.lp-hero .cg-header-lp {
  padding-inline: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding-block: 0;
  background: #1e3e6b; /* Fallback, falls Bild noch laedt */
}
.lp-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right; /* Fokus auf Patient + Herz-Geste, NICHT auf Equipment links */
  z-index: 0;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgb(30 62 107 / 0.92) 0%,
    rgb(30 62 107 / 0.78) 35%,
    rgb(30 62 107 / 0.35) 65%,
    rgb(30 62 107 / 0) 100%);
  z-index: 1;
}
.lp-hero .lp-container {
  position: relative;
  z-index: 2;
  padding-block: clamp(2rem, 5vw, 5rem);
  min-height: 540px;
}
.lp-hero__card { color: #fff; max-width: 600px; }
.lp-hero__card h1 { color: #fff; }
.lp-hero__card h1 strong { color: var(--cg-lime, #c1d72e); }
.lp-hero__sub { color: rgb(255 255 255 / 0.92); }
.lp-hero__sub strong { color: var(--cg-lime, #c1d72e); }
.lp-hero__bullets { color: rgb(255 255 255 / 0.92); }
.lp-hero__trust-text { color: rgb(255 255 255 / 0.85); }

@media (max-width: 720px) {
  .lp-hero__photo { object-position: top right; }
  .lp-hero__overlay {
    background: linear-gradient(180deg,
      rgb(30 62 107 / 0.45) 0%,
      rgb(30 62 107 / 0.85) 55%,
      rgb(30 62 107 / 0.95) 100%);
  }
}

.lp-hero__card {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.lp-hero__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin: 0 0 1.25rem 0;
}
.lp-hero__trust-stars { color: #f5a623; font-size: 1rem; letter-spacing: 1px; }
.lp-hero__card h1 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
.lp-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  margin: 0 0 1.5rem 0;
}
.lp-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  gap: 0.6rem;
}
.lp-hero__bullets li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}
.lp-hero__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cg-teal, #00a19a);
  font-weight: 700;
}
.lp-hero__cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   SOCIAL-PROOF-TEASER
   ============================================================ */
.lp-social-proof-teaser {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--cg-warmwhite, #faf8f3);
  text-align: center;
}
.lp-social-proof-teaser__line { margin: 0; font-style: italic; color: var(--cg-blue, #1e3e6b); }
.lp-social-proof-teaser__quote { font-size: 1.1rem; margin-right: 0.5rem; }
.lp-social-proof-teaser__author { font-size: 0.95rem; color: var(--cg-text-muted, #4a5568); font-style: normal; }

/* ============================================================
   STORY
   ============================================================ */
.lp-story {
  background: var(--cg-warmwhite, #faf8f3);
}
.lp-story__headline {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 1rem 0;
  max-width: 28ch;
}
.lp-story__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  max-width: 65ch;
  margin: 0 0 2rem 0;
}
.lp-story__anschluss {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 65ch;
  margin: 2rem 0 1.5rem 0;
}

/* Pricing-Anker (Vergleich Selbstzahler-Tag vs. Versicherungs-Monat) */
.lp-pricing-anker {
  background: var(--cg-blue, #1e3e6b);
  color: #fff;
  border-radius: var(--lp-radius-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin: 1rem 0 2rem 0;
  max-width: 720px;
  box-shadow: var(--lp-shadow-stage);
}
.lp-pricing-anker__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  align-items: center;
}
.lp-pricing-anker__col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.lp-pricing-anker__col--highlight .lp-pricing-anker__big {
  color: var(--cg-lime, #c1d72e);
}
.lp-pricing-anker__big {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lp-pricing-anker__small {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgb(255 255 255 / 0.82);
}
.lp-pricing-anker__vs {
  font-size: 2rem;
  color: rgb(255 255 255 / 0.55);
  font-weight: 300;
  text-align: center;
}
.lp-pricing-anker__punch {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-style: italic;
  font-size: 1.15rem;
  margin: 1.25rem 0 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.18);
  color: #fff;
}

@media (max-width: 600px) {
  .lp-pricing-anker__compare {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .lp-pricing-anker__vs {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
}

/* Beispiel-Box */
.lp-beispiel-box {
  background: #fff;
  border-radius: var(--lp-radius-card);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: var(--lp-shadow-soft);
  margin: 0 0 1.5rem 0;
  max-width: 720px;
}
.lp-beispiel-box h3 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
  color: var(--cg-blue, #1e3e6b);
}
.lp-beispiel-box__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.lp-beispiel-box__table th,
.lp-beispiel-box__table td {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgb(30 62 107 / 0.1);
  font-weight: normal;
  font-size: 0.95rem;
}
.lp-beispiel-box__table td.lp-beispiel-box__amount {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lp-beispiel-box__row--total th,
.lp-beispiel-box__row--total td {
  font-weight: 700;
  color: var(--cg-blue, #1e3e6b);
  border-top: 2px solid var(--cg-blue, #1e3e6b);
}
.lp-beispiel-box__row--highlight th,
.lp-beispiel-box__row--highlight td {
  color: var(--cg-teal, #00a19a);
  font-weight: 600;
}
.lp-beispiel-box__note {
  font-size: 0.85rem;
  color: var(--cg-text-muted, #4a5568);
  margin: 1rem 0 0 0;
  line-height: 1.5;
}

/* ============================================================
   MECHANIK — ING-Style: vertikal gestapelt, Connector-Linie
   zwischen den Step-Nummern, max-width zentriert
   ============================================================ */
.lp-mechanik {
  background: #fff;
}
.lp-mechanik__steps {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  max-width: 640px;
}
.lp-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 2rem;
  padding-bottom: 3rem;
}
.lp-step:last-child {
  padding-bottom: 0;
}
.lp-step__num {
  position: relative;
  width: 44px;
  height: 44px;
  background: var(--cg-blue, #1e3e6b);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-weight: 600;
  font-size: 1.25rem;
  flex-shrink: 0;
  align-self: start;
}
.lp-step:not(:last-child) .lp-step__num::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 3rem;
  background: rgb(30 62 107 / 0.25);
}
.lp-step__body h3 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 0.5rem 0;
  color: var(--cg-blue, #1e3e6b);
}
.lp-step__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--cg-text);
}
.lp-mechanik__cta {
  margin-top: 2.5rem;
}

@media (max-width: 700px) {
  .lp-step {
    grid-template-columns: 40px 1fr;
    column-gap: 1rem;
  }
  .lp-step__num {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ============================================================
   VERGLEICH (3-Tarif-Karten — NEU)
   ============================================================ */
.lp-vergleich__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 0 0 2rem 0;
}
.lp-vergleich__col {
  background: #fff;
  border-radius: var(--lp-radius-card);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: var(--lp-shadow-soft);
  border: 1px solid rgb(30 62 107 / 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-vergleich__col h3 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.4rem;
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 0.25rem 0;
}
.lp-vergleich__col--empfohlen {
  border: 2px solid var(--cg-teal, #00a19a);
  box-shadow: 0 12px 36px rgb(0 161 154 / 0.18);
}
.lp-vergleich__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cg-teal, #00a19a);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.lp-vergleich__claim {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-style: italic;
  color: var(--cg-teal, #00a19a);
  margin: 0 0 1rem 0;
  font-size: 1.05rem;
}
.lp-vergleich__col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.5rem;
}
.lp-vergleich__col ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.lp-vergleich__col ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cg-teal, #00a19a);
  font-weight: 700;
}
.lp-vergleich__pricing {
  font-size: 0.95rem;
  margin: 0.5rem 0 0.75rem 0;
  padding: 0.5rem 0;
  border-top: 1px dashed rgb(30 62 107 / 0.15);
  font-variant-numeric: tabular-nums;
}
.lp-vergleich__pricing strong {
  color: var(--cg-blue, #1e3e6b);
  font-size: 1.05rem;
}
.lp-vergleich__fuer {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--cg-text-muted, #4a5568);
  margin: 0;
  margin-top: auto;
  padding-top: 0.75rem;
}
.lp-vergleich__pillar-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}
.lp-vergleich__quelle {
  font-size: 0.8rem;
  color: var(--cg-text-muted, #4a5568);
  line-height: 1.5;
  margin: 2rem 0 0 0;
  max-width: 80ch;
}

/* ============================================================
   BEISPIELE (3 Karten)
   ============================================================ */
.lp-beispiele {
  background: #fff;
}
.lp-beispiele__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 0 0 1.5rem 0;
}
.lp-beispiel-card {
  /* Button-Reset (Element ist <button> fuer Klickbarkeit) */
  appearance: none;
  border: 1px solid rgb(30 62 107 / 0.08);
  font: inherit;
  text-align: left;
  color: inherit;
  width: 100%;

  background: var(--cg-warmwhite, #faf8f3);
  border-radius: var(--lp-radius-card);
  padding: 1.5rem;
  box-shadow: var(--lp-shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-beispiel-card:hover,
.lp-beispiel-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgb(30 62 107 / 0.15);
  outline: none;
}
.lp-beispiel-card:focus-visible {
  border-color: var(--cg-teal, #00a19a);
}
.lp-beispiel-card__hint {
  display: block;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgb(30 62 107 / 0.15);
  font-size: 0.85rem;
  color: var(--cg-teal, #00a19a);
  font-weight: 600;
}
.lp-beispiel-card--empfohlen {
  background: #fff;
  border: 2px solid var(--cg-teal, #00a19a);
  box-shadow: 0 12px 36px rgb(0 161 154 / 0.18);
}
.lp-beispiel-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cg-teal, #00a19a);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-beispiel-card h3 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.3rem;
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 0.4rem 0;
}
.lp-beispiel-card__details {
  font-size: 0.92rem;
  color: var(--cg-text-muted, #4a5568);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
.lp-beispiel-card__easy {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
  font-variant-numeric: tabular-nums;
}
.lp-beispiel-card__easy strong {
  font-size: 1.6rem;
  color: var(--cg-blue, #1e3e6b);
  font-family: var(--cg-font-display, "Fraunces", serif);
}
.lp-beispiel-card__unit {
  font-size: 0.85rem;
  color: var(--cg-text-muted, #4a5568);
}
.lp-beispiel-card__premium {
  font-size: 0.85rem;
  color: var(--cg-text-muted, #4a5568);
  margin: 0.5rem 0 0 0;
  padding-top: 0.5rem;
  border-top: 1px dashed rgb(30 62 107 / 0.15);
  margin-top: auto;
}
.lp-beispiele__quelle {
  font-size: 0.8rem;
  color: var(--cg-text-muted, #4a5568);
  line-height: 1.5;
  margin: 1.5rem 0 0 0;
  max-width: 80ch;
}

/* ============================================================
   RECHNER
   ============================================================ */
.lp-rechner {
  background: var(--cg-warmwhite, #faf8f3);
}
.lp-rechner__form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: 0 0 1.5rem 0;
  max-width: 560px;
}
.lp-rechner__field {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 180px;
}
.lp-rechner__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cg-blue, #1e3e6b);
  margin-bottom: 0.4rem;
}
.lp-rechner__field input {
  padding: 0.7rem 1rem;
  font-size: 1.05rem;
  border: 2px solid rgb(30 62 107 / 0.2);
  border-radius: 10px;
  background: #fff;
  font-variant-numeric: tabular-nums;
  font: inherit;
  min-height: 48px;
}
.lp-rechner__field input:focus {
  outline: none;
  border-color: var(--cg-teal, #00a19a);
  box-shadow: 0 0 0 3px rgb(0 161 154 / 0.15);
}
.lp-rechner__submit {
  min-height: 48px;
}
.lp-rechner__result {
  margin: 1.5rem 0 0 0;
}
.lp-rechner-result__intro {
  margin: 0 0 1rem 0;
  font-size: 1.05rem;
  color: var(--cg-blue, #1e3e6b);
}
.lp-rechner-result__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 0 0 1rem 0;
}
.lp-rechner-tarif {
  background: #fff;
  border-radius: var(--lp-radius-card);
  padding: 1.5rem;
  box-shadow: var(--lp-shadow-soft);
  display: flex;
  flex-direction: column;
}
.lp-rechner-tarif--easy {
  border: 2px solid var(--cg-teal, #00a19a);
  box-shadow: 0 12px 36px rgb(0 161 154 / 0.18);
}
.lp-rechner-tarif--premium {
  border: 1px solid rgb(30 62 107 / 0.12);
}
.lp-rechner-tarif__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.lp-rechner-tarif__name {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.25rem;
  color: var(--cg-blue, #1e3e6b);
  font-weight: 600;
}
.lp-rechner-tarif__badge {
  background: var(--cg-teal, #00a19a);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.lp-rechner-tarif__badge--neutral {
  background: rgb(30 62 107 / 0.12);
  color: var(--cg-blue, #1e3e6b);
}
.lp-rechner-tarif__pricing {
  margin: 0 0 1rem 0;
  font-variant-numeric: tabular-nums;
}
.lp-rechner-tarif__pricing strong {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 2.2rem;
  color: var(--cg-blue, #1e3e6b);
  display: block;
}
.lp-rechner-tarif__pricing-unit {
  font-size: 0.9rem;
  color: var(--cg-text-muted, #4a5568);
}
.lp-rechner-tarif__claims {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.4rem;
}
.lp-rechner-tarif__claims li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.5;
}
.lp-rechner-tarif__claims li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cg-teal, #00a19a);
  font-weight: 700;
}
.lp-rechner-tarif__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}
.lp-rechner-tarif__legalnote {
  font-size: 0.8rem;
  color: var(--cg-text-muted, #4a5568);
  line-height: 1.5;
  margin: 0.5rem 0 0 0;
}
.lp-rechner-plus {
  background: rgb(30 62 107 / 0.05);
  border-radius: var(--lp-radius-card);
  padding: 1.25rem;
  margin: 1rem 0 0 0;
}
.lp-rechner-plus__label {
  font-weight: 700;
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 0.4rem 0;
}
.lp-rechner-plus__pricing {
  margin: 0 0 0.4rem 0;
  font-variant-numeric: tabular-nums;
}
.lp-rechner-plus__pricing strong {
  font-size: 1.4rem;
  font-family: var(--cg-font-display, "Fraunces", serif);
  color: var(--cg-blue, #1e3e6b);
}
.lp-rechner-plus__note {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--cg-text-muted, #4a5568);
  margin: 0;
}
.lp-rechner__quelle {
  font-size: 0.8rem;
  color: var(--cg-text-muted, #4a5568);
  line-height: 1.5;
  margin: 1.5rem 0 0 0;
  max-width: 80ch;
}

/* ============================================================
   VERTRAUEN
   ============================================================ */
.lp-vertrauen {
  background: #fff;
}

/* ============================================================
   FAQ (details/summary-Akkordeon)
   ============================================================ */
.lp-faq {
  background: var(--cg-warmwhite, #faf8f3);
}
.lp-faq__list {
  display: grid;
  gap: 0.6rem;
  max-width: 900px;
}
.lp-faq__item {
  background: #fff;
  border-radius: var(--lp-radius-card);
  box-shadow: var(--lp-shadow-soft);
  overflow: hidden;
}
.lp-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--cg-blue, #1e3e6b);
  position: relative;
  padding-right: 3rem;
  font-size: 1.02rem;
  line-height: 1.4;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--cg-teal, #00a19a);
  font-weight: 700;
  transition: transform 0.15s;
}
.lp-faq__item[open] summary::after {
  content: "−";
}
.lp-faq__item summary:hover {
  background: rgb(0 161 154 / 0.04);
}
.lp-faq__answer {
  padding: 0 1.25rem 1.25rem 1.25rem;
}
.lp-faq__answer p {
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.lp-faq__answer p:last-child { margin-bottom: 0; }
.lp-faq__answer a { color: var(--cg-teal, #00a19a); }

/* ============================================================
   STICKY-MOBILE-CTA
   ============================================================ */
.lp-sticky-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 70fr 30fr;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgb(255 255 255 / 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgb(30 62 107 / 0.15);
  box-shadow: 0 -4px 16px rgb(30 62 107 / 0.08);
}
.lp-sticky-mobile[hidden] { display: none; }
.lp-sticky-mobile__primary {
  min-height: 48px;
  text-align: center;
  justify-content: center;
}
.lp-sticky-mobile__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--cg-blue, #1e3e6b);
  color: #fff;
  border-radius: var(--cg-shape-button, 999px);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}
@media (min-width: 720px) {
  .lp-sticky-mobile { display: none !important; }
}

/* ============================================================
   PILLAR-PAGE (/bedingungen/) — eigene Header-Pille + Sektionen
   ============================================================ */
.lp-bedingungen-header {
  position: relative;
  overflow: hidden;
  background: #1e3e6b;
  min-height: 120px;
}
.lp-bedingungen-header .lp-container {
  position: relative;
  z-index: 2;
}

.lp-bedingungen-hero {
  background: #fff;
}
.lp-bedingungen-hero__back {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}
.lp-bedingungen-hero__back a {
  color: var(--cg-teal, #00a19a);
  text-decoration: none;
}
.lp-bedingungen-hero__back a:hover { text-decoration: underline; }

.lp-bedingungen-hero h1 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 1rem 0;
  max-width: 30ch;
}
.lp-bedingungen-hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  max-width: 65ch;
  margin: 0 0 1.5rem 0;
}
.lp-bedingungen-hero__toc {
  background: var(--cg-warmwhite, #faf8f3);
  border-radius: var(--lp-radius-card);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 0 0;
  max-width: 600px;
}
.lp-bedingungen-hero__toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.lp-bedingungen-hero__toc li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
}
.lp-bedingungen-hero__toc li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cg-teal, #00a19a);
}
.lp-bedingungen-hero__toc a {
  color: var(--cg-blue, #1e3e6b);
  text-decoration: none;
}
.lp-bedingungen-hero__toc a:hover { color: var(--cg-teal, #00a19a); }

.lp-bedingungen-gkv,
.lp-bedingungen-tarif,
.lp-bedingungen-vergleich,
.lp-bedingungen-klausel,
.lp-bedingungen-glossar {
  background: #fff;
}
.lp-bedingungen-tarif {
  border-top: 1px solid rgb(30 62 107 / 0.08);
}
.lp-bedingungen-tarif:nth-of-type(even) {
  background: var(--cg-warmwhite, #faf8f3);
}
.lp-bedingungen-tarif h2 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 0.5rem 0;
}
.lp-bedingungen-tarif h3 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.25rem;
  color: var(--cg-blue, #1e3e6b);
  margin: 1.5rem 0 0.75rem 0;
}
.lp-bedingungen-tarif__claim {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-style: italic;
  color: var(--cg-teal, #00a19a);
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
}
.lp-bedingungen-tarif__leistungen {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.5rem;
  max-width: 70ch;
}
.lp-bedingungen-tarif__leistungen li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.55;
}
.lp-bedingungen-tarif__leistungen li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cg-teal, #00a19a);
  font-weight: 700;
}
.lp-bedingungen-tarif__quelle {
  font-size: 0.8rem;
  color: var(--cg-text-muted, #4a5568);
  line-height: 1.5;
  margin: 1rem 0 0 0;
  max-width: 80ch;
}
.lp-bedingungen-tarif__auszeichnung {
  font-size: 0.92rem;
  background: rgb(255 196 0 / 0.12);
  border-left: 3px solid #f5a623;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin: 0 0 1.5rem 0;
  max-width: 70ch;
}

/* Tabellen-Pattern */
.lp-tabelle-scroll {
  overflow-x: auto;
  margin: 0 0 1rem 0;
}
.lp-tabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1rem 0;
  background: #fff;
}
.lp-tabelle thead th {
  background: var(--cg-blue, #1e3e6b);
  color: #fff;
  text-align: left;
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.lp-tabelle tbody th {
  background: var(--cg-warmwhite, #faf8f3);
  text-align: left;
  padding: 0.6rem 1rem;
  font-weight: 600;
  color: var(--cg-blue, #1e3e6b);
  border-bottom: 1px solid rgb(30 62 107 / 0.08);
  vertical-align: top;
}
.lp-tabelle tbody td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgb(30 62 107 / 0.08);
  vertical-align: top;
}
.lp-tabelle--beitrag {
  max-width: 460px;
}
.lp-tabelle--beitrag tbody td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 600;
}
.lp-tabelle--vergleich {
  min-width: 720px;
}
.lp-tabelle--vergleich tbody td {
  font-size: 0.9rem;
}

/* Klausel-Sektion mit Zitat */
.lp-bedingungen-klausel {
  background: var(--cg-bg-tint, #f1f4f9);
}
.lp-bedingungen-klausel h2 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 1rem 0;
}
.lp-bedingungen-klausel h3 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.25rem;
  color: var(--cg-blue, #1e3e6b);
  margin: 1.5rem 0 0.75rem 0;
}
.lp-bedingungen-klausel p {
  max-width: 70ch;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}
.lp-bedingungen-klausel__zitat {
  background: #fff;
  border-left: 4px solid var(--cg-teal, #00a19a);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--cg-blue, #1e3e6b);
  border-radius: 4px;
  max-width: 70ch;
}
.lp-bedingungen-klausel__zitat cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--cg-text-muted, #4a5568);
}
.lp-bedingungen-klausel ul {
  max-width: 70ch;
  line-height: 1.6;
  margin: 0 0 1rem 1.25rem;
}

/* ============================================================
   AXA-DIREKTABSCHLUSS-BLOCK (auf Haupt-LP, vor lp-termin)
   ============================================================ */
.lp-axa-direkt-section {
  background: var(--cg-bg-tint, #f1f4f9);
}
.lp-axa-direkt {
  background: #fff;
  border-radius: var(--lp-radius-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--lp-shadow-soft);
  border-top: 4px solid var(--cg-teal, #00a19a);
  max-width: 760px;
  /* Linksbündig (konsistent mit Hero-Card, Story, Mechanik) */
  margin: 0;
}
.lp-axa-direkt h2,
.lp-axa-direkt h3 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 0.75rem 0;
}
.lp-axa-direkt__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1rem 0;
}
.lp-axa-direkt__zusage {
  background: var(--cg-warmwhite, #faf8f3);
  border-left: 3px solid var(--cg-teal, #00a19a);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  margin: 0 0 1.25rem 0;
}
.lp-axa-direkt__erstinfo {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 1.25rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}
.lp-axa-direkt__erstinfo input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--cg-teal, #00a19a);
}
.lp-axa-direkt__erstinfo a {
  color: var(--cg-teal, #00a19a);
}
.lp-axa-direkt__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0 0 0.5rem 0;
}
.lp-btn--disabled,
[aria-disabled="true"].lp-axa-direkt__cta {
  opacity: 0.45;
  pointer-events: auto; /* damit der click-Handler trotzdem feuert */
  cursor: not-allowed;
  filter: grayscale(40%);
}
.lp-axa-direkt__hint {
  font-size: 0.85rem;
  color: var(--cg-text-muted, #4a5568);
  margin: 0 0 1rem 0;
  font-style: italic;
}
.lp-axa-direkt__hint--alarm {
  color: #d04141;
  font-weight: 600;
  animation: lp-axa-direkt-shake 0.4s ease;
}
@keyframes lp-axa-direkt-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.lp-axa-direkt__alt {
  font-size: 0.95rem;
  color: var(--cg-text-muted, #4a5568);
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(30 62 107 / 0.08);
}
.lp-axa-direkt__alt a {
  color: var(--cg-teal, #00a19a);
}

/* ============================================================
   INFO-TOOLTIP-DIALOG (lp.info-popup)
   ============================================================ */
.lp-info-popup {
  border: none;
  border-radius: var(--lp-radius-card);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 480px;
  width: calc(100% - 2rem);
  box-shadow: 0 24px 60px rgb(30 62 107 / 0.25);
  background: #fff;
  color: var(--cg-text, #1f2937);
}
.lp-info-popup::backdrop {
  background: rgb(30 62 107 / 0.55);
  backdrop-filter: blur(2px);
}
.lp-info-popup__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--cg-text-muted, #4a5568);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.lp-info-popup__close:hover,
.lp-info-popup__close:focus-visible {
  background: rgb(30 62 107 / 0.08);
  color: var(--cg-blue, #1e3e6b);
  outline: none;
}
.lp-info-popup__title {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.35rem;
  color: var(--cg-blue, #1e3e6b);
  margin: 0 2rem 0.75rem 0;
}
.lp-info-popup__body {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}
.lp-info-popup__link {
  display: inline-block;
  color: var(--cg-teal, #00a19a);
  font-weight: 600;
  text-decoration: none;
}
.lp-info-popup__link:hover {
  text-decoration: underline;
}

/* ============================================================
   Hero-H1 mit <br> — engerer line-height + Block-Layout
   ============================================================ */
.lp-hero__card h1 br + strong,
.lp-hero__card h1 strong {
  display: inline-block;
}
.lp-hero__card h1 {
  line-height: 1.1;
}

/* Glossar (definition list) */
.lp-bedingungen-glossar h2 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 1.5rem 0;
}
.lp-glossar {
  display: grid;
  gap: 1.25rem;
  max-width: 70ch;
  margin: 0;
}
.lp-glossar dt {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cg-blue, #1e3e6b);
  margin-bottom: 0.3rem;
}
.lp-glossar dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cg-text);
}
.lp-glossar dd a {
  color: var(--cg-teal, #00a19a);
}

/* CTA-Bridge */
.lp-bedingungen-cta-bridge {
  background: var(--cg-warmwhite, #faf8f3);
  text-align: center;
}
.lp-bedingungen-cta-bridge__container h2 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 1.5rem 0;
}
.lp-bedingungen-cta-bridge p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 1rem 0;
}
.lp-bedingungen-cta-bridge p:last-child {
  font-size: 0.95rem;
  color: var(--cg-text-muted, #4a5568);
  font-style: italic;
}

/* ============================================================
   TERMIN
   ============================================================ */
.lp-termin {
  background: var(--cg-warmwhite, #faf8f3);
}

/* ============================================================
   TOOLTIP-Trigger
   ============================================================ */
.lp-info {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline dotted var(--cg-teal, #00a19a) 2px;
  text-underline-offset: 3px;
  cursor: help;
}
.lp-info:hover,
.lp-info:focus-visible {
  color: var(--cg-teal, #00a19a);
  outline: none;
}

/* ============================================================
   Ghost-Button
   ============================================================ */
.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--cg-blue, #1e3e6b);
  color: var(--cg-blue, #1e3e6b);
  background: transparent;
  border-radius: var(--cg-shape-button, 999px);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}
.lp-btn-ghost:hover {
  background: var(--cg-blue, #1e3e6b);
  color: #fff;
}
.lp-btn-ghost--pillar {
  border-color: var(--cg-teal, #00a19a);
  color: var(--cg-teal, #00a19a);
}
.lp-btn-ghost--pillar:hover {
  background: var(--cg-teal, #00a19a);
  color: #fff;
}

/* ============================================================
   Mobile
   ============================================================ */
/* ============================================================
   EASY-LEISTUNGEN (Star-Block, ersetzt lp-vergleich)
   ============================================================ */
.lp-easy-leistungen {
  background: #fff;
}
.lp-easy-leistungen__grid {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.lp-easy-leistung {
  background: var(--cg-warmwhite, #faf8f3);
  border-radius: var(--lp-radius-card);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--cg-teal, #00a19a);
}
.lp-easy-leistung strong {
  display: block;
  color: var(--cg-blue, #1e3e6b);
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.lp-easy-leistung span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--cg-text-muted, #4a5568);
}
.lp-easy-leistungen__quelle {
  font-size: 0.8rem;
  color: var(--cg-text-muted, #4a5568);
  line-height: 1.5;
  margin: 1rem 0 0 0;
  max-width: 80ch;
}

/* ============================================================
   UPGRADE-PFAD (Premium + Plus, kompakt)
   ============================================================ */
.lp-upgrade-pfad {
  background: var(--cg-bg-tint, #f1f4f9);
}
.lp-upgrade-pfad__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0 0 1.5rem 0;
}
.lp-upgrade-pfad__col {
  background: #fff;
  border-radius: var(--lp-radius-card);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: var(--lp-shadow-soft);
  display: flex;
  flex-direction: column;
}
.lp-upgrade-pfad__col h3 {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.3rem;
  color: var(--cg-blue, #1e3e6b);
  margin: 0 0 0.25rem 0;
}
.lp-upgrade-pfad__claim {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-style: italic;
  color: var(--cg-teal, #00a19a);
  margin: 0 0 1rem 0;
  font-size: 1rem;
}
.lp-upgrade-pfad__col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
  display: grid;
  gap: 0.45rem;
}
.lp-upgrade-pfad__col ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.5;
}
.lp-upgrade-pfad__col ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cg-teal, #00a19a);
  font-weight: 700;
}
.lp-upgrade-pfad__pricing {
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-top: 1px dashed rgb(30 62 107 / 0.15);
  margin: 0.5rem 0;
  font-variant-numeric: tabular-nums;
}
.lp-upgrade-pfad__pricing strong {
  color: var(--cg-blue, #1e3e6b);
  font-size: 1.02rem;
}
.lp-upgrade-pfad__auszeichnung {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--cg-text-muted, #4a5568);
  margin: 0;
  margin-top: auto;
  padding-top: 0.5rem;
}
.lp-upgrade-pfad__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}
.lp-upgrade-pfad__quelle {
  font-size: 0.8rem;
  color: var(--cg-text-muted, #4a5568);
  line-height: 1.5;
  margin: 1.5rem 0 0 0;
  max-width: 80ch;
}

/* ============================================================
   STORY-SUBHEAD (H3 fuer 24-Monate-Klausel-Absatz)
   ============================================================ */
.lp-story__subhead {
  font-family: var(--cg-font-display, "Fraunces", serif);
  font-size: 1.3rem;
  color: var(--cg-blue, #1e3e6b);
  margin: 2rem 0 0.5rem 0;
  max-width: 50ch;
}

/* ============================================================
   Ghost-Button on dark Hero (secondary CTA neben primary)
   ============================================================ */
.lp-btn-ghost--on-dark {
  border-color: #fff;
  color: #fff;
}
.lp-btn-ghost--on-dark:hover {
  background: #fff;
  color: var(--cg-blue, #1e3e6b);
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 640px) {
  .lp-hero .lp-container { min-height: 480px; }
  .lp-upgrade-pfad__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-upgrade-pfad__cta > * {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
