/* ==========================================================================
   Community Connect – Design System
   Farbverteilung: ~70% Weiß, ~20% Navy-Schwarz, ~10% Teal (Akzent)
   ========================================================================== */

:root {
  /* Farben */
  --c-white:        #FFFFFF;
  --c-off-white:    #FAFAFA;
  --c-navy:         #0B1F2B;
  --c-navy-soft:    #12303F;
  --c-teal:         #1CAF8D;
  --c-teal-dark:    #158F73;
  --c-teal-light:   #E7F6F1;
  --c-ink:          #0B1F2B;
  --c-body:         #445159;
  --c-border:       #E7EAEC;
  --c-card:         #F5F7F7;

  /* Typografie */
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-kicker: 0.8125rem;
  --lh-tight: 1.08;
  --lh-normal: 1.65;

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 24px;
  --space-section: clamp(64px, 9vw, 128px);
  --shadow-card: 0 1px 2px rgba(11, 31, 43, 0.04), 0 12px 32px rgba(11, 31, 43, 0.06);
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-body);
  background: var(--c-white);
  line-height: var(--lh-normal);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  color: var(--c-ink);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin: 0;
}

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

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

.wrap--narrow { max-width: var(--wrap-narrow); }

section { padding: var(--space-section) 0; }

.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--white { background: var(--c-white); }
.section--offwhite { background: var(--c-off-white); }
.section--dark {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.78);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-white); }

.center { text-align: center; }

/* ==========================================================================
   Kicker / Headline / Subtext (Hero-Pattern)
   ========================================================================== */

.kicker {
  display: inline-block;
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-teal-dark);
  margin: 0 0 20px;
}

.section--dark .kicker { color: var(--c-teal); }

.h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); }
.h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
.h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--c-body);
  max-width: 640px;
  margin: 20px 0 0;
}

.section--dark .lede { color: rgba(255, 255, 255, 0.7); }

.eyebrow-block { max-width: 680px; }
.eyebrow-block.center { margin: 0 auto; }

/* ==========================================================================
   Foto-Hero (Bild-Hintergrund mit Lesbarkeits-Overlay)
   ========================================================================== */

.hero-photo {
  position: relative;
  overflow: hidden;
  height: clamp(620px, 82vh, 820px);
  display: flex;
  align-items: center;
}

.hero-photo__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-photo__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(11, 31, 43, 0.93) 0%,
    rgba(11, 31, 43, 0.84) 32%,
    rgba(11, 31, 43, 0.5) 58%,
    rgba(11, 31, 43, 0.12) 80%
  );
}

.hero-photo .wrap { position: relative; z-index: 2; }
.hero-photo .kicker { color: var(--c-teal); }
.hero-photo .h1 { color: var(--c-white); }
.hero-photo .lede { color: rgba(255, 255, 255, 0.82); }
.hero-photo .btn--outline { border-color: rgba(255, 255, 255, 0.45); color: var(--c-white); }
.hero-photo .btn--outline:hover { border-color: var(--c-teal); color: var(--c-teal); }

@media (max-width: 880px) {
  .hero-photo__overlay {
    background: linear-gradient(180deg, rgba(11, 31, 43, 0.78) 0%, rgba(11, 31, 43, 0.9) 100%);
  }
}

@media (max-width: 640px) {
  .hero-photo { height: clamp(480px, 68vh, 620px); }
  .h1 { font-size: 1.85rem; }
  .h2 { font-size: 1.55rem; }
  .lede { font-size: 0.98rem; }
  .kicker { font-size: 0.72rem; margin-bottom: 14px; }

  .audience-card { padding: 24px 20px; }
  .audience-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
  .audience-card p { font-size: 0.9rem; margin-bottom: 20px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); }

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

.btn--outline {
  background: transparent;
  border-color: var(--c-navy);
  color: var(--c-navy);
}
.btn--outline:hover { border-color: var(--c-teal); color: var(--c-teal-dark); }

.section--dark .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--c-white);
}
.section--dark .btn--outline:hover { border-color: var(--c-teal); color: var(--c-teal); }

.btn--white {
  background: var(--c-white);
  color: var(--c-navy);
}
.btn--white:hover { background: var(--c-teal-light); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  align-items: center;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}

.brand span { color: var(--c-teal); }
.brand img { display: block; width: auto; height: 32px; max-width: none; }

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

.nav-main ul {
  display: flex;
  gap: 32px;
}

.nav-main a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-navy);
  position: relative;
  padding: 6px 0;
}

.nav-main a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--c-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-main a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-navy);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   Stat-Block-Kacheln
   ========================================================================== */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 32px 24px;
  min-width: 0;
}

.section--dark .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.stat-card .stat-number {
  display: block;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--c-teal);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card .stat-label {
  font-size: 0.92rem;
  color: var(--c-body);
  line-height: 1.5;
}

.section--dark .stat-card .stat-label { color: rgba(255, 255, 255, 0.65); }

.stat-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   Feature / Problem-Lösung Grid
   ========================================================================== */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.logo-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center; }

.logo-card {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
}

.feature-list { margin-top: 12px; }
.feature-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--c-border);
}
.feature-item:first-child { border-top: none; padding-top: 4px; }

.feature-item .num {
  flex: none;
  font-weight: 800;
  color: var(--c-teal);
  font-size: 0.95rem;
  padding-top: 2px;
}

.feature-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-item p { margin: 0; font-size: 0.97rem; }

/* ==========================================================================
   Zielgruppen-Weiche (Cards mit Link)
   ========================================================================== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 31, 43, 0.1);
}

.audience-card .kicker { margin-bottom: 16px; }
.audience-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.audience-card p { flex: 1; font-size: 0.98rem; margin: 0 0 28px; }

.audience-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--c-teal-dark);
}

.audience-card .card-link .arrow { transition: transform 0.2s ease; }
.audience-card:hover .card-link .arrow { transform: translateX(4px); }

/* ==========================================================================
   Case-Study-Karten
   ========================================================================== */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 32px;
}

.case-card .case-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 24px;
}

.case-card .case-result {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-teal);
  line-height: 1;
  margin-bottom: 12px;
}

.case-card p { margin: 0; font-size: 0.95rem; }

/* ==========================================================================
   Prozess-Schritte
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  counter-reset: process;
}

.process-step { position: relative; padding-top: 8px; }

.process-step .step-index {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-teal);
  opacity: 0.32;
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}

.process-step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { margin: 0; font-size: 0.93rem; }

/* ==========================================================================
   Testimonial
   ========================================================================== */

.testimonial {
  max-width: var(--wrap-narrow);
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.45;
}

.testimonial blockquote::before { content: "\201C"; color: var(--c-teal); }
.testimonial blockquote::after { content: "\201D"; color: var(--c-teal); }

.testimonial cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-weight: 700;
  color: var(--c-ink);
}

.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--c-body);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ==========================================================================
   CTA-Banner
   ========================================================================== */

.cta-banner {
  background: var(--c-navy);
  border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 { color: var(--c-white); font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 560px; }
.cta-banner p { color: rgba(255, 255, 255, 0.7); margin: 14px 0 0; max-width: 480px; }
.cta-banner .btn-row { margin-top: 0; }

/* ==========================================================================
   Formulare
   ========================================================================== */

.form-grid { display: grid; gap: 18px; margin-top: 32px; }

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

.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-ink);
}

.form-field input, .form-field textarea {
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  color: var(--c-ink);
  background: var(--c-white);
}

.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--c-teal);
}

.form-note { font-size: 0.82rem; color: var(--c-body); margin-top: 4px; }

.form-field--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--c-body);
  cursor: pointer;
}
.form-field--checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--c-teal);
}
.form-field--checkbox a { color: var(--c-teal-dark); font-weight: 700; }

/* ==========================================================================
   Video-Embed (YouTube/Instagram, Klick-to-load)
   ========================================================================== */

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--c-card);
  box-shadow: var(--shadow-card);
}
.video-embed__thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-embed__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: rgba(11, 31, 43, 0.15);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.video-embed__play:hover { background: rgba(11, 31, 43, 0.3); }
.video-embed__play svg {
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
}
.video-embed__play:hover svg { transform: scale(1.08); }
.video-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.video-embed--vertical { aspect-ratio: 9 / 16; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .video-grid { grid-template-columns: 1fr; }
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ref-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Instagram-Embed (Klick-to-load)
   ========================================================================== */

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .insta-grid { grid-template-columns: 1fr; }
}

.insta-embed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 24px;
  text-align: center;
}
.insta-embed__placeholder svg { width: 36px; height: 36px; color: var(--c-teal-dark); }
.insta-embed__placeholder p { font-size: 0.85rem; color: var(--c-body); margin: 0; }

.insta-embed { position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius-m); overflow: hidden; }
.insta-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ==========================================================================
   Terminbuchung (Google Calendar Embed)
   ========================================================================== */

.booking-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  color: var(--c-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.booking-divider::before, .booking-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.booking-embed {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-card);
}

.booking-embed iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: none;
}

.booking-fallback {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--c-body);
}
.booking-fallback a { color: var(--c-teal-dark); font-weight: 700; }

.booking-embed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 56px 32px;
  min-height: 320px;
}
.booking-embed__placeholder p {
  max-width: 420px;
  font-size: 0.9rem;
  color: var(--c-body);
}
.booking-embed__placeholder a { color: var(--c-teal-dark); font-weight: 700; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: 760px; margin: 48px auto 0; }

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-teal);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 0 4px 22px;
  font-size: 0.96rem;
  color: var(--c-body);
  max-width: 640px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand { color: var(--c-white); margin-bottom: 14px; }
.footer-brand p { max-width: 320px; font-size: 0.92rem; }

.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { border-color: var(--c-teal); color: var(--c-teal); }
.footer-social svg { width: 16px; height: 16px; }

/* ==========================================================================
   Cookie-Consent-Banner (Google Ads Conversion-Tracking)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--c-navy);
  box-shadow: 0 -8px 28px rgba(11, 31, 43, 0.18);
}
.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1 1 420px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.cookie-banner__text a { color: var(--c-teal); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--c-white);
}
.cookie-banner .btn--outline:hover { border-color: var(--c-teal); color: var(--c-teal); }

.cookie-settings-link {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-body);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cookie-settings-link svg { width: 16px; height: 16px; }
.cookie-settings-link:hover { opacity: 1; border-color: var(--c-teal); color: var(--c-teal-dark); }

@media (max-width: 640px) {
  .cookie-banner__inner { padding: 16px 20px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1 1 auto; }
}

.footer-col h5 {
  color: var(--c-white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.94rem; }
.footer-col a:hover { color: var(--c-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.mt-0 { margin-top: 0 !important; }
.text-teal { color: var(--c-teal); }
.badge {
  display: inline-block;
  background: var(--c-teal-light);
  color: var(--c-teal-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Platzhalter-Markierung für noch fehlende Assets (Bilder/Logos) */
.placeholder-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg, var(--c-card), var(--c-card) 10px, #EDF1F1 10px, #EDF1F1 20px
  );
  border: 1px dashed var(--c-border);
  border-radius: var(--radius-m);
  color: var(--c-body);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
  min-height: 160px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .audience-grid, .case-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .nav-main ul, .nav-main .btn { display: none; }
  .nav-toggle { display: block; }

  body.nav-open .nav-main {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--c-white);
    flex-direction: column;
    padding: 32px 24px;
    display: flex;
    z-index: 99;
  }
  body.nav-open .nav-main ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  body.nav-open .nav-main ul a { display: block; padding: 14px 0; font-size: 1.05rem; }
  body.nav-open .nav-main .btn { display: inline-flex; margin-top: 20px; }

  .audience-grid, .case-grid, .process-grid, .grid-3 { grid-template-columns: 1fr; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-grid { gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .stat-card .stat-number { font-size: 1.5rem; }
  .stat-card .stat-label { font-size: 0.82rem; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Trusted-By Marquee ("Vertrauensbeweis")
   ========================================================================== */

.trust-marquee__eyebrow {
  margin: 0 0 28px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-body);
}

.trust-marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.trust-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 48px;
  animation: trust-marquee-scroll 28s linear infinite;
  will-change: transform;
}

.trust-marquee__viewport:hover .trust-marquee__track { animation-play-state: paused; }

.trust-marquee__logo {
  flex: 0 0 auto;
  width: var(--logo-w, 120px);
  height: var(--logo-h, 32px);
  background-color: var(--c-navy);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.62;
  transition: opacity 0.25s ease;
}
.trust-marquee__logo:hover { opacity: 1; }

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

@media (max-width: 640px) {
  .trust-marquee__track { gap: 28px; }
  .trust-marquee__logo {
    width: calc(var(--logo-w, 120px) * 0.68);
    height: calc(var(--logo-h, 32px) * 0.68);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-marquee__track { animation: none; }
  .trust-marquee__viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}
