  /* ── HERO (Split-Layout mit hellem Grün-Verlauf) ─── */
  .hero-banner-wrap {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--border) 100%);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  }
  .hero-banner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
  }
  .hero-text h1 {
    font-weight: 800;
    font-size: clamp(1.9rem, 4.4vw, 3.1rem);
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
  }
  .hero-text h1 .highlight {
    color: var(--green);
  }
  .hero-sub {
    font-family: 'Source Serif 4', serif;
    font-size: clamp(1.05rem, 1.9vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
  }
  .hero-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif; font-weight: 700;
    font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--green); margin-bottom: 1rem;
  }
  .hero-check { margin: 1.8rem 0 1rem; }
  .hero-check label {
    display: block; font-family: 'Outfit', sans-serif; font-weight: 600;
    font-size: 0.9rem; color: var(--text); margin-bottom: 0.5rem;
  }
  .hero-check-row { display: flex; gap: 10px; max-width: 520px; }
  .hero-check-row input {
    flex: 1; min-width: 0; padding: 14px 16px; border: 2px solid var(--border);
    border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 1rem;
    background: var(--white); color: var(--text); transition: border-color 0.2s;
  }
  .hero-check-row input:focus { outline: none; border-color: var(--green); }
  .hero-check-row button {
    background: var(--green); color: var(--white); border: 2px solid var(--green);
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem;
    padding: 0 1.4em; border-radius: 10px; cursor: pointer; white-space: nowrap;
    box-shadow: 0 4px 18px rgba(1,70,57,0.18);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .hero-check-row button:hover {
    background: var(--green-dark); transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1,70,57,0.28);
  }
  .hero-check-row .arrow { display: inline-block; margin-left: 0.4em; transition: transform 0.2s; }
  .hero-check-row button:hover .arrow { transform: translateX(4px); }
  .hero-alt { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.6; }
  .hero-alt a { color: var(--green); font-weight: 700; text-decoration: none; white-space: nowrap; }
  .hero-alt a:hover { text-decoration: underline; }
  .hero-trust {
    margin-top: 1.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
  }
  .hero-photo img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 14px 40px rgba(20,40,15,0.12);
  }
  @media (max-width: 900px) {
    .hero-banner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-photo { max-width: 460px; margin: 0 auto; }
    .hero-sub { max-width: none; }
  }
  @media (max-width: 540px) {
    .hero-check { max-width: none; }
    .hero-check-row { flex-direction: column; max-width: none; }
    .hero-check-row input { min-width: 0; }
    .hero-check-row button { width: 100%; padding: 13px; }
  }

  /* ── SPACER ─────────────────────── */
  .hero-spacer { height: 72px; }

  /* ── INTRO TEXT ──────────────────── */
  .intro-text {
    max-width: 760px; margin: 0 auto 72px; text-align: center;
  }
  .intro-text h1, .intro-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 16px;
    color: var(--text-muted);
  }
  .intro-text h1 span, .intro-text h2 span { color: var(--green); }
  .intro-text p {
    font-family: 'Source Serif 4', serif; font-weight: 400;
    font-size: 1.05rem; line-height: 1.75; color: var(--text-muted);
  }

  /* ── STATS STRIP ─────────────────── */
  .stats-strip {
    max-width: var(--container-max); margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
  .stat-box {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 14px; padding: 24px 20px; text-align: center;
  }
  .stat-num { font-size: 2.2rem; font-weight: 800; color: var(--green); line-height: 1; display: block; margin-bottom: 6px; }
  .stat-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

  /* ── SERVICE CARDS ───────────────── */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px; max-width: var(--container-max); margin: 0 auto;
  }
  .service-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 18px; padding: 32px 28px 28px;
    display: flex; flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
    text-decoration: none; color: inherit;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(62,124,47,.14);
    border-color: var(--green);
  }
  .service-card--featured {
    border-color: var(--green);
    background: linear-gradient(160deg, #f4fbf2 0%, var(--white) 60%);
  }
  .sc-tag {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--green);
    background: var(--green-light); border: 1px solid var(--green-mid);
    border-radius: 20px; padding: 3px 10px;
    display: inline-block; margin-bottom: 16px; width: fit-content;
  }
  .sc-icon { font-size: 2rem; margin-bottom: 12px; display: block; line-height: 1; }
  .service-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
  .service-card p {
    font-family: 'Source Serif 4', serif; font-weight: 400;
    font-size: 0.88rem; color: var(--text-muted); line-height: 1.65;
    flex: 1; margin-bottom: 20px;
  }
  .sc-link {
    font-size: 0.82rem; font-weight: 700; color: var(--green);
    display: flex; align-items: center; gap: 6px;
  }
  .sc-link::after { content: '\2192'; }

  /* ── HOMEPAGE AKTUELLES ───────────── */
  .home-news-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; max-width: 1440px; margin: 0 auto;
  }
  .home-news-card {
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
  }
  .home-news-card img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(62,124,47,.10);
    transition: transform .2s, box-shadow .2s;
  }
  .home-news-card:hover img {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(62,124,47,.16);
  }
  .home-news-body { padding: 22px 4px 0; flex: 1; display: flex; flex-direction: column; }
  .home-news-date {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
  }
  .home-news-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
  .home-news-card p {
    font-family: 'Source Serif 4', serif; font-weight: 400;
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px;
  }
  .home-news-link {
    font-family: 'Outfit', sans-serif; font-size: 0.82rem;
    color: var(--green); font-weight: 700; margin-top: auto;
    transition: transform .2s;
  }
  .home-news-card:hover .home-news-link { transform: translateX(3px); }

  /* ── REVIEWS ─────────────────────── */
  .reviews-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; max-width: 1440px; margin: 0 auto;
  }
  @media (max-width: 1099px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  }
  @media (max-width: 560px) {
    .reviews-grid { grid-template-columns: 1fr; max-width: 420px; }
  }
  .review-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 14px; padding: 22px 22px 18px;
  }
  .review-stars { color: #A66600; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; display: block; }
  .review-text {
    font-family: 'Source Serif 4', serif; font-weight: 400;
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 16px; font-style: italic;
  }
  .review-author { display: flex; align-items: center; gap: 10px; }
  .review-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0; background: var(--green-light);
  }
  .review-name { font-size: 0.82rem; font-weight: 700; }
  .review-via { font-size: 0.72rem; color: var(--text-muted); }
  .reviews-cta {
    text-align: center; margin-top: 20px;
    font-size: 0.82rem; color: var(--text-muted);
  }
  .reviews-cta a { color: var(--green); font-weight: 600; text-decoration: none; }

  /* ── LOGO STRIP (inline in Reviews-Section) ─── */
  .logo-strip {
    max-width: 1440px; margin: 48px auto 0;
    padding: 32px 0 8px;
    border-top: 1px solid var(--border);
  }
  .logo-strip-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--text-muted);
    text-align: center; margin-bottom: 24px;
  }
  .logo-marquee-wrap { overflow: hidden; position: relative; }
  .logo-marquee-wrap::before,
  .logo-marquee-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px;
    z-index: 2; pointer-events: none;
  }
  .logo-marquee-wrap::before { left: 0; background: linear-gradient(to right, #f0f3ec, transparent); }
  .logo-marquee-wrap::after  { right: 0; background: linear-gradient(to left, #f0f3ec, transparent); }
  .logo-marquee {
    display: flex; gap: 48px; align-items: center;
    animation: marquee 50s linear infinite;
    width: max-content;
  }
  .logo-marquee:hover { animation-play-state: paused; }
  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .logo-marquee img {
    height: 40px; max-width: 150px; object-fit: contain; opacity: 1;
    transition: transform .2s;
    flex-shrink: 0;
  }
  .logo-marquee img:hover { transform: scale(1.06); }

  /* ── REVIEWS SLIDER ──────────────── */
  .reviews-slider-wrap { max-width: 1440px; margin: 0 auto; }
  .reviews-slider { position: relative; }
  .slider-page {
    opacity: 0; position: absolute; top: 0; left: 0; width: 100%;
    transition: opacity .5s ease;
    pointer-events: none;
  }
  .slider-page--active {
    opacity: 1; position: relative;
    pointer-events: auto;
  }
  .slider-page--out {
    opacity: 0; position: absolute; top: 0; left: 0;
    pointer-events: none;
  }
  .slider-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 28px;
  }
  .slider-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid var(--border); background: var(--white);
    font-size: 1.4rem; font-weight: 400; color: var(--green);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: border-color .15s, background .15s, transform .15s;
    line-height: 1; padding-bottom: 2px;
  }
  .slider-btn:hover { border-color: var(--green); background: var(--green-light); transform: scale(1.08); }
  .slider-btn:disabled { opacity: .35; cursor: default; transform: none; }
  .slider-dots { display: flex; gap: 8px; align-items: center; }
  .slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); cursor: pointer;
    transition: background .2s, transform .2s;
    border: none; padding: 0;
  }
  .slider-dot--active { background: var(--green); transform: scale(1.3); }

  /* ── SKELETON LOADER ─────────────── */
  .review-skeleton { pointer-events: none; }
  .sk-line {
    height: 14px; border-radius: 6px; margin-bottom: 10px;
    background: linear-gradient(90deg, var(--green-light) 25%, #e8f4e5 50%, var(--green-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
  }
  .sk-wide  { width: 40%; }
  .sk-full  { width: 100%; }
  .sk-mid   { width: 60%; margin-top: 16px; }
  @keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* ── RESPONSIVE ──────────────────── */
  @media (max-width: 720px) {
    .cta-band { grid-template-columns: 1fr; padding: 32px 24px; }
    .cta-band-btns { flex-direction: row; flex-wrap: wrap; }
    .home-news-grid { grid-template-columns: 1fr 1fr; }
    .logo-strip { padding: 24px 20px; }
  }
  @media (max-width: 480px) {
    .home-news-grid { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
  }

  /* ── TRUST-LEISTE (unter Intro) ──── */
  .trust-bar {
    max-width: 780px;
    margin: 28px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
  }
  .trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
  }
  .trust-bar svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .trust-bar strong { color: var(--green); font-weight: 700; }

  /* WEBINAR-HERO (aktiv bis 8. Sept. 2026) — Rückbau: Block in index.html entfernen + Marker im Tools-Hero raus */
  .webinar-banner-wrap { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: var(--white); }
  .webinar-banner { max-width: var(--container-max); margin: 0 auto; padding: 56px 30px 64px;
                    display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
  .wb-eyebrow { display: inline-block; background-color: var(--hero, #fbbf24); color: var(--green-dark);
                padding: 8px 16px; border-radius: 100px;
                font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 22px; }
  .webinar-banner h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.08; font-weight: 700; margin-bottom: 18px; }
  .webinar-banner h1 .wb-accent { color: var(--hero, #fbbf24); }
  .wb-sub { font-family: 'Source Serif 4', serif; font-weight: 300;
            font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,.92); max-width: 560px; margin-bottom: 22px; }
  .wb-sub strong { color: var(--hero, #fbbf24); font-weight: 700; }
  .wb-meta { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 8px; }
  .wb-meta li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: rgba(255,255,255,.95); }
  .wb-meta .lucide { color: var(--hero, #fbbf24); width: 20px; height: 20px; flex-shrink: 0; }
  .wb-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
  .wb-cta { background-color: var(--hero, #fbbf24); color: var(--green-dark);
            padding: 14px 28px; border-radius: 10px;
            font-weight: 700; font-size: 1rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
            transition: background-color .15s, transform .1s; }
  .wb-cta:hover { background-color: #fcc73d; color: var(--green-dark); }
  .wb-cta .arrow { transition: transform .15s; }
  .wb-cta:hover .arrow { transform: translateX(3px); }
  .wb-cta-alt { color: rgba(255,255,255,.85); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
  .wb-cta-alt:hover { color: var(--hero, #fbbf24); }
  .wb-trust { font-size: 0.85rem; color: rgba(255,255,255,.92); }
  .webinar-banner-visual { display: flex; justify-content: center; }
  .wb-date-card { background-color: var(--white); color: var(--green-dark);
                  border-radius: 18px; padding: 32px 40px;
                  text-align: center;
                  box-shadow: 0 24px 48px -16px rgba(0,0,0,.4);
                  border: 4px solid var(--hero, #fbbf24); }
  .wb-date-month { display: block; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green); margin-bottom: 4px; }
  .wb-date-day { display: block; font-size: 6rem; font-weight: 800; line-height: 1; color: var(--green-dark); }
  .wb-date-weekday { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text-muted); margin-top: 6px; }
  @media (max-width: 900px) {
    .webinar-banner { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 48px; }
    .webinar-banner-visual { order: -1; }
    .wb-date-card { padding: 22px 32px; }
    .wb-date-day { font-size: 4.5rem; }
  }
  @media (max-width: 480px) {
    .wb-eyebrow { font-size: 0.74rem; padding: 7px 13px; white-space: normal; line-height: 1.35; }
    .wb-cta-row { gap: 10px; }
    .wb-cta { width: 100%; justify-content: center; }
    .wb-cta-alt { width: 100%; text-align: center; }
  }


@media (prefers-reduced-motion: reduce) {
  body:has(> main > .cinema-hero) .cinema-hero {
    background: url('img/team/hero-startseite-poster.webp') center/cover no-repeat, var(--green-dark);
  }
}

/* ── HERO Richtung B: Micro-Trust-Zeile unter den CTAs ────────── */
.cinema-hero-trust {
  margin: 22px 0 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}
.cinema-hero-trust strong { color: var(--white); font-weight: 700; }
.cinema-hero-trust span[aria-hidden] { color: var(--hero); letter-spacing: 0.05em; }
@media (max-width: 640px) {
  .cinema-hero-trust { font-size: 0.82rem; margin-top: 18px; }
}

/* ── WEBINAR-STÖRER (Content-Banner nach dem Hero) ─────────────
   Nach dem 8.9.2026: <aside class="webinar-strip"> in index2.php entfernen.
   Grüntönig, eine Zeile Desktop, gestapelt Mobil. */
.webinar-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  margin-top: -32px;    /* zieht sich an den Hero heran, weil .cinema-hero margin-bottom: 72px hat */
  margin-bottom: 48px;
}
.webinar-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.webinar-strip-badge {
  background: var(--hero);
  color: var(--green-dark);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.webinar-strip-text {
  flex: 1;
  min-width: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
}
.webinar-strip-text strong { color: var(--hero); font-weight: 700; }
.webinar-strip-cta {
  background: var(--white);
  color: var(--green-dark);
  padding: 8px 18px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}
.webinar-strip-cta:hover { background: var(--hero); color: var(--green-dark); transform: translateY(-1px); }
@media (max-width: 720px) {
  .webinar-strip-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 20px; }
  .webinar-strip-cta { width: 100%; text-align: center; }
}

/* ── FAQ auf Startseite in Breit-Format (wie webdesign-odenwald) ─
   .faq-section ist per default auf --text-max (780px) begrenzt.
   Auf der Startseite wollen wir das breitere --container-max (1440px). */
.faq-section { max-width: var(--container-max); margin-left: auto; margin-right: auto; }
