/* =========================================================
   WELL-ECADEMIE – Haupt-Stylesheet
   Basis: 1rem = 10px
   Breakpoint Mobile: max-width 799px
   Breakpoint Desktop: min-width 800px
   ========================================================= */

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

:root {
  /* Palette */
  --color-deep:    #0d2233;
  --color-primary: #14566e;
  --color-accent:  #6CC3D4;
  --color-sand:    #f2efe8;
  --color-mid:     #4a7a8a;
  --color-text:    #1a2d38;
  --color-muted:   #6b8d99;
  --color-white:   #ffffff;
  --color-line:    #d4e4ea;

  /* Spacing */
  --gap:    3rem;
  --gap-lg: 6rem;
  --gap-xl: 9rem;

  /* Radius */
  /* --radius:    0.4rem;
  --radius-lg: 1.2rem; */
  
   --radius:   0;
  --radius-lg: 0;

  /* Transition */
  --ease: 0.25s ease;

  /* Header heights */
  --header-h:        11rem;
  --header-h-sticky: 8rem;
  --header-h-mobile: 6rem;
  
    --font-display: 'Roboto Condensed', sans-serif;

}

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

body {
  font-family: 'Roboto', sans-serif;
  font-size: 2.2rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

/* --- Liquid Font-Size ------------------------------------ */
@media (min-width: 800px) {
  body {
    font-size: clamp(1.8rem, calc(1.4rem + 0.4vw), 2.2rem);
  }
} 

/* --- Typography ------------------------------------------ */
h1, h2, h3, h4 {
  font-family: 'Roboto', sans-serif;
  line-height: 1.2;
  color: var(--color-deep);
  font-weight: 400;
  
    font-family: var(--font-display);
  font-weight: 300;           /* ultralight als Basis */}

h1 {
  font-size: clamp(5rem, 7vw, 10rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(3.2rem, 4.5vw, 5.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  margin-bottom: 1.2rem;
}

h4 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.6rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 2rem;
}

li {
  margin-bottom: 0.6rem;
}

/* --- Layout: .full + .half ------------------------------- */
.full {
  width: 100%;
}

.half {
	position:relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--gap-lg) var(--gap);
}

.half--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--gap-lg) var(--gap);
}

/* --- Spalten innerhalb .half ---------------------------- */
.cols {
  display: flex;
  flex-wrap: wrap;
}

.col-33  { width: 33.333%; }
.col-50  { width: 49%; }
.col-66  { width: 66.666%; }
.col-100 { width: 100%; }

/* h2 in col-100 auf 75% Breite (Desktop) */
@media (min-width: 800px) {
  .col-100 > h2 {
    max-width: 75%;
  }
}

@media (max-width: 799px) {
  .col-33,
  .col-50,
  .col-66  { width: 100%; }

  .half,
  .half--narrow { padding: 4rem 2rem; }

  .col-100 > h2 { max-width: 100%; }
}

/* --- Farb-Varianten für Sections ------------------------- */
.full--dark {
  background: var(--color-deep);
  color: var(--color-white);
}

.full--dark h1,
.full--dark h2,
.full--dark h3,
.full--dark h4 {
  color: var(--color-white);
}

.full--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.full--primary h1,
.full--primary h2,
.full--primary h3,
.full--primary h4 {
  color: var(--color-white);
}

.full--sand {
  background: var(--color-sand);
}

/* =========================================================
   SHARED COMPONENTS
   ========================================================= */

/* Verlaufskarte – dunkel (Petrol → Deep) */
.card-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-deep));
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--color-white);
}

.card-gradient h3,
.card-gradient h4 {
  color: var(--color-accent);
  margin-bottom: 1.4rem;
}

.card-gradient p {
  color: rgba(255,255,255,0.80);
  font-size:85%;
}

.card-gradient a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Verlaufskarte – hell (white + shadow) */
.card-white {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  /* box-shadow: 0 2px 20px rgba(13,34,51,0.07); */
}

/* Checklist – universell */
.check-list {
  list-style: none;
  padding: 0;
  margin-top: 2.4rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 1.6rem;
  margin-bottom: 0;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list__icon {
  color: var(--color-accent);
  font-size: 2.2rem;
  flex-shrink: 0;
  font-weight:bold;
}

/* Section Label */
.section-label {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}

.full--dark .section-label,
.full--primary .section-label {
  color: var(--color-accent);
}

/* Divider */
.divider {
  width: 5rem;
  height: 0.4rem;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 2rem 0 3rem;
}

/* Inline-Link-Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  margin-top: 2rem;
  transition: color var(--ease);
}

.link-arrow:hover {
  color: var(--color-primary);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--color-accent);
  color: var(--color-deep);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.4rem 2.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--ease), transform var(--ease);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #85d3e2;
  transform: translateY(-2px);
  color: var(--color-deep);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.3rem 2.8rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color var(--ease), background var(--ease);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: transparent;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.2rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-primary);
  text-decoration: none;
  transition: all var(--ease);
  cursor: pointer;
  width: 100%;
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Login-Button */
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--color-accent);
  color: var(--color-deep) !important;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-login:hover {
  background: #85d3e2;
  transform: translateY(-1px);
}

.btn-login svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* @media (max-width: 799px) {
  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
  }
} */

/* =========================================================
   HEADER
   ========================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-deep);
  transition: transform 0.4s ease, box-shadow 0.3s ease, height 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

#site-header.hide {
  transform: translateY(-100%);
}

#site-header.sticky {
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: height 0.3s ease;
}

#site-header.sticky .header-inner {
  height: var(--header-h-sticky);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo__mark {
  width: 4.8rem;
  height: 4.8rem;
  background: var(--color-accent);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-deep);
  letter-spacing: -0.05em;
  line-height: 1;
}

.header-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-logo__top {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-logo__name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-accent);
  background: rgba(255,255,255,0.06);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-deep);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 400;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: color var(--ease);
}

.mobile-nav-overlay a:hover {
  color: var(--color-accent);
}

.mobile-nav-close {
  position: absolute;
  top: 1.6rem;
  right: 2.6rem;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 799px) {
  .header-inner {
    padding: 0 2rem;
    height: var(--header-h-mobile);
  }
  #site-header.sticky .header-inner {
    height: var(--header-h-mobile);
  }
  .header-nav  { display: none; }
  .nav-toggle  { display: flex; }
  .btn-login   { display: none; }
  .mobile-nav-overlay .btn-login {
    display: inline-flex;
    margin-top: 2rem;
    font-size: 1.8rem;
    padding: 1.2rem 2.4rem;
    width: auto;
  }
}

/* =========================================================
   HERO
   ========================================================= */
#hero {
  position: relative;
  height: 90vh;
  min-height: 56rem;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--color-deep);
  border-bottom:2rem solid var(--color-deep);

}



.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
  
  filter: grayscale(100%) brightness(100%) contrast(1.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg,
    rgba(13,34,51,0.88) 0%,
    rgba(20,86,110,0.65) 50%,
    rgba(13,34,51,0.40) 100%
  );*/
  background: linear-gradient(
    to bottom,
    rgba(11,31,46,0.15) 0%,
    rgba(11,31,46,0.50) 40%,
    rgba(11,31,46,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: var(--header-h);
  width: 100%;
  will-change: transform;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-deep);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.hero-content h1 {
  color: var(--color-white);
  max-width: 90rem;
  margin-bottom: 2.4rem;
}

.hero-content h1 span {
  color: var(--color-accent);
}

.hero-sub {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  color: rgba(255,255,255,0.80);
  max-width: 62rem;
  margin-bottom: 4rem;
  line-height: 1.6;
}

/* .hero-actions {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
} */
.stoerer {
	position:absolute;
	bottom:-5rem;
	right:5%;
	width:22%;
	min-width:25rem;
	aspect-ratio:1/1;
	z-index:999;
	 will-change: transform;

}

@media (max-width: 799px) {
  .hero-content {
    padding: 0 2rem;
    padding-top: var(--header-h-mobile);
  }
  #hero {
	 height: 65rem;
	 max-height: 65rem;
   }
  .stoerer {
	width:20%;
	min-width:15rem;
}
  /* .hero-actions {
    flex-direction: column;
    gap: 1.2rem;
  } */
}

/* =========================================================
   SECTION: PARALLAX-BILDSTREIFEN
   ========================================================= */
.full--parallax-band {
  position: relative;
  height: 35rem;
  overflow: hidden;
}

.parallax-band-bg {
  position: absolute;
  inset: -20%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  
  filter: grayscale(100%) brightness(100%) contrast(1.5);
}

.parallax-band-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(13,34,51,0.55); */
  
    background: linear-gradient(
    to bottom,
    rgba(11,31,46,0.15) 0%,
    rgba(11,31,46,0.50) 40%,
    rgba(11,31,46,0.95) 100%
  );
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-band-headline {
  color: var(--color-white);
  text-align: center;
  padding: 2rem;
  max-width: 88rem;
}

.parallax-band-headline h2 {
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.parallax-band-headline p {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  color: rgba(255,255,255,0.85);
  margin-top: 1.2rem;
}

@media (max-width: 799px) {
  .parallax-band-bg {
    background-attachment: scroll;
    inset: 0;
  }
  .full--parallax-band {
    height: 36rem;
  }
}

/* =========================================================
   MODULE: PLATTFORM-INFO (intro-grid)
   ========================================================= */
.intro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: center;
}

.intro-grid__text  { flex: 1 1 44rem; }
.intro-grid__visual {
  flex: 1 1 32rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* platform-card erbt von card-gradient */
.platform-card {
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  border: 3rem solid rgba(108,195,212,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.platform-stat {
  margin-bottom: 2.4rem;
}

.platform-stat__number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.platform-stat__label {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.70);
  margin-top: 0.4rem;
}

.platform-note {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.50);
  margin-top: 2rem;
  margin-bottom: 0;
}

/* =========================================================
   MODULE: QUALIFIKATIONSBEREICHE
   ========================================================= */
.quali-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36rem, 1fr));
  gap: 2rem;
  margin-top: 6rem;
}

.quali-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.4rem;
  background:var(--color-accent);
  /* border-left: 4px solid var(--color-accent);
  box-shadow: 0 2px 16px rgba(20,86,110,0.08);
  transition: transform var(--ease), box-shadow var(--ease); */
}

.quali-item:hover {
  /* transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(20,86,110,0.14); */
}

.quali-item__icon {
  width: 4.8rem;
  height: 4.8rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  font-size: 2.2rem;
  
  display:none;
}

.quali-item h3 {
  font-size: 2.3rem;
  font-weight:500;
  margin-bottom: 1.8rem;
  color: var(--color-primary);
}

.quali-item p {
  font-size: 1.6rem;
  color: var(--color-muted);
  color: var(--color-white);
  margin-bottom: 0;
}

/* =========================================================
   MODULE: VERGLEICHSTABELLE SCHULUNGEN
   ========================================================= */
.vergleich-wrap {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 5rem;
}

.tarif-card {
  flex: 1 1 30rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: 0 4px 30px rgba(13,34,51,0.10); */
  transition: transform var(--ease);
}

.tarif-card:hover {
  transform: translateY(-4px);
}

.tarif-card--highlight {
  /* box-shadow: 0 8px 50px rgba(108,195,212,0.22); */
  transform: scale(1.02);
  z-index: 1;
}

/* .tarif-card--highlight:hover {
  transform: scale(1.02) translateY(-4px);
} */

/* Kopf: dark-Variante */
.tarif-head {
  padding: 3rem 2.8rem 2.4rem;
  color: var(--color-white);
}

.tarif-head.dark {
  background: var(--color-deep);
}

.tarif-head.blue {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.tarif-badge {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.tarif-badge.dark {
  background: var(--color-accent);
  color: var(--color-deep);
}

.tarif-badge.blue {
  background: var(--color-white);
  color: var(--color-primary);
}

.tarif-head h3 {
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.tarif-head p {
  color: rgba(255,255,255,0.65);
  font-size: 1.5rem;
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.tarif-head.blue p {
  color: rgba(255,255,255,0.80);
}

.tarif-price {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 1.2rem;
}

.tarif-head.dark  .tarif-price { color: var(--color-accent); }
.tarif-head.blue  .tarif-price { color: var(--color-white); }

.tarif-price span {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.8;
}

.tarif-features {
  padding: 2.4rem 2.8rem;
  list-style: none;
}

.tarif-features li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.tarif-features li:last-child {
  border-bottom: none;
}

.tarif-features .check   { color: var(--color-accent); font-size: 1.6rem; flex-shrink: 0; }
.tarif-features .cross   { color: #bbb;                font-size: 1.6rem; flex-shrink: 0; }
.tarif-features .muted   { color: #aaa; }

.tarif-cta {
  padding: 0 2.8rem 2.8rem;
}

.tarif-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   MODULE: VORTEILE VERGLEICH (Online vs. Offline)
   ========================================================= */
.vorteil-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  /* box-shadow: 0 2px 20px rgba(13,34,51,0.08); */
}

.vorteil-table th {
  padding: 1.6rem 2rem;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vorteil-table th:first-child  { background: none; color: var(--color-muted);border-bottom: 1px solid var(--color-line);
 }
.vorteil-table th.col-online   { background: var(--color-accent); color: var(--color-white); }
.vorteil-table th.col-offline  { background: #5a7a88; color: var(--color-white); }

.vorteil-table td {
  padding: 1.4rem 2rem;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-white);
  vertical-align: middle;
}

.vorteil-table tr:last-child td { border-bottom: none; }

.vorteil-table td:first-child {
  font-weight: 500;
  color: var(--color-text);
  background: #f8fbfc;
}

.vorteil-table .ok      { color: var(--color-accent); font-size: 1.8rem; }
.vorteil-table .no      { color: #c0c8cc;             font-size: 1.8rem; }
.vorteil-table .partial { color: #f0a500;              font-size: 1.8rem; }

@media (max-width: 799px) {
  .vorteil-table {
    display: block;
    overflow-x: auto;
  }
}

/* =========================================================
   MODULE: TEAM / DOZENTEN
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  gap: 2.4rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: 0 2px 20px rgba(13,34,51,0.08); */
  transition: transform var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card__img-placeholder {
  width: 100%;
  height: 26rem;
  /* background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-deep) 100%); */
  background: var(--color-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255,255,255,0.3);
}

.team-card__body { padding: 2.4rem; }

.team-card__role {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.team-card__name {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-deep);
  margin-bottom: 0.8rem;
}

.team-card__bio {
  font-size: 1.5rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================================================
   MODULE: FOUNDER
   ========================================================= */
.founder-wrap {
  display: flex;
  gap: var(--gap-lg);
  align-items: center;
  flex-wrap: wrap;
}

.founder-img-wrap {
  flex: 0 0 28rem;
  position: relative;
}

.founder-img-placeholder {
  width: 28rem;
  height: 36rem;
  border-radius: var(--radius-lg);
  /* background: linear-gradient(135deg, var(--color-primary), var(--color-deep)); */
   background: var(--color-deep);

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(255,255,255,0.25);
}

.founder-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.founder-text { flex: 1 1 40rem; }

.founder-quote {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 400;
  font-style:italic;
  color: var(--color-accent);
  line-height: 1.4;
  margin-bottom: 2rem;
  width:60%;
  /* padding-left: 2.4rem; */
  /* border-left: 4px solid var(--color-accent); */
}

@media (max-width: 799px) {
  .founder-wrap      { flex-direction: column; gap: 3rem; }
  .founder-img-wrap  { flex: 0 0 auto; width: 100%; }
  .founder-img-placeholder { width: 100%; height: 30rem; }
}

/* =========================================================
   MODULE: MEDIATHEK
   ========================================================= */
.mediathek-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mediathek-item {  
    font-size: 1.5rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 0;
  /* box-shadow: 0 2px 16px rgba(13,34,51,0.08); */
}

.mediathek-thumb {
  position: relative;
  width:100%;
  height:auto;
  min-height: 20rem;
  aspect-ratio:16/10;
  background: var(--color-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mediathek-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--ease), transform 0.4s ease;
}

.mediathek-item:hover .mediathek-thumb img {
  opacity: 0.5;
  transform: scale(1.04);
}

.play-btn {
  position: absolute;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease), background var(--ease);
  z-index: 2;
}

.play-btn:hover {
  transform: scale(1.1);
  background: #85d3e2;
}

.play-btn svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--color-deep);
  margin-left: 0.3rem;
}

.mediathek-meta { padding: 2rem 2rem 2.4rem; }

.mediathek-tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.mediathek-meta h3 {
   font-family: 'Roboto', sans-serif;
 
    font-size: 2rem;
  font-weight: 400;
  color: var(--color-deep);
  margin-bottom: 0.8rem;
}

.mediathek-meta p {
  font-size: 1.5rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 0;

}



/* =========================================================
   MODULE: FAQ AKKORDEON
   ========================================================= */
.faq-list {
  margin-top: 3rem;
  max-width: 90rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-line);
}

/* h4 statt button */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  cursor: pointer;
  color: var(--color-deep);
  user-select: none;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 400;
}

.faq-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background var(--ease);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-primary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: var(--color-white);
}

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

.faq-answer-inner {
  padding: 0 0 2.4rem 0;
  font-size: 1.7rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 40rem;
}

/* =========================================================
   MODULE: STATS / ZAHLEN
   ========================================================= */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding:0;
}

.stat-item {
  flex: 1 1 20rem;
  padding: 3.5rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(3.6rem, 5vw, 5.6rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.6rem;
}

@media (max-width: 799px) {
  .stats-row        { flex-direction: column; }
  .stat-item        { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 2.4rem 2rem; }
  .stat-item:last-child { border-bottom: none; }
}

/* =========================================================
   MODULE: IDEE
   ========================================================= */
.idea-split {
  display: flex;
  gap: var(--gap-lg);
  align-items: center;
  flex-wrap: wrap;
}

.idea-split__text  { flex: 1 1 40rem; }
.idea-split__aside { flex: 0 1 36rem; }

.idea-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.idea-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 1.7rem;
  margin-bottom: 0;
}

.idea-list li:last-child { border-bottom: none; }

.idea-list__num {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: var(--color-accent);
  color: var(--color-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
}

@media (max-width: 799px) {
  .idea-split        { flex-direction: column; gap: 3rem; }
  .idea-split__aside { width: 100%; flex: 0 0 auto; }
}

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: var(--color-deep);
  color: rgba(255,255,255,0.65);
  padding: 6rem 3rem 3rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 1.5rem;
  margin-top: 1.6rem;
  color: rgba(255,255,255,0.55);
  max-width: 30rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.6rem;
}

.footer-col ul      { list-style: none; padding: 0; }
.footer-col ul li   { margin-bottom: 0.8rem; }

.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color var(--ease);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.4rem;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1.3rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--ease);
}

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

@media (max-width: 799px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #site-footer { padding: 4rem 2rem 2rem; }
}

/* =========================================================
   ANIMATIONS / SCROLL-REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .parallax-band-bg {
    background-attachment: scroll;
  }
}
