/* ══════════════════════════════════════════════════════
   VIDEO BANNER (index.html only)
   ══════════════════════════════════════════════════════ */

.video-banner {
  margin: 104px 0;
}

.video-banner-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--green-900);
  box-shadow: var(--shadow-lg);
}

.video-banner-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 42, 31, 0.55) 0%,
    rgba(0, 42, 31, 0.10) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
}

.video-banner-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
  .video-banner-inner {
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 9;
  }

  .video-banner {
    margin-bottom: 40px;
  }
}

/* ══════════════════════════════════════════════════════
   FAQ ACCORDION (index.html only)
   ══════════════════════════════════════════════════════ */

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(20,59,50,0.08);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.faq-item:hover {
  border-color: rgba(20,59,50,0.18);
  box-shadow: 0 4px 20px rgba(20,59,50,0.06);
}

.faq-item.is-open {
  border-color: rgba(47,112,105,0.25);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ink-900);
  cursor: pointer;
  text-align: left;
  user-select: none;
}

.faq-icon {
  flex-shrink: 0;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47,112,105,0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f7069' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center/auto no-repeat;
  transition: transform 0.25s ease, background-color 0.18s;
}

.faq-item.is-open .faq-icon {
  transform: rotate(90deg);
  background-color: rgba(47,112,105,0.18);
}

.faq-a {
  overflow: hidden;
}

.faq-a p {
  margin: 14px 0 0;
  color: var(--ink-700);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════
   TEAM SECTION — Ärzte-Vorstellung (index.html)
   ══════════════════════════════════════════════════════ */

.team-section {
  padding: 96px 0 112px;
}

/* Header */
.team-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.team-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 14px 0 18px;
}

.team-heading em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--green-700);
  font-size: 1.05em;
}

.team-subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
}

/* Two-column grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}

/* Each doctor */
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* Oval / freigestelltes Bild */
.team-photo-frame {
  width: 260px;
  height: 360px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 32px 80px rgba(0, 42, 31, 0.18),
    0 8px 24px rgba(0, 42, 31, 0.10);
  background: var(--sand-200);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.team-member:hover .team-photo {
  transform: scale(1.04);
}

/* Info unterhalb des Fotos */
.team-meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-700);
}

.team-name {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink-900);
  margin: 0;
}

.team-bio {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
  max-width: 380px;
}

.team-chips {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.team-chips li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--mint-100);
  border: 1px solid var(--sand-300);
  border-radius: 999px;
  padding: 4px 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .team-section {
    padding: 72px 0 88px;
  }

  .team-header {
    margin-bottom: 48px;
  }

  .team-photo-frame {
    width: 220px;
    height: 300px;
  }
}

/* ══════════════════════════════════════════════════════
   PROGRAMME VERGLEICH SECTION
   ══════════════════════════════════════════════════════ */

.cmp-section {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 104px 24px 96px;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(209,248,67,0.05) 0%, transparent 50%),
    var(--sand-100);
  overflow: hidden;
}

.cmp-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────── */
.cmp-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.cmp-header .eyebrow { color: var(--green-700); }

.cmp-h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.07;
  color: var(--ink-900);
  margin: 14px 0 18px;
}
.cmp-h2 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--green-700);
  font-size: 1.05em;
}
.cmp-header-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin: 0;
}

/* ── Card grid ──────────────────────────────────────── */
.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* ── Base card ──────────────────────────────────────── */
.cmp-card {
  border-radius: var(--radius-xl);
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.28s cubic-bezier(0.4,0,0.2,1);
}
.cmp-card:hover { transform: translateY(-6px); }

.cmp-card--balance {
  background: #fff;
  border: 1px solid var(--sand-200);
  box-shadow: 0 4px 24px rgba(0,42,31,0.06);
}
.cmp-card--balance:hover {
  box-shadow: 0 24px 56px rgba(0,42,31,0.1);
}

.cmp-card--legacy {
  background: var(--green-900);
  border: 1px solid rgba(201,169,110,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.cmp-card--legacy:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.35);
}

/* ── Badge ──────────────────────────────────────────── */
.cmp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}
.cmp-card--balance .cmp-badge {
  background: rgba(47,112,105,0.09);
  color: var(--green-700);
  border: 1px solid rgba(47,112,105,0.18);
}
.cmp-card--legacy .cmp-badge {
  background: rgba(201,169,110,0.13);
  color: #c9a96e;
  border: 1px solid rgba(201,169,110,0.25);
}

/* ── Card heading ───────────────────────────────────── */
.cmp-card-heading {
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 14px;
}
.cmp-card--balance .cmp-card-heading { color: var(--ink-900); }
.cmp-card--legacy  .cmp-card-heading { color: #fff; }

/* ── Card description ───────────────────────────────── */
.cmp-card-desc {
  font-size: 0.96rem;
  line-height: 1.78;
  margin: 0 0 24px;
}
.cmp-card--balance .cmp-card-desc { color: var(--ink-700); }
.cmp-card--legacy  .cmp-card-desc { color: rgba(255,255,255,0.6); }

/* ── Phases (Legacy only) ───────────────────────────── */
.cmp-phases {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.cmp-phase {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background 0.2s, border-color 0.2s;
}
.cmp-phase:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.25);
}
.cmp-phase-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cmp-phase:nth-child(1) .cmp-phase-dot { background: #8bbcc4; box-shadow: 0 0 0 3px rgba(139,188,196,0.2); }
.cmp-phase:nth-child(2) .cmp-phase-dot { background: #c9a96e; box-shadow: 0 0 0 3px rgba(201,169,110,0.2); }
.cmp-phase:nth-child(3) .cmp-phase-dot { background: #6ab3ab; box-shadow: 0 0 0 3px rgba(106,179,171,0.2); }
.cmp-phase-body strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2px;
}
.cmp-phase-body span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.4;
}

/* ── Divider ────────────────────────────────────────── */
.cmp-divider {
  height: 1px;
  margin: 0 0 24px;
}
.cmp-card--balance .cmp-divider { background: var(--sand-200); }
.cmp-card--legacy  .cmp-divider { background: rgba(255,255,255,0.09); }

/* ── Feature list ───────────────────────────────────── */
.cmp-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.cmp-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.895rem;
  font-weight: 500;
  line-height: 1.4;
}
.cmp-card--balance .cmp-features li { color: var(--ink-900); }
.cmp-card--legacy  .cmp-features li { color: rgba(255,255,255,0.8); }

.cmp-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.cmp-card--balance .cmp-check {
  background: rgba(47,112,105,0.1);
  color: var(--green-700);
}
.cmp-card--legacy .cmp-check {
  background: rgba(201,169,110,0.13);
  color: #c9a96e;
}

/* ── Card note ──────────────────────────────────────── */
.cmp-card-note {
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 20px 0 24px;
  padding: 11px 15px;
  border-radius: var(--radius-md);
}
.cmp-card--balance .cmp-card-note {
  background: rgba(47,112,105,0.055);
  border: 1px solid rgba(47,112,105,0.12);
  color: var(--green-700);
}
.cmp-card--legacy .cmp-card-note {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.18);
  color: rgba(201,169,110,0.9);
}

/* ── CTA button ─────────────────────────────────────── */
.cmp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: auto;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cmp-cta:hover { transform: translateY(-2px); }

.cmp-cta--balance {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,42,31,0.22);
}
.cmp-cta--balance:hover { box-shadow: 0 14px 30px rgba(0,42,31,0.32); }

.cmp-cta--legacy {
  background: linear-gradient(135deg, #c9a96e, #e5c384);
  color: var(--green-900);
  box-shadow: 0 8px 22px rgba(201,169,110,0.32);
}
.cmp-cta--legacy:hover { box-shadow: 0 14px 30px rgba(201,169,110,0.5); }

/* ── Medical note ───────────────────────────────────── */
.cmp-medical {
  margin-top: 52px;
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  box-shadow: 0 4px 20px rgba(0,42,31,0.05);
}

.cmp-medical-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-700), #4f8f96);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.cmp-medical-body { flex: 1; }

.cmp-medical-body h3 {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 12px;
  line-height: 1.3;
}

.cmp-medical-body p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin: 0 0 6px;
}
.cmp-medical-body p:last-of-type { margin-bottom: 0; }

.cmp-medical-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(47,112,105,0.06);
  border: 1px solid rgba(47,112,105,0.14);
  border-radius: var(--radius-md);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1.4;
}

/* ── Scroll animations ──────────────────────────────── */
.cmp-animate {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s cubic-bezier(0.4,0,0.2,1),
              transform 0.72s cubic-bezier(0.4,0,0.2,1);
}
.cmp-animate.visible { opacity: 1; transform: translateY(0); }
.cmp-anim-d1 { transition-delay: 0.10s; }
.cmp-anim-d2 { transition-delay: 0.22s; }
.cmp-anim-d3 { transition-delay: 0.34s; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .cmp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cmp-card {
    padding: 36px 30px 32px;
  }
  .cmp-medical {
    flex-direction: column;
    gap: 22px;
    padding: 32px 28px;
  }
  .cmp-header { margin-bottom: 52px; }
}

@media (max-width: 560px) {
  .cmp-section { padding: 84px 16px 76px; }
  .cmp-card { padding: 28px 22px 26px; }
  .cmp-header { margin-bottom: 40px; }
  .cmp-medical { padding: 26px 20px; }
}
