/* ===== LOCAL FONTS ===== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/opensans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/opensans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --green: #afcb08;
  --green-dark: #96af07;
  --gray-dark: #4a4a4a;
  --gray-medium: #595959;
  --gray-light: #f5f5f5;
  --gray-bg: #f0f0f0;
  --white: #ffffff;
  --footer-bg: #3a3a3a;
  --text: #555555;
  --heading: #4a4a4a;
  --font: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --green-ink: #afcb08;
  --green-ink-dark: #96af07;
  --btn-ink: #1f2a07;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--green-dark);
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  scroll-margin-top: 90px;
}

.section--gray {
  background: var(--gray-bg);
}

.text-center {
  text-align: center;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  height: 70px;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo img {
  height: 56px;
  width: auto;
}

.footer__logo {
  height: 70px;
  width: auto;
  margin-bottom: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav a {
  color: var(--gray-dark);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: none;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--green);
}

/* Dropdown nav */
.nav-item {
  position: relative;
}

.nav-item.has-dropdown > a::after {
  content: '▾';
  font-size: 0.7em;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s;
}

.nav-item.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 8px;
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  border-top: 3px solid var(--green);
}

.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 0.85rem;
  white-space: nowrap;
  border-radius: 0;
  color: var(--gray-dark);
}

.dropdown a:hover {
  background: var(--gray-light);
  color: var(--green);
}

.header__social {
  display: flex;
  gap: 12px;
  margin-left: 16px;
}

.header__social a {
  color: var(--gray-dark);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
}

.header__social a svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  display: block;
}

.header__social a:hover {
  color: var(--green);
}

/* Language switcher – Pill-Toggle */
.header__lang {
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
  padding: 3px;
  border: 1.5px solid #dcdcdc;
  border-radius: 999px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.header__lang a {
  color: var(--gray-medium);
  padding: 4px 13px;
  border-radius: 999px;
  line-height: 1;
  transition: background-color 0.25s, color 0.25s;
}

.header__lang a:not(.active):hover {
  color: var(--gray-dark);
  background: var(--gray-light);
}

.header__lang a.active {
  background: var(--green);
  color: #fff;
  cursor: default;
}

.header__lang span {
  display: none;
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-dark);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero__content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__content h1 span {
  color: var(--green);
}

.hero__content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTION HEADINGS ===== */
.section__heading {
  text-align: center;
  margin-bottom: 50px;
}

.section__heading h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section__heading h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--green);
  margin: 12px auto 0;
}

.section__heading p {
  max-width: 750px;
  margin: 0 auto;
  color: var(--gray-medium);
}

/* ===== INTRO TEXT ===== */
.intro {
  padding: 60px 0;
  text-align: center;
}

.intro h2 {
  margin-bottom: 20px;
}

.intro p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== TRAINING CARDS ===== */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.training-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.training-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.training-card__content {
  padding: 24px;
}

.training-card__content h3 {
  margin-bottom: 10px;
  color: var(--heading);
}

.training-card__content h3 span {
  color: var(--green);
}

.training-card__content p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--gray-medium);
}

.training-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.training-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--gray-dark);
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: all 0.3s;
}

.training-card__links a:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn--green {
  background: var(--green);
  color: var(--white);
}

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

.btn--outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

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

.btn--small {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ===== LERN-FORMATE ===== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.format-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.format-item__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.format-item__text h4 {
  margin-bottom: 6px;
  color: var(--green);
}

.format-item__text p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 8px;
}

.format-item__text a {
  font-size: 0.85rem;
  font-weight: 600;
}

.format-divider {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

.format-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #ddd;
}

.format-divider span {
  position: relative;
  background: var(--white);
  padding: 0 20px;
  color: var(--gray-medium);
  font-style: italic;
}

/* ===== METHODIK ===== */
.methodik {
  text-align: center;
}

.methodik__diagram {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border: 2px solid var(--green);
  border-radius: 16px;
}

.methodik__diagram h3 {
  margin-bottom: 6px;
}

.methodik__diagram .subtitle {
  color: var(--gray-medium);
  font-style: italic;
  margin-bottom: 24px;
}

.methodik__icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.methodik__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.methodik__icon .icon-circle {
  width: 60px;
  height: 60px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
}

.methodik__icon span {
  font-size: 0.8rem;
  color: var(--gray-medium);
}

.methodik__detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  text-align: left;
  max-width: 800px;
  margin: 30px auto 0;
}

.methodik__detail-item {
  font-size: 0.9rem;
}

.methodik__detail-item strong {
  color: var(--green);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-section .cta-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.cta-section .cta-flex__text {
  flex: 1;
}

.cta-section .cta-flex__image {
  flex: 0 0 300px;
  border-radius: 12px;
  overflow: hidden;
}

.cta-section .cta-flex__image img {
  width: 100%;
  border-radius: 12px;
}

/* ===== ABOUT PAGE ===== */
.philosophy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy p {
  margin-bottom: 16px;
}

.about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.about-logo__text {
  flex: 1;
}

.about-logo__icon {
  flex: 0 0 auto;
}

.about-logo__icon svg,
.about-logo__icon img {
  width: 100px;
  height: 100px;
}

/* Founders */
.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.founder {
  text-align: center;
}

.founder__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  background: #ddd;
}

.founder h3 {
  margin-bottom: 4px;
}

.founder .role {
  color: var(--green);
  font-style: italic;
  margin-bottom: 16px;
}

.founder p {
  font-size: 0.9rem;
  text-align: left;
}

.founder ul {
  text-align: left;
  list-style: none;
  margin-top: 12px;
}

.founder ul li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: bold;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.team-member {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.team-member__img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #ddd;
}

.team-member__info h4 {
  margin-bottom: 2px;
  color: var(--heading);
}

.team-member__info .role {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.team-member__info p {
  font-size: 0.82rem;
  color: var(--gray-medium);
  margin-bottom: 2px;
}

/* ===== HOME / PRODUCTS ===== */
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-intro__left p {
  margin-bottom: 12px;
}

.product-intro__right {
  background: var(--gray-light);
  padding: 30px;
  border-radius: 8px;
}

.product-intro__right h3 {
  margin-bottom: 16px;
  color: var(--heading);
}

.product-intro__right ul {
  list-style: none;
}

.product-intro__right ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--gray-dark);
  font-weight: 600;
}

.product-intro__right ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

/* Timeline / Process */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 40px 0;
  padding: 0 20px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--green);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.process-step__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
}

.process-step__label {
  font-size: 0.8rem;
  text-align: center;
  color: var(--gray-medium);
  max-width: 90px;
}

.process-subtitle {
  text-align: center;
  color: var(--green);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 40px;
}

.process-step__number--module {
  border-color: var(--green);
  border-width: 3px;
  color: var(--green);
}

.process-step__number--plain {
  border-color: #cfcfcf;
  color: #9a9a9a;
}

.process-step__duration {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
  margin-top: -4px;
}

/* Journey transfer banner */
.journey-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #eef4dd;
  color: var(--gray-dark);
  border-radius: 30px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 760px;
  margin: 10px auto 0;
}

.journey-banner .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* Three-column content */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.three-col__item {
  text-align: center;
}

.three-col__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.three-col__item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.three-col__item p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 16px;
}

/* Leadership Journey */
.journey-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}

.journey-step__icon {
  width: 70px;
  height: 70px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 10px;
}

.journey-step__label {
  font-size: 0.78rem;
  color: var(--gray-medium);
}

.journey-arrow {
  display: flex;
  align-items: center;
  height: 70px;
  color: var(--green);
  font-size: 1.4rem;
}

/* People & Culture */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.two-col__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.two-col__item h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.two-col__item p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 12px;
}

.two-col__item ul {
  list-style: none;
  margin-bottom: 12px;
}

.two-col__item ul li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
}

.two-col__item ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.6rem;
  top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 30px;
  font-size: 0.85rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 30px;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__col p {
  margin-bottom: 6px;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* ===== NOTE BOX ===== */
.note-box {
  background: var(--green);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.note-box .icon {
  font-size: 1.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .header__nav.open {
    display: flex;
  }

  .header__burger {
    display: block;
  }

  .header__social {
    display: none;
  }

  .header__lang {
    margin-left: auto;
    margin-right: 8px;
  }

  .founders {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .product-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

  .cta-section .cta-flex {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero { height: 350px; }
  .hero__content { padding: 0 20px; }
  .hero__content h1 { font-size: 2rem; }
  .hero__content p { font-size: 0.98rem; }

  .section { padding: 50px 0; }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 20px;
  }

  .process-steps::before {
    display: none;
  }

  .about-logo {
    flex-direction: column;
  }

  .training-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HOME TEASER ===== */
.teaser-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
}

.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}

.teaser-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.teaser-card__body {
  padding: 24px;
}

.teaser-card__body h3 {
  margin-bottom: 10px;
  color: var(--heading);
}

.teaser-card__body p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 14px;
}

.teaser-card__body .link-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

.teaser-card__body .link-more::after {
  content: ' →';
}

/* Split band (Trainings / Über uns teaser) */
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.split-band__media {
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.split-band__text {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-band__text h2 {
  margin-bottom: 16px;
}

.split-band__text p {
  margin-bottom: 24px;
  color: var(--gray-medium);
}

/* ===== KONTAKT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

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

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: -8px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.3s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  background: var(--gray-light);
  padding: 36px;
  border-radius: 12px;
}

.contact-info h3 {
  margin-bottom: 18px;
}

.contact-info p {
  margin-bottom: 10px;
  color: var(--gray-medium);
}

.contact-info .contact-info__label {
  font-weight: 600;
  color: var(--gray-dark);
  display: block;
  margin-top: 16px;
  margin-bottom: 2px;
}

.contact-info a {
  color: var(--green);
}

/* ===== MOBILE DROPDOWN OVERRIDES ===== */
@media (max-width: 992px) {
  .header__nav {
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item.has-dropdown > a::after {
    float: right;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding: 0 0 8px 18px;
    min-width: 0;
    display: none;
  }

  .nav-item.has-dropdown.open .dropdown {
    display: block;
  }

  .nav-item.has-dropdown.open > a::after {
    transform: rotate(180deg);
  }

  .split-band {
    grid-template-columns: 1fr;
  }

  .split-band__media {
    min-height: 220px;
  }

  .split-band__text {
    padding: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== PAGE HEAD (schmaler Titelbalken für Rechtsseiten) ===== */
.page-head {
  margin-top: 70px;
  background: var(--gray-bg);
  padding: 60px 0 40px;
  text-align: center;
}

.page-head h1 {
  font-size: 2.4rem;
}

.page-head h1 span {
  color: var(--green);
}

.page-head p {
  color: var(--gray-medium);
  margin-top: 8px;
}

/* ===== LEGAL / PROSE ===== */
.legal {
  max-width: 820px;
  margin: 0 auto;
}

.legal h2 {
  font-size: 1.4rem;
  margin: 34px 0 12px;
}

.legal h2 .num {
  color: var(--green);
  margin-right: 8px;
}

.legal h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
}

.legal p {
  margin-bottom: 14px;
}

.legal ul {
  margin: 0 0 14px 22px;
}

.legal li {
  margin-bottom: 6px;
}

.legal address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal .muted {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.footer__bottom a {
  color: rgba(255,255,255,0.85);
}

.footer__bottom a:hover {
  color: var(--green);
}

/* ===== ACCORDION ("+" Zusatzinfos) ===== */
.accordion {
  margin-top: 6px;
}

.accordion__item {
  border-bottom: 1px solid rgba(0,0,0,0.10);
}

.accordion__item:first-child {
  border-top: 1px solid rgba(0,0,0,0.10);
}

.accordion__head {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 2px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-dark);
  text-align: left;
  transition: color 0.2s;
}

.accordion__head:hover {
  color: var(--green);
}

.accordion__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s;
}

.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion__item.open .accordion__body {
  max-height: 600px;
}

.accordion__body-inner {
  padding: 2px 2px 16px;
  font-size: 0.88rem;
  color: var(--gray-medium);
}

.accordion__body-inner p {
  margin-bottom: 8px;
}

.accordion__body-inner p:last-child {
  margin-bottom: 0;
}

.accordion__body-inner strong {
  color: var(--gray-dark);
}

/* ===== TALENTPROGRAMM TRANSFER-SCHRITTE ===== */
.process-transfers {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.transfer-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eef4dd;
  border-radius: 30px;
  padding: 8px 18px 8px 8px;
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.transfer-chip .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.transfer-chip strong {
  color: var(--gray-dark);
}

.transfer-chip span.dur {
  color: var(--green);
  font-weight: 600;
}

/* ===== DIAGRAMM-GRAFIKEN (Ablauf / Journey / Lernerlebnis) ===== */
.diagram {
  display: block;
  width: 100%;
  max-width: 980px;
  height: auto;
  margin: 10px auto 0;
  /* Weißen Grafik-Hintergrund bewusst als saubere Karte zeigen */
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 26px rgba(0,0,0,0.07);
}

.diagram--full {
  max-width: 1040px;
}

/* ===== ZAHLEN-DATEN-FAKTEN ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stat-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.stat-card__num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--heading);
  margin: 8px 0 12px;
  font-size: 1.05rem;
}

.stat-card__text {
  font-size: 0.85rem;
  color: var(--gray-medium);
}

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

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

/* ===== STAT-KARTEN ALS AKKORDEON ===== */
.stat-card.accordion__item {
  border: none;
  padding: 24px 26px;
}

.stat-card .accordion__head {
  padding: 0;
  align-items: center;
  gap: 16px;
}

.stat-card .accordion__head:hover .stat-card__label {
  color: var(--green);
}

.stat-head__main {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-card .accordion__body-inner {
  padding: 14px 0 0;
}

.stat-card .stat-card__label {
  margin: 4px 0 0;
  transition: color 0.2s;
}

/* Stat-Akkordeon: nur die geklickte Karte wächst – Nachbarn behalten ihre Höhe */
.stats-grid {
  align-items: start;
}

.stat-card .stat-card__label {
  min-height: 2.6em;
}

/* Stat-Akkordeon: zuverlässiger display-Toggle statt max-height
   (max-height-Klammer wird neutralisiert; nur auf .stats-grid beschränkt,
    damit die übrigen Akkordeons ihre Animation behalten) */
.stats-grid .accordion__body {
  max-height: none !important;
  display: none;
}

.stats-grid .accordion__item.open .accordion__body {
  display: block;
}

/* ===== KUNDEN-LOGO-KARUSSELL (durchlaufend) ===== */
.logo-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 38s linear infinite;
}

.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Abstand als margin (nicht gap), damit translateX(-50%) exakt auf einer
     Logo-Gruppe landet und die Endlos-Schleife wirklich nahtlos ist */
  margin-right: 70px;
}

.logo-marquee__item img {
  height: 44px;
  width: auto;
  max-width: none;
  display: block;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

.logo-marquee__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; flex-wrap: wrap; justify-content: center; gap: 40px; }
  .logo-marquee__item { margin-right: 0; }
}

/* ===== TESTIMONIALS SLIDER ===== */
.testi-slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testi-viewport {
  overflow: hidden;
  border-radius: 14px;
}

.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.testi-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 4px;
}

.testi-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  padding: 48px 50px 40px;
  text-align: center;
  height: 100%;
}

.testi-card__quote-icon {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--green);
  height: 36px;
}

.testi-card__stars {
  color: var(--green);
  letter-spacing: 3px;
  font-size: 1.05rem;
  margin: 10px 0 18px;
}

.testi-card__text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 28px;
}

.testi-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testi-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.testi-card__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.testi-card__who {
  text-align: left;
}

.testi-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--heading);
  font-size: 1rem;
}

.testi-card__role {
  font-size: 0.82rem;
  color: var(--gray-medium);
}

/* Reihenfolge: Bild + Name oben, dann Zitat, dann 5 Sterne unten */
.testi-card {
  display: flex;
  flex-direction: column;
}
.testi-card__author {
  order: 1;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.testi-card__who { text-align: center; }
.testi-card__quote-icon { order: 4; height: auto; font-size: 3rem; margin-top: 6px; }
.testi-card__text {
  order: 3;
  text-align: left;
  margin-bottom: 26px;
}
.testi-card__stars { order: 2; margin: 0 0 22px; }
.testi-card__avatar { width: 92px; height: 92px; }
.testi-card__name { font-size: 1.08rem; }

/* Arrows */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--gray-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
  z-index: 3;
}

.testi-arrow:hover {
  background: var(--green);
  color: #fff;
}

.testi-arrow--prev { left: -10px; }
.testi-arrow--next { right: -10px; }

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d2d2d2;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.testi-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testi-card { padding: 36px 26px 30px; }
  .testi-card__text { font-size: 0.95rem; }
  .testi-arrow--prev { left: 2px; }
  .testi-arrow--next { right: 2px; }
  .testi-card__author { flex-direction: column; gap: 10px; }
  .testi-card__who { text-align: center; }
}

/* ===== FLIP-KARTEN (Robert & Team) ===== */
.flip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 920px;
  margin: 0 auto;
}

.flip-card {
  perspective: 1500px;
  height: 460px;
  cursor: pointer;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card__inner,
.flip-card.flipped .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 34px rgba(0,0,0,0.14);
}

.flip-card__front {
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-end;
}

.flip-card__front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0) 55%);
}

.flip-card__label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
}

.flip-card__label small {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green);
  margin-top: 5px;
}

.flip-card__hint {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.flip-card__back {
  transform: rotateY(180deg);
  background: #3a3a3a;
  color: rgba(255,255,255,0.92);
  padding: 42px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-card__back h3 {
  color: var(--green);
  margin-bottom: 18px;
}

.flip-card__back p {
  font-size: 0.98rem;
  line-height: 1.75;
}

.home-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--heading);
  font-size: 1.25rem;
  margin-top: 26px;
}

.home-tagline span { color: var(--green); }

@media (max-width: 768px) {
  .flip-row { grid-template-columns: 1fr; }
  .flip-card { height: 500px; }
  .flip-card__back {
    padding: 30px 26px;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .flip-card__back h3 { margin-bottom: 12px; }
  .flip-card__back p { font-size: 0.92rem; line-height: 1.6; }
}

/* Touch-Geräte: 3D-Flip durch sauberes Überblenden ersetzen.
   Umgeht den iOS/WebKit-Backface-Bug, bei dem die Vorderseite trotz
   backface-visibility:hidden spiegelverkehrt durchscheint. */
@media (hover: none) {
  .flip-card__inner {
    transform: none !important;
    transition: none;
  }
  .flip-card__front,
  .flip-card__back {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transform: none !important;
    transition: opacity 0.4s ease;
  }
  .flip-card__back { opacity: 0; }
  .flip-card.flipped .flip-card__front {
    opacity: 0;
    pointer-events: none;
  }
  .flip-card.flipped .flip-card__back { opacity: 1; }
}

/* ============================================================
   DESIGN-POLISH (Senior-Feinschliff – kein Look-&-Feel-Wechsel)
   ============================================================ */

/* Markieren in Markenfarbe */
::selection {
  background: var(--green);
  color: #fff;
}

/* Anker-Sprünge sauber unter dem fixen Header platzieren */
html {
  scroll-padding-top: 90px;
}

/* Ausgewogenere Überschriften-Umbrüche, weniger Schusterjungen im Fließtext */
h1, h2, h3, h4 {
  text-wrap: balance;
}

.intro p,
.section__heading p,
.testi-card__text,
.flip-card__back p {
  text-wrap: pretty;
}

/* Einheitlicher, gut sichtbarer Tastatur-Fokus (nur bei Tastaturnutzung) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.accordion__head:focus-visible,
.testi-dot:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Klick-Feedback für Buttons */
.btn:active {
  transform: translateY(1px);
}

/* Bilder nie verzerrt, weicheres Dekodieren */
img {
  object-fit: cover;
}

.header__logo img,
.footer__logo,
.logo-marquee__item img,
.about-logo__icon img,
.diagram,
.header__social a svg {
  object-fit: contain;
}

/* Konsistente, ruhige Übergänge auf interaktiven Karten */
.teaser-card,
.training-card,
.team-member {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Bewegung reduzieren, wenn vom System gewünscht */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobil: einspaltig stapeln – auch wenn Inline-Grid-Styles gesetzt sind */
@media (max-width: 768px) {
  .three-col,
  .training-grid,
  .two-col,
  .flip-row,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   ACCESSIBILITY (WCAG 2.1 AA) – Kontrast, Fokus, Tastatur
   ============================================================ */
/* Grüne Texte/Links auf hellem Grund kontrastsicher machen */
a { color: var(--green-ink); }
a:hover { color: var(--green-ink-dark); }
.header__nav a:hover,
.header__nav a.active { color: var(--green-ink); }
.dropdown a:hover { color: var(--green-ink); }
.link-more,
.teaser-card__body .link-more { color: var(--green-ink); }
.process-subtitle { color: var(--green-ink); }
.stat-card__num { color: var(--green); }
.testi-card__stars { color: var(--green-ink); }
.testi-card__quote-icon { color: var(--green-ink); }
.page-head h1 span { color: var(--green-ink); }
.intro h2 span,
.home-tagline span,
.training-card__content h3 span { color: var(--green-ink) !important; }
.training-card__links a:hover { color: var(--green-ink); border-color: var(--green-ink); }
.testi-dot.active { background: var(--green-ink); }
.accordion__icon { color: #fff; }

/* Buttons: dunkler Text auf Markengrün statt kontrastarmem Weiß */
.btn--green,
.btn--green:hover { color: #fff; }
.btn--outline { color: var(--green-ink); border-color: var(--green-ink); }
.btn--outline:hover { background: var(--green-ink); border-color: var(--green-ink); color: #fff; }

/* Footer-Links hell auf dunklem Grund halten (Grün wäre zu dunkel) */
.footer a { color: rgba(255,255,255,0.88); }
.footer a:hover { color: var(--green); }

/* Dropdown-Menü auch per Tastatur (Fokus) öffnen */
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Flip-Karten per Tastatur umdrehen */
.flip-card:focus-visible .flip-card__inner,
.flip-card:focus-within .flip-card__inner {
  transform: rotateY(180deg);
}
.flip-card:focus-visible {
  outline: 2px solid var(--green-ink);
  outline-offset: 4px;
  border-radius: 16px;
}

/* Skip-Link: sichtbar nur bei Tastatur-Fokus */
.skip-link {
  position: absolute;
  left: 14px;
  top: -60px;
  z-index: 2000;
  background: var(--green);
  color: var(--btn-ink);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  color: var(--btn-ink);
  outline: 2px solid var(--btn-ink);
  outline-offset: 2px;
}

main:focus { outline: none; }

/* ===== FOOTER – aufgeräumtes Menü ===== */
.footer__tagline {
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.footer__address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer__muted { color: rgba(255,255,255,0.5); }
.footer__contact {
  margin-bottom: 20px;
  line-height: 1.9;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: background 0.25s ease, color 0.25s ease;
}
.footer__social a:hover {
  background: var(--green);
  color: var(--btn-ink);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer__col ul li a {
  display: inline-block;
  padding: 1px 0;
}

/* Untere Leiste: Copyright links, Rechtslinks rechts */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  text-align: left;
}
.footer__copy { margin: 0; }
.footer__legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .footer__legal { justify-content: center; }
}

/* ===== TRAININGS-INHALTE: Akkordeon in Karten ===== */
.training-grid { align-items: start; }

.training-card__acc { margin-top: 6px; }
.training-card__acc .accordion__head {
  padding: 11px 2px;
  font-size: 0.9rem;
}
.training-card__acc .accordion__icon {
  width: 20px; height: 20px; font-size: 1rem;
}
.training-card__acc .accordion__body-inner { padding: 2px 2px 12px; }
.training-card__acc ul { margin: 0 0 0 18px; }
.training-card__acc li { font-size: 0.86rem; color: var(--gray-medium); margin-bottom: 5px; }

/* ===== LERN-FORMATE: farbige Karten (2x2) ===== */
.format-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 940px;
  margin: 0 auto;
}
.format-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
  border-top: 4px solid var(--fc);
  padding: 36px 34px;
}
.format-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--fc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.format-card__icon svg { width: 34px; height: 34px; stroke: #fff; fill: none; }
.format-card h3 { margin-bottom: 14px; }
.format-card > p { color: var(--gray-medium); margin-bottom: 24px; }
.format-card__dur {
  border-top: 1px solid #ededed;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--gray-dark);
}
.format-card__dur svg { width: 18px; height: 18px; stroke: var(--fc); fill: none; flex-shrink: 0; }
.format-card__dur strong { font-weight: 600; }

/* Weitere Formate (klein, horizontal) */
.format-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 940px;
  margin: 30px auto 0;
}
.format-mini__card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.06);
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.format-mini__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef1e3;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.format-mini__icon svg { width: 26px; height: 26px; stroke: var(--gray-medium); fill: none; }
.format-mini__body h4 { margin-bottom: 8px; }
.format-mini__body p { font-size: 0.9rem; color: var(--gray-medium); margin-bottom: 12px; }
.format-mini__dur {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 7px;
}
.format-mini__dur svg { width: 16px; height: 16px; stroke: var(--gray-medium); fill: none; }

@media (max-width: 768px) {
  .format-cards, .format-mini { grid-template-columns: 1fr; }
}


/* ===== Lernerlebnis – interaktiv ===== */
.methodik__detail-grid { display: none; }
.lern-interactive { max-width: 900px; margin: 26px auto 0; }
.lern-hint { text-align: center; color: var(--gray-medium); font-size: 0.9rem; margin-bottom: 18px; }
.lern-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 22px; }
.lern-chip {
  border: 2px solid #e4e4e4; background: #fff; color: var(--gray-dark);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
  padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: all 0.2s;
}
.lern-chip:hover { border-color: var(--green); color: var(--green-ink); }
.lern-chip.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.lern-reveal {
  background: #fff; border-radius: 14px; box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  padding: 30px 34px; min-height: 128px;
  display: flex; align-items: center; justify-content: center;
}
.lern-panel { display: none; text-align: center; }
.lern-panel.is-active { display: block; animation: lern-fade 0.3s ease; }
.lern-panel h3 { color: var(--green-ink); margin-bottom: 8px; }
.lern-panel p { color: var(--gray-dark); font-size: 1.02rem; line-height: 1.7; max-width: 620px; margin: 0 auto; }
@keyframes lern-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }


/* ===== Kontaktformular Status + Turnstile ===== */
.cf-turnstile { margin: 6px 0 4px; }
.form-status { margin-top: 12px; font-size: 0.92rem; min-height: 1.2em; }
.form-status.is-success { color: var(--green-ink); font-weight: 600; }
.form-status.is-error { color: #c0392b; font-weight: 600; }

/* ===== Über uns: Feinschliff (PPT-Wünsche) ===== */
.about-logo__icon img { width: 96px; height: auto; margin-top: 14px; }
.founders .founder h3,
.founders .founder .role { text-align: center; }
.founders .founder .role { color: var(--green-ink); font-weight: 700; display: block; margin-bottom: 14px; }

/* Marquee erst starten, wenn alle Logos geladen sind (verhindert Sprünge beim Laden) */
.logo-marquee__track { animation-play-state: paused; }
.logo-marquee.is-ready .logo-marquee__track { animation-play-state: running; }
.logo-marquee.is-ready:hover .logo-marquee__track { animation-play-state: paused; }

/* ===== Philosophie: Überschrift volle Breite, Herz mittig zwischen den Textblöcken ===== */
.philosophy-head { text-align: center; }
.philosophy-head h2 { margin-bottom: 14px; }
.philosophy-head p { color: var(--gray-medium); }
.philosophy-heart { display: flex; justify-content: center; margin: 38px 0; }
.philosophy-heart img { width: 96px; height: auto; }
