/* ============================================================
   ZFA Elite - Komponenten-Styles
   ============================================================ */

/* ---- Slot-Banner (Hero) ---- */
.elite-slot-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 0.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--r-md, 10px);
  max-width: 520px;
}
.elite-slot-banner.is-available { border-color: rgba(212, 175, 55, 0.55); background: rgba(212, 175, 55, 0.12); }
.elite-slot-banner.is-limited { border-color: rgba(232, 130, 40, 0.65); background: rgba(232, 130, 40, 0.12); }
.elite-slot-banner.is-sold-out { border-color: rgba(180, 180, 180, 0.5); background: rgba(180, 180, 180, 0.08); }

.elite-slot-banner__ring {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.elite-slot-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #f0c93a;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.35);
}
.elite-slot-dot.is-free { background: rgba(240, 201, 58, 0.18); }
.elite-slot-dot.is-occupied { background: #f0c93a; }

.elite-slot-banner__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 2px;
}
.elite-slot-banner__headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
}
.elite-slot-banner__sub {
  font-size: 0.8rem;
  color: #c9c9c9;
  margin-top: 2px;
}

/* ---- Fünf Säulen ---- */
.elite-pillars {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .elite-pillars { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .elite-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .elite-pillars { grid-template-columns: 1fr; }
}
.pillar {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-lg, 14px);
  border: 1px solid rgba(10, 31, 68, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.08);
}
.pillar__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.pillar h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: #0a1f44;
}
.pillar p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.55;
  margin: 0;
}

/* ---- Prices Grid (drei Karten, Elite-spezifisch) ---- */
#elite-prices.prices {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}
#elite-prices .price-card {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: #1a1a1a;
}
#elite-prices .price-card .amount { color: #0a1f44; font-size: 2.25rem; }
#elite-prices .price-card .amount small { color: #666; font-size: 0.85rem; }
#elite-prices .price-card .checklist li { color: #4a4a4a; }
#elite-prices .price-card.featured {
  border-color: #d4af37;
  border-width: 2px;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}
#elite-prices .price-card .badge {
  background: #d4af37;
  color: #0a1f44;
  font-weight: 700;
}

/* ---- Förderer-Grid ---- */
.foerderer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}
.foerderer-card {
  background: #0a1f44;
  border: 1px solid rgba(240, 201, 58, 0.28);
  border-radius: var(--r-lg, 14px);
  padding: 1.75rem 1.5rem;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 18px rgba(10, 31, 68, 0.12);
}
.foerderer-card:hover {
  transform: translateY(-3px);
  border-color: var(--tier-color, #d4af37);
}
.foerderer-card.is-highlighted {
  border-color: var(--tier-color, #f0c93a);
  background: linear-gradient(180deg, #12295a 0%, #0a1f44 100%);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.25);
}
.foerderer-card__tier {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tier-color, #d4af37);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.foerderer-card__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tier-color, #d4af37);
}
.foerderer-card__price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.85rem;
  color: #f0c93a;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.foerderer-card__umfang {
  font-size: 0.9rem;
  color: #c9c9c9;
  margin-bottom: 1.25rem;
}
.foerderer-card__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.foerderer-card__perks li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #d9d9d9;
  line-height: 1.45;
}
.foerderer-card__perks svg {
  width: 16px;
  height: 16px;
  color: var(--tier-color, #d4af37);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Formulare ---- */
.elite-form .row {
  margin-bottom: 1rem;
}
.elite-form label {
  display: block;
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.elite-form input,
.elite-form textarea,
.elite-form select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(10, 31, 68, 0.18);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: #0a1f44;
}
.elite-form input:focus,
.elite-form textarea:focus {
  outline: none;
  border-color: var(--brand-gold-dark, #d4af37);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.elite-form textarea { resize: vertical; min-height: 100px; }
.form-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.25rem;
}
.form-status.is-success { color: #2d6a4f; }
.form-status.is-error { color: #c1121f; }

/* ---- Stamp/Badge auf Karten (Abos-Seite) ---- */
.abo-stamp {
  position: absolute;
  top: -14px;
  right: 16px;
  background: var(--brand-gold-dark, #d4af37);
  color: #0a1f44;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.abo-stamp--elite {
  background: #0a1f44;
  color: #d4af37;
  border: 2px solid #d4af37;
}

/* Preis-Card auf Abos-Seite: relative Positionierung damit Stamp haftet */
.price-card { position: relative; }

/* ---- Elite-Teaser-Karte auf Abos-Seite ---- */
.elite-teaser {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6e 100%);
  color: #fff;
  border-radius: var(--r-lg, 14px);
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
}
.elite-teaser::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.elite-teaser__body { position: relative; }
.elite-teaser .eyebrow { color: #d4af37; }
.elite-teaser h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.75rem;
  margin: 0.5rem 0 1rem;
}
.elite-teaser p { color: #d9d9d9; margin-bottom: 1rem; }
.elite-teaser__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.elite-teaser__price-item strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  color: #d4af37;
}
.elite-teaser__price-item span {
  font-size: 0.8rem;
  color: #c9c9c9;
}

/* ---- Startseiten-Sektion Elite ---- */
.elite-home-section {
  background: linear-gradient(180deg, #0a1f44 0%, #071634 100%);
  color: #fff;
}
.elite-home-section .eyebrow { color: #d4af37; }
.elite-home-section h2, .elite-home-section h3 { color: #fff; }
.elite-home-section p { color: #d9d9d9; }

/* ---- Mobile ---- */
@media (max-width: 720px) {
  .elite-slot-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .elite-pillars {
    grid-template-columns: 1fr;
  }
  #elite-prices.prices {
    grid-template-columns: 1fr;
  }
  .foerderer-grid {
    grid-template-columns: 1fr;
  }
  .elite-teaser {
    padding: 1.75rem 1.25rem;
  }
  .elite-teaser h3 { font-size: 1.4rem; }
}

/* ---- Sekundärer CTA (Erstgespräch / Frage vorab) ---- */
.btn-secondary {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.5rem 0.9rem;
  color: #4a4a4a;
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent;
  border: none;
  transition: color 0.2s ease;
}
.btn-secondary:hover { color: #0a1f44; }
#elite-prices .btn-secondary,
.foerderer-card .btn-secondary { text-align: center; width: 100%; }

/* Sekundär-Button auf dunklem Grund (Förderer-Sektion) */
.foerderer-card .btn-secondary { color: #ffffff; opacity: 1; border-color: rgba(255,255,255,0.55); }
.foerderer-card .btn-secondary:hover { color: #0a1f44; background: #f0c93a; border-color: #f0c93a; }

/* btn-ghost auf dunklem Karten-Grund (überschreibt bg-anthracite-Regel) */
.foerderer-card .btn-ghost,
.bg-anthracite .foerderer-card .btn-ghost,
.section-white .foerderer-card .btn-ghost,
.section-pale .foerderer-card .btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #ffffff;
}
.foerderer-card .btn-ghost:hover,
.bg-anthracite .foerderer-card .btn-ghost:hover,
.section-white .foerderer-card .btn-ghost:hover,
.section-pale .foerderer-card .btn-ghost:hover {
  background: #f0c93a;
  border-color: #f0c93a;
  color: #0a1f44;
}
