/* ============================================================
   Dualer Consulting e.V. — Complete Stylesheet
   Design matching dualer.de (Webflow live site)
   ============================================================ */

/* ── Fonts ────────────────────────────────────────────────── */
/* Montserrat wird self-hosted geladen (assets/css/fonts.css) —
   bewusst KEIN Google-Fonts-CDN-@import (Datenschutz). */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --primary: #3db8e5;
  --primary-dark: #1a8fc7;
  --primary-light: #8ed6fb;
  --dark: #031b2e;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #f0f7fb;
  --border: #e2e8f0;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-h: 80px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; }

/* ── Utilities ────────────────────────────────────────────── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mt-16 { margin-top: 16px; }
.img-full { width: 100%; height: auto; display: block; }
.d-inline-block { display: inline-block; }
.w-full { width: 100%; }
.link-inline { color: var(--primary-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: var(--transition); }
.link-inline:hover { color: var(--primary); }

/* ── Header ───────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 36px; width: auto; }
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
nav a:hover { color: var(--primary); }
nav a.active { color: var(--primary); font-weight: 600; }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.nav-cta-outline {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #082032;
  color: #fff !important;
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  box-shadow: inset 0 0 0 1px rgba(61,184,229,0.32), 0 4px 14px rgba(8,32,50,0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
/* Glanz-Sweep (moderne Hover-Animation) */
.nav-cta-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 25%, rgba(61,184,229,0.40) 50%, transparent 75%);
  background-size: 250% 100%;
  background-position: 135% 0;
  transition: background-position 0.7s ease;
}
.nav-cta-outline:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(61,184,229,0.7), 0 10px 28px rgba(61,184,229,0.45);
}
.nav-cta-outline:hover::before {
  background-position: -135% 0;
}
/* Women@Dualer — Pink-Variante des Outline-Buttons (CI-Pink statt Navy) */
.nav-cta-outline--women {
  background: #ec0e8c;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 4px 14px rgba(236,14,140,0.32);
}
.nav-cta-outline--women::before {
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,0.35) 50%, transparent 75%);
}
.nav-cta-outline--women:hover {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 10px 28px rgba(236,14,140,0.45);
}

/* ── Section Common ───────────────────────────────────────── */
section { padding: 100px 24px; }
.section-label, .section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   INDEX PAGE COMPONENTS
   ══════════════════════════════════════════════════════════════ */

/* ── Hero Mission Statement (Index) ───────────────────────── */
.hero-mission {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 24px 32px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Theory. Practice. Excellence. + Stats ────────────────── */
.theory-stats-section {
  background: var(--bg-light);
  text-align: center;
}
.tpe-heading {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
/* Homepage "Theory. Practice. Excellence." — geteilte Regeln (fuer_unternehmen nutzt sie nicht mehr) */
.tpe-theory { color: var(--dark); }
.tpe-practice { color: var(--primary); }
.tpe-excellence { color: var(--dark); }
.tpe-desc {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stats-heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 32px;
}

/* ── Competences (Index) ──────────────────────────────────── */
.competences-section { background: var(--bg); }
.competence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.competence-grid[hidden] { display: none; }
/* Digital-Panel: 3 Karten = 3 Leistungslinien (Strategy/Build/Enable,
   identisch zur Struktur auf digital.html) statt 2×2-Raster. */
@media (min-width: 769px) {
  #panel-digital.competence-grid { grid-template-columns: repeat(3, 1fr); }
}
.comp-subtitle { font-weight: 500; color: #cbd5e1; font-size: 15px; }
.comp-card {
  position: relative;
  height: 240px;
  border-radius: 0 40px 0 40px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  box-shadow: var(--shadow);
  background: var(--dark) url("../Bilder/MarktanalyseCover.jpg") center / cover no-repeat;
}
/* Themenpassende Cover-Fotos, wo vorhanden — restliche Karten
   behalten den Marktanalyse-Hintergrund als Fallback. */
.comp-card--business-modelling { background-image: url("../Bilder/BusinessModellingCover.jpg"); }
.comp-card--ai-strategie { background-image: url("../Bilder/AIStrategyCover.jpg"); }
.comp-card--ai-agents { background-image: url("../Bilder/AIAgentsCover.jpg"); }
.comp-card--prozess-management { background-image: url("../Bilder/ProzessmanagememtCover.jpg");}
.comp-card--marketing-vertrieb { background-image: url("../Bilder/MarketingVertriebCover.jpg");}
.comp-card--prozess-automatisierung {background-image: url("../Bilder/ProzessAutomatisierungCover.jpg");}
.comp-card--change-management {background-image: url("../Bilder/ChangeManagementCover.jpg");}
.comp-watermark {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,184,229,0.35) 0%, rgba(3,27,46,0.88) 100%);
}
/* Content-Zeile unten: einzeiliger Titel links, Icon rechts daneben,
   beide auf gleicher Höhe. */
.comp-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.comp-icon { flex-shrink: 0; }
.comp-icon img {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.comp-content h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 2px solid #fff;
  padding-bottom: 8px;
}

/* ── Pro Bono ─────────────────────────────────────────────── */
.pro-bono-section {
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.pro-bono-icon {
  width: 96px;
  margin: 0 auto 20px;
}
.pro-bono-icon img { width: 100%; height: auto; display: block; }
.pro-bono-section .section-label { color: var(--primary-light); font-size: 14px; }
.pro-bono-section .section-title { color: #fff; font-size: 40px; }
.pro-bono-section h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}
.pro-bono-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 19px;
  color: #cbd5e1;
  line-height: 1.8;
}

/* ── Testimonials (Carousel) ──────────────────────────────── */
.testimonials-section { background: var(--bg-light); }
.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 32px auto 0;
  overflow: hidden;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 22px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.carousel-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0;
  flex: 1;
  min-width: 0;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
}
.testimonial-slide p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  /* Einheitliche Zitathöhe: alle Boxen gleich groß, egal wie lang das Originalzitat ist */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(5 * 1.8em);
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Referenz-/Kundenlogos in der Testimonial-Zeile: einheitliches, dezentes Logo-Slot */
.testimonial-info img {
  height: 44px;
  width: 112px;
  flex: 0 0 112px;
  object-fit: contain;
  object-position: center;
}
.testimonial-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  flex: 0 0 48px;
}
/* Monogram-Variante für Referenzen ohne Kundenlogo */
.testimonial-logo--mono {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
}
.testimonial-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }
.quote-icon {
  margin-left: auto;
  font-size: 40px;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-cta { margin-top: 40px; }

/* ── Case Studies (Ausgangslage / Vorgehen / Ergebnis) ──────── */
.case-studies-section { background: var(--bg); }
.cs-lead { max-width: 640px; margin: 12px auto 48px; }
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.case-study-card {
  height: 100%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.case-study-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cs-client {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cs-client-logo {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-client-logo img { width: 26px; height: 26px; object-fit: contain; }
.cs-client span { font-size: 14.5px; font-weight: 700; color: var(--dark); }
.cs-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cs-step-num {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.cs-block p { font-size: 14px; line-height: 1.65; color: var(--text-muted); margin: 0; }
.cs-block--result {
  margin-top: auto;
  background: rgba(61, 184, 229, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
}
.cs-block--result .cs-step-num { border-color: var(--primary-dark); background: var(--primary-dark); color: #fff; }
.cs-block--result .cs-label { color: var(--primary-dark); }
.cs-block--result p { color: var(--dark); font-weight: 500; }

@media (max-width: 900px) {
  .case-studies-grid { grid-template-columns: 1fr; }
}

/* ── Partners (Dualer x Unternehmen) ──────────────────────── */
.partners-section { background: var(--bg); }
.partner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.partner-row:last-child { margin-bottom: 0; }
.partner-row.reverse { direction: rtl; }
.partner-row.reverse > * { direction: ltr; }
.partner-logo-col { display: flex; align-items: center; justify-content: center; }
.partner-logo-box {
  width: 100%;
  max-width: 320px;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.partner-logo-box.dark { background: var(--dark); color: #fff; }
.partner-logo-box.light { background: var(--bg-light); border: 1px solid var(--border); color: var(--text); }
.partner-logo-img {
  display: block;
  width: 260px;
  height: 88px;
  margin: 0 auto;
  object-fit: contain;
}
.partner-logo-img-wide { width: 260px; }
.partner-text-col h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.partner-text-col p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.partner-cta-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 48px;
}

/* ── Clients (Unsere Kunden) ──────────────────────────────── */
.clients-section { background: var(--bg-light); }
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 40px auto 0;
  max-width: 800px;
}
.client-logo-item { display: flex; align-items: center; justify-content: center; flex: 0 0 180px; min-width: 180px; }
.client-logo-placeholder {
  width: 100%;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
}
.clients-heading { text-align: center; margin-top: 64px; }
.clients-heading h3 { font-size: 20px; font-weight: 700; color: var(--dark); }
.clients-heading p { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.client-logo-box {
  width: 100%;
  padding: 30px 20px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo-box img {
  max-width: 90%;
  max-height: 46px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.clients-cta { margin-top: 8px; }

/* ── Partnervereine (Logo-only, keine Karten/Text) ───────────── */
.partner-clubs-section { background: var(--bg-light); }
.partner-club-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}
.partner-club-logo { flex: 0 0 auto; }
.partner-club-logo img {
  height: 64px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.partner-club-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

/* ── News ─────────────────────────────────────────────────── */
.news-section { background: var(--bg); }
.news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.news-text-col h4 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.3;
}
.news-cards-col { display: flex; flex-direction: column; gap: 16px; }
.news-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  background: var(--bg);
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  align-items: center;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.news-card-img {
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-light);
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.news-card-body { display: flex; flex-direction: column; justify-content: center; }
.news-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.news-card-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.btn-small {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  width: fit-content;
}
.btn-small:hover { background: var(--primary); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   FÜR UNTERNEHMEN PAGE COMPONENTS
   ══════════════════════════════════════════════════════════════ */

.curved-line {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  border: 3px solid rgba(61,184,229,0.3);
  border-radius: 50%;
}
.content-card-image {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 130px;
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.bottom-divider {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
}

/* ── Theory & Practice ────────────────────────────────────── */
.theory-practice-section { background: var(--bg-light); }
.tp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.tp-row.reverse { direction: rtl; }
.tp-row.reverse > * { direction: ltr; }
.tp-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-img { width: 100%; height: auto; display: block; }
.tp-img-placeholder {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-light);
  font-weight: 600;
  font-size: 14px;
}
.tp-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}


/* ── Whitepaper Section ───────────────────────────────────── */
.whitepaper-section { background: var(--bg-light); }
.whitepaper-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 12px;
}
.whitepaper-more {
  margin-top: 18px;
}
.whitepaper-more a {
  color: var(--primary-dark, #1a8fc7);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 143, 199, 0.35);
  transition: border-color 0.2s;
}
.whitepaper-more a:hover {
  border-bottom-color: var(--primary-dark, #1a8fc7);
}
.whitepaper-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.whitepaper-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.whitepaper-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0;
  flex: 1;
}
.whitepaper-slider::-webkit-scrollbar { display: none; }
.whitepaper-card {
  flex: 0 0 calc(100% - 48px);
  scroll-snap-align: center;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  align-items: start;
}
.wp-text h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.wp-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.wp-author {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
}
.wp-image-col { text-align: center; }
.wp-image-frame { position: relative; }
/* KI-Kennzeichnung (Art. 50 Abs. 4 EU-KI-Verordnung): Badge auf/an
   KI-generierten Bildern. Elternelement braucht position:relative. */
.ai-label {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 3;
  background: rgba(3, 27, 46, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  pointer-events: none;
}
.wp-image-col img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(3, 27, 46, 0.14);
  margin-bottom: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whitepaper-card:hover .wp-image-col img {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(3, 27, 46, 0.22);
}
.wp-img-placeholder {
  height: 160px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 60%, var(--primary) 100%);
  border: none;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  padding: 14px;
}
.wp-cover-title {
  font-weight: 800;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.wp-cover-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.95;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 4px 12px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.slider-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Kompetenzen (Unternehmen Detail) ─────────────────────── */
.kompetenzen-section { background: var(--bg); }
.komp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.komp-left { position: sticky; top: 100px; }
.komp-left p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.komp-right { display: grid; gap: 20px; }
.komp-card {
  position: relative;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: var(--transition);
}
.komp-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(3,27,46,0.3); }
.komp-watermark {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.15;
}
.komp-watermark img { width: 100%; height: 100%; object-fit: contain; }
.komp-icon-box {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(61,184,229,0.15);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.komp-icon-box img { width: 100%; height: 100%; object-fit: contain; }
.komp-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.komp-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.7;
}

/* ── Timeline ─────────────────────────────────────────────── */
.timeline-section { background: var(--bg-light); }
.timeline-section .section-title { text-align: center; }
.timeline-section .section-tag { text-align: center; }
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 10px 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 4px;
  background: var(--border);
  transform: translateX(-50%);
  border-radius: 4px;
  overflow: hidden;
  z-index: 1;
}
/* Scroll-getriebene Fortschrittslinie (wie dualer.de) */
.timeline-line-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--primary), #38bdf8, #06b6d4);
  border-radius: 4px;
}

/* Schritte: verborgen bis sie ins Bild scrollen (Zick-Zack-Reveal) */
.timeline-container.anim-root .timeline-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-container.anim-root .timeline-item:nth-child(even) { transform: translateX(40px); }
.timeline-container.anim-root .timeline-item:nth-child(odd)  { transform: translateX(-40px); }
.timeline-container.anim-root .timeline-item.revealed { transform: translate(0, 0); opacity: 1; }

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(3, 27, 46, 0.06);
}
.timeline-card:hover {
  box-shadow: 0 16px 40px rgba(3, 27, 46, 0.14);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.timeline-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.timeline-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.timeline-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.timeline-node {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--primary);
  z-index: 2;
  justify-self: center;
  position: relative;
}
/* Leuchtender Pulsring am Knoten */
.timeline-node::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(61, 184, 229, 0.45);
  animation: timelinePulse 2.2s ease-in-out infinite;
}
@keyframes timelinePulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.85); opacity: 0; }
}
.timeline-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-icon-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border);
}
.tl-icon {
  max-width: 275px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(3, 27, 46, 0.2));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.tl-icon:hover { transform: translateY(-6px) scale(1.03); }

/* ── Contact (Unternehmen) ────────────────────────────────── */
.contact-section { background: var(--bg-light); }
.contact-person { text-align: left; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
.contact-person {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.contact-photo {
  width: 160px; height: 180px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--border);
  margin: 0 auto 20px;
}
.contact-person h4 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.contact-role { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; display: block; }
.contact-person p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Buchung/Formular-Toggle (Outlook-Terminbuchung als Alternative) ── */
.contact-mode-toggle {
  display: inline-flex;
  background: var(--bg-section);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 20px;
  gap: 4px;
}
.contact-mode-btn {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.contact-mode-btn.active { background: var(--bg); color: var(--dark); box-shadow: var(--shadow); }
.contact-mode-btn:hover:not(.active) { color: var(--dark); }
.contact-mode-panel[hidden] { display: none; }
.booking-iframe-wrap {
  width: 100%;
  height: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-light);
}
.booking-iframe-wrap[hidden] { display: none; }
.booking-iframe-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.booking-consent {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-light);
  text-align: center;
}
.booking-consent p {
  max-width: 460px;
  margin: 0 auto 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .booking-iframe-wrap { height: 600px; }
  .booking-consent { padding: 24px 18px; }
}
/* Variante für dunkle CTA-Hintergründe (z. B. Women@Dualer) */
.contact-mode-toggle--dark { background: rgba(255,255,255,0.12); }
.contact-mode-toggle--dark .contact-mode-btn { color: rgba(255,255,255,0.75); }
.contact-mode-toggle--dark .contact-mode-btn.active { background: #fff; color: var(--dark); }
.contact-mode-toggle--dark .contact-mode-btn:hover:not(.active) { color: #fff; }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  transition: var(--transition);
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61,184,229,0.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
  width: 100%;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════════════════════════════ */

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  margin-top: 10px;
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(61,184,229,0.3); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ── Legacy button aliases ────────────────────────────────── */
.btn-pill-cyan { background-color: var(--primary); color: #fff !important; padding: 14px 32px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px; transition: var(--transition); border: none; cursor: pointer; display: inline-block; }
.btn-pill-cyan:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(61,184,229,0.3); }
.btn-pill-light { background: transparent; color: var(--dark) !important; padding: 14px 32px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px; border: 2px solid var(--border); transition: var(--transition); cursor: pointer; display: inline-block; }
.btn-pill-light:hover { border-color: var(--primary); color: var(--primary) !important; }

/* ── Tabs ─────────────────────────────────────────────────── */
.tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; }
.tab {
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg);
}
.tab.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.tab:hover:not(.active) { border-color: var(--primary); }

/* ── Stats Grid ───────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-number { font-size: 48px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}
.faq-answer {
  padding-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-chevron { font-size: 20px; font-weight: 700; transition: var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(45deg); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 24px 24px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-heading { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer-grid a { color: #94a3b8; font-size: 14px; transition: var(--transition); display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-contact-col { display: flex; flex-direction: column; gap: 16px; }
.footer-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-person-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.footer-person strong { font-size: 14px; }
.footer-person br + * { font-size: 12px; color: #94a3b8; }
.footer-nav-col { display: flex; flex-direction: column; }
.footer-social-col { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-box {
  width: 120px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
}
.social-icons { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transition: var(--transition);
}
.social-icon:hover { background: var(--primary); }
.jcn-logo-box {
  width: 120px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  margin-top: 8px;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #475569;
  text-align: center;
}
.footer-bottom a { color: var(--primary); }

/* ── Content Page (Impressum) ─────────────────────────────── */
.content-page { max-width: 800px; margin: 0 auto; padding: 140px 24px 80px; }
.content-page h1 { font-size: 36px; font-weight: 800; margin-bottom: 32px; }
.content-page h2 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.content-page p, .content-page address {
  font-size: 15px; color: var(--text-muted); line-height: 1.8; font-style: normal; margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════
   SUB-PAGE COMPONENTS
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (einheitliches Design, alle Hauptseiten)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 150px 0 100px;
  overflow: hidden;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-hero-content { max-width: 540px; }

.page-hero-eyebrow {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.page-hero-divider {
  height: 4px;
  width: 140px;
  background-color: var(--primary);
  margin-bottom: 24px;
}

.page-hero-heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.page-hero-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* "Leistungen auf einen Blick" — Antwort auf "was bietet ihr an?"
   direkt im Hero, bevor die Warum-uns-Argumentation folgt. */
.hero-services-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -18px 0 26px;
  padding: 0;
}
.hero-services-chips li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(61, 184, 229, 0.1);
  border: 1px solid rgba(61, 184, 229, 0.3);
  padding: 6px 14px;
  border-radius: 99px;
}

/* Button direkt unter der Headline (ohne Textblock dazwischen) → neuer Zeilenblock mit Abstand */
/* display:block erzwungen: ohne das fließt die inline-block-Headline + Button in eine Zeile (u. a. wer_wir_sind) */
.page-hero-content > .page-hero-heading + .btn-primary {
  display: block;
  width: fit-content;
  margin-top: 12px;
}

/* Bild-Composition: Glow-Form + Rechteck-Fotokarte + amber Linie */
.page-hero-graphic {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 340px;
  justify-self: end;
}

.page-hero-shape {
  position: absolute;
  top: 0; left: 0;
  width: 330px;
  height: 230px;
  border: 2px solid var(--primary);
  border-radius: 0 100px 100px 100px;
  background: radial-gradient(circle, rgba(61,184,229,0.38) 0%, rgba(61,184,229,0.12) 55%, rgba(255,255,255,0) 72%);
  box-shadow: 0 0 46px rgba(61, 184, 229, 0.5);
}

.page-hero-img-card {
  position: absolute;
  bottom: 0; right: 0;
  width: 380px;
  height: 230px;
  border-radius: 60px 60px 0 60px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #cbd5e1;
}
/* Variante mit dunklem Hintergrund (fuer_unternehmen: transparentes Nebel-Motiv) */
.page-hero-img-card--dark {
  background: radial-gradient(130% 130% at 18% 0%, #17405c 0%, #0a2b40 45%, #082032 78%, #071a26 100%);
}
.page-hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Verstecktes Easter Egg (JCNLeipzig.jpeg, fuer_studierende.html) —
   keine visuelle Kennzeichnung, bewusst unsichtbar. */
.secret-hotspot {
  position: absolute;
  left: 44%;
  top: 14%;
  width: 16%;
  height: 62%;
}

.page-hero-accent {
  position: absolute;
  bottom: -44px; right: 0;
  width: 60%;
  height: 4px;
  background-color: var(--primary-dark);
}

/* Tablet (991px) */
@media (max-width: 991px) {
  .page-hero { padding: 120px 0 80px; }
  .page-hero-inner { gap: 32px; }
  .page-hero-graphic { max-width: 460px; }
  .page-hero-img-card { width: 340px; height: 210px; }
  .page-hero-shape { width: 300px; height: 200px; }
}

/* ── Reasons Grid ─────────────────────────────────────────── */
.reasons-section { background: var(--bg-light); }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.reason-card { background: var(--bg); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.reason-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.reason-icon { width: 60px; height: 60px; margin-bottom: 16px; }
.reason-icon svg { width: 100%; height: 100%; }
.reason-icon img { width: 100%; height: 100%; object-fit: contain; }
.reason-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.reason-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Feature Row (Club Life) ──────────────────────────────── */
.club-life-section { background: var(--bg); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
.feature-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.feature-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.feature-media { border-radius: var(--radius-lg); overflow: hidden; min-height: 240px; }
.feature-media.dark { background: #031b2e; color: #fff; }
.feature-media.grey { background: #cbd5e1; color: #475569; }
.feature-media.charcoal { background: #1e293b; color: #fff; }
.feature-visual { display: flex; align-items: center; justify-content: center; }
.feature-visual.h-240 { height: 240px; }
.feature-visual.h-260 { height: 260px; }

/* ── Mission-Profil (wer_wir_sind) ────────────────────────── */
.mission-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 32px 44px 30px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(30, 41, 59, 0.1);
  min-width: 228px;
}
.mission-person-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(61, 184, 229, 0.35);
  box-shadow: 0 10px 24px rgba(30, 41, 59, 0.16);
  margin-bottom: 12px;
}
.mission-person-name {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.mission-person-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-top: 4px;
}

/* ── Testimonial Wrapper (fuer_studierende) ───────────────── */
.testimonial-wrapper { display: flex; align-items: center; gap: 16px; max-width: 900px; margin: 40px auto 0; }
.slider-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); cursor: pointer; font-size: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.slider-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.testimonial-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; flex: 1; }
.testimonial-text-side h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.testimonial-text-side p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.testimonial-img-side { border-radius: var(--radius-lg); overflow: hidden; }

/* ── Contact (fuer_studierende) ───────────────────────────── */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.contact-avatar { width: 120px; height: 120px; border-radius: 50%; background: var(--bg-light); border: 1px solid var(--border); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: #475569; font-weight: 700; }
.contact-name { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.contact-subtext { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 12px; }
.contact-form-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }

/* ── Form Grid ────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .form-group { grid-column: 1 / -1; }
.form-grid .form-group-half { grid-column: span 1; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: var(--font); transition: var(--transition); background: var(--bg); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(61,184,229,0.1); }

/* ── Team Cards ───────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.team-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); }
.team-card.clean { text-align: left; padding: 0; border: none; }
.team-card .contact-row { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.team-card .contact-row .team-avatar { width: 80px; height: 80px; margin: 0; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--bg-light); border: 1px solid var(--border); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: #475569; font-weight: 700; }
.team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--text-muted); }

/* ── Application Steps ────────────────────────────────────── */
.application-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; margin-top: 40px; }
.step-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.step-number { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Bewerbungsphase (Karriere): Status-Banner ───────────── */
.phase-banner {
  --phase-color: #1a8fc7;
  margin-top: 32px;
  background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 62%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--phase-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 26px;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.4s ease;
}
.phase-banner:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.phase-banner.is-open   { --phase-color: #1f9d63; }
.phase-banner.is-closed { --phase-color: #64748b; }

.phase-banner-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.phase-status { display: flex; align-items: center; gap: 14px; }
.phase-dot {
  position: relative; flex: 0 0 auto;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--phase-color);
}
.phase-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--phase-color);
  animation: phase-pulse 2.2s ease-out infinite;
}
@keyframes phase-pulse {
  0%   { transform: scale(0.7); opacity: 0.75; }
  70%  { transform: scale(2.3); opacity: 0; }
  100% { transform: scale(2.3); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .phase-dot::after { animation: none; opacity: 0.35; } }

.phase-status-text { display: flex; flex-direction: column; }
.phase-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
}
.phase-state { font-size: 17px; font-weight: 800; color: var(--dark); margin-top: 2px; }
.phase-state::before { content: '· '; color: var(--phase-color); font-weight: 900; }

.phase-note {
  flex: 1 1 320px; min-width: 240px;
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
}
.phase-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.phase-countdown {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  padding: 6px 14px 6px 7px; border-radius: 14px;
  box-shadow: 0 8px 22px rgba(3, 27, 46, 0.10);
  font-size: 12px; color: var(--text-muted);
  white-space: nowrap;
}
.cd-tile {
  display: inline-flex; align-items: baseline; gap: 5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; border-radius: 10px; min-width: 54px;
  padding: 6px 11px; justify-content: center;
  box-shadow: 0 4px 10px rgba(61, 184, 229, 0.35);
}
.cd-value { font-size: 23px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-unit { font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.92); }
.cd-arrow { width: 18px; height: 18px; flex: 0 0 auto; stroke: var(--primary); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.cd-caption { display: flex; flex-direction: column; line-height: 1.3; }
.cd-label { font-size: 11px; }
.cd-caption strong { font-size: 12.5px; color: var(--dark); font-weight: 700; }
.phase-countdown.is-past .cd-tile {
  background: linear-gradient(135deg, #64748b, #475569);
  box-shadow: 0 4px 10px rgba(71, 85, 105, 0.35);
}
.cd-value.cd-pop, .cd-pop { animation: cd-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes cd-pop {
  0% { transform: scale(0.55); opacity: 0.3; }
  100% { transform: scale(1); opacity: 1; }
}
.phase-countdown[hidden] { display: none; }
.phase-banner.is-open [data-role="fomo"] { display: none; }
.phase-cta { white-space: nowrap; }

@media (max-width: 768px) {
  .phase-banner { padding: 18px 18px; }
  .phase-banner-inner { gap: 18px; }
  .phase-side { align-items: flex-start; width: 100%; }
  .phase-cta { width: 100%; text-align: center; }
  .phase-countdown { width: 100%; justify-content: flex-start; flex-wrap: wrap; white-space: normal; }
}

/* ── FOMO (Interessentenliste) ─────────────────────────────── */
.fomo { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-muted); }
.fomo-dots { display: inline-flex; }
.fomo-dots::before, .fomo-dots::after {
  content: ''; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -8px;
  box-shadow: 0 2px 6px rgba(3, 27, 46, 0.15);
  background: linear-gradient(135deg, #7dd3fc, #1a8fc7);
}
.fomo-dots::before { background: linear-gradient(135deg, #a5f3fc, #3db8e5); margin-left: 0; z-index: 1; }
.fomo-dots::after { background: linear-gradient(135deg, #93c5fd, #1a8fc7); z-index: 0; }
.fomo-text strong { color: var(--dark); font-weight: 800; }

/* ── Interessentenliste: Modal ─────────────────────────────── */
.interesse-backdrop {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3, 27, 46, 0.55);
  backdrop-filter: blur(4px);
  padding: 24px;
  opacity: 0; transition: opacity 0.25s ease;
  pointer-events: none;
}
.interesse-backdrop[hidden] { display: none !important; }
.interesse-backdrop.is-open { opacity: 1; pointer-events: auto; }
.interesse-panel {
  width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto;
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 30px 30px 26px; position: relative;
  transform: translateY(18px); opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  box-shadow: var(--shadow-lg);
}
.interesse-backdrop.is-open .interesse-panel { transform: translateY(0); opacity: 1; }
.interesse-close {
  position: absolute; top: 14px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-light);
  color: var(--text-muted); font-size: 20px; line-height: 1; cursor: pointer;
  transition: var(--transition);
}
.interesse-close:hover { background: var(--border); color: var(--dark); }
.interesse-kicker {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-dark);
  margin-bottom: 8px;
}
.interesse-panel h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.interesse-head p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.interesse-panel .fomo {
  justify-content: center; background: var(--bg-light);
  border: 1px dashed var(--border); border-radius: 12px;
  padding: 10px 14px; margin-bottom: 18px; font-size: 13px;
}
.interesse-panel form .form-group { margin-bottom: 14px; }
.interesse-panel label { font-size: 13px; font-weight: 600; color: var(--dark); display: block; margin-bottom: 6px; }
.interesse-consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: var(--text-muted); line-height: 1.55;
  margin: 4px 0 14px; cursor: pointer; font-weight: 400;
}
.interesse-consent input { margin-top: 2px; accent-color: var(--primary-dark); flex: 0 0 auto; }
.interesse-consent a { color: var(--primary-dark); text-decoration: underline; text-underline-offset: 2px; }
.interesse-submit { width: 100%; text-align: center; }
.form-status { display: block; font-size: 12.5px; margin: -2px 0 10px; }
.form-status.is-error { color: #b91c1c; }
.form-status.is-warn { color: #a16207; }
.interesse-success { text-align: center; padding: 8px 0 4px; }
.interesse-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff; font-size: 30px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  animation: cd-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.interesse-check::after { content: '✓'; }
.interesse-success h4 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.interesse-success p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

/* ── HR-Zeile zentrieren (Karriere) ────────────────────────── */
.hr-line { max-width: 760px; margin-left: auto; margin-right: auto; }
.hr-line p { text-align: center; }

/* ── Reasons / "Das bringst Du mit." (visuell aufgewertet) ── */
.reason-card {
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.reason-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  opacity: 0; transition: opacity 0.3s ease;
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(61, 184, 229, 0.45); }
.reason-card:hover::before { opacity: 1; }
.reason-icon {
  position: relative; width: 64px; height: 64px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #f0f9fe, #dff2fb);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(26, 143, 199, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reason-icon::after {
  content: ''; position: absolute; inset: 0; border-radius: 16px; z-index: 0;
  background: radial-gradient(circle at 50% 40%, rgba(61, 184, 229, 0.22), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
}
.reason-card:hover .reason-icon::after { opacity: 1; }
.reason-icon img {
  width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reason-card:hover .reason-icon img { transform: scale(1.12) rotate(-3deg); }

/* ── Section wrappers (wer_wir_sind) ──────────────────────── */
.mission-section, .board-section, .department-section, .curators-section { max-width: var(--max-width); margin: 0 auto; padding: 100px 24px; }

/* ══════════════════════════════════════════════════════════════
   DIGITAL PAGE (dualerseite)
   ══════════════════════════════════════════════════════════════ */

/* ── Digital Hero (Struktur wie übrige Seiten, Dark-Theme) ─── */
.digital-hero {
  background: var(--dark);
  padding: 140px 0 100px;
  color: #fff;
}
/* Farben für dunklen Hintergrund (Standard-page-hero ist für helle Seiten) */
.digital-hero .page-hero-eyebrow { color: var(--primary-light); }
.digital-hero .page-hero-heading { color: #fff; }
.digital-hero .page-hero-text { color: #c9d4df; }
.digital-hero .page-hero-divider { background: var(--primary); }
.digital-hero .page-hero-accent { background: var(--primary); }
.digital-hero .page-hero-graphic {
  justify-self: end;
  max-width: 400px;
  height: auto;
}
/* ── Hero CTA Row (Digital Hero) ───────────────────────────── */
.hero-cta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 28px; }
.digital-hero .hero-cta-row .btn-outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.digital-hero .hero-cta-row .btn-outline:hover { background: rgba(255,255,255,0.12); }
.digital-hero .hero-cta-row .btn-primary,
.digital-hero .hero-cta-row .btn-outline { padding: 12px 28px; font-size: 15px; width: auto; }
/* Outline trägt 2px Rahmen → vertikales Padding −2px für gleiche Bauhöhe */
.digital-hero .hero-cta-row .btn-outline { padding: 10px 28px; }

/* ── Digital Info Section ──────────────────────────────────── */
.digital-info-section {
  padding: 100px 0;
  background: var(--bg);
}
.digital-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.digital-info-headline {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 24px;
}
.c-blue { color: var(--primary); }
.digital-info-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.digital-info-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.digital-info-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Digital Fakten → „So arbeiten wir“-Prozessband ─────────── */
.digital-fakten-section {
  padding: 80px 0;
  background: var(--bg-light);
}

/* ── Digital Deep Dive ─────────────────────────────────────── */
.digital-deepdive-section {
  background: #000;
  padding: 90px 0 110px;
  text-align: center;
}
.digital-deepdive-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.digital-deepdive-title {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.digital-deepdive-text {
  font-size: 18px;
  line-height: 1.6;
  color: #cfcfcf;
  max-width: 700px;
  margin: 0 auto 38px;
}
.digital-deepdive-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #90cdf4, #3182ce);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: 0.2s ease;
}
.digital-deepdive-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

/* ── Digital Deep Dive – Einzelseite (digital-deep-dive.html) ─ */
.ddd-page { background: var(--dark); }
.ddd-hero {
  padding: 120px 0 70px;
  text-align: center;
  background: var(--dark);
}
.ddd-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.ddd-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.2;
}
.ddd-hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: #d1d5db;
  max-width: 760px;
  margin: 0 auto;
}
.ddd-hero-text span { color: #fff; }

/* Framing für das DDD-2026-Communityfoto im Hero */
.ddd-poster { margin: 44px auto 0; max-width: 300px; }
.ddd-poster img {
  width: 100%; height: auto; display: block;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}
.ddd-poster-cap { margin-top: 16px; color: #d1d5db; font-size: 13px; }

/* Sektion: Was den Deep Dive ausmacht */
.ddd-values { background: var(--dark); padding: 70px 0 90px; }
.ddd-values-inner { max-width: 1150px; margin: 0 auto; padding: 0 20px; }
.ddd-values-title {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}
.ddd-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ddd-value-card {
  background: linear-gradient(90deg, #90cdf4, #3182ce);
  border-radius: 16px;
  padding: 26px 24px;
  color: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.ddd-value-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.ddd-value-card p { font-size: 16px; margin: 0; line-height: 1.55; }

/* Sektion: Aktuelle Deep Dives (Artikel) */
.ddd-articles { background: var(--dark); padding: 70px 0 80px; }
.ddd-articles-inner { max-width: 1150px; margin: 0 auto; padding: 0 20px; }
.ddd-articles-title {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.ddd-articles-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
}
.ddd-articles-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
.ddd-article-card {
  background: linear-gradient(90deg, #6bb6ff 0%, #3475b8 100%);
  border-radius: 16px;
  padding: 28px 26px 26px;
  color: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.ddd-article-tag {
  display: inline-block;
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ddd-article-title { font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.ddd-article-teaser { font-size: 16px; line-height: 1.55; margin: 0 0 8px; }
.ddd-article-meta { margin-top: 10px; font-size: 14px; opacity: 0.9; }
.ddd-article-reading-time { font-weight: 500; }
.ddd-article-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.ddd-article-link-primary,
.ddd-article-link-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.ddd-article-link-primary {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.ddd-article-link-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.45); }
.ddd-article-link-secondary { background: rgba(0,0,0,0.06); color: #000; }
.ddd-article-link-secondary:hover { opacity: 0.85; }
.ddd-articles-note { margin-top: 30px; text-align: center; color: #9ca3af; font-size: 14px; }

/* Sektion: CTA */
.ddd-cta { padding: 90px 0; background: var(--dark); text-align: center; }
.ddd-cta-inner { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.ddd-cta-title { font-size: 32px; color: #fff; font-weight: 700; margin-bottom: 20px; }
.ddd-cta-text { color: #cfcfcf; font-size: 18px; line-height: 1.6; margin-bottom: 40px; }
.ddd-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #90cdf4, #3182ce);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ddd-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.35); }

@media (max-width: 991px) {
  .ddd-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ddd-hero h1 { font-size: 30px; }
  .ddd-values-grid { grid-template-columns: 1fr; }
  .ddd-values-title, .ddd-articles-title { font-size: 26px; }
  .ddd-articles-intro { font-size: 15px; margin-bottom: 30px; }
  .ddd-article-card { padding: 22px 20px 20px; }
  .ddd-cta-title { font-size: 26px; }
  .ddd-cta-text { font-size: 16px; }
}

/* ── Digital Deep Dive – Lese-Ansicht (PDF direkt im Browser) ── */
.ddr {
  padding: 130px 20px 60px;
  background: var(--dark);
  min-height: 100vh;
}
.ddr-inner { max-width: 1000px; margin: 0 auto; }
.ddr-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ddr-back {
  color: #93c5fd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.ddr-back:hover { color: #fff; }
.ddr-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.ddr-title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
}
.ddr-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: #cbd5e1;
  font-size: 14px;
}
.ddr-meta a {
  color: #93c5fd;
  text-decoration: none;
}
.ddr-meta a:hover { color: #fff; }
.ddr-frame {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.ddr-frame-iframe {
  display: block;
  width: 100%;
  height: calc(100vh - 320px);
  min-height: 560px;
  border: 0;
}
.ddr-hint {
  margin-top: 14px;
  color: #9ca3af;
  font-size: 13px;
  text-align: center;
}
.ddr-hint a { color: #93c5fd; }

@media (max-width: 768px) {
  .ddr { padding: 110px 14px 50px; }
  .ddr-title { font-size: 22px; }
  .ddr-frame-iframe { height: 70vh; min-height: 420px; }
}

/* ── Digital FAQ ───────────────────────────────────────────── */
.digital-faq-section {
  padding: 100px 0;
  background: var(--bg);
}
.digital-faq-list {
  margin-top: 40px;
}

/* ── Digital Contact ───────────────────────────────────────── */
.digital-contact-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.digital-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}
.digital-contact-person {
  text-align: center;
}
.digital-contact-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
}
.digital-contact-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.digital-contact-role {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}
.digital-contact-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}
.digital-contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Audience (Digital P0) ─────────────────────────────────── */
.audience-section { background: var(--bg); padding: 80px 0; }
.audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 960px; margin: 0 auto; }
.audience-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); transition: var(--transition); }
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience-card-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--primary-dark); margin-bottom: 14px; }
.audience-card-title { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.audience-card-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }

/* ── Service Lines (Digital P0) ────────────────────────────── */
.service-lines-section { background: var(--bg-section); padding: 80px 0; }
.service-lines-intro { max-width: 720px; margin: 10px auto 48px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.service-line-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-line-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.service-line-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-line-badge { width: 44px; height: 44px; border-radius: 12px; background: var(--primary); color: #fff; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-line-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.service-line-title-en { font-weight: 600; color: var(--primary-dark); }
.service-line-tagline { font-size: 13px; color: var(--primary-dark); font-weight: 600; margin-bottom: 16px; }
.service-line-list { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.service-line-list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 10px; }
.service-line-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 800; }
.service-line-cta { align-self: flex-start; }

/* ── Trust Band (Digital P0) ───────────────────────────────── */
.digital-trust-band { background: var(--dark); padding: 72px 0 80px; }
.trust-stats { display: flex; gap: 56px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.trust-stat { text-align: center; }
.trust-stat-num { font-size: 44px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.trust-stat-label { margin-top: 8px; font-size: 13px; color: var(--text-light); max-width: 220px; }
.trust-band-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-light); margin-bottom: 24px; }
.trust-logos { max-width: 760px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   DIGITAL PAGE — KOMPLETTER DARK MODE (ganzheitlich dunkel)
   Einheitliche dunkle Palette über ALLE Digital-Sektionen:
   Basis #031b2e (–dark) · Panels #0a1c30 · Cards #0b2036
   Ränder #1e3247 · Text #fff / #c9d4df / #a9bacb
   ══════════════════════════════════════════════════════════ */

/* Hero — Basis-Navy statt Pure Black (konsistenter Farbton) */
.digital-hero { background: var(--dark); }

/* Audience — dunkles Panel + dunkle Cards */
.audience-section { background: #0a1c30; }
.audience-card { background: #0d2640; border-color: #23405a; box-shadow: 0 14px 32px rgba(0,0,0,0.4); }
.audience-card:hover { border-color: #3b6a8f; box-shadow: 0 22px 48px rgba(0,0,0,0.55); }
.audience-card-label { color: var(--primary-light); }
.audience-card-title { color: #fff; }
.audience-card-text { color: #a9bacb; }

/* Info */
.digital-info-section { background: var(--dark); }
.digital-info-headline { color: #fff; }
.digital-info-body { color: #c9d4df; }
.digital-info-img { border-radius: var(--radius-lg); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }

/* Service Lines — dunkle Cards auf Basis-Navy */
.service-lines-section { background: var(--dark); }
.service-lines-section .section-label { color: var(--primary-light); }
.service-lines-section .section-title { color: #fff; }
.service-lines-intro { color: #a9bacb; }
.service-line-card { background: #0d2640; border-color: #23405a; box-shadow: 0 14px 32px rgba(0,0,0,0.4); }
.service-line-card:hover { border-color: #3b6a8f; box-shadow: 0 22px 48px rgba(0,0,0,0.55); }
.service-line-title { color: #fff; }
.service-line-title-en { color: var(--primary-light); }
.service-line-tagline { color: var(--primary-light); }
.service-line-list li { color: #c9d4df; }

/* Outline-Buttons auf dunklem Grund → weiße Schrift */
.audience-section .btn-outline,
.service-lines-section .btn-outline { border-color: rgba(255,255,255,0.85); color: #fff; }
.audience-section .btn-outline:hover,
.service-lines-section .btn-outline:hover { border-color: var(--primary); color: var(--primary-light); }

/* Fakten (Farbverlauf-Band auf tiefem Navy) */
.digital-fakten-section {
  background-color: #050d17;
  background-image: url('../Bilder/digital_farben_blur.png');
  background-position: 50% 50%;
  background-size: 900px;
  background-repeat: repeat;
}
.digital-fakten-section .section-title { color: #fff; }

/* Deep Dive */
.digital-deepdive-section { background: var(--dark); }

/* FAQ — Panel-Ton für sanften Rhythmus */
.digital-faq-section { background: #0a1c30; }
.digital-faq-section .section-title { color: #fff; }
.digital-faq-section .faq-item { border-bottom-color: #1e3247; }
.digital-faq-section .faq-question { color: #fff; }
.digital-faq-section .faq-question:hover { color: var(--primary-light); }
.digital-faq-section .faq-answer { color: #a9bacb; }

/* Contact */
.digital-contact-section { background: var(--dark); }
.digital-contact-section .section-title { color: #fff; }
.digital-contact-name { color: #fff; }
.digital-contact-role { color: var(--primary); }
.digital-contact-desc { color: #a9bacb; }
.digital-contact-photo { box-shadow: 0 12px 30px rgba(0,0,0,0.45); }

/* Digital: Responsive nach allen Basis-Definitionen (damit sie nicht
   von späteren Regeln ausgehebelt werden) */
@media (max-width: 991px) {
  .service-line-grid { grid-template-columns: 1fr; }
  .audience-cards { grid-template-columns: 1fr; }
  .trust-stats { gap: 32px; }
}

/* ══════════════════════════════════════════════════════════
   DIGITAL PAGE P1 — Cockpit, Trust-4er, Prozess, Teaser-Karten
   Dark-konsistent (Cards #0d2640 / Ränder #23405a)
   ══════════════════════════════════════════════════════════ */

/* Label-Eyebrows auf dunklen Digital-Sektionen */
.digital-info-section .section-label,
.digital-fakten-section .section-label,
.digital-deepdive-section .section-label { color: var(--primary-light); }

/* ── Trust-Band: 4 Kunden-KPIs ───────────────────────────── */
.trust-stats-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  justify-items: center;
}
@media (max-width: 991px) {
  .trust-stats-4 { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}
@media (max-width: 480px) {
  .trust-stats-4 { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Prozess-Band: Finden → Bauen → Nutzen ───────────────── */
.process-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.process-step {
  flex: 1 1 250px;
  max-width: 330px;
  background: rgba(13,38,64,0.72);
  border: 1px solid #23405a;
  border-radius: 18px;
  padding: 28px 26px;
  text-align: left;
}
.process-step-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-light);
}
.process-step-title { font-size: 20px; font-weight: 700; color: #fff; margin: 10px 0 10px; }
.process-step-text { font-size: 14px; line-height: 1.65; color: #a9bacb; margin: 0; }
.process-arrow {
  align-self: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-light);
  opacity: 0.75;
}
@media (max-width: 768px) {
  .process-grid { flex-direction: column; align-items: center; gap: 14px; }
  .process-step { max-width: 360px; width: 100%; }
  .process-arrow { transform: rotate(90deg); }
}

/* ── Deep-Dive: Teaser-Karten ─────────────────────────────── */
.deepdive-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: left;
}
.deepdive-teaser-card {
  display: flex;
  flex-direction: column;
  background: #0d2640;
  border: 1px solid #23405a;
  border-radius: 18px;
  padding: 24px;
  transition: 0.2s ease;
}
.deepdive-teaser-card:hover {
  border-color: #3b6a8f;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.deepdive-card-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-light);
  border: 1px solid #2a4a68;
  background: rgba(144,205,244,0.06);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.deepdive-card-title { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.35; margin: 0 0 10px; }
.deepdive-card-text { font-size: 14px; line-height: 1.6; color: #a9bacb; margin: 0 0 18px; flex: 1; }
.deepdive-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #1e3247;
  padding-top: 14px;
}
.deepdive-card-meta { font-size: 12px; color: #a9bacb; }
.deepdive-card-link { font-size: 14px; font-weight: 700; color: var(--primary-light); text-decoration: none; }
.deepdive-card-link:hover { text-decoration: underline; }
@media (max-width: 820px) {
  .deepdive-teaser-grid { grid-template-columns: 1fr; }
}

/* Formular im Dark Mode */
.digital-contact-form .form-group label { color: #9ca3af; }
.digital-contact-form .form-control,
.digital-contact-form .form-grid input,
.digital-contact-form .form-grid textarea,
.digital-contact-form .form-grid select.form-select,
.digital-contact-form input,
.digital-contact-form textarea {
  background: #0b1220;
  border-color: #1f2937;
  color: #e2e8f0;
}
.digital-contact-form .form-control:focus,
.digital-contact-form .form-grid input:focus,
.digital-contact-form .form-grid textarea:focus,
.digital-contact-form .form-grid select.form-select:focus,
.digital-contact-form input:focus,
.digital-contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61, 184, 229, 0.15);
}
.digital-contact-form .form-control::placeholder,
.digital-contact-form .form-grid input::placeholder,
.digital-contact-form .form-grid textarea::placeholder {
  color: #64748b;
}
.digital-contact-form .form-grid select.form-select option { background: #0b1220; color: #e2e8f0; }

/* Datenschutz-Checkbox (Digital Kontaktformular) */
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--primary); flex: 0 0 auto; }
.form-checkbox span { font-size: 12px; line-height: 1.5; color: #9ca3af; }
.form-checkbox a { color: var(--primary-light); text-decoration: underline; }

/* 🔧 FIX: Digital-Formular in einen abgesetzten Dark-Card rahmen */
.digital-contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #0a0f1a;
  border: 1px solid #1f2937;
  border-radius: var(--radius-lg);
  padding: 28px;
}
.digital-contact-form .form-group { grid-column: span 2; }
.digital-contact-form .form-group-half { grid-column: span 1; }
.digital-contact-form .btn-primary { background: linear-gradient(90deg, #90cdf4, #3182ce); border: none; }

/* ── Dark Footer ───────────────────────────────────────────── */
.footer-dark {
  background: #000;
  color: #fff;
  padding: 60px 0 0;
}
.footer-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-dark-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.footer-dark-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #cfcfcf;
}
.footer-dark-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-dark-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-dark-links a {
  color: #cfcfcf;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-dark-links a:hover { color: #fff; }
.footer-dark-logos {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.fd-logo-dc, .fd-logo-dd {
  width: 100px;
  height: auto;
}
.footer-dark-social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-dark-social img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-dark-jcn {
  margin-top: 16px;
}
.footer-dark-dhbw {
  margin-top: 18px;
}
.footer-dark-dhbw a {
  display: inline-block;
  background: #ffffff;
  border-radius: 8px;
  padding: 5px 10px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}
.footer-dark-dhbw a:hover {
  transform: translateY(-1px);
}
.footer-dark-dhbw img {
  display: block;
  height: 26px;
  width: auto;
}
.footer-dark-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #888;
}
.footer-dark-bottom a {
  color: #aaa;
  transition: color 0.2s;
}
.footer-dark-bottom a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   STUDIERENDE PAGE
   ══════════════════════════════════════════════════════════════ */


/* ── Reasons ───────────────────────────────────────────────── */
.stud-reasons-section {
  padding: 100px 0;
  background: var(--bg);
}
.stud-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.stud-reason-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  background: var(--bg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.stud-reason-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.stud-reason-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #031b2e;
  margin-bottom: 24px;
}
.stud-reason-image {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.stud-reason-image img {
  width: auto;
  height: 100px;
  object-fit: contain;
}
.stud-reason-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Club Life / Features ──────────────────────────────────── */
.stud-club-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.stud-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.stud-feature-row-reverse .stud-feature-media { order: -1; }
.stud-feature-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #031b2e;
  margin-bottom: 16px;
}
.stud-feature-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.stud-feature-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
/* Vereinsleben: Icon-Badge vor den Abschnitten */
.stud-feature-badge {
  width: 48px; height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 184, 229, 0.14);
  margin-bottom: 18px;
  transition: transform var(--transition), background var(--transition);
}
.stud-feature-badge svg {
  width: 26px; height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stud-feature-content:hover .stud-feature-badge {
  transform: translateY(-3px) scale(1.05);
  background: rgba(61, 184, 229, 0.22);
}

/* Bild: weiche Hover-Zoom + Schatten */
.stud-feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stud-feature-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease;
}
.stud-feature-row:hover .stud-feature-media img,
html.js .stud-feature-row.rv-on:hover .stud-feature-media img {
  transform: scale(1.035);
}

/* h3: wachsender Akzent-Strich beim Hover */
.stud-feature-content h3 {
  position: relative;
  display: inline-block;
}
.stud-feature-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(61, 184, 229, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.stud-feature-content:hover h3::after {
  transform: scaleX(1);
}

/* Reveal: Bild zoomt beim Einblenden sanft ein */
html.js .stud-feature-row.rv .stud-feature-media img {
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}
html.js .stud-feature-row.rv-on .stud-feature-media img {
  transform: scale(1);
  opacity: 1;
}

/* ── Testimonials ──────────────────────────────────────────── */
.stud-testimonials-section {
  padding: 100px 0;
  background: var(--bg);
}
.stud-testimonial-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--bg-light);
}

/* Carousel-Rahmen für die Mitglieder-Testimonials: eigene Karte übernimmt
   Rand/Hintergrund, das generische .testimonial-slide bleibt unsichtbar */
.stud-testimonial-carousel {
  max-width: 900px;
  margin-top: 48px;
}
.stud-testimonial-carousel .testimonial-slide {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.stud-testimonial-carousel .testimonial-track { padding: 4px 0; }
.stud-testimonial-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: #031b2e;
  margin-bottom: 16px;
}
.stud-testimonial-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.stud-testimonial-image img {
  max-height: 240px;
  margin: 0 auto;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.stud-faq-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.stud-faq-list {
  margin-top: 40px;
}

/* ── Partner ───────────────────────────────────────────────── */
.stud-partner-section {
  padding: 60px 0;
  background: var(--bg);
}
.stud-partner-title {
  font-size: 28px;
  font-weight: 700;
  color: #031b2e;
  text-align: center;
  margin-bottom: 24px;
}
.stud-partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.stud-partner-logos img {
  width: 240px;
  height: 70px;
  object-fit: contain;
  opacity: 0.95;
  transition: var(--transition);
}
.stud-partner-logos img:hover {
  opacity: 1;
}

/* ── Contact ───────────────────────────────────────────────── */
.stud-contact-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.stud-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}
.stud-contact-person {
  text-align: center;
}
.stud-contact-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
}
.stud-contact-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.stud-contact-role {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}
.stud-contact-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}
.stud-contact-form form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.stud-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.stud-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.stud-form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.stud-form-group input,
.stud-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  transition: var(--transition);
  background: var(--bg);
}
.stud-form-group input:focus,
.stud-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61,184,229,0.1);
}
.stud-form-group textarea { height: 120px; resize: vertical; }
.stud-contact-form .btn-primary {
  width: 100%;
  padding: 14px 34px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: var(--primary);
  transition: var(--transition);
}
.stud-contact-form .btn-primary:hover {
  background: var(--primary-dark);
}

/* ── Mobile Menu Toggle ─────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.menu-toggle:hover { border-color: var(--primary); }

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.active .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Avatar-Bilder (Team- & Kontakt-Karten) ───────────────── */
.team-avatar img, .contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-avatar, .contact-avatar { overflow: hidden; }
.team-avatar.initials {
  background: linear-gradient(135deg, rgba(61,184,229,0.16), rgba(61,184,229,0.05));
  color: var(--primary-dark);
  font-size: 26px;
  letter-spacing: 1px;
}

/* ── Testimonial-Monogramm (Platzhalter bis echtes Foto) ─── */
.avatar-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(61,184,229,0.16), rgba(61,184,229,0.05));
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 2px;
}

/* ── Events-Seite ──────────────────────────────────────────── */
.events-section { background: var(--bg); }
.events-section.alt { background: var(--bg-light); }
.events-section .section-label, .events-section .section-title { text-align: center; }
.events-section .section-title { margin-top: 8px; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.event-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.event-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-light);
}
.event-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.event-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.event-date-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  line-height: 1.1;
}
.event-date-chip .d { font-size: 24px; font-weight: 800; }
.event-date-chip .m { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.event-card-body h3 { font-size: 20px; font-weight: 700; color: var(--text); }
.event-meta { font-size: 13px; color: var(--text-muted); display: flex; flex-wrap: wrap; gap: 6px 16px; }
.event-meta span { display: inline-flex; align-items: center; gap: 6px; }
.event-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; flex: 1; }
.event-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.event-actions .btn-small { font-size: 13px; }
/* Platzhalter-Karte für kommende Termine */
.event-card.placeholder {
  border: 2px dashed var(--border);
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-light);
  min-height: 320px;
}
.event-card.placeholder .placeholder-icon {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 12px;
}
.event-card.placeholder h3 { font-size: 18px; }
.event-card.placeholder p { font-size: 14px; color: var(--text-muted); max-width: 300px; }
/* Rückblick-Karten */
.recap-grid { grid-template-columns: repeat(2, 1fr); }
.recap-card .event-card-media { aspect-ratio: 4 / 3; }
.recap-card .event-card-body { padding: 22px; gap: 8px; }
.recap-card h3 { font-size: 16px; }
.recap-card .event-text { font-size: 13px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  nav { gap: 18px; }
  nav a { font-size: 13px; }
  .nav-cta, .nav-cta-outline { padding: 9px 16px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .menu-toggle { display: flex; }
  nav.open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(2,12,27,0.14);
  }
  nav.open a {
    padding: 15px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  nav.open a:last-child { border-bottom: none; }
  nav.open .nav-cta { margin: 14px 24px 20px; text-align: center; }
  nav.open .nav-cta-outline { margin: 0 24px 12px; }
  section { padding: 60px 16px; }
  .section-title { font-size: 28px; }

  /* Index */
  .tpe-heading { font-size: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .competence-grid { grid-template-columns: 1fr; }
  .testimonial-carousel { flex-direction: column; }
  .carousel-btn { display: none; }
  .partner-row { grid-template-columns: 1fr; gap: 24px; }
  /* Auf Mobile immer Logo -> Text, unabhängig von .reverse (Desktop-Layout) */
  .partner-row.reverse { direction: ltr; }
  .partner-row.reverse .partner-logo-col { order: 1; }
  .partner-row.reverse .partner-text-col { order: 2; }
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .news-layout { grid-template-columns: 1fr; gap: 32px; }
  .news-card { grid-template-columns: 1fr; }

  /* Für Unternehmen */
  .tp-row { grid-template-columns: 1fr; gap: 24px; }
  .tp-row.reverse { direction: ltr; }
  .whitepaper-card { grid-template-columns: 1fr; }
  .komp-layout { grid-template-columns: 1fr; gap: 32px; }
  .komp-left { position: static; }
  .timeline-item { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .timeline-item .timeline-icon-container { order: 1; }
  .timeline-item .timeline-node { display: none; }
  .timeline-item .timeline-card { order: 2; padding: 20px; }
  .timeline-line { display: none; }
  .tl-icon { max-width: 140px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; gap: 24px; }
  .recap-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Page Hero (einheitlich) */
  .page-hero { padding: 90px 0 90px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .page-hero-content { max-width: none; }
  .page-hero-divider { margin: 0 auto 24px; }
  .page-hero-heading { display: block; }
  .page-hero-graphic { max-width: 340px; height: 236px; margin: 0 auto; justify-self: center; }
  .page-hero-shape { width: 220px; height: 150px; }
  .page-hero-img-card { width: 250px; height: 152px; }
  .page-hero-accent { bottom: -30px; width: 55%; }
  .reasons-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-body { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-wrapper { flex-direction: column; }
  .slider-arrow { display: none; }
  .contact-container { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 16px; }
  .application-steps { grid-template-columns: 1fr; gap: 16px; }
  .mission-section, .board-section, .department-section, .curators-section { padding: 60px 16px; }

  /* Digital Page */
  .digital-hero { padding: 100px 0 60px; }
  .digital-hero .page-hero-content { display: flex; flex-direction: column; align-items: center; }
  .digital-hero .hero-cta-row { justify-content: center; align-items: center; }
  .digital-hero .page-hero-graphic { max-width: 300px; height: auto; margin: 0 auto; justify-self: center; }
  .digital-info-grid { grid-template-columns: 1fr; gap: 32px; }
  .digital-info-headline { font-size: 26px; }
  .digital-deepdive-title { font-size: 26px; }
  .digital-deepdive-text { font-size: 16px; }
  .digital-contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .digital-contact-photo { width: 150px; height: 150px; }
  .digital-contact-form .form-grid { grid-template-columns: 1fr !important; }
  .digital-contact-form .form-group,
  .digital-contact-form .form-group-half { grid-column: 1 / -1 !important; }
  .footer-dark-grid { grid-template-columns: 1fr; gap: 32px; }

  .stud-reasons-grid { grid-template-columns: 1fr; gap: 24px; }
  .stud-feature-row { grid-template-columns: 1fr; gap: 24px; }
  .stud-feature-row-reverse .stud-feature-media { order: 0; }
  .stud-feature-content h3 { font-size: 24px; }
  .stud-testimonial-card { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .stud-testimonial-image img { max-height: 200px; }
  .stud-partner-logos { gap: 24px; }
  .stud-partner-logos img { width: 180px; height: 50px; }
  .stud-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .stud-contact-photo { width: 150px; height: 150px; }
  .stud-form-row { grid-template-columns: 1fr; }
}

/* Mobile schmal (640px) — Digital P0 Sektionen */
@media (max-width: 640px) {
  .audience-card { padding: 28px 24px; }
  .service-line-card { padding: 28px 24px; }
  .trust-stat-num { font-size: 36px; }
  .digital-trust-band { padding: 56px 0 64px; }
}

/* ── Formular-Status & Honeypot ───────────────────────────────
   Versand-Feedback der Kontaktformulare (Erfolg/Fehler/lade).
   .invisible-honeypot fängt Spam-Bots — für Nutzer unsichtbar. */
.form-status {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.45;
  box-sizing: border-box;
  display: none;
}
.form-status--ok { display: block; background: rgba(47, 176, 108, 0.10); color: #1f9d58; border: 1px solid rgba(47, 176, 108, 0.45); }
.form-status--error { display: block; background: rgba(229, 72, 77, 0.08); color: #c0392b; border: 1px solid rgba(229, 72, 77, 0.45); }
.form-status--idle { display: block; color: var(--muted, #7a8699); }

/* ── DSGVO-konforme Formular-Elemente ─────────────────────────
   Pflichtfeld-Stern, freiwillig-Hinweis, Infobox, Legende.
   Rechtsgrundlage: Art. 5 Abs. 1 lit. c, Art. 7 DSGVO        */

/* Rotes Sternchen bei Pflichtfeldern */
.form-required-star {
  color: #c0392b;
  margin-left: 2px;
  font-weight: 700;
  font-size: 0.9em;
  aria-hidden: true;
}

/* Grauer „(freiwillig)"-Hinweis bei optionalen Feldern */
.form-optional-hint {
  color: var(--muted, #7a8699);
  font-size: 0.82em;
  font-weight: 400;
  margin-left: 4px;
}

/* Kleine Pflichtfeld-Legende oberhalb des Formulars */
.form-required-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--muted, #7a8699);
  margin: 0 0 4px;
  padding: 0;
}
.form-required-note span {
  color: #c0392b;
  font-weight: 700;
}

/* DSGVO-Infobox unterhalb des Formulars */
.form-dsgvo-info {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.03);
  border-left: 3px solid var(--primary, #2563eb);
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted, #7a8699);
}
.form-dsgvo-info strong {
  color: inherit;
  font-weight: 600;
}
.form-dsgvo-info a {
  color: var(--primary, #2563eb);
  text-decoration: underline;
}

/* Kleiner Hinweistext (z. B. Interessentenliste) */
.form-hint-text {
  font-size: 0.8rem;
  color: var(--muted, #7a8699);
  line-height: 1.5;
  margin: 8px 0 12px;
}
.form-hint-text a {
  color: var(--primary, #2563eb);
  text-decoration: underline;
}


 /* ── Karriere: Avatar-Monogramm (Connor Schweitzer) ─────────── */
.contact-person .team-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 800; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.invisible-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  border: 0;
  padding: 0;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   P2 — Scroll-Reveal, Count-up, Hover-Feedback, Karussell-Dots,
        FAQ-Transitionen, Testimonial-Monogramme
   ══════════════════════════════════════════════════════════ */

/* Scroll-Reveal: versteckt nur unter html.js (JS aktiv).
   Ohne JS bleibt alles sichtbar. */
html.js .rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
html.js .rv.rv-on {
  opacity: 1;
  transform: none;
}

/* Hover-Feedback für interaktive Kacheln */
.comp-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.comp-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(3, 27, 46, 0.14); }
.client-logo-box, .partner-logo-box { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.client-logo-box:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(3, 27, 46, 0.22); }
.partner-logo-box:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(3, 27, 46, 0.12); }
.tab:hover:not(.active) { background: var(--bg-light); }
.tab { transition: var(--transition); }

/* Karussell-Dots (Index + Für Unternehmen) */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-dots button:hover { background: var(--primary-light, #7cc7ea); }
.testimonial-dots button.active { background: var(--primary); transform: scale(1.3); }

/* Pfeile auf Mobile wieder zeigen (Swipe-Hinweis + direkte Steuerung) */
@media (max-width: 768px) {
  .carousel-btn { display: flex; width: 36px; height: 36px; font-size: 20px; }
  .testimonial-dots { margin-top: 20px; }
}

/* FAQ: weiche Auf-/Zuklapp-Transition statt hartem display-Toggle */
.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  opacity: 0;
  transition: max-height 0.35s ease, padding-top 0.35s ease, opacity 0.28s ease;
}
.faq-item.open .faq-answer {
  max-height: 420px;
  padding-top: 16px;
  opacity: 1;
}

/* Testimonial-Monogramme statt leerer Logo-Kreise */
.testimonial-logo.initials {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reduced Motion: Animationen deaktivieren, Inhalte bleiben sichtbar */
@media (prefers-reduced-motion: reduce) {
  html.js .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
  html.js .rv .stud-feature-media img,
  .stud-feature-media img { opacity: 1 !important; transform: none !important; transition: none !important; }
  .stud-feature-content:hover .stud-feature-badge,
  .stud-feature-row:hover .stud-feature-media img,
  .stud-feature-content h3::after { transform: none !important; transition: none !important; }
  .faq-answer { transition: none !important; }
  .comp-card, .client-logo-box, .partner-logo-box, .tab,
  .carousel-btn, .testimonial-dots button,
  .faq-chevron, .testimonial-logo.initials { transition: none !important; }
}

/* ══════════════════════════════════════════════════════════
   VORSTAND 2.1 – Horizontaler Slider (Swipe / Pfeile)
   Alle Karten gleichwertig; scroll-snap; Arrow-Steuerung
   ══════════════════════════════════════════════════════════ */
.board-slider-wrap { margin-top: 40px; }
.board-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;  /* proximity statt mandatory: bei nur leichtem Ueberlauf (< Kartenbreite) waeren mandatory-Snap-Punkte
                                     unerreichbar und Chrome wuerde den Scroll komplett blockieren */
  scroll-behavior: smooth;
  scrollbar-width: none;          /* Firefox: Scrollbar ausblenden */
  padding: 4px 4px 14px;          /* Schatten-Raum unten */
  cursor: grab;
}
.board-slider::-webkit-scrollbar { display: none; }  /* Chromium/Safari */
.board-slider.dragging {
  cursor: grabbing;
  scroll-snap-type: none;         /* waehrend Drag frei scrollen */
  scroll-behavior: auto;
  user-select: none;
}
.board-slider:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 8px; }

/* Gleiche Karten – nichts hebt einzelne Personen hervor */
.board-card {
  position: relative;
  flex: 0 0 auto;
  width: 258px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 18px 22px;
  text-align: center;
  scroll-snap-align: start;   /* KEIN center: sonst sperrt scroll-snap den Scroll, wenn der Viewport breiter als eine Karte ist */
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.board-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -22px rgba(3,27,46,.28);
  border-color: rgba(61,184,229,.45);
}

/* ganze Karte = Klick-Flaeche (LinkedIn) */
.board-card__link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.board-card__link:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }

/* Avatar mit Hover-Ring */
.board-avatar {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(61,184,229,.16), rgba(61,184,229,.05));
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
}
.board-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.board-avatar::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(61,184,229,0);
  transition: transform .35s ease, border-color .35s ease;
}
.board-card:hover .board-avatar::after { border-color: rgba(61,184,229,.55); }

/* Info: Name / Rolle / Arbeitgeber */
.board-info h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.board-info .board-role { font-size: 12.5px; color: var(--text-muted); line-height: 1.45; }
.board-company {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(61,184,229,.1);
}
.board-company svg { width: 14px; height: 14px; opacity: .75; }

/* LinkedIn-Button (Pill) */
.board-li {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dbe2ea;
  color: #0a66c2;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease,
              transform .25s ease, box-shadow .25s ease;
}
.board-li svg { width: 15px; height: 15px; }
.board-li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(10,102,194,.6);
}
.board-li:focus-visible { outline: 2px solid #0a66c2; outline-offset: 2px; }

/* Licht-Sweep beim Hover (nur Hover-faehige Geraete) */
.board-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
  opacity: 0;
  pointer-events: none;
}
@media (hover: hover) {
  .board-card:hover::before { animation: boardShine .7s ease; }
}
@keyframes boardShine {
  0%   { left: -70%; opacity: 0; }
  35%  { opacity: .9; }
  100% { left: 125%; opacity: 0; }
}

/* Pfeil-Steuerung (vor/zurueck) */
.board-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.board-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px -12px rgba(3,27,46,.35);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.board-arrow svg { width: 20px; height: 20px; }
.board-arrow:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.board-arrow:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.board-arrow:disabled { opacity: .35; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .board-slider { scroll-behavior: auto; }
  .board-card { transition: none !important; }
  .board-avatar::after { transition: none !important; }
  .board-card::before { animation: none !important; opacity: 0 !important; }
  .board-arrow { transition: none !important; }
  .board-li { transition: none !important; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER-NAV: Navigation 2-spaltig (Events / Downloads / Women@Dualer)
   ══════════════════════════════════════════════════════════ */
.footer-dark-links--split { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.footer-dark-links--split .fdl-col { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 640px) {
  .footer-dark-links--split { grid-template-columns: 1fr; gap: 16px 0; }
}

/* ══════════════════════════════════════════════════════════
   DOWNLOADS-SEITE: Deep Dives + Whitepaper-Übersicht
   ══════════════════════════════════════════════════════════ */
.downloads-deepdive-section { background: var(--bg); padding: 88px 0; }
.downloads-whitepaper-section { background: var(--bg-light); padding: 88px 0; }
.downloads-section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.downloads-section-head .section-desc { color: var(--text-muted); margin-top: 12px; }
.downloads-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.downloads-grid .whitepaper-card { flex: none; }
.downloads-wp-actions { display: flex; flex-direction: column; gap: 8px; }
.downloads-wp-actions .btn-small,
.downloads-wp-actions .btn-outline { text-align: center; width: 100%; box-sizing: border-box; }
.downloads-wp-actions .btn-outline { font-size: 13px; padding: 10px 14px; }
.downloads-all-link { display: block; text-align: center; margin-top: 40px; font-weight: 600; color: var(--primary); transition: color 0.2s; }
.downloads-all-link:hover { color: var(--primary-dark); }
.downloads-note { text-align: center; margin-top: 28px; color: var(--text-muted); font-size: 14px; }
@media (max-width: 960px) {
  .downloads-grid { grid-template-columns: 1fr; }
  .downloads-deepdive-section, .downloads-whitepaper-section { padding: 64px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .downloads-all-link { transition: none !important; }
}

/* ══════════════════════════════════════════════════════════
   VEREINSLEBEN-KARUSSELL „Das erwartet dich bei Dualer"
   Modernes interaktives UX-Carousel (Snap, Drag, Pfeile,
   Fortschrittsbalken + Zähler, Tastatur)
   ══════════════════════════════════════════════════════════ */
.club-carousel { margin-top: 48px; }
.club-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  padding: 6px 4px 30px;
  scroll-padding-left: 4px;
  cursor: grab;
}
.club-track::-webkit-scrollbar { display: none; }
.club-track.dragging { cursor: grabbing; }
.club-track:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 16px; }
.club-card {
  flex: 0 0 calc((100% - 2 * 28px) / 3);
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(3, 27, 46, .06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.club-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(3, 27, 46, .13); }
.club-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-section);
}
.club-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .45s ease;
}
.club-card:hover .club-img img { transform: scale(1.05); }
#women-dualer .club-img img { object-position: center 88%; }
.club-num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(3, 27, 46, .74);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.club-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.club-body h3 { font-size: 22px; font-weight: 700; line-height: 1.28; }
.club-body p { color: var(--text-muted); font-size: 15px; line-height: 1.62; margin: 0; }

.club-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}
.club-controls .club-progress {
  flex: 1;
  height: 5px;
  background: rgba(3, 27, 46, .12);
  border-radius: 999px;
  overflow: hidden;
}
.club-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 999px;
  transition: width .3s ease;
}
.club-counter {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  color: var(--text-muted);
  min-width: 58px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.club-counter .club-counter-now { color: var(--dark); }
.club-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(3, 27, 46, .2);
  background: var(--bg);
  color: var(--dark);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}
.club-arrow:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.club-arrow:active:not(:disabled) { transform: scale(.94); }
.club-arrow:disabled { opacity: .38; cursor: default; }
.club-arrow:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

@media (max-width: 960px) {
  .club-card { flex-basis: calc((100% - 28px) / 2); }
}
@media (max-width: 640px) {
  .club-card { flex-basis: 86%; }
  .club-body { padding: 20px 20px 24px; }
  .club-controls { gap: 12px; }
  .club-arrow { width: 42px; height: 42px; }
  .club-counter { min-width: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  .club-card, .club-card:hover, .club-img img, .club-card:hover .club-img img,
  .club-arrow, .club-progress-fill { transition: none !important; }
  .club-card:hover { transform: none; }
}

/* ══════════════════════════════════════════════════════════
   KONZEPT-SEKTIONEN „THEORIE & PRAXIS" / „ARBEITSWEISE"
   Zwei-Panel-Layout mit Brücken-Emblem statt überlappendem Venn
   ══════════════════════════════════════════════════════════ */
.dna-section { padding: 96px 0; }
.tp-lead, .dna-lead { margin-top: 18px; margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   INTERAKTIVE SEKTION „THEORIE & PRAXIS"
   Clean, modern, interaktiv & hochperformant
   ══════════════════════════════════════════════════════════ */
.tp-interactive-section {
  padding: 96px 0;
  background: var(--bg-light, #f8fafc);
  position: relative;
  overflow: hidden;
}

/* Kopfbereich zentriert, damit er zur symmetrischen Formel darunter passt */
.tp-center { text-align: center; }
.tp-interactive-section .section-title.tp-center,
.tp-interactive-section .tp-lead.tp-center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Formel-Statement: Herkunft der Kompetenz als horizontale Gleichung (ersetzt Duo-Cards) */
.tp-equation {
  max-width: 1120px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 0;
  text-align: center;
}

.tp-eq-row {
  flex: 0 1 200px;
  padding: 10px 14px;
}

.tp-eq-term {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark, #0f172a);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.tp-eq-sub {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted, #64748b);
  margin: 0;
}

.tp-eq-sub strong {
  color: var(--dark, #0f172a);
  font-weight: 700;
}

.tp-eq-op {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--primary, #2563eb);
  line-height: 1;
  flex: 0 0 auto;
  margin: 0 6px;
}

.tp-eq-op--result { font-weight: 500; }

.tp-eq-result {
  flex: 0 0 auto;
  margin: 8px 0 8px 14px;
  padding: 16px 30px;
  border-radius: 99px;
  background: var(--dark, #0f172a);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .tp-equation { flex-direction: column; }
  .tp-eq-row { flex-basis: auto; max-width: 420px; padding: 6px 0; }
  .tp-eq-op { margin: 12px 0; }
  .tp-eq-result { margin: 10px 0 0; white-space: normal; }
}

/* ── Arbeitsweise (DNA): drei Prinzipien als editoriale Zeilen + Statement ── */
.dna-editorial {
  padding: 96px 0;
  background: var(--bg-light, #f8fafc);
}

/* Prinzipien-Liste (volle Breite, Haarlinien, große Typo) */
.principles {
  max-width: 1080px;
  margin: 52px auto 0;
}
.principle-row {
  display: grid;
  grid-template-columns: 56px 56px 1fr auto;
  align-items: center;
  gap: 20px 28px;
  padding: 34px 8px;
  border-top: 1px solid var(--border);
  transition: background .3s ease, padding-left .3s ease;
}
.principle-row:last-child { border-bottom: 1px solid var(--border); }
.principle-row:hover {
  background: linear-gradient(90deg, rgba(61, 184, 229, 0.07), rgba(61, 184, 229, 0.01) 70%, transparent);
  padding-left: 22px;
}
.principle-num {
  font-size: 0.95rem; font-weight: 800; letter-spacing: 0.12em;
  color: var(--primary-dark);
}
.principle-ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--primary-dark);
  display: grid; place-items: center;
  box-shadow: var(--shadow, 0 4px 20px rgba(0, 0, 0, .06));
}
.principle-ico svg { width: 23px; height: 23px; }
.principle-main { min-width: 0; }
.principle-title {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 800; line-height: 1.12;
  color: var(--dark);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.principle-sub {
  font-size: 0.95rem; line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 460px;
}
.principle-tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end;
  max-width: 360px;
}
.principle-tags li {
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  color: var(--primary-dark);
  background: rgba(61, 184, 229, 0.10);
  padding: 6px 13px; border-radius: 99px;
}

/* Statement-Zeile + CTA (User Flow bleibt offen) */
.dna-verdict {
  max-width: 1080px;
  margin: 52px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 34px 8px 0;
  border-top: 2px solid var(--dark);
}
.dna-verdict-text {
  font-size: 17px;
  font-weight: 500; line-height: 1.6;
  color: var(--dark);
  max-width: 760px;
  margin: 0;
}
.dna-verdict-text strong { font-weight: 800; }
.dna-cta { flex-shrink: 0; }

@media (max-width: 900px) {
  .principle-row {
    grid-template-columns: 44px 48px 1fr;
    gap: 14px 16px;
    padding: 28px 4px;
  }
  .principle-tags { grid-column: 3; justify-content: flex-start; max-width: none; margin-top: 4px; }
  .principle-sub { max-width: none; }
}
@media (max-width: 620px) {
  .principle-row { grid-template-columns: 1fr; gap: 10px; padding: 24px 2px; }
  .principle-ico { display: none; }
  .principle-num { font-size: 0.8rem; }
  .principle-title { font-size: 1.5rem; }
  .dna-verdict { flex-direction: column; align-items: flex-start; gap: 20px; }
  .dna-cta { align-self: stretch; text-align: center; }
}
@media (max-width: 700px) {
  .dna-editorial { padding: 72px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .principle-row { transition: none !important; }
}

/* ── Glücksmomente (Instagram-Wall) ────────────────────────── */
.moments-section {
  padding: 96px 0 104px;
  background: var(--bg-light, #f8fafc);
}
.moments-lead {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--text-muted);
  text-align: center;
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.moments-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg, 20px);
  aspect-ratio: 3 / 4;
  background: #eef4f8;
  box-shadow: var(--shadow, 0 4px 20px rgba(0, 0, 0, .06));
  text-decoration: none;
}
.moments-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.moments-tile:hover img { transform: scale(1.05); }
.moments-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(3, 27, 46, 0);
  opacity: 0;
  transition: opacity .3s ease, background .3s ease;
}
.moments-tile:hover .moments-overlay {
  opacity: 1;
  background: rgba(3, 27, 46, 0.45);
}
.moments-ico {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--dark);
  display: grid; place-items: center;
  transform: scale(.7);
  transition: transform .3s ease;
}
.moments-tile:hover .moments-ico { transform: scale(1); }
.moments-ico svg { width: 24px; height: 24px; }

/* CTA-Zeile: Profil + Hashtag */
.moments-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}
.moments-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.moments-follow img { width: 22px; height: 22px; }
.moments-handle {
  font-weight: 700; font-size: 0.95rem;
  color: var(--dark);
}
.moments-hashtag {
  font-size: 0.82rem; font-weight: 600;
  color: var(--primary-dark);
  background: rgba(61, 184, 229, 0.10);
  padding: 6px 13px; border-radius: 99px;
}

@media (max-width: 992px) {
  .moments-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .moments-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .moments-section { padding: 72px 0 84px; }
}
@media (prefers-reduced-motion: reduce) {
  .moments-tile img, .moments-ico, .moments-overlay { transition: none !important; }
}
