/* ============================================================
   Meine Pflegeausbildung — Design-System
   Zielgruppe: 16–25 Jahre, mobile-first, warm & motivierend
   Farbschema: Warm-Teal + Koralle + Gold
   Empathisch, einladend, menschlich — passend zum Pflegeberuf
   ============================================================ */

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

:root {
  /* Primaerfarben — warm & menschlich */
  --navy: #0f4c5c;
  --navy-light: #1a6575;
  --navy-dark: #0a3640;
  --cyan: #2dd4bf;
  --cyan-hover: #14b8a6;
  --cyan-light: #5eead4;
  --cyan-pale: #e6faf7;
  --coral: #ff6b6b;
  --coral-hover: #ee5a5a;
  --coral-light: #ff8a8a;
  --coral-pale: #fff0f0;
  --gold: #ffc60b;
  --gold-hover: #e6b200;
  --gold-pale: #fff8e0;

  /* Hintergruende */
  --bg: #ffffff;
  --bg-alt: #f5f9f8;
  --bg-card: #ffffff;
  --bg-header: rgba(255, 255, 255, 0.97);
  --bg-hero: linear-gradient(170deg, #e6faf7 0%, #ffffff 45%, #fff0f0 100%);

  /* Text */
  --text: #1a2e35;
  --text-muted: #4a5e68;
  --text-secondary: #7e9199;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #b0cdd5;

  /* Borders & Effects */
  --border: #e2ecea;
  --border-accent: rgba(45, 212, 191, 0.25);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: 0.25s ease;
  --shadow-sm: 0 1px 3px rgba(15,76,92,0.05);
  --shadow-md: 0 4px 20px rgba(15,76,92,0.08);
  --shadow-lg: 0 12px 40px rgba(15,76,92,0.12);
  --shadow-glow: 0 0 30px rgba(45, 212, 191, 0.15);

  /* Typografie */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan-hover); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan); }
img { max-width: 100%; height: auto; }
::selection { background: var(--cyan-pale); color: var(--navy); }
main { flex: 1; }

/* === Animationen === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-up { animation: fadeUp 0.6s ease-out both; }
.animate-up-delay-1 { animation: fadeUp 0.6s ease-out 0.1s both; }
.animate-up-delay-2 { animation: fadeUp 0.6s ease-out 0.2s both; }
.animate-up-delay-3 { animation: fadeUp 0.6s ease-out 0.35s both; }
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.5s ease-out; }
.revealed { opacity: 1; transform: translateY(0); }

/* === Layout === */
.section-full { width: 100%; padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-wide { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* === Header === */
.site-header {
  background: var(--navy);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: none;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-on-dark);
}
.site-logo:hover { color: var(--text-on-dark); }
.site-logo img { height: 40px; width: auto; }

.site-logo-text {
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.logo-word-primary {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.logo-word-secondary {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-on-dark);
}
.site-logo:hover .logo-word-secondary { color: var(--cyan); }

@media (max-width: 580px) {
  .site-logo-text { display: none; }
}

.site-nav { display: flex; gap: 0.25rem; align-items: center; }
.site-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.site-nav a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}
.site-nav a.active {
  color: var(--cyan);
  background: rgba(45,212,191,0.12);
  font-weight: 600;
}

.nav-toggle { display: none; background: none; border: none; color: var(--text-on-dark); font-size: 1.5rem; cursor: pointer; padding: 0.25rem; }

/* --- Dropdown Navigation (Desktop) --- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-chevron {
  transition: transform var(--transition);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(15,76,92,0.15);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-item {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text) !important;
  font-weight: 400;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-dropdown-item:hover {
  background: var(--bg-alt);
  color: var(--navy) !important;
}
.nav-dropdown-overview {
  color: var(--text-secondary) !important;
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 0.75rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .site-nav.active { display: flex; }
  .site-nav a { padding: 0.6rem 1rem; width: 100%; }

  /* Mobile: Dropdowns als aufklappbare Bereiche */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: var(--radius-xs);
    box-shadow: none;
    padding: 0.25rem 0;
    margin: 0.25rem 0 0.5rem;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-item {
    color: rgba(255,255,255,0.7) !important;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
  .nav-dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
  }
  .nav-dropdown-overview {
    color: rgba(255,255,255,0.5) !important;
  }
  /* Mobile: Toggle dropdown per click */
  .nav-dropdown .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
}

/* === Buttons === */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral);
  color: #fff !important;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}
.btn-gold:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 107, 0.4);
  color: #fff !important;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy) !important;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--navy);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--text-on-dark) !important;
}

/* Legacy button aliases */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--coral); color: #fff !important;
  padding: 0.9rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all var(--transition); border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}
.btn-primary:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255, 107, 107, 0.4); color: #fff !important; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--navy) !important; padding: 0.85rem 1.75rem;
  border-radius: 50px; font-weight: 600; font-size: 1rem; border: 2px solid rgba(9,33,64,0.2);
  transition: all var(--transition); cursor: pointer;
}
.btn-outline:hover { border-color: var(--navy); background: rgba(9,33,64,0.04); color: var(--navy) !important; }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* === HERO === */
.hero {
  background: var(--bg-hero);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,174,239,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,107,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cyan-hover);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--cyan-hover), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.hero-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-width: 140px;
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero-lead { font-size: 1.05rem; }
  .hero-stats { gap: 0.75rem; }
  .hero-stat { min-width: 0; padding: 0.75rem 1rem; }
  .hero-stat strong { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-stats { flex-direction: column; gap: 0.5rem; align-items: center; }
  .hero-stat { width: 100%; max-width: 240px; }
}

/* === Section Headers === */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .section-header h2 { font-size: 1.75rem; }
  .section-full { padding: 3.5rem 0; }
}

/* === Topic Grid (3er Karten auf Home) === */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .topic-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.topic-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  color: inherit;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.topic-card:hover::before { transform: scaleX(1); }

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

.topic-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xs);
  background: var(--cyan-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--cyan);
  transition: all var(--transition);
}

.topic-card:hover .topic-icon {
  background: var(--navy);
  color: var(--cyan);
}

.topic-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.topic-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.btn-details {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition), color var(--transition);
}
.topic-card:hover .btn-details { gap: 0.6rem; color: var(--cyan-hover); }

/* === Gruende / Reasons === */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.reason-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

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

.reason-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-on-dark);
  background: var(--navy);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.reason-content { flex: 1; }

.reason-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.reason-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === Zitat === */
.quote-section {
  background: var(--navy);
  padding: 4rem 1.5rem;
  text-align: center;
}

.quote-block {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

.quote-block blockquote {
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  position: relative;
  font-weight: 400;
}

.quote-block blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--cyan);
  position: absolute;
  top: -1.25rem;
  left: -0.5rem;
  line-height: 1;
  opacity: 0.6;
}

.quote-block cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--cyan);
  font-style: normal;
  font-weight: 600;
}

/* === CTA Section === */
.section-cta {
  text-align: center;
  background: linear-gradient(170deg, var(--bg) 0%, var(--cyan-pale) 100%);
  padding: 5rem 0;
  position: relative;
}

.section-cta h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* === Sub-Topic Grid (Sections: Beruf, Ausbildung, Bewerbung) === */
.sub-topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.sub-topic-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.sub-topic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
  color: inherit;
}

.sub-topic-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.sub-topic-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

/* === Breadcrumbs === */
.breadcrumbs {
  margin-bottom: 1rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin: 0 0.5rem;
  color: var(--text-secondary);
}
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--cyan-hover);
}
.breadcrumbs li[aria-current="page"] {
  color: var(--navy);
  font-weight: 500;
}

/* === Page Single (Artikelseiten) === */
.page-single {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.page-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 2px solid var(--border);
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.page-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.page-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
  color: var(--navy);
}

.page-content p {
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.page-content ul, .page-content ol {
  margin-bottom: 1.1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.page-content li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.page-content strong { color: var(--text); font-weight: 600; }

.page-content blockquote {
  border-left: 3px solid var(--cyan);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--cyan-pale);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* Tabellen */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.page-content table th,
.page-content table td {
  padding: 0.7rem 1rem;
  text-align: left;
}

.page-content table th {
  font-weight: 600;
  color: var(--text-on-dark);
  background: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-content table td {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.page-content table tr:last-child td { border-bottom: none; }
.page-content table tr:hover td { background: var(--cyan-pale); }

/* Info-Box */
.info-box {
  background: var(--coral-pale);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.info-box p { margin-bottom: 0; color: var(--text-muted); }
.info-box strong { color: var(--navy); }

/* === Footer === */
.site-footer {
  background: var(--navy);
  color: var(--text-on-dark-muted);
  padding: 3.5rem 0 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-col h4 {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cyan-light); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--cyan);
  color: white;
}

.footer-bottom {
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--text-on-dark-muted);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-banner.active { transform: translateY(0); }

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; text-align: center; }
}

.cookie-banner-text { font-size: 0.85rem; line-height: 1.5; }
.cookie-banner-text a { color: var(--cyan-light); text-decoration: underline; }
.cookie-banner-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }

.cookie-btn-accept {
  background: var(--cyan);
  color: var(--navy);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-accept:hover { background: var(--cyan-hover); }

.cookie-btn-reject {
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.35); color: white; }

/* === Kontaktformular === */
.contact-form {
  max-width: 560px;
  margin: 1.5rem 0 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

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

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237e9199' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form .btn-gold {
  margin-top: 0.5rem;
}

/* === Blog === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  color: inherit;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.blog-card:hover::before { transform: scaleX(1); }

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

.blog-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card .btn-details {
  margin-top: auto;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-meta time {
  font-weight: 500;
}

.blog-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-hover);
  background: var(--cyan-pale);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.blog-category--small {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
}

.blog-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.blog-back a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cyan-hover);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}

.blog-back a:hover {
  gap: 0.65rem;
  color: var(--cyan);
}

.related-posts {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.related-posts h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: all var(--transition);
  color: inherit;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
  color: inherit;
}

.related-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  flex: 1;
}

.related-card .btn-details {
  font-size: 0.8rem;
}

/* === Quiz CTA (Startseite) === */
.quiz-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--cyan-pale), #f0fdf4);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
}

.quiz-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
  box-shadow: var(--shadow-sm);
}

.quiz-cta-text { flex: 1; }

.quiz-cta-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.quiz-cta-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.quiz-cta .btn-gold {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .quiz-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }
  .quiz-cta .btn-gold { width: 100%; justify-content: center; }
}

/* === Dual CTA (Quiz + Starterset) === */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.dual-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.dual-cta-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(15,76,92,0.1);
  transform: translateY(-3px);
}
.dual-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cyan-pale);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.dual-cta-icon--coral {
  background: var(--coral-pale);
  color: var(--coral);
}
.dual-cta-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.dual-cta-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.dual-cta-card .btn-details {
  margin-top: auto;
}
@media (max-width: 640px) {
  .dual-cta { grid-template-columns: 1fr; }
}

/* === Content Figure === */
.content-figure {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15,76,92,0.08);
}
.content-figure img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.content-figure figcaption {
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
@media (max-width: 640px) {
  .content-figure img { height: 240px; }
}

/* === Stat Cards (Kennzahlen nebeneinander) === */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-card .stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.stat-card .stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
@media (max-width: 640px) {
  .stat-cards { grid-template-columns: 1fr; }
}

/* === Content Grid (2-3 Spalten für Karten) === */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.content-grid--3 { grid-template-columns: repeat(3, 1fr); }
.content-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .content-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.content-grid-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 0.85rem;
  row-gap: 0;
  align-content: start;
}
.h2-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--cyan-pale);
  color: var(--cyan);
  vertical-align: middle;
  margin-right: 0.6rem;
  position: relative;
  top: -2px;
}
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--cyan-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  grid-row: 1 / -1;
  align-self: start;
}
.content-grid-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  min-height: 36px;
  display: flex;
  align-items: center;
}
.content-grid-card p {
  grid-column: 2;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.content-grid-card .highlight {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cyan-dark);
  display: block;
  margin-bottom: 0.25rem;
  grid-column: 2;
}
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
}
.checklist li:last-child { border-bottom: none; }

@media (max-width: 640px) {
  .content-grid, .content-grid--3 { grid-template-columns: 1fr; }
}

/* === Highlight Bar (Kernzahl hervorheben) === */
.highlight-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--cyan-pale);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-bar .hl-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
}
.highlight-bar .hl-text {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.5;
}

/* === Video Embed === */
.video-embed {
  position: relative;
  width: 100%;
  margin: 2rem 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 76, 92, 0.1);
  background: var(--navy-dark);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === FAQ Accordion === */
.faq-section details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-section details:hover { box-shadow: 0 2px 8px rgba(15,76,92,0.08); }
.faq-section details[open] { border-color: var(--navy-light); }
.faq-section summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy-light);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-section details[open] summary::after {
  content: '−';
}
.faq-section details > div,
.faq-section details > p {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-section details > div p:last-child { margin-bottom: 0; }

/* === Merch-Banner (Inline) === */
.merch-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
  margin: 2rem 0;
}

.merch-inline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}

.merch-inline-text {
  flex: 1;
}

.merch-inline-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.merch-inline-text span {
  color: var(--text-on-dark-muted);
  font-size: 0.82rem;
}

.merch-inline-btn {
  flex-shrink: 0;
  color: var(--navy) !important;
  background: var(--cyan);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}

.merch-inline-btn:hover {
  background: var(--cyan-hover);
  color: #fff !important;
}

@media (max-width: 640px) {
  .merch-inline {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .merch-inline-btn { width: 100%; text-align: center; display: block; }
}

/* === Merch-Banner (Hero) === */
.merch-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 1rem 0;
}

.merch-hero-content .section-tag { color: var(--cyan); }

.merch-hero-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.merch-hero-content p {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.merch-hero-products {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.merch-product {
  text-align: center;
  color: var(--text-on-dark-muted) !important;
  transition: all var(--transition);
}

.merch-product:hover {
  color: #fff !important;
  transform: translateY(-3px);
}

.merch-product-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.merch-product:hover .merch-product-img {
  background: rgba(255,255,255,0.12);
  border-color: var(--cyan);
}

.merch-product span {
  font-size: 0.78rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .merch-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .merch-hero-products { justify-content: center; }
  .merch-product-img { width: 75px; height: 75px; }
}
