/* ==========================================================================
   Praxis Anneken & Stier - Stylesheet
   Statische Website | DSGVO-konform | Barrierearm
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Brand Colors */
  --praxis-gruen: #18a85e;
  --praxis-gruen-dark: #148a4d;
  --praxis-gruen-light: #e8f5ef;
  --praxis-lila: #95539b;
  --praxis-lila-light: #f5eef6;
  --praxis-rot: #ff4d4d;

  /* Text Colors */
  --text-primary: #1f1f1f;
  --text-secondary: rgba(0, 0, 0, 0.72);
  --text-muted: rgba(0, 0, 0, 0.55);
  --text-inverse: #ffffff;

  /* Background Colors */
  --bg-white: #ffffff;
  --bg-subtle: #f6fbf8;
  --bg-muted: #f0f4f2;

  /* Border & Shadow */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                "Helvetica Neue", Arial, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;

  --h1: clamp(2rem, 4vw, 2.75rem);
  --h2: clamp(1.5rem, 3vw, 2rem);
  --h3: clamp(1.25rem, 2.5vw, 1.5rem);
  --h4: 1.125rem;

  --line-height-tight: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1140px;
  --container-narrow: 720px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;

  /* Header */
  --header-height: 80px;
}

/* ==========================================================================
   2. CSS Reset / Normalize
   ========================================================================== */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-stack);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-primary);
  background-color: var(--bg-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: var(--praxis-gruen);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--praxis-lila);
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--line-height-tight);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   3. Utility Classes
   ========================================================================== */

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--praxis-gruen);
  color: var(--text-inverse);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  z-index: var(--z-modal);
  font-weight: var(--font-medium);
}

.skip-link:focus {
  top: var(--space-md);
  color: var(--text-inverse);
  outline: 2px solid var(--text-inverse);
  outline-offset: 2px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Section Spacing */
.section {
  padding-block: var(--space-3xl);
  scroll-margin-top: var(--header-height);
}

/* Less scroll margin for bottom service sections - scroll further down */
#schulungen,
#tauglichkeit,
#igel {
  scroll-margin-top: calc(var(--header-height) - var(--space-2xl));
}

.section--large {
  padding-block: var(--space-4xl);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ==========================================================================
   4. Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--bg-white);
  box-shadow: 0 1px 0 var(--border-light);
  transition: box-shadow var(--transition-normal);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding-block: var(--space-sm);
}

.logo:hover,
.logo:focus {
  opacity: 0.88;
}

.logo__image {
  height: 58px;
  width: auto;
}

/* Desktop Navigation */
.main-nav {
  display: none;
}

@media (min-width: 992px) {
  .main-nav {
    display: block;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
  }

  .nav-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background-color var(--transition-fast);
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: var(--space-md);
    right: var(--space-md);
    height: 2px;
    background: var(--praxis-gruen);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--praxis-gruen);
    background-color: var(--praxis-gruen-light);
  }

  .nav-link:hover::after,
  .nav-link:focus::after,
  .nav-link[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .nav-link[aria-current="page"] {
    color: var(--praxis-gruen);
  }
}

/* Mobile Menu Button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.menu-toggle:hover,
.menu-toggle:focus {
  background-color: var(--bg-muted);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--praxis-gruen);
  outline-offset: 2px;
}

.menu-toggle__icon {
  width: 24px;
  height: 24px;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  padding: var(--space-lg);
  z-index: var(--z-overlay);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-md);
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus {
  background-color: var(--praxis-gruen-light);
  color: var(--praxis-gruen);
}

.mobile-nav__link[aria-current="page"] {
  color: var(--praxis-gruen);
  background-color: var(--praxis-gruen-light);
}

@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Hero with Background Image */
.hero--image {
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  background-image: url('../assets/hero.png');
  background-size: cover;
  background-position: center;
  padding-block: var(--space-4xl);
}

.hero--image .hero__content {
  margin-top: 8vh;
}

.hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

.hero--image .hero__title,
.hero--image .hero__subtitle {
  color: var(--text-inverse);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .hero--image {
    min-height: 75vh;
  }

  .hero__subtitle {
    font-size: var(--text-xl);
  }
}

@media (max-width: 767px) {
  .hero--image {
    min-height: 60vh;
    padding-block: var(--space-3xl);
  }
}

/* ==========================================================================
   6. Sprechzeiten Box
   ========================================================================== */

.sprechzeiten {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  max-width: 500px;
}

.sprechzeiten--highlight {
  border-left: 4px solid var(--praxis-gruen);
}

.sprechzeiten__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.sprechzeiten__icon {
  width: 32px;
  height: 32px;
  color: var(--praxis-gruen);
  flex-shrink: 0;
}

.sprechzeiten__title {
  font-size: var(--h3);
  color: var(--text-primary);
}

.sprechzeiten__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.sprechzeiten__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

.sprechzeiten__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sprechzeiten__day {
  font-weight: var(--font-medium);
  color: var(--text-primary);
}

.sprechzeiten__time {
  color: var(--text-secondary);
  text-align: right;
}

.sprechzeiten__phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--praxis-gruen-light);
  border-radius: var(--radius-md);
  color: var(--praxis-gruen);
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
  transition: background-color var(--transition-fast);
}

.sprechzeiten__phone:hover,
.sprechzeiten__phone:focus {
  background: var(--praxis-gruen);
  color: var(--text-inverse);
}

.sprechzeiten__phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Sprechzeiten Bar (compact horizontal version) */
.sprechzeiten-bar {
  background: var(--praxis-gruen);
  color: var(--text-inverse);
  padding-block: var(--space-md);
}

.sprechzeiten-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.sprechzeiten-bar__times {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-sm) var(--space-md);
}

.sprechzeiten-bar__label {
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
}

.sprechzeiten-bar__value {
  font-size: var(--text-sm);
  opacity: 0.9;
}

.sprechzeiten-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-inverse);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  transition: background-color var(--transition-fast);
}

.sprechzeiten-bar__phone:hover,
.sprechzeiten-bar__phone:focus {
  background: rgba(255, 255, 255, 0.25);
  color: var(--text-inverse);
}

.sprechzeiten-bar__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .sprechzeiten-bar {
    padding-block: var(--space-lg);
  }

  .sprechzeiten-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .sprechzeiten-bar__times {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .sprechzeiten-bar__phone {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   7. Section Titles
   ========================================================================== */

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header--center {
  text-align: center;
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--praxis-gruen);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--praxis-gruen-light);
  border-radius: var(--radius-full);
}

.section-eyebrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* When eyebrow is used as the main heading (h2) */
h2.section-eyebrow {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

h2.section-eyebrow svg {
  width: 16px;
  height: 16px;
}

/* Light variant for use on green backgrounds (page-hero) */
.section-eyebrow--light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-inverse);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-description {
  color: var(--text-secondary);
  font-size: var(--text-lg);
}

.section-intro {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ==========================================================================
   8. Cards
   ========================================================================== */

.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-gruen-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--praxis-gruen);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__title {
  font-size: var(--h4);
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

/* ==========================================================================
   9. Team Section
   ========================================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.team-card {
  text-align: center;
}

.team-card__image-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--praxis-gruen-light);
  transition: border-color var(--transition-normal);
}

.team-card:hover .team-card__image-wrapper {
  border-color: var(--praxis-gruen);
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* ==========================================================================
   10. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--praxis-gruen);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--praxis-gruen);
  color: var(--text-inverse);
  border-color: var(--praxis-gruen);
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--praxis-gruen-dark);
  border-color: var(--praxis-gruen-dark);
  color: var(--text-inverse);
}

.btn--secondary {
  background: transparent;
  color: var(--praxis-gruen);
  border-color: var(--praxis-gruen);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background: var(--praxis-gruen);
  color: var(--text-inverse);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: var(--space-sm) var(--space-md);
}

.btn--ghost:hover,
.btn--ghost:focus {
  color: var(--praxis-gruen);
  background: var(--praxis-gruen-light);
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Light button variants (for dark backgrounds) */
.btn--primary-light {
  background: var(--text-inverse);
  color: var(--praxis-gruen);
  border-color: var(--text-inverse);
}

.btn--primary-light:hover,
.btn--primary-light:focus {
  background: var(--praxis-gruen-light);
  border-color: var(--praxis-gruen-light);
  color: var(--praxis-gruen-dark);
}

.btn--outline-light {
  background: transparent;
  color: var(--text-inverse);
  border-color: var(--text-inverse);
}

.btn--outline-light:hover,
.btn--outline-light:focus {
  background: var(--text-inverse);
  color: var(--praxis-gruen);
}

/* ==========================================================================
   11. Forms
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: var(--font-medium);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.form-label--required::after {
  content: ' *';
  color: var(--praxis-rot);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  font-size: var(--text-base);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--praxis-gruen);
  box-shadow: 0 0 0 3px rgba(24, 168, 94, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--praxis-gruen);
  flex-shrink: 0;
}

.form-hint {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.form-error {
  font-size: var(--text-sm);
  color: var(--praxis-rot);
  margin-top: var(--space-xs);
}

/* ==========================================================================
   12. Contact Info
   ========================================================================== */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-gruen-light);
  border-radius: var(--radius-md);
  color: var(--praxis-gruen);
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.contact-item__value {
  font-weight: var(--font-medium);
  color: var(--text-primary);
}

.contact-item__value a {
  color: var(--text-primary);
}

.contact-item__value a:hover,
.contact-item__value a:focus {
  color: var(--praxis-gruen);
}

/* ==========================================================================
   13. Footer - Ruhiger, heller Seitenabschluss
   ========================================================================== */

.site-footer {
  background: var(--bg-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-block: var(--space-xl) var(--space-lg);
  margin-top: auto;
  text-align: center;
}

/* Kontaktzeile: Adresse + Telefon */
.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.footer-contact-line address {
  font-style: normal;
}

.footer-separator {
  color: var(--text-muted);
  user-select: none;
}

.footer-contact-line a {
  color: var(--text-primary);
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
}

.footer-contact-line a:hover,
.footer-contact-line a:focus {
  color: var(--praxis-gruen);
}

/* Navigation horizontal */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs) var(--space-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
  padding: var(--space-xs) 0;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--praxis-gruen);
}

/* Footer Bottom: Copyright + Legal */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-legal::before {
  content: "|";
  color: var(--text-muted);
  margin-right: var(--space-sm);
}

.footer-legal a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal a:hover,
.footer-legal a:focus {
  color: var(--text-primary);
}

/* ==========================================================================
   14. Leistungen Page Styles
   ========================================================================== */

/* Leistungen Overview Grid */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

@media (min-width: 992px) {
  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Leistung Card (Overview) */
.leistung-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.leistung-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.leistung-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.leistung-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-subtle);
}

.leistung-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.leistung-card:hover .leistung-card__image img {
  transform: scale(1.03);
}

.leistung-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.leistung-card__title {
  font-size: var(--h4);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.leistung-card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.leistung-card__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--praxis-gruen);
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  margin-top: auto;
}

.leistung-card__more::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.leistung-card:hover .leistung-card__more::after {
  transform: translateX(4px);
}

/* Section Note */
.section-note {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--praxis-gruen);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.section-note a {
  color: var(--praxis-gruen);
  text-decoration: underline;
}

/* Vorsorge Grid */
.vorsorge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.vorsorge-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
}

.vorsorge-item__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-md);
  color: var(--praxis-gruen);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.vorsorge-item__title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--praxis-gruen);
  border-radius: 50%;
  flex-shrink: 0;
}

.vorsorge-item__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.vorsorge-item__list li {
  padding-left: var(--space-md);
  position: relative;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.vorsorge-item__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--praxis-lila);
}

/* Diagnostik Grid */
.diagnostik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

@media (min-width: 992px) {
  .diagnostik-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diagnostik-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.diagnostik-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.diagnostik-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-subtle);
}

.diagnostik-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diagnostik-card__content {
  padding: var(--space-lg);
}

.diagnostik-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.diagnostik-card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* Therapie Layout (WordPress Style) */
.therapie-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .therapie-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.therapie-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.therapie-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.therapie-image img {
  width: 100%;
  height: auto;
  display: block;
}

.therapie-highlight-box {
  background: var(--praxis-lila-light);
  border-left: 4px solid var(--praxis-lila);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.therapie-highlight-box__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--praxis-lila);
  margin-bottom: var(--space-xs);
}

.therapie-highlight-box__subtitle {
  font-size: var(--text-sm);
  color: var(--praxis-lila);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.therapie-highlight-box__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
}

.therapie-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.therapie-list-item {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.therapie-list-item:last-child {
  border-bottom: none;
}

.therapie-list-item__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.therapie-list-item__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
}

/* Schulungen Section (WordPress Style) */
.schulungen-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .schulungen-layout {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}

.schulungen-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schulungen-image img {
  width: 100%;
  height: auto;
  display: block;
}

.schulungen-content-area {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.schulungen-intro {
  max-width: 100%;
}

.schulungen-intro h3 {
  font-size: var(--h3);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.schulungen-intro p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.schulungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.schulungen-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
}

.schulungen-box h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-md);
  color: var(--praxis-gruen);
}

.schulungen-box ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.schulungen-box li {
  padding-left: var(--space-md);
  position: relative;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.schulungen-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--praxis-gruen);
  font-weight: var(--font-bold);
}

/* Tauglichkeit Layout (WordPress Style with Accordion) */
.tauglichkeit-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .tauglichkeit-layout {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}

.tauglichkeit-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tauglichkeit-image img {
  width: 100%;
  height: auto;
  display: block;
}

.tauglichkeit-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Generic Accordion Item (reusable) */
.accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  font-weight: var(--font-medium);
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: background-color var(--transition-fast);
}

.accordion-item__header::-webkit-details-marker {
  display: none;
}

.accordion-item__header::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--praxis-lila);
  transition: transform var(--transition-fast);
}

.accordion-item[open] .accordion-item__header::after {
  content: '−';
}

.accordion-item__header:hover {
  background: var(--bg-subtle);
}

.accordion-item__content {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
}

.accordion-item__content p {
  margin: 0 0 var(--space-sm) 0;
}

.accordion-item__content p:last-child {
  margin-bottom: 0;
}

.accordion-item__content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin: var(--space-sm) 0;
}

.accordion-item__content li {
  margin-bottom: var(--space-xs);
}

/* Privacy Accordion */
.privacy-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Section Title Purple Variant */
.section-title--lila {
  color: var(--praxis-lila);
}

.tauglichkeit-item__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.tauglichkeit-item__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* Kosten Hinweis Box */
.kosten-hinweis {
  margin-top: var(--space-xl);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--praxis-lila);
}

.kosten-hinweis h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-md);
  color: var(--praxis-lila);
}

.kosten-hinweis p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.kosten-hinweis ul {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.kosten-hinweis li {
  padding-left: var(--space-md);
  position: relative;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.kosten-hinweis li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--praxis-lila);
}

/* IGeL Grid */
.igel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: stretch;
}

@media (min-width: 992px) {
  .igel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.igel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.igel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.igel-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-subtle);
}

.igel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.igel-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-lg);
}

.igel-card__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.igel-card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  min-height: 100px;
}

.igel-card__bottom {
  margin-top: auto;
  min-height: 70px;
}

.igel-card__price {
  align-self: flex-start;
  display: inline-block;
  margin-left: -2px;
  padding: var(--space-xs) var(--space-sm);
  background: var(--praxis-gruen-light);
  color: var(--praxis-gruen);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  border-radius: var(--radius-sm);
}

/* IGeL Grid Large (2 columns) */
.igel-grid--large {
  margin-top: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 768px) {
  .igel-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
}

.igel-card--large .igel-card__image {
  aspect-ratio: 4 / 3;
}

.igel-card--large .igel-card__text {
  min-height: 50px;
}

/* IGeL Simple Grid (text only) */
.igel-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 992px) {
  .igel-simple-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.igel-simple-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
}

.igel-simple-item__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-sm);
  color: var(--praxis-gruen);
}

.igel-simple-item__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin: 0;
}

/* IGeL FAQ Accordion */
.igel-faq {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  font-weight: var(--font-medium);
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: background-color var(--transition-fast);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--praxis-gruen);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-item__question::after {
  content: '−';
}

.faq-item__question:hover {
  background: var(--bg-subtle);
}

.faq-item__answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.faq-item__answer p {
  margin: 0;
}

/* IGeL Disclaimer */
.igel-disclaimer {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: var(--text-sm);
  text-align: center;
}

/* IGeL Clickable Card */
.igel-card--clickable {
  cursor: pointer;
}

.igel-card--clickable:focus-visible {
  outline: 2px solid var(--praxis-gruen);
  outline-offset: 2px;
}

.igel-card__more {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--praxis-gruen);
  font-weight: var(--font-medium);
}

.igel-card--clickable:hover .igel-card__more {
  text-decoration: underline;
}

/* IGeL Modal */
.igel-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.igel-modal[hidden] {
  display: none;
}

.igel-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.igel-modal__container {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.25s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.igel-modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-subtle);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-fast);
  z-index: 1;
}

.igel-modal__close:hover {
  background: var(--bg-muted);
}

.igel-modal__close:focus-visible {
  outline: 2px solid var(--praxis-gruen);
  outline-offset: 2px;
}

.igel-modal__close svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.igel-modal__header {
  padding: var(--space-xl) var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.igel-modal__title {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--praxis-gruen);
  margin: 0;
}

.igel-modal__subtitle {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: var(--space-xs) 0 0;
}

.igel-modal__content {
  padding: var(--space-lg) var(--space-xl);
  overflow-y: auto;
  flex: 1;
}

.igel-modal__section {
  margin-bottom: var(--space-lg);
}

.igel-modal__section:last-child {
  margin-bottom: 0;
}

.igel-modal__section h3 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin: 0 0 var(--space-sm);
}

.igel-modal__section p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.igel-modal__section ul,
.igel-modal__section ol {
  margin: 0;
  padding-left: var(--space-lg);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.igel-modal__section li {
  margin-bottom: var(--space-xs);
}

.igel-modal__steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.igel-modal__steps li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-sm);
  counter-increment: step;
}

.igel-modal__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--praxis-gruen);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.igel-modal__infobox {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.igel-modal__infobox h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin: 0 0 var(--space-xs);
}

.igel-modal__infobox p,
.igel-modal__infobox ul {
  font-size: var(--text-sm);
  margin: 0;
  color: var(--text-secondary);
}

.igel-modal__infobox ul {
  padding-left: var(--space-md);
}

.igel-modal__infobox--warning {
  background: #fff8e6;
  border-left: 3px solid #f5a623;
}

.igel-modal__infobox--warning h4 {
  color: #d48806;
}

.igel-modal__infobox--hint {
  background: var(--praxis-lila-light);
  border-left: 3px solid var(--praxis-lila);
}

.igel-modal__infobox--hint h4 {
  color: var(--praxis-lila);
}

.igel-modal__footer {
  padding: var(--space-lg) var(--space-xl);
  background: var(--praxis-gruen-light);
  text-align: center;
}

.igel-modal__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.igel-modal__price-label {
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.igel-modal__price-value {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--praxis-gruen);
}

.igel-modal__price-info {
  width: 100%;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.igel-modal__cta {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--praxis-gruen-dark);
  margin: 0;
}

/* Mobile: Modal fullscreen */
@media (max-width: 767px) {
  .igel-modal {
    padding: 0;
  }

  .igel-modal__container {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }

  .igel-modal__content {
    padding: var(--space-md);
  }

  .igel-modal__header {
    padding: var(--space-lg) var(--space-md) var(--space-sm);
  }

  .igel-modal__footer {
    padding: var(--space-md);
  }
}

/* CTA Cards */
.cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.cta-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-gruen-light);
  border-radius: 50%;
  color: var(--praxis-gruen);
  margin-bottom: var(--space-md);
}

.cta-card__icon svg {
  width: 28px;
  height: 28px;
}

.cta-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.cta-card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.cta-card__value {
  color: var(--praxis-gruen);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
}

/* White Button Variants (for green backgrounds) */
.btn--white {
  background: var(--text-inverse);
  color: var(--praxis-gruen);
  border-color: var(--text-inverse);
}

.btn--white:hover,
.btn--white:focus {
  background: var(--praxis-gruen-light);
  border-color: var(--praxis-gruen-light);
  color: var(--praxis-gruen-dark);
}

.btn--outline-white {
  background: transparent;
  color: var(--text-inverse);
  border-color: var(--text-inverse);
}

.btn--outline-white:hover,
.btn--outline-white:focus {
  background: var(--text-inverse);
  color: var(--praxis-gruen);
}

/* ==========================================================================
   15. Page-Specific Styles
   ========================================================================== */

/* About/Praxis Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-section {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-content {
  max-width: 500px;
}

/* Services/Leistungen Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

/* Contact Page Split */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr 1fr;
  }
}

/* Map Placeholder */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-muted);
  aspect-ratio: 16 / 9;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   15. Focus & Accessibility
   ========================================================================== */

:focus-visible {
  outline: 2px solid var(--praxis-gruen);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border-light: rgba(0, 0, 0, 0.2);
    --border-medium: rgba(0, 0, 0, 0.4);
  }
}

/* ==========================================================================
   Home Page - WordPress Match Styles
   ========================================================================== */

/* Sprechzeiten Section */
.sprechzeiten-section {
  background: var(--bg-subtle);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.sprechzeiten-content {
  max-width: 600px;
  margin: var(--space-xl) auto 0;
}

.sprechzeiten-content p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.sprechzeiten-content a {
  color: var(--praxis-gruen);
  text-decoration: underline;
}

.sprechzeiten-akut {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

/* Section Title Centered */
.section-title--center {
  text-align: center;
  margin-bottom: var(--space-lg);
}

/* About Section Centered Layout */
.about-section--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

.about-content--wide {
  max-width: 800px;
}

.about-image--centered {
  width: 100%;
  max-width: 700px;
}

.about-image--centered img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Akademische Praxis Section */
.akademisch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .akademisch-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    text-align: left;
  }
}

.akademisch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.akademisch-card a {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  margin-bottom: var(--space-md);
}

.akademisch-card a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.akademisch-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  cursor: zoom-in;
}

@media (min-width: 768px) {
  .akademisch-card img {
    max-width: 100%;
  }
}

/* Mobile: Kleinere Bilder und mehr Abstand zur Beschriftung */
@media (max-width: 767px) {
  .akademisch-card img {
    max-width: 140px;
  }

  .akademisch-card a {
    margin-bottom: var(--space-md);
  }
}

.akademisch-card h3 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--praxis-gruen);
  margin-bottom: var(--space-xs);
}

.akademisch-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}

.akademisch-text {
  padding: var(--space-lg);
}

.akademisch-text p {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.akademisch-text .btn {
  margin-top: var(--space-sm);
}

@media (min-width: 768px) {
  .akademisch-text {
    text-align: center;
  }
}

/* Section subtle background */
.section--subtle {
  background: var(--bg-subtle);
}

/* Home Leistungen Grid (3 cards) */
.home-leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: var(--space-2xl) auto 0;
}

@media (min-width: 768px) {
  .home-leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-leistung-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.home-leistung-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.home-leistung-card__icon {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.home-leistung-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-leistung-card__title {
  font-size: var(--h3);
  font-weight: var(--font-semibold);
  color: var(--praxis-gruen);
  margin-bottom: var(--space-md);
}

.home-leistung-card__text {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

/* ==========================================================================
   Team Page - WordPress Match Styles
   ========================================================================== */

/* Team Hero */
.team-hero {
  padding: var(--space-2xl) 0;
}

.team-hero__image {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.team-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-hero__content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

/* Doctor Cards (horizontal layout) */
.team-doctors-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
}

.doctor-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.doctor-card__image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.doctor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card__info {
  flex: 1;
}

.doctor-card__name {
  font-size: var(--h4);
  font-weight: var(--font-semibold);
  color: var(--praxis-gruen);
  margin-bottom: var(--space-sm);
}

.doctor-card__role {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 480px) {
  .doctor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ==========================================================================
   Ärzte-Übersicht
   ========================================================================== */

.doctors-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md) var(--space-lg);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.doctor-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.doctor-featured__image {
  width: 180px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  background: var(--bg-muted);
  transition: transform var(--transition-slow);
}

.doctor-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-featured:hover .doctor-featured__image {
  transform: scale(1.05);
}

.doctor-featured__image--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--bg-muted);
}

.doctor-featured__image--placeholder span {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.02em;
}

.doctor-featured__content {
  text-align: center;
}

.doctor-featured__name {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--praxis-gruen);
  margin-bottom: 2px;
}

.doctor-featured__role {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-normal);
}

.doctor-featured__specialties {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.4);
  margin-top: var(--space-xs);
  line-height: var(--line-height-normal);
}

@media (max-width: 700px) {
  .doctors-featured {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: var(--space-sm);
  }

  .doctor-featured__image {
    width: 165px;
  }

  .doctor-featured {
    padding: var(--space-sm) var(--space-sm) var(--space-md);
  }
}

/* Section Title with Emoji */
.section-title--emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.emoji-icon {
  font-size: 1.5em;
}

/* Section Description Centered */
.section-description--center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

/* ==========================================================================
   Kontakt Page - WordPress Match Styles
   ========================================================================== */

.kontakt-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.kontakt-map-wrapper {
  margin: var(--space-xl) auto;
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9;
}

.kontakt-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.kontakt-map-link {
  text-align: right;
  max-width: 800px;
  margin: var(--space-sm) auto var(--space-2xl);
  font-size: var(--text-sm);
}

.kontakt-map-link a {
  color: var(--praxis-gruen);
}

.kontakt-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.kontakt-form .form-input,
.kontakt-form .form-textarea {
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: var(--text-base);
}

.kontakt-form .form-input::placeholder,
.kontakt-form .form-textarea::placeholder {
  color: var(--text-muted);
}

/* Praxis Info Card auf Kontaktseite */
.kontakt-info-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

@media (min-width: 600px) {
  .kontakt-info-card {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.kontakt-info-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.kontakt-info-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kontakt-info-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kontakt-info-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--praxis-gruen);
  margin-bottom: var(--space-sm);
}

.kontakt-info-card__address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.kontakt-info-card__address p {
  margin: 0;
}

.kontakt-info-card__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--praxis-gruen);
  font-weight: 600;
  font-size: var(--text-lg);
  text-decoration: none;
  transition: color 0.2s ease;
}

.kontakt-info-card__phone:hover {
  color: var(--praxis-lila);
}

.kontakt-info-card__phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Page Hero - Clean Header for Subpages
   ========================================================================== */

.page-hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.page-hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow - decorative label above title */
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--praxis-gruen);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--praxis-gruen-light);
  border-radius: var(--radius-full);
}

.page-hero__eyebrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.page-hero__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}

.page-hero__text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.page-hero__text:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .page-hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
  }

  .page-hero__text {
    font-size: var(--text-xl);
  }
}

/* ==========================================================================
   16. News/Aktuelles Page Styles
   ========================================================================== */

/* Important Alert Banner (for closures, urgent info) */
.news-alert {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  border: 2px solid var(--praxis-rot);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.news-alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--praxis-rot);
}

.news-alert__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--praxis-rot);
  color: var(--text-inverse);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.news-alert__badge svg {
  width: 14px;
  height: 14px;
}

.news-alert__title {
  font-size: var(--h3);
  font-weight: var(--font-bold);
  color: #c53030;
  margin-bottom: var(--space-sm);
}

.news-alert__content {
  color: var(--text-primary);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
}

.news-alert__content p {
  margin-bottom: var(--space-sm);
}

.news-alert__content p:last-child {
  margin-bottom: 0;
}

.news-alert__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(197, 48, 48, 0.2);
  color: #c53030;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.news-alert__meta svg {
  width: 16px;
  height: 16px;
}

/* Vertretung Info Box inside Alert */
.news-alert__vertretung {
  margin-top: var(--space-lg);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.news-alert__vertretung-title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.news-alert__vertretung-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}

.news-alert__vertretung-name {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.news-alert__vertretung-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--praxis-gruen);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
}

.news-alert__vertretung-phone svg {
  width: 16px;
  height: 16px;
}

/* News Timeline */
.news-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* News Card */
.news-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
  .news-card {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* News Card Date Column */
.news-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  padding: var(--space-sm);
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  text-align: center;
}

.news-card__date-day {
  font-size: var(--h2);
  font-weight: var(--font-bold);
  line-height: 1;
  color: var(--praxis-gruen);
}

.news-card__date-month {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card__date-year {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .news-card__date {
    flex-direction: row;
    gap: var(--space-sm);
    width: fit-content;
    padding: var(--space-xs) var(--space-md);
  }

  .news-card__date-day {
    font-size: var(--text-lg);
  }
}

/* News Card Content */
.news-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.news-card__category {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  width: fit-content;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Category Colors */
.news-card__category--impfung {
  background: var(--praxis-lila-light);
  color: var(--praxis-lila);
}

.news-card__category--hinweis {
  background: rgba(255, 77, 77, 0.1);
  color: var(--praxis-rot);
}

.news-card__category--info {
  background: var(--praxis-gruen-light);
  color: var(--praxis-gruen);
}

.news-card__category--vorsorge {
  background: #e0f2fe;
  color: #0369a1;
}

.news-card__category--team {
  background: #fef3c7;
  color: #b45309;
}

.news-card__category svg {
  width: 12px;
  height: 12px;
}

.news-card__title {
  font-size: var(--h4);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  line-height: var(--line-height-tight);
}

.news-card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
}

.news-card__text p {
  margin-bottom: var(--space-sm);
}

.news-card__text p:last-child {
  margin-bottom: 0;
}

/* Featured News Card (with image placeholder) */
.news-card--featured .news-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.news-card__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  background: var(--bg-subtle);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.news-card__image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

/* News Card with Image Layout */
.news-card--with-image .news-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .news-card--with-image .news-card__body {
    flex-direction: row;
    align-items: flex-start;
  }

  .news-card--with-image .news-card__content {
    flex: 1;
  }
}

/* News Card Portrait Image */
.news-card__portrait {
  flex-shrink: 0;
  width: 100%;
  max-width: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .news-card__portrait {
    width: 240px;
  }
}

.news-card__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* Jobs Section */
.jobs-section {
  background: linear-gradient(135deg, var(--praxis-gruen-light) 0%, var(--bg-white) 100%);
}

.jobs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .jobs-card {
    flex-direction: row;
    text-align: left;
    padding: var(--space-2xl) var(--space-3xl);
  }
}

.jobs-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--praxis-gruen-light);
  border-radius: 50%;
  color: var(--praxis-gruen);
}

.jobs-card__icon svg {
  width: 40px;
  height: 40px;
}

.jobs-card__content {
  flex: 1;
}

.jobs-card__title {
  font-size: var(--h3);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.jobs-card__status {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .jobs-card__status {
    display: inline-flex;
  }
}

.jobs-card__status svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.jobs-card__status--none {
  background: var(--praxis-gruen-light);
  color: var(--praxis-gruen-dark);
}

.jobs-card__status--open {
  background: #fef3c7;
  color: #b45309;
}

.jobs-card__text {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

/* News Section Header */
.news-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.news-section-title {
  font-size: var(--h3);
  color: var(--text-primary);
}

/* News Filter (optional future enhancement) */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.news-filter__btn {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  background: var(--bg-muted);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.news-filter__btn:hover,
.news-filter__btn.is-active {
  background: var(--praxis-gruen);
  color: var(--text-inverse);
}

/* Pinned/Sticky News */
.news-card--pinned {
  border-color: var(--praxis-gruen);
  border-width: 2px;
  position: relative;
}

.news-card--pinned::before {
  content: '';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 20px;
  height: 20px;
  background: var(--praxis-gruen);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 2L12 12'/%3E%3Cpath d='M18.5 8.5L12 12L5.5 8.5'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  mask-size: contain;
}

/* Empty State */
.news-empty {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--text-muted);
}

.news-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  color: var(--border-medium);
}

/* Archive Link */
.news-archive-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.news-archive-link:hover {
  background: var(--praxis-gruen-light);
  color: var(--praxis-gruen);
}

/* Homepage Alert Banner (compact version for startpage) */
.homepage-alert {
  background: linear-gradient(90deg, #c53030 0%, #e53e3e 100%);
  color: var(--text-inverse);
  padding: var(--space-sm) 0;
  position: relative;
  overflow: hidden;
}

.homepage-alert__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  text-align: center;
}

.homepage-alert__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.homepage-alert__icon svg {
  width: 20px;
  height: 20px;
}

.homepage-alert__content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.homepage-alert__label {
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.homepage-alert__text {
  font-size: var(--text-sm);
  opacity: 0.95;
}

.homepage-alert__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-inverse);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.homepage-alert__link:hover,
.homepage-alert__link:focus {
  background: rgba(255, 255, 255, 0.35);
  color: var(--text-inverse);
}

.homepage-alert__link svg {
  width: 12px;
  height: 12px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .homepage-alert {
    padding: var(--space-md) 0;
  }

  .homepage-alert__inner {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .homepage-alert__icon {
    display: none;
  }
}

/* ==========================================================================
   17. Rezept Page Styles
   ========================================================================== */

/* Rezept Layout - Two Column */
.rezept-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 992px) {
  .rezept-layout {
    grid-template-columns: 340px 1fr;
    gap: var(--space-3xl);
  }
}

/* Rezept Info Sidebar */
.rezept-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 992px) {
  .rezept-info {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
    align-self: start;
  }
}

.rezept-info__card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.rezept-info__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.rezept-info__icon {
  width: 24px;
  height: 24px;
  color: var(--praxis-gruen);
  flex-shrink: 0;
}

.rezept-info__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin: 0;
}

.rezept-info__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rezept-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.rezept-info__item svg {
  width: 20px;
  height: 20px;
  color: var(--praxis-gruen);
  flex-shrink: 0;
  margin-top: 2px;
}

.rezept-info__item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rezept-info__item strong {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.rezept-info__item span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--line-height-normal);
}

.rezept-info__note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 77, 77, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--praxis-rot);
}

.rezept-info__note svg {
  width: 20px;
  height: 20px;
  color: var(--praxis-rot);
  flex-shrink: 0;
  margin-top: 2px;
}

.rezept-info__note p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.rezept-info__note strong {
  color: var(--text-primary);
}

.rezept-info__note a {
  color: var(--praxis-gruen);
  text-decoration: underline;
}

/* Rezept Form Wrapper */
.rezept-form-wrapper {
  max-width: 600px;
}

@media (min-width: 992px) {
  .rezept-form-wrapper {
    max-width: none;
  }
}

/* Rezept Form */
.rezept-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.rezept-form__section {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}

.rezept-form__section:last-child {
  border-bottom: none;
}

.rezept-form__section--submit {
  background: var(--bg-subtle);
}

.rezept-form__section-title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.rezept-form__section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--praxis-gruen);
  color: var(--text-inverse);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Form Row (side by side) */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Birthdate Input Group */
.birthdate-inputs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem;
}

.birthdate-input {
  width: 3rem;
  min-width: 3rem;
  flex: 0 0 auto;
  text-align: center;
  padding: var(--space-md) var(--space-xs);
  font-size: var(--text-base);
}

.birthdate-input--year {
  width: 4rem;
  min-width: 4rem;
}

.birthdate-separator {
  color: var(--text-muted);
  font-weight: 500;
  user-select: none;
  flex: 0 0 auto;
}

/* Button Large variant */
.btn--large {
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--text-lg);
}

.btn--large .btn__icon {
  width: 22px;
  height: 22px;
}

/* Button Small variant */
.btn--small {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

/* Form Disclaimer */
.rezept-form__disclaimer {
  margin-top: var(--space-md);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
}

/* Success Message */
.rezept-success {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.rezept-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-gruen-light);
  border-radius: 50%;
  color: var(--praxis-gruen);
}

.rezept-success__icon svg {
  width: 40px;
  height: 40px;
}

.rezept-success__title {
  font-size: var(--h3);
  font-weight: var(--font-semibold);
  color: var(--praxis-gruen);
  margin-bottom: var(--space-md);
}

.rezept-success__text {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Error Message */
.rezept-error {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.rezept-error__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 77, 0.1);
  border-radius: 50%;
  color: var(--praxis-rot);
}

.rezept-error__icon svg {
  width: 40px;
  height: 40px;
}

.rezept-error__title {
  font-size: var(--h3);
  font-weight: var(--font-semibold);
  color: var(--praxis-rot);
  margin-bottom: var(--space-md);
}

.rezept-error__text {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.rezept-error__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* Alternative Section */
.rezept-alternative {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .rezept-alternative {
    flex-direction: row;
    text-align: left;
    max-width: none;
    justify-content: space-between;
  }
}

.rezept-alternative__title {
  font-size: var(--h3);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.rezept-alternative__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin: 0;
}

/* ==========================================================================
   18. Termine Page Components
   ========================================================================== */

/* Termin Choice Grid */
.termin-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .termin-choice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.termin-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 2px solid var(--border-light);
  transition: all var(--transition-base);
}

.termin-choice:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.termin-choice--featured {
  border-color: var(--praxis-gruen);
  background: linear-gradient(to bottom, var(--praxis-gruen-light) 0%, var(--bg-white) 100%);
}

.termin-choice--featured:hover {
  border-color: var(--praxis-gruen-dark);
}

.termin-choice__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--praxis-gruen);
  color: var(--text-inverse);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.termin-choice__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-gruen-light);
  color: var(--praxis-gruen);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.termin-choice__icon svg {
  width: 28px;
  height: 28px;
}

.termin-choice__title {
  font-size: var(--h3);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.termin-choice__subtitle {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.termin-choice__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.termin-choice__list li {
  position: relative;
  padding-left: var(--space-lg);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.termin-choice__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--praxis-gruen);
  border-radius: 50%;
}

.termin-choice__hint {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.termin-choice__hint svg {
  width: 20px;
  height: 20px;
  color: var(--praxis-gruen);
  flex-shrink: 0;
}

/* Termin-Choice als klickbarer Link */
.termin-choice--link {
  text-decoration: none;
  cursor: pointer;
}

.termin-choice--link:hover {
  border-color: var(--praxis-gruen);
  box-shadow: var(--shadow-md);
}

.termin-choice--link:hover .termin-choice__title {
  color: var(--praxis-gruen);
}

/* Termin-Choice Hinweistext */
.termin-choice__note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

/* Info-Box Variante: Subtle */
.info-box--subtle {
  background: var(--bg-subtle);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--praxis-gruen);
}

.info-box--subtle .info-box__header {
  margin-bottom: var(--space-sm);
}

/* Header Phone - Desktop/Tablet: im Header, Mobile: sticky Button */
.header-phone {
  display: none; /* Standardmäßig versteckt, wird per Media Query aktiviert */
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--praxis-gruen);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header-phone__number {
  white-space: nowrap;
}

/* Tablet (768px - 991px): Im Header sichtbar */
@media (min-width: 768px) and (max-width: 991px) {
  .header-phone {
    display: flex;
    margin-left: auto;
    margin-right: var(--space-md);
  }
}

/* Desktop (ab 992px): Im Header sichtbar, rechts außen */
@media (min-width: 992px) {
  .header-phone {
    display: flex;
    margin-left: var(--space-lg);
  }
}

/* Mobile (unter 768px): Sticky Button unten rechts */
@media (max-width: 767px) {
  .header-phone {
    display: flex;
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-md);
    background: var(--praxis-gruen);
    color: var(--text-inverse);
    padding: var(--space-md);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .header-phone:hover,
  .header-phone:active {
    background: var(--praxis-gruen-dark);
    color: var(--text-inverse);
    transform: scale(1.05);
  }

  .header-phone svg {
    width: 24px;
    height: 24px;
  }

  .header-phone__number {
    /* Auf Mobile nur Icon zeigen */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
}

/* eGK Info Box */
.egk-info-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .egk-info-box {
    flex-direction: row;
    align-items: flex-start;
    padding: var(--space-2xl);
  }
}

.egk-info-box__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1565c0 0%, #7b1fa2 100%);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.egk-info-box__icon svg {
  width: 32px;
  height: 32px;
}

.egk-info-box__content {
  flex: 1;
}

.egk-info-box__title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--h3);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.egk-info-box__title svg {
  width: 24px;
  height: 24px;
  color: #f59e0b;
}

.egk-info-box__content > p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.egk-info-box__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.egk-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.egk-step__number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-gruen);
  color: var(--text-inverse);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  border-radius: 50%;
  flex-shrink: 0;
}

.egk-step__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* Booking Options */
.booking-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .booking-options {
    grid-template-columns: 1.2fr 1fr;
  }
}

.booking-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 2px solid var(--border-light);
  transition: all var(--transition-base);
}

.booking-option:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.booking-option--featured {
  border-color: var(--praxis-gruen);
  background: linear-gradient(to bottom, var(--praxis-gruen-light) 0%, var(--bg-white) 100%);
}

.booking-option--featured:hover {
  border-color: var(--praxis-gruen-dark);
}

.booking-option__badge {
  position: absolute;
  top: calc(-1 * var(--space-sm));
  left: 50%;
  transform: translateX(-50%);
  background: var(--praxis-gruen);
  color: var(--text-inverse);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.booking-option__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-gruen-light);
  color: var(--praxis-gruen);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.booking-option__icon svg {
  width: 32px;
  height: 32px;
}

.booking-option__title {
  font-size: var(--h3);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.booking-option__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.booking-option__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
  width: 100%;
}

.booking-option__benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.booking-option__benefits li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--praxis-gruen);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
  mask-size: contain;
  flex-shrink: 0;
}

.booking-option .btn {
  margin-top: auto;
}

/* Benefit Grid */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
}

.benefit-item svg {
  width: 24px;
  height: 24px;
  color: var(--praxis-gruen);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefit-item strong {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.benefit-item span {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Steps List */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 500px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.step-item__number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-gruen);
  color: var(--text-inverse);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  border-radius: 50%;
  flex-shrink: 0;
}

.step-item__content h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.step-item__content p {
  color: var(--text-secondary);
  margin: 0;
}

/* Info Box */
.info-box {
  background: var(--praxis-gruen-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--praxis-gruen);
}

.info-box--warning {
  background: #fff8e1;
  border-left-color: #f59e0b;
}

.info-box__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.info-box__header svg {
  width: 20px;
  height: 20px;
  color: var(--praxis-gruen);
  flex-shrink: 0;
}

.info-box--warning .info-box__header svg {
  color: #f59e0b;
}

.info-box__list {
  margin: 0;
  padding-left: var(--space-xl);
  color: var(--text-secondary);
  list-style-type: disc;
}

.info-box__list li {
  margin-bottom: var(--space-sm);
}

.info-box__list li:last-child {
  margin-bottom: 0;
}

.info-box p {
  margin: 0;
  color: var(--text-secondary);
}

/* Check List */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.check-list li svg {
  width: 22px;
  height: 22px;
  color: var(--praxis-gruen);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list li span {
  color: var(--text-secondary);
  line-height: var(--line-height-normal);
}

.check-list--large li {
  gap: var(--space-lg);
}

.check-list--large li svg {
  width: 28px;
  height: 28px;
}

.check-list--large li span {
  font-size: var(--text-lg);
}

/* Highlight Box */
.highlight-box {
  background: var(--bg-white);
  border: 2px solid var(--praxis-gruen);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.highlight-box p {
  margin: 0;
  color: var(--text-primary);
}

.highlight-box p + p {
  margin-top: var(--space-sm);
}

/* Card Link */
.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--praxis-gruen);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-top: var(--space-sm);
  text-decoration: none;
}

.card__link:hover {
  text-decoration: underline;
}

/* Card Meta */
.card__meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   19. Termine Schnellauswahl
   ========================================================================== */

/* Schnellauswahl Grid */
.termin-schnellauswahl {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto var(--space-xl);
}

@media (min-width: 768px) {
  .termin-schnellauswahl {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

/* Schnellauswahl Card (Button) */
.schnellauswahl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: inherit;
}

.schnellauswahl-card:hover {
  border-color: var(--praxis-gruen);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.schnellauswahl-card:focus-visible {
  outline: 2px solid var(--praxis-gruen);
  outline-offset: 2px;
}

.schnellauswahl-card[aria-expanded="true"] {
  border-color: var(--praxis-gruen);
  background: var(--praxis-gruen-light);
}

.schnellauswahl-card[aria-expanded="true"] .schnellauswahl-card__arrow {
  transform: rotate(180deg);
}

/* Akut-Variante */
.schnellauswahl-card--akut .schnellauswahl-card__icon {
  background: var(--praxis-lila-light);
  color: var(--praxis-lila);
}

/* Video-Variante */
.schnellauswahl-card--video .schnellauswahl-card__icon {
  background: #e3f2fd;
  color: #1565c0;
}

.schnellauswahl-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-gruen-light);
  color: var(--praxis-gruen);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

.schnellauswahl-card__icon svg {
  width: 28px;
  height: 28px;
}

.schnellauswahl-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.schnellauswahl-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-sm);
}

.schnellauswahl-card__arrow {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.schnellauswahl-card__arrow svg {
  width: 100%;
  height: 100%;
}

/* Schnellauswahl Details Container */
.schnellauswahl-details {
  max-width: 800px;
  margin: 0 auto;
}

/* Schnellauswahl Panel */
.schnellauswahl-panel {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 2px solid var(--praxis-gruen);
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease;
}

.schnellauswahl-panel[hidden] {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.schnellauswahl-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.schnellauswahl-panel__header h3 {
  font-size: var(--h3);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin: 0;
}

.schnellauswahl-panel__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-subtle);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.schnellauswahl-panel__close:hover {
  background: var(--bg-muted);
  color: var(--text-primary);
}

.schnellauswahl-panel__close svg {
  width: 18px;
  height: 18px;
}

.schnellauswahl-panel__text {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.schnellauswahl-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.schnellauswahl-panel__note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.schnellauswahl-panel__hint {
  font-size: var(--text-sm);
  margin: 0;
}

.schnellauswahl-panel__hint a {
  color: var(--praxis-gruen);
  text-decoration: none;
}

.schnellauswahl-panel__hint a:hover {
  text-decoration: underline;
}

.schnellauswahl-panel__callout {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--praxis-gruen-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--praxis-gruen);
  margin-top: var(--space-lg);
}

.schnellauswahl-panel__callout > svg {
  width: 24px;
  height: 24px;
  color: var(--praxis-gruen);
  flex-shrink: 0;
  margin-top: 2px;
}

.schnellauswahl-panel__callout a {
  color: var(--praxis-gruen);
  font-weight: var(--font-semibold);
}

/* Akut Unterauswahl */
.akut-unterauswahl {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 600px) {
  .akut-unterauswahl {
    grid-template-columns: 1fr 1fr;
  }
}

/* Dreispaltige Variante für 3 Optionen */
.akut-unterauswahl--three {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .akut-unterauswahl--three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .akut-unterauswahl--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.akut-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--bg-subtle);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.2s ease;
}

.akut-option:hover {
  border-color: var(--praxis-gruen);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.akut-option--infekt {
  border-color: #ffcc80;
  background: #fff8e1;
}

.akut-option--infekt:hover {
  border-color: #e65100;
}

.akut-option--infekt .akut-option__icon {
  background: #fff3e0;
  color: #e65100;
}

/* Video-Option */
.akut-option--video {
  border-color: #90caf9;
  background: #e3f2fd;
}

.akut-option--video:hover {
  border-color: #1565c0;
}

.akut-option--video .akut-option__icon {
  background: #bbdefb;
  color: #1565c0;
}

.akut-option__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--praxis-lila-light);
  color: var(--praxis-lila);
  border-radius: var(--radius-md);
}

.akut-option__icon svg {
  width: 24px;
  height: 24px;
}

.akut-option__content strong {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.akut-option__content span {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.akut-option__badge {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--text-inverse);
  background: var(--praxis-gruen);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  margin-top: auto;
}

.akut-option__badge--infekt {
  background: #e65100;
}

.akut-option__badge--video {
  background: #1565c0;
}

.akut-option--infekt .akut-option__badge {
  background: #e65100;
}

/* ==========================================================================
   19b. Service Sections (Termine Detail-Sektionen)
   ========================================================================== */

.service-section {
  padding: var(--space-3xl) 0;
}

.service-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 768px) {
  .service-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: stretch;
  }
}

.service-section__content {
  order: 1;
}

.service-section__image {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* Reverse Layout - Bild links */
@media (min-width: 768px) {
  .service-section--reverse .service-section__content {
    order: 2;
  }

  .service-section--reverse .service-section__image {
    order: 1;
  }
}

.service-section__title {
  font-size: var(--h2);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.service-section__text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

/* Service Section Bilder */
.service-section__image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .service-section__image img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 768px) {
  .service-img {
    max-width: 340px;
  }
}

/* Kompakte Platzhalter für fehlende Bilder */
.image-placeholder-compact {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-muted) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  border: 2px dashed var(--border-medium);
}

.image-placeholder-compact svg {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  opacity: 0.6;
}

.image-placeholder-compact span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  padding: 0 var(--space-sm);
}

/* Akutsprechstunde Platzhalter - lila Akzent */
.image-placeholder-compact--akut {
  background: linear-gradient(135deg, var(--praxis-lila-light) 0%, #ede7f0 100%);
  border-color: var(--praxis-lila);
  border-style: dashed;
}

.image-placeholder-compact--akut svg {
  color: var(--praxis-lila);
}

/* Infekt Platzhalter - orange Akzent */
.image-placeholder-compact--infekt {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
  border-color: #ffb74d;
  border-style: dashed;
}

.image-placeholder-compact--infekt svg {
  color: #e65100;
}

/* ==========================================================================
   20. Print Styles
   ========================================================================== */

@media print {
  .site-header,
  .site-footer,
  .skip-link,
  .menu-toggle,
  .mobile-nav,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .section {
    padding-block: 1em;
  }
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox__close:hover,
.lightbox__close:focus {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.lightbox__close svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.lightbox__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: var(--space-2xl);
}

.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
