/* ============================================================
   CZN-PERFORMANCE – Neongrün & Schwarz (Optimierte Version)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --accent:        #39ff14;
  --accent-dark:   #28cc0f;
  --accent-glow:   rgba(57,255,20,0.18);
  --black:         #0a0a0a;
  --dark:          #111111;
  --dark2:         #181818;
  --dark3:         #222222;
  --card-bg:       #161616;
  --border:        rgba(57,255,20,0.18);
  --border-subtle: rgba(255,255,255,0.08);
  --text:          #e0e0e0;
  --text-muted:    #888888;
  --white:         #ffffff;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 24px rgba(57,255,20,0.25);
  --transition:    0.3s ease;
  --font-head:     'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --nav-h:         72px;
}

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

/* Horizontalen Overflow global verhindern */
html, body { overflow-x: hidden; max-width: 100%; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Spacing ---- */
section { padding: 96px 0; }

/* ============================================================
   TYPOGRAPHY HIERARCHY
   ============================================================ */

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Section title – always significantly larger than body text */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title--light { color: var(--white); }

/* Section subtitle – clearly smaller than title */
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-sub { margin: 0 auto; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(10,10,10,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-czn  { color: var(--accent); }
.logo-dash { color: var(--text-muted); margin: 0 2px; }
.logo-perf { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--black);
  padding: 9px 22px;
  font-weight: 800;
  border-radius: 7px;
  margin-left: 8px;
}

.nav-links a.nav-cta:hover {
  background: var(--accent-dark);
  color: var(--black);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(57,255,20,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-prog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 7px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  transition: all var(--transition);
  width: 100%;
  margin-top: 4px;
}

.btn-prog:hover {
  background: var(--accent);
  color: var(--black);
}

.btn-full { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 920px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(57,255,20,0.08);
  border: 1px solid rgba(57,255,20,0.35);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* Hero title – largest text on page */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-accent {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(57,255,20,0.35);
}

/* Hero subtitle – clearly smaller than title */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2.2s infinite;
  transition: color var(--transition);
}

.hero-scroll:hover { color: var(--accent); }
.hero-scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--dark2);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 44px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 16px rgba(57,255,20,0.45);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ============================================================
   ABOUT / ÜBER MICH
   ============================================================ */
.about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 56px;
  align-items: center;
}

.about-image {
  position: relative;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  max-height: 460px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--border);
  box-shadow: var(--shadow), var(--shadow-accent);
  margin: 0 auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: var(--accent);
  color: var(--black);
  padding: 12px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-accent);
  line-height: 1.3;
  white-space: nowrap;
}

.about-badge svg { width: 20px; height: 20px; flex-shrink: 0; }

.about-content .section-title { margin-top: 6px; }

/* About body text – smaller than section title */
.about-content p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(57,255,20,0.07);
  border: 1px solid rgba(57,255,20,0.22);
  padding: 7px 14px;
  border-radius: 100px;
}

.tag svg { width: 14px; height: 14px; }

/* ============================================================
   PROGRAMME
   ============================================================ */
.programmes { background: var(--black); }

.prog-category-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.prog-category-label span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.prog-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Grids */
.prog-grid { display: grid; gap: 24px; }
.prog-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.prog-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Card */
.prog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), var(--shadow-accent);
  border-color: var(--accent);
}

.prog-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.prog-card--dark { background: var(--dark2); }

/* Card image */
.prog-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.prog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prog-card:hover .prog-img img { transform: scale(1.06); }

.prog-age-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Card body */
.prog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

/* Programme title – clearly larger than description and features */
.prog-title {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.15;
}

/* Programme description – smaller than title */
.prog-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Feature list */
.prog-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 4px;
}

.prog-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.prog-features li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ============================================================
   WARUM CZN
   ============================================================ */
.why {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.90);
}

.why .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.why-card:hover {
  background: rgba(57,255,20,0.05);
  border-color: rgba(57,255,20,0.28);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(57,255,20,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}

.why-icon svg { width: 26px; height: 26px; }

/* Why card title – larger than body text */
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 10px;
}

/* Why card body text – smaller than title */
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--dark); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: rgba(57,255,20,0.3); }
.faq-item.open  { border-color: var(--accent); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(57,255,20,0.03); }

/* FAQ question – larger than answer text */
.faq-question span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--white);
  line-height: 1.3;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* FAQ answer text – smaller than question */
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 24px 20px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-success {
  background: rgba(57,255,20,0.08);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success svg { width: 26px; height: 26px; flex-shrink: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Form label – larger than input text */
.form-group label {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.1);
}

/* Contact info */
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.contact-item:hover {
  border-color: var(--accent);
  background: rgba(57,255,20,0.04);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(57,255,20,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.contact-social h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 18px;
  background: var(--dark2);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: all var(--transition);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(57,255,20,0.06);
}

/* ============================================================
   LEGAL SECTIONS (Impressum / Datenschutz)
   ============================================================ */
.legal-section {
  background: var(--dark);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.legal-section .section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 32px;
}

.legal-content { max-width: 760px; }

.legal-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin: 28px 0 8px;
}

.legal-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-social a svg { width: 18px; height: 18px; }

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(57,255,20,0.08);
}

/* Footer column headings – larger than list items */
.footer-nav h4,
.footer-offers h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-nav ul,
.footer-offers ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-offers a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-offers a:hover { color: var(--accent); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

.footer-contact a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    padding-bottom: 36px;
    text-align: center;
  }

  .about-image img {
    max-width: 280px;
  }

  .about-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
  }

  .prog-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prog-grid-2 { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  section { padding: 72px 0; }

  /* Navbar mobile */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a {
    padding: 14px 16px;
    font-size: 1.1rem;
    border-radius: 8px;
  }

  .nav-links a.nav-cta {
    text-align: center;
    margin-top: 8px;
    margin-left: 0;
  }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  /* Stats */
  .stats-container { flex-direction: column; }
  .stat-divider { width: 80%; height: 1px; }
  .stat-item { padding: 20px 24px; }

  /* Programmes */
  .prog-grid-3 { grid-template-columns: 1fr; }
  .prog-grid-2 { grid-template-columns: 1fr; }

  /* Bilder auf Mobile nicht zu gross */
  .prog-img { height: 180px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Section titles on mobile */
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 100px 16px 60px; }
  .hero-title { font-size: 2.3rem; }
  .stat-item { padding: 16px 20px; }
  .prog-body { padding: 18px; }
  .why-card { padding: 24px 20px; }
  .faq-question { padding: 16px 18px; }
  .faq-answer p { padding: 0 18px 16px; }
  .contact-grid { gap: 28px; }
}
