/* =============================================================================
   NOA Website – Page-Module: PARTNER
   -----------------------------------------------------------------------------
   Wird konditional geladen via partials/head.php nur wenn body.page-partner
   gesetzt ist. Partner-Hero, Tab-Switch, Vorteile, Zielgruppen, Anfrageformular,
   Coming-Soon, Direkter Kontakt.
   ============================================================================= */

/* =============================================================================
   27. SEITE: PARTNER  (body.page-partner)
   -----------------------------------------------------------------------------
   Partner-Hero (zentriert), Tab-Switch zwischen "Neue Partner" /
   "Bestehende Partner", Vorteile, Zielgruppen, Anfrageformular, Coming-Soon,
   Direkter Kontakt.
   ============================================================================= */
body.page-partner { background: var(--bg-soft); }

/* --- Hero (zentrierte Variante, überschreibt das Standard-Grid) --- */
body.page-partner .hero {
  padding: 104px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 169, 180, 0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(245, 163, 59, 0.10), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid rgba(0,169,180,0.15);
  text-align: center;
  overflow: visible;
  position: static;
}
body.page-partner .hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--blue-deep);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 900;
}
body.page-partner .hero p.lead {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.15rem;
}

/* --- Tab-Switch: Neue Partner / Bestehende Partner --- */
.partner-switch {
  padding: 60px 0 20px;
  background: var(--bg-soft);
}
.switch-wrap {
  display: flex;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
  background: white;
  padding: 8px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,174,184,0.15);
}
.switch-btn {
  flex: 1;
  padding: 16px 22px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.switch-btn.active {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  color: white;
  box-shadow: 0 10px 22px rgba(0,174,184,0.32);
}
.switch-btn .sb-icon { font-size: 1.2rem; }

/* Panel (jeweils nur eines aktiv) */
.panel {
  display: none;
  padding: 60px 0 90px;
  background: var(--bg-soft);
}
.panel.active { display: block; }

/* Section-Head innerhalb der Partner-Seite – mehr Luft */
body.page-partner .section-head    { margin-bottom: 46px; }
body.page-partner .section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 14px;
}
body.page-partner .section-head p  { max-width: 700px; font-size: 1.05rem; }

/* --- "Was ist NOA für Partner" (Text + Card mit Liste) --- */
.what-noa {
  background: white;
  border-radius: 28px;
  padding: 50px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,174,184,0.18);
  margin-bottom: 50px;
}
.what-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.what-grid h3 {
  color: var(--blue-deep);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  font-weight: 900;
}
.what-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.what-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.what-tag {
  background: var(--bg-soft);
  border: 1px solid rgba(0,174,184,0.25);
  color: var(--turquoise-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}
.what-card {
  background: linear-gradient(135deg, var(--turquoise) 0%, var(--blue) 100%);
  color: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.what-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
}
.what-card h4 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.what-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.what-card li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
}
.what-card li::before {
  /* Material-Icon "check" als Bullet */
  font-family: 'Material Symbols Outlined';
  content: "check_circle";
  font-variation-settings: 'wght' 700;
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: grid; place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
}

/* --- Vorteile-Grid (Partner) --- */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.benefit-card {
  background: white;
  border-radius: 22px;
  padding: 32px 28px;
  border: 1px solid rgba(0,174,184,0.18);
  box-shadow: var(--shadow);
  transition: .25s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--turquoise);
}
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  color: white;
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.benefit-card h3 {
  color: var(--blue-deep);
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  font-weight: 900;
}
.benefit-card p { color: var(--muted); font-size: 0.95rem; }

/* --- Zielgruppen-Block (4-Spalten-Grid) --- */
.target-partners {
  background: white;
  border-radius: 28px;
  padding: 44px;
  margin-bottom: 50px;
  border: 1px solid rgba(0,174,184,0.18);
  box-shadow: var(--shadow);
}
.target-partners h3 {
  color: var(--blue-deep);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 900;
  text-align: center;
}
.target-partners p.sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 26px;
}
.target-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.target-item {
  text-align: center;
  padding: 22px 16px;
  background: var(--bg-soft);
  border-radius: 16px;
  border: 1px solid rgba(0,174,184,0.15);
}
.target-item .ti-icon { font-size: 1.8rem; margin-bottom: 10px; }
.target-item strong {
  display: block;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.target-item span { color: var(--muted); font-size: 0.82rem; }

/* --- Anfrage-Formular (zentrierte Card) --- */
.form-card {
  background: white;
  border-radius: 28px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,174,184,0.18);
  max-width: 920px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row    { grid-column: 1 / -1; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-weight: 800;
  color: var(--blue-deep);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.form-field label .req { color: var(--orange); margin-left: 3px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0,174,184,0.22);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--blue-deep);
  background: var(--bg-soft);
  outline: none;
  transition: 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--turquoise);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,169,180,0.12);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-column: 1 / -1;
  margin: 6px 0;
}
.form-checkbox input {
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--turquoise);
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}
.form-actions {
  grid-column: 1 / -1;
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.form-actions .hint {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(0,169,180,0.14), rgba(0,169,180,0.04));
  border: 1px solid rgba(0,169,180,0.4);
  color: var(--turquoise-deep);
  padding: 20px 24px;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
  grid-column: 1 / -1;
}
.form-success.visible { display: block; }

/* --- Coming-Soon-Platzhalter (Bereich "Bestehende Partner") --- */
.coming-soon-card {
  background: white;
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,174,184,0.18);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coming-soon-card::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,184,0.10), transparent 70%);
  pointer-events: none;
}
.coming-soon-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  color: white;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  margin: 0 auto 22px;
  box-shadow: 0 14px 28px rgba(0,174,184,0.32);
  position: relative;
  z-index: 1;
}
.coming-soon-badge {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid rgba(0,174,184,0.25);
  color: var(--turquoise-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.coming-soon-card h3 {
  color: var(--blue-deep);
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.coming-soon-card p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 auto 12px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.coming-soon-meta { margin-top: 18px; font-size: 0.92rem; }
.coming-soon-meta a {
  color: var(--turquoise-deep);
  font-weight: 800;
  text-decoration: underline;
}

/* --- Partner-FAQ (eigenes Padding) --- */
.partner-faq {
  background: white;
  padding: 80px 0;
}

/* --- Direkter Draht / Partner-Kontaktbereich --- */
.contact-direct {
  padding: 70px 0 100px;
  background: var(--bg-soft);
}
.contact-direct .container {
  max-width: 820px;
  text-align: center;
}
.contact-direct .section-eyebrow { margin-bottom: 14px; }
.contact-direct h2 {
  color: var(--blue-deep);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.035em;
  font-weight: 900;
  margin-bottom: 18px;
}
.contact-direct h2 .accent {
  background: linear-gradient(120deg, var(--turquoise), var(--turquoise-dark));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.contact-direct .lead {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  color: var(--blue-deep);
  font-weight: 800;
}
.contact-list .mi {
  vertical-align: -4px;
  margin-right: 6px;
}

/* --- Partner-Portal-CTA (ersetzt das frühere Inline-Login-Formular) ---------
   Bestehende Partner werden nur noch ins Partner-Portal verlinkt; die Anmeldung
   selbst passiert dort. Zentrierte CTA in der bestehenden .partner-auth-card. */
.partner-portal-cta { text-align: center; padding: 6px 4px 2px; }
.partner-portal-cta-icon {
  font-size: 40px;
  width: 76px; height: 76px;
  border-radius: 20px;
  background: rgba(0,169,180,0.10);
  color: var(--turquoise-deep);
  display: inline-grid; place-items: center;
  margin-bottom: 16px;
}
.partner-portal-cta h3 {
  color: var(--blue-deep);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.partner-portal-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.partner-portal-cta .auth-helper { margin-top: 16px; }


