/* ==========================================================================
   Hochreutener Coaching – www.dein-neustart.ch
   Zentrales Stylesheet (Design-System gemäss briefing/01_DESIGN_SYSTEM.md)
   ========================================================================== */

/* ---- Fonts (self-hosted) ------------------------------------------------ */

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-v12-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-v12-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}

/* ---- Design-Tokens ------------------------------------------------------ */

:root {
  /* Marke (aus dem offiziellen Logo) */
  --tuerkis:        #11999e;
  --tuerkis-text:   #0c7478;  /* dunklere Variante fuer Text auf hellem Grund (WCAG AA) */
  --tuerkis-dunkel: #0d7e82;
  --tuerkis-tint:   #eef7f7;

  /* CTA – Sonnenblumengelb */
  --gelb:           #f7b32b;
  --gelb-hover:     #e3a01d;

  /* Neutral */
  --ink:            #40514e;
  --text:           #4c5957;
  --text-soft:      #6b7775;
  --weiss:          #ffffff;
  --creme:          #faf8f4;
  --linie:          #e5eae9;

  --font-head: 'Plus Jakarta Sans', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius-card: 16px;
  --shadow-card: 0 12px 32px rgba(64, 81, 78, 0.10);
  --shadow-header: 0 2px 16px rgba(64, 81, 78, 0.08);
  --container: 1140px;
}

/* ---- Reset / Basis ------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--weiss);
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 1.2rem + 3.4vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.625rem, 1.3rem + 1.4vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.18rem + 0.3vw, 1.375rem); font-weight: 600; }

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

a { color: var(--tuerkis-text); text-decoration: none; }
a:hover { color: var(--tuerkis-dunkel); text-decoration: underline; }

/* Links im Fliesstext sind auch ohne Farbe erkennbar */
.faq__antwort a, .calendly-hinweis a, .rechtstext a,
.kontakt-box a:not(.textlink), .checkbox-zeile a, .form-meldung a,
.artikel p a { text-decoration: underline; }

ul { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: 0.5em; }

strong { color: var(--ink); font-weight: 500; font-family: var(--font-body); }
h1 strong, h2 strong, h3 strong { font-weight: inherit; font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--tuerkis);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: var(--weiss);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: var(--weiss); text-decoration: none; }

/* ---- Layout-Helfer ------------------------------------------------------ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--weiss { background: var(--weiss); }
.section--creme { background: var(--creme); }
.section--tint  { background: var(--tuerkis-tint); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tuerkis-text);
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  line-height: 1.65;
}

/* ---- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background-color 0.18s ease, color 0.18s ease,
              border-color 0.18s ease;
}
.btn:hover { text-decoration: none; }

.btn--primaer {
  background: var(--gelb);
  color: var(--ink);
}
.btn--primaer:hover,
.btn--primaer:focus-visible {
  background: var(--gelb-hover);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(64, 81, 78, 0.22);
}

.btn--sekundaer {
  background: transparent;
  color: var(--tuerkis-text);
  border-color: var(--tuerkis);
}
.btn--sekundaer:hover,
.btn--sekundaer:focus-visible {
  color: var(--tuerkis-dunkel);
  border-color: var(--tuerkis-dunkel);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(64, 81, 78, 0.14);
}

.btn--hell {
  background: transparent;
  color: var(--weiss);
  border-color: var(--weiss);
}
.btn--hell:hover,
.btn--hell:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--weiss);
  transform: translateY(-2px);
}

.textlink {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--tuerkis-text);
}
.textlink:hover { color: var(--tuerkis-dunkel); }

/* ---- Header ------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--weiss);
  transition: box-shadow 0.25s ease;
}
.header.ist-gescrollt { box-shadow: var(--shadow-header); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; padding: 10px 0; }
.header__logo img { height: 62px; width: auto; }

@media (max-width: 1024px) {
  .header__inner { min-height: 80px; }
  .header__logo img { height: 54px; }
}

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

.nav__liste {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__liste li { margin: 0; }

.nav__link {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 2px;
  white-space: nowrap;
}
.nav__link:hover { color: var(--tuerkis-text); text-decoration: none; }
.nav__link[aria-current="page"] {
  color: var(--tuerkis-text);
  box-shadow: inset 0 -2px 0 var(--tuerkis);
}

.nav .btn { padding: 12px 26px; font-size: 15px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px 11px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    background: var(--weiss);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  body.nav-offen .nav { visibility: visible; opacity: 1; }
  body.nav-offen { overflow: hidden; }

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

  .nav__liste {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }
  .nav__link { font-size: 22px; }
  .nav .btn { padding: 16px 32px; font-size: 16px; }
}

/* ---- Hero (Startseite) -------------------------------------------------- */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bild {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bild {
  filter: saturate(0.78) brightness(0.94);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(64, 81, 78, 0.82) 0%, rgba(64, 81, 78, 0.6) 45%, rgba(64, 81, 78, 0.26) 100%);
}
.hero__inhalt {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 96px 0;
}
.hero__inhalt .eyebrow { color: var(--gelb); }
.hero__inhalt h1 { color: var(--weiss); }
.hero__inhalt .lead { color: rgba(255, 255, 255, 0.94); }

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero__trust {
  margin-top: 22px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 600px) {
  .hero { min-height: 0; }
  .hero__inhalt { padding: 72px 0; }
  .hero::after {
    background: linear-gradient(180deg, rgba(64, 81, 78, 0.74) 0%, rgba(64, 81, 78, 0.6) 100%);
  }
}

/* ---- Hero (Unterseiten, flach) ------------------------------------------ */

.hero-flach {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-flach__bild {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-flach::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(64, 81, 78, 0.18) 0%, rgba(64, 81, 78, 0.66) 100%);
}
.hero-flach__inhalt {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 110px 0 52px;
}
.hero-flach__inhalt h1 { color: var(--weiss); margin-bottom: 0.3em; }
.hero-flach__inhalt .lead { color: rgba(255, 255, 255, 0.94); }

/* ---- Cards (generisch) -------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-card);
  padding: 34px 30px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.card:hover { box-shadow: var(--shadow-card); }

.card h3 { margin-bottom: 0.5em; }
.card p:last-child { margin-bottom: 0; }

.abbinder {
  max-width: 720px;
  margin: 44px auto 0;
  text-align: center;
}

/* ---- Split-Sektionen (Bild + Text) -------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split__bild img {
  border-radius: var(--radius-card);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--bild-rechts .split__bild { order: -1; }
}

/* ---- Steps (Dein Weg in 3 Schritten) ------------------------------------ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.steps li {
  counter-increment: step;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-card);
  padding: 34px 30px 30px;
  margin: 0;
}
.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--tuerkis-tint);
  color: var(--tuerkis);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
}
.steps h3 { margin-bottom: 0.4em; }

/* Variante: Steps als vertikale Liste neben einem Bild (Startseite) */
.steps--liste {
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 24px;
}
.steps--liste li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0 18px;
  align-items: start;
  padding: 22px 24px;
}
.steps--liste li::before { margin-bottom: 0; grid-row: span 2; }
.steps--liste h3 { margin-bottom: 0.25em; }

.split__bild--hoch img { height: 100%; min-height: 480px; }
@media (max-width: 900px) {
  .split__bild--hoch img { min-height: 0; }
}

/* ---- Paket-Cards (Angebot) ---------------------------------------------- */

.paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .paket-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .paket-grid { grid-template-columns: 1fr; } }

.paket {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-card);
  padding: 36px 30px 30px;
  transition: box-shadow 0.22s ease;
  scroll-margin-top: 110px;
}
.paket:hover { box-shadow: var(--shadow-card); }

.paket--hervorgehoben { border: 2px solid var(--tuerkis); }

.paket__badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--gelb);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 14px;
  border-radius: 999px;
}

.paket__umfang {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.paket__preis {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.paket__ideal {
  font-size: 15px;
  color: var(--text-soft);
  border-top: 1px solid var(--linie);
  padding-top: 14px;
  margin-top: auto;
}
.paket__ideal strong { color: var(--ink); }

.paket .textlink { margin-top: 14px; }

/* ---- Info-Spalten (Gut zu wissen) ---------------------------------------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.info-grid--kontakt { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .info-grid, .info-grid--kontakt { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .info-grid, .info-grid--kontakt { grid-template-columns: 1fr; } }

.info-grid__punkt h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}
.info-grid__punkt svg { flex-shrink: 0; color: var(--tuerkis); }

/* ---- Checkliste (Für wen) ------------------------------------------------ */

.checkliste {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
}
.checkliste li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
}
.checkliste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tuerkis-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2311999e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---- FAQ-Accordion ------------------------------------------------------- */

.faq-liste { max-width: 780px; margin: 0 auto; }

.faq {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-card);
  margin-bottom: 14px;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2311999e' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }

.faq__antwort {
  padding: 0 24px 22px;
  max-width: 680px;
}

/* ---- CTA-Band ------------------------------------------------------------ */

.cta-band {
  background: var(--tuerkis);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--weiss); }
.cta-band p {
  color: rgba(255, 255, 255, 0.94);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 18px;
}

/* ---- Profil-Box (Kurz & klar) -------------------------------------------- */

.profil-box {
  background: var(--tuerkis-tint);
  border-radius: var(--radius-card);
  padding: 44px 40px;
  max-width: 780px;
  margin: 0 auto;
}
.profil-box ul { margin-bottom: 0; }

/* ---- Blog ----------------------------------------------------------------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.22s ease;
}
.blog-card:hover { box-shadow: var(--shadow-card); }
.blog-card__bild { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.blog-card__inhalt { display: flex; flex-direction: column; flex: 1; padding: 28px 26px; }
.blog-card__datum { font-size: 14px; color: var(--text-soft); margin-bottom: 8px; }
.blog-card__inhalt h3 a { color: var(--ink); }
.blog-card__inhalt h3 a:hover { color: var(--tuerkis); text-decoration: none; }
.blog-card .textlink { margin-top: auto; padding-top: 14px; }

.artikel { max-width: 760px; margin: 0 auto; }
.artikel__meta { font-size: 15px; color: var(--text-soft); margin-bottom: 36px; }
.artikel h2 { margin-top: 1.6em; }
.artikel__bild {
  border-radius: var(--radius-card);
  margin: 0 0 36px;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.artikel-cta {
  background: var(--tuerkis-tint);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  margin-top: 52px;
}
.artikel-cta p { max-width: none; }

/* ---- Calendly ------------------------------------------------------------- */

.calendly-rahmen { max-width: 920px; margin: 0 auto; }
.calendly-inline-widget {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.calendly-hinweis {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: center;
  color: var(--text-soft);
}

/* ---- Rechtstexte ----------------------------------------------------------- */

.rechtstext { max-width: 760px; margin: 0 auto; }
.rechtstext h2 { font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem); margin-top: 1.8em; }
.rechtstext h1 + p em { color: var(--text-soft); }

/* ---- 404 ------------------------------------------------------------------- */

.fehlerseite {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.fehlerseite__bild {
  width: min(420px, 100%);
  margin: 0 auto 36px;
  border-radius: var(--radius-card);
}
.fehlerseite .hero__buttons { justify-content: center; }

/* ---- Footer ----------------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 72px 0 0;
  font-size: 15px;
}
.footer a { color: rgba(255, 255, 255, 0.88); }
.footer a:hover { color: var(--tuerkis-tint); text-decoration: none; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 52px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } }

.footer__logo img { height: 52px; width: auto; margin-bottom: 16px; }
.footer__claim { color: rgba(255, 255, 255, 0.8); }

.footer__titel {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--weiss);
  font-size: 16px;
  margin-bottom: 1em;
}
.footer address { font-style: normal; }
.footer address p { margin-bottom: 0.4em; }

.footer__social {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.footer__social li { margin: 0; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.footer__social a:hover {
  border-color: var(--tuerkis);
  background: var(--tuerkis);
  color: var(--weiss);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li { margin-bottom: 0.5em; }

.footer__unten {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.footer__unten p { margin: 0 0 6px; }

.footer__weblikon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.footer__weblikon:hover { color: var(--weiss); text-decoration: none; }
.footer__weblikon img {
  height: 13px;
  width: auto;
  max-width: 110px;
  opacity: 0.9;
  transition: opacity 0.18s ease;
}
.footer__weblikon:hover img { opacity: 1; }

/* ---- Scroll-Reveal ------------------------------------------------------------ */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.sichtbar {
    opacity: 1;
    transform: none;
  }
}

/* ---- Mobile-Feinschliff --------------------------------------------------------- */

@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .cta-band { padding: 64px 0; }
  .hero__buttons .btn { width: 100%; }
  .profil-box { padding: 32px 24px; }
}


/* ---- Partner / Netzwerk ---------------------------------------------------- */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.partner-grid--single { grid-template-columns: 1fr; max-width: 430px; }
@media (max-width: 680px) { .partner-grid { grid-template-columns: 1fr; } }

.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  transition: box-shadow 0.22s ease;
}
.partner-card:hover { box-shadow: var(--shadow-card); }

.partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 56px;
  margin-bottom: 24px;
}
.partner-card__logo img {
  height: 42px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}
.partner-card h3 { margin-bottom: 0.4em; }
.partner-card p { color: var(--text); }
.partner-card .textlink { margin-top: auto; padding-top: 16px; }

/* Footer-Button «Netzwerk & Partner» */
.footer__nav-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--weiss);
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.footer__nav-btn:hover {
  background: var(--tuerkis);
  border-color: var(--tuerkis);
  color: var(--weiss);
  text-decoration: none;
}


/* ---- Affiliation-Highlight (Ich bin Teil von ...) -------------------------- */

.affil { text-align: center; max-width: 680px; margin: 0 auto; }
.affil__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 14px;
  padding: 22px 34px;
  margin: 6px 0 28px;
  box-shadow: var(--shadow-card);
}
.affil__logo img { height: 44px; width: auto; }
.affil h2 { margin-bottom: 0.5em; }
.affil p { color: var(--text); margin-bottom: 28px; }

/* Fokus-Label innerhalb einer Partner-Karte */
.partner-card .eyebrow { margin-bottom: 8px; min-height: 2.1em; }
