/* =============================================================================
   medicum-relaunch.css
   Gültig für: Öffentliche Website — neue/überarbeitete Seiten
   Scope:      body.is-relaunch (Page-IDs 40, 41, 64, 92 + jede weitere neue Seite)

   WICHTIG: Alle Regeln MÜSSEN unter .is-relaunch gescoped sein.
            Ausnahmen: :root (CSS-Variablen), @font-face (immer global).
            → Neue Regel ohne .is-relaunch = Merge-Fehler.

   Ladereihenfolge: main.css → temp.css → newsletter.css
                    → medicum-custom.css → medicum-relaunch.css  ← höchste Priorität

   Erstellt: 2026-03-14
   ============================================================================= */


/* ── @font-face ─────────────────────────────────────────────────────────────
   Duplikat zu medicum-custom.css während Übergangsphase.
   Entfernen sobald medicum-custom.css abgeschaltet wird.
   --------------------------------------------------------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fileadmin/templates/assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fileadmin/templates/assets/fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fileadmin/templates/assets/fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fileadmin/templates/assets/fonts/inter-v20-latin-700.woff2') format('woff2');
}


/* ── Design Tokens (:root — global) ─────────────────────────────────────────
   Einzige Quelle der Wahrheit für alle Farben, Radien, Schatten, Transitions.
   Duplikat zu medicum-custom.css — beim Abschalten dort entfernen.
   --------------------------------------------------------------------------- */
:root {
  /* Grün-Palette */
  --green-900: #0F2620;
  --green-800: #1B3C34;
  --green-700: #245C4F;
  --green-600: #2D7A68;
  --green-500: #38997F;
  --green-400: #5CB89E;
  --green-300: #8AD4BC;
  --green-200: #B8E8D8;
  --green-100: #E8F5F0;
  --green-50:  #F3FAF7;

  /* Grau-Palette */
  --gray-950: #0A0A0B;
  --gray-800: #1F2937;
  --gray-600: #4B5563;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --white:    #FFFFFF;

  /* Akzent (Coral) */
  --accent:       #E8735A;
  --accent-light: #FDE8E2;
  --accent-dark:  #9E3A22;

  /* Radien */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease-out;

  /* Hero Akzent (zentral steuerbar) */
  --hero-accent-color:  var(--green-400);
  --hero-accent-weight: 300;
}


/* ── Base-Overrides ──────────────────────────────────────────────────────────
   Korrekturen für main.css und TYPO3-Theme.
   --------------------------------------------------------------------------- */

/* main.css setzt h1–h3 { text-transform: uppercase } — korrigieren */
.is-relaunch h1,
.is-relaunch h2,
.is-relaunch h3 {
  text-transform: none;
}

/* Apple-style page background */
.is-relaunch body,
body.is-relaunch {
  background-color: #f5f5f7;
}

.is-relaunch .frame-default,
.is-relaunch .frame-type-html {
  background-color: transparent !important;
}

/* TYPO3-Theme: section constraints entfernen */
.is-relaunch .hero,
.is-relaunch section.section,
.is-relaunch .highlight-band,
.is-relaunch .cta-section,
.is-relaunch .stats-band {
  max-width: none !important;
  width: 100% !important;
  border-radius: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Letztes CE: TYPO3 hängt frame-space-after-large an → graues Band */
.is-relaunch .cta-section + section.frame-space-after-large {
  background: var(--white);
}


/* ── Layout ──────────────────────────────────────────────────────────────────*/
.is-relaunch .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.is-relaunch .container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.is-relaunch .teamkultur .container {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border-radius: 16px;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.is-relaunch .cta-section .container {
  padding-top: 60px !important;
  padding-bottom: 0 !important;
}


/* ── Typografie-Helfer ───────────────────────────────────────────────────────*/
.is-relaunch .text-primary {
  color: var(--green-600);
}

.is-relaunch .pw-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}


/* ── Section Headers ─────────────────────────────────────────────────────────*/
.is-relaunch section.section {
  padding: 100px 0 !important;
}

.is-relaunch .section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.is-relaunch .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.is-relaunch .section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--gray-950);
  margin-bottom: 16px;
}

.is-relaunch .section-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 2rem;
}


/* ── Hero ────────────────────────────────────────────────────────────────────*/
.is-relaunch .hero {
  position: relative;
  left: 0 !important;
  right: 0 !important;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: flex-start;
}

.is-relaunch .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.is-relaunch .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.is-relaunch .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1)   0%,
    rgba(255,255,255,0.97) 20%,
    rgba(255,255,255,0.85) 35%,
    rgba(255,255,255,0.3)  55%,
    rgba(255,255,255,0)    70%
  );
}

.is-relaunch .hero > .container {
  max-width: none;
  margin: 0;
  padding-left: clamp(24px, 4vw, 80px);
  padding-right: 0;
}

.is-relaunch .hero-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
  padding: 112px 0 48px; /* mobile-first, 112px = nav-height */
}

@media (min-width: 601px) {
  .is-relaunch .hero-content {
    padding-top: 120px;
    padding-bottom: 72px;
  }
}

.is-relaunch .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-700);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.is-relaunch .hero-badge svg {
  width: 14px;
  height: 14px;
}

.is-relaunch .hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--gray-950);
  margin-bottom: 20px;
  max-width: 720px;
}

.is-relaunch .hero h1 .text-primary,
.is-relaunch .hero h1 .accent {
  color: var(--hero-accent-color);
  font-weight: var(--hero-accent-weight);
}

.is-relaunch .hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 36px;
}

.is-relaunch .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .is-relaunch .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .is-relaunch .hero-actions .btn-primary,
  .is-relaunch .hero-actions .btn-secondary {
    width: 190px;
  }
}

.is-relaunch .hero + .section {
  padding-bottom: 60px !important;
}


/* ── Buttons ─────────────────────────────────────────────────────────────────
   Basis-Sizing: einmalig für btn-primary + btn-secondary.
   Farben werden separat pro Kontext gesetzt (Standard / Hero-Override).
   --------------------------------------------------------------------------- */
.is-relaunch .btn-primary,
.is-relaunch .btn-secondary {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

/* Farben: Standard (außerhalb Hero) */
.is-relaunch .btn-primary {
  background: var(--green-600);
  color: var(--white);
}

.is-relaunch .btn-primary:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.is-relaunch .btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--gray-200);
}

.is-relaunch .btn-secondary:hover {
  border-color: var(--green-800);
  background: var(--green-50);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Farben: Hero — Inverse-Swap-Logik
   Primär: dunkelgrün → hover weiß
   Sekundär: weiß → hover dunkelgrün */
.is-relaunch .hero .btn-primary {
  background: var(--green-800);
  color: var(--white);
  border-color: transparent;
}

.is-relaunch .hero .btn-primary:hover {
  background: var(--white);
  color: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 31, 27, 0.30);
}

.is-relaunch .hero .btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--gray-200);
}

.is-relaunch .hero .btn-secondary:hover {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 31, 27, 0.40);
}

/* Button auf dunklem Hintergrund */
.is-relaunch .btn-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-800);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.is-relaunch .btn-highlight:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--green-800);
}

/* Focus-States (WCAG 2.1 AA) */
.is-relaunch :focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.is-relaunch .btn-primary:focus-visible,
.is-relaunch .btn-secondary:focus-visible {
  border-radius: 12px;
}

/* Link-Styles */
.is-relaunch a {
  color: var(--green-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.is-relaunch a:hover {
  color: var(--green-700);
  text-decoration: underline;
}

.is-relaunch .btn-primary:hover,
.is-relaunch .btn-secondary:hover,
.is-relaunch .btn-highlight:hover,
.is-relaunch .cta-card:hover {
  text-decoration: none;
}


/* ── Stats-Band ──────────────────────────────────────────────────────────────*/
.is-relaunch .stats-band {
  background: var(--green-800) !important;
  padding: 60px 0;
  border-top: none !important;
  border-bottom: none !important;
}

.is-relaunch .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.is-relaunch .stat-number {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.1;
  letter-spacing: -1.5px;
  padding-bottom: 12px;
}

.is-relaunch .stat-number::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 8px auto 0;
}

.is-relaunch .stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-top: 8px;
}


/* ── Feature Cards ───────────────────────────────────────────────────────────*/
.is-relaunch .feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .is-relaunch .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .is-relaunch .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.is-relaunch .feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.is-relaunch .feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.is-relaunch .feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.is-relaunch .feature-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 1.5;
}

.is-relaunch .feature-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--gray-950);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.is-relaunch .feature-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}


/* ── Feature Split (Bild + Text nebeneinander) ───────────────────────────────*/
.is-relaunch .feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.is-relaunch .feature-split.reverse {
  direction: rtl;
}

.is-relaunch .feature-split.reverse > * {
  direction: ltr;
}

.is-relaunch .feature-visual {
  position: relative;
}

.is-relaunch .feature-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.is-relaunch .feature-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--gray-950);
  margin-bottom: 16px;
}

.is-relaunch .feature-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .is-relaunch .feature-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .is-relaunch .feature-split.reverse {
    direction: ltr;
  }
}


/* ── Two-Col Layout ──────────────────────────────────────────────────────────*/
.is-relaunch .two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .is-relaunch .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.is-relaunch .two-col-reverse {
  direction: rtl;
}

.is-relaunch .two-col-reverse > * {
  direction: ltr;
}

@media (max-width: 767px) {
  .is-relaunch .two-col-reverse {
    direction: ltr;
  }
}

.is-relaunch .two-col-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--gray-950);
  margin-bottom: 16px;
}

.is-relaunch .two-col-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.is-relaunch .two-col-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}


/* ── Check-List (Badge/Chip-Stil) ────────────────────────────────────────────
   Verwendung: CE 2061 (Hausarztversorgung), Teamkultur-Sektion
   Variante mit SVG-Icons: .icon-list (weiter unten)
   --------------------------------------------------------------------------- */
.is-relaunch .check-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
}

.is-relaunch .check-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

.is-relaunch .check-list li svg {
  flex-shrink: 0;
}

/* ── Icon-List (Vertikale Liste mit SVG-Checkmarks) ──────────────────────────
   Verwendung: Patient werden (Feature-Split "Erster Termin")
   HINWEIS: patient-werden.html verwendet diese Klasse als .icon-list
            (nicht .check-list, um Naming-Konflikt zu vermeiden)
   --------------------------------------------------------------------------- */
.is-relaunch .icon-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.is-relaunch .icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

.is-relaunch .icon-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: var(--green-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.is-relaunch .icon-list li strong {
  color: var(--gray-800);
}

/* Hint-Text unter icon-list */
.is-relaunch .pw-hint {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-top: 12px;
  padding-left: 4px;
  border-left: 3px solid var(--gray-200);
}


/* ── Benefit Chips ───────────────────────────────────────────────────────────*/
.is-relaunch .benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.is-relaunch .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
}


/* ── Highlight Band ──────────────────────────────────────────────────────────*/
.is-relaunch section.highlight-band {
  background: linear-gradient(135deg, #1C3829 0%, #2D5E45 40%, #4A8B65 100%);
  color: var(--white);
  padding: 60px 0 100px !important;
  position: relative;
  overflow: hidden;
}

.is-relaunch .highlight-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.is-relaunch .highlight-band::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.is-relaunch .highlight-inner {
  position: relative;
  z-index: 1;
}

.is-relaunch .highlight-band .section-label {
  color: var(--accent);
}

.is-relaunch .highlight-band .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.is-relaunch .highlight-band .section-title,
.is-relaunch .highlight-band h2 {
  color: var(--white);
}

.is-relaunch .highlight-band .section-desc {
  color: rgba(255,255,255,0.8);
}

.is-relaunch .highlight-band p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.is-relaunch .highlight-band .feature-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
}

.is-relaunch .highlight-band .feature-card h3 {
  color: var(--white);
}

.is-relaunch .highlight-band .feature-card p {
  color: rgba(255,255,255,0.75);
}

.is-relaunch .highlight-band .feature-card-icon {
  background: rgba(255,255,255,0.12);
}

.is-relaunch .highlight-band .feature-card-icon svg {
  stroke: var(--white);
}

.is-relaunch .highlight-band .btn-highlight {
  margin-top: 2rem;
}


/* ── Value Cards ─────────────────────────────────────────────────────────────*/
.is-relaunch .values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.is-relaunch .value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.is-relaunch .value-card:hover {
  box-shadow: var(--shadow-md);
}

.is-relaunch .value-card-icon,
.is-relaunch .value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.is-relaunch .value-card-icon svg,
.is-relaunch .value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 1.5;
}

.is-relaunch .value-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-950);
  margin-bottom: 8px;
}

.is-relaunch .value-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}


/* ── CTA Section ─────────────────────────────────────────────────────────────*/
.is-relaunch section.cta-section {
  padding: 100px 0 !important;
  padding-bottom: 120px !important;
  text-align: center;
  background: var(--white) !important;
}

.is-relaunch .cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--gray-950);
  margin-bottom: 12px;
}

.is-relaunch .cta-section p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.is-relaunch .cta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.is-relaunch .cta-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.is-relaunch .cta-card:hover {
  border-color: var(--green-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.is-relaunch .cta-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-relaunch .cta-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.5;
}

.is-relaunch .cta-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-950);
  margin-bottom: 6px;
}

.is-relaunch .cta-card p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

/* CTA: "Patient werden" Icon Coral-Akzent */
.is-relaunch .cta-card:first-child .cta-card-icon {
  background: var(--accent-light);
}

.is-relaunch .cta-card:first-child .cta-card-icon svg {
  stroke: var(--accent-dark);
}


/* ── Accordion / FAQ (klassisch, accordion-item Pattern) ─────────────────────*/
.is-relaunch .accordion {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.is-relaunch .accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.is-relaunch .accordion-header {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 17px;
  color: var(--gray-950);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
  line-height: 1.4;
}

.is-relaunch .accordion-header::-webkit-details-marker { display: none; }

.is-relaunch .accordion-header::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--green-600);
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}

.is-relaunch details[open] > .accordion-header::after {
  content: '−';
}

.is-relaunch .accordion-header:hover {
  background: var(--gray-50);
}

.is-relaunch .accordion-body {
  padding: 0 24px 20px;
}

.is-relaunch .accordion-body p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.is-relaunch .accordion-body a {
  color: var(--green-600);
  text-decoration: underline;
}


/* ── FAQ — 2-Spalter-Layout (faq-item Pattern, patient-werden) ───────────────
   Dieses Pattern ersetzt langfristig das accordion-item Pattern.
   --------------------------------------------------------------------------- */
.is-relaunch .pw-faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .is-relaunch .pw-faq-layout {
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.is-relaunch .pw-faq-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.is-relaunch .pw-faq-intro .section-title {
  margin-top: 8px;
}

.is-relaunch .pw-faq-intro p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

.is-relaunch .pw-faq-intro .btn-secondary {
  align-self: flex-start;
}

.is-relaunch .pw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.is-relaunch .faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition-base);
}

.is-relaunch .faq-item:hover {
  box-shadow: var(--shadow-md);
}

.is-relaunch .faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  color: var(--gray-950);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition-fast);
}

.is-relaunch .faq-question::-webkit-details-marker { display: none; }

.is-relaunch .faq-question:hover {
  background: var(--gray-50);
}

.is-relaunch .faq-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-600);
  min-width: 24px;
  flex-shrink: 0;
}

.is-relaunch .faq-chevron {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--transition-slow), color var(--transition-fast);
}

.is-relaunch details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--green-600);
}

.is-relaunch .faq-answer {
  padding: 0 20px 18px 56px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.is-relaunch .faq-answer p { margin: 0; }

.is-relaunch .faq-answer a {
  color: var(--green-600);
  text-decoration: none;
}

.is-relaunch .faq-answer a:hover {
  color: var(--green-700);
  text-decoration: underline;
}

.is-relaunch .faq-question:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}


/* ── patient-werden — Page-spezifische Komponenten ───────────────────────────*/

/* Section-Hintergrund-Helfer */
.is-relaunch .pw-section-white { background: var(--white); }
.is-relaunch .pw-section-gray  { background: var(--gray-100); }
.is-relaunch .pw-section-light { background: var(--gray-50);  }

/* Step-by-Step */
.is-relaunch .pw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  max-width: 780px;
}

.is-relaunch .pw-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.is-relaunch .pw-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.is-relaunch .pw-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  font-family: Inter, sans-serif;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.is-relaunch .pw-step-number--final {
  background: var(--green-800);
  color: var(--white);
}

.is-relaunch .pw-step-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: var(--green-200);
  margin: 6px 0;
}

.is-relaunch .pw-step-content {
  padding-bottom: 2rem;
  flex: 1;
}

.is-relaunch .pw-step--last .pw-step-content {
  padding-bottom: 0;
}

@media (min-width: 601px) {
  .is-relaunch .pw-step-content {
    padding-bottom: 4.5rem;
  }
}

.is-relaunch .pw-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-950);
  margin: 0 0 10px;
  line-height: 1.3;
  padding-top: 12px;
}

.is-relaunch .pw-step-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 16px;
}

.is-relaunch .pw-step-content p:last-child {
  margin-bottom: 0;
}

.is-relaunch .pw-step-cta {
  margin-top: 8px;
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
  background: var(--green-800);
  color: var(--white);
  border-color: transparent;
}

.is-relaunch .pw-step-cta:hover {
  background: var(--white);
  color: var(--green-800);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,31,27,0.25);
}

@media (min-width: 1024px) {
  .is-relaunch .pw-steps {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem 2rem;
  }

  .is-relaunch .pw-step {
    flex-direction: column;
    gap: 0;
  }

  .is-relaunch .pw-step-marker {
    flex-direction: row;
    width: 100%;
    align-items: center;
    margin-bottom: 16px;
  }

  .is-relaunch .pw-step-line {
    width: auto;
    height: 2px;
    min-height: unset;
    flex: 1;
    margin: 0 0 0 6px;
  }

  .is-relaunch .pw-step--last .pw-step-line,
  .is-relaunch .pw-steps > .pw-step:nth-child(even) .pw-step-line {
    display: none;
  }

  .is-relaunch .pw-step-content {
    padding-bottom: 0;
  }

  .is-relaunch .pw-step-content h3 {
    padding-top: 0;
  }
}

/* Highlight-Band Dark-Card Overrides (Hausarztprogramm-Sektion) */
.is-relaunch .pw-subtitle-light { color: var(--accent) !important; }
.is-relaunch .pw-title-light    { color: var(--white) !important; }
.is-relaunch .pw-desc-light     { color: rgba(255,255,255,0.80) !important; }

.is-relaunch .pw-dark-card {
  background: var(--white) !important;
  border-color: var(--gray-200) !important;
}

.is-relaunch .pw-dark-card:hover {
  background: var(--white) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.is-relaunch .pw-dark-icon {
  background: var(--green-100) !important;
}

.is-relaunch .pw-dark-icon svg {
  stroke: var(--green-800) !important;
}

.is-relaunch .pw-dark-heading { color: var(--gray-950) !important; }
.is-relaunch .pw-dark-text    { color: var(--gray-600) !important; }

/* CTA-Section (patient-werden: Light-Pattern) */
.is-relaunch .pw-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.is-relaunch .pw-cta-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.is-relaunch .pw-cta-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.is-relaunch .pw-cta-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-950);
  margin: 0;
}

.is-relaunch .pw-cta-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.is-relaunch .pw-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.is-relaunch .pw-cta-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 1.5;
}

.is-relaunch .pw-cta-icon--coral { background: var(--accent-light); }
.is-relaunch .pw-cta-icon--coral svg { stroke: var(--accent); }
.is-relaunch .pw-cta-icon--green { background: var(--green-100); }
.is-relaunch .pw-cta-icon--green svg { stroke: var(--green-800); }


/* ── Responsive ──────────────────────────────────────────────────────────────*/
@media (max-width: 1024px) {
  .is-relaunch .hero {
    min-height: 400px;
  }

  .is-relaunch .hero-bg::after {
    background: linear-gradient(
      to right,
      rgba(255,255,255,1)   0%,
      rgba(255,255,255,0.95) 35%,
      rgba(255,255,255,0.8)  60%,
      rgba(255,255,255,0.5)  100%
    ) !important;
  }

  .is-relaunch .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }

  .is-relaunch .values-grid {
    grid-template-columns: 1fr;
  }

  .is-relaunch .cta-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .is-relaunch .pw-cta-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .is-relaunch .hero .container {
    padding-right: clamp(24px, 4vw, 80px) !important;
  }

  .is-relaunch .hero-content {
    max-width: 100% !important;
    padding: 112px 0 60px !important;
  }

  .is-relaunch .hero h1 {
    max-width: 100% !important;
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .is-relaunch .hero-sub {
    max-width: 100% !important;
  }

  .is-relaunch .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .is-relaunch .hero {
    min-height: 360px;
  }

  .is-relaunch .hero-content {
    padding: 112px 0 48px;
  }

  .is-relaunch .hero-bg::after {
    background: rgba(255,255,255,0.85) !important;
  }

  .is-relaunch .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .is-relaunch .pw-step-content h3 {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-relaunch * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
