/* =============================================================
   digirelation · Homepage · alle Section-Styles
   ============================================================= */

/* ---------- Shared Section-Heads ---------- */
.section-headline {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--heading);
  margin: 0 0 14px;
}
.section-subtext {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 640px;
  margin: 0;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ============ HERO (Homepage) — zusätzlich zu sections.css ============ */
.hero--home .hero-grid {
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-photo-wrap {
  position: relative;
  margin: 0;
  aspect-ratio: 5 / 4;
  max-width: 620px;
  justify-self: end;
  width: 100%;
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -8% -8% 10% -8%;
  z-index: 0;
  background: radial-gradient(60% 70% at 50% 50%, rgba(174,207,228,0.4) 0%, transparent 70%);
  filter: blur(44px);
  pointer-events: none;
}
[data-theme="dark"] .hero-photo-wrap::before {
  background: radial-gradient(60% 70% at 50% 50%, rgba(194,233,242,0.22) 0%, transparent 70%);
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-accent-top) 0%, var(--c-accent-soft) 100%);
  box-shadow:
    0 24px 56px rgba(7,15,22,0.14),
    0 0 0 1px rgba(174,207,228,0.35),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: rotate(-1deg);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="dark"] .hero-photo {
  background: linear-gradient(180deg, rgba(174,207,228,0.14) 0%, rgba(242,248,250,0.04) 100%);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.45),
    0 0 0 1px rgba(174,207,228,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
@media (hover: hover) {
  .hero-photo:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow:
      0 32px 72px rgba(7,15,22,0.2),
      0 0 0 1px rgba(174,207,228,0.5),
      var(--glow-md);
  }
}
.hero-photo-caption {
  position: absolute;
  bottom: -18px; left: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--heading);
}
[data-theme="dark"] .hero-photo-caption {
  background: rgba(15,34,38,0.7);
  border-color: rgba(242,248,250,0.15);
}
.hero-photo-caption .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-accent-hover);
  box-shadow: 0 0 8px var(--c-accent);
}

/* ============ LOGO-MARQUEE (unter Hero) ============ */
.home-logos {
  padding: 32px 0 48px;
  position: relative;
  overflow: hidden;
}
.home-logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 22px;
}
.home-logos-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.home-logos-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: logos-scroll 40s linear infinite;
  will-change: transform;
}
.home-logos-item {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 8px;
}
.home-logos-item img {
  max-height: 100%;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity var(--t-base);
}
[data-theme="dark"] .home-logos-item img {
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.home-logos-item:hover img {
  opacity: 1;
}
[data-theme="dark"] .home-logos-item:hover img {
  opacity: 1;
}

/* Kein Pause — Marquee läuft immer durch */

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .home-logos-track { animation: none; }
  .home-logos-marquee {
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
}

@keyframes logos-scroll {
  from { transform: translateX(0); }
  /* -50% weil Logos 2× gerendert → exakt eine Runde */
  to   { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .home-logos { padding: 20px 0 32px; }
  .home-logos-track { gap: 40px; animation-duration: 30s; }
  .home-logos-item { height: 42px; }
  .home-logos-item img { max-width: 120px; }
}

/* ============ BENEFITS (3 Dinge) ============ */
.home-benefits { padding: 72px 0 64px; }
.home-benefits-head { margin-bottom: 48px; max-width: 820px; }
.benefits-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
}
.benefit-card {
  position: relative;
  padding: 36px 30px;
  border-radius: 20px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  transition: border-color var(--t-base), transform var(--t-base);
}
[data-theme="dark"] .benefit-card {
  background: rgba(242,248,250,0.03);
  border-color: rgba(242,248,250,0.08);
}
.benefit-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
}
.benefit-num {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--c-accent-deep);
  letter-spacing: 0.06em;
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--c-accent-soft);
  margin-bottom: 22px;
}
[data-theme="dark"] .benefit-num {
  background: rgba(174,207,228,0.12);
  color: var(--c-accent);
}
.benefit-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.2;
}
.benefit-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ============ PORTFOLIO SHOWCASE (3 vertikale Case-Videos) ============ */
.home-showcase { padding: 80px 0 64px; }
.home-showcase-head { margin-bottom: 40px; max-width: 820px; }

.showcase-vgrid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 32px;
}
.showcase-vcard { margin: 0; }
.showcase-vlink {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.showcase-vmedia {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--c-black);
  isolation: isolate;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(7,15,22,0.08);
}
.showcase-vmedia video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-voverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,15,22,0) 28%, rgba(7,15,22,0.5) 70%, rgba(7,15,22,0.85) 100%),
    radial-gradient(50% 60% at 50% 100%, rgba(174,207,228,0.22) 0%, transparent 60%);
}

/* KPI-Chip oben rechts */
.showcase-vkpi {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  line-height: 1;
}
.showcase-vkpi .kpi-num {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-accent-deep);
  font-variant-numeric: tabular-nums;
}
.showcase-vkpi .kpi-lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
[data-theme="dark"] .showcase-vkpi {
  background: rgba(10,37,64,0.8);
}
[data-theme="dark"] .showcase-vkpi .kpi-num { color: var(--c-accent); }
[data-theme="dark"] .showcase-vkpi .kpi-lbl { color: rgba(242,248,250,0.6); }

/* Caption unten */
.showcase-vcaption {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.showcase-vcaption strong {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.showcase-vcaption span {
  font-size: 12px;
  opacity: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.showcase-vtags {
  font-size: 11px;
  margin: 8px 0 0;
  opacity: 0.65;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  word-spacing: 0.2em;
}

@media (hover: hover) {
  .showcase-vlink:hover .showcase-vmedia {
    transform: translateY(-4px);
    box-shadow: 0 32px 56px rgba(7,15,22,0.18), var(--glow-md);
  }
  .showcase-vlink:hover .showcase-vmedia video {
    transform: scale(1.02);
  }
}

.home-showcase-footer { text-align: center; margin-top: 12px; }

/* ============ AUDIENCE (3 Typen) ============ */
.home-audience {
  padding: 96px 0 80px;
  background: var(--surface-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .home-audience {
  background: linear-gradient(180deg, transparent 0%, rgba(242,248,250,0.025) 10%, rgba(242,248,250,0.025) 90%, transparent 100%);
  border-color: transparent;
}
.home-audience-head {
  margin-bottom: 56px;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.audience-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
}

/* Card */
.audience-card {
  position: relative;
  padding: 40px 32px 32px;
  border-radius: 24px;
  background: var(--c-background);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
[data-theme="dark"] .audience-card {
  background: rgba(7,15,22,0.35);
  border-color: rgba(242,248,250,0.08);
}
.audience-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-accent-top), var(--c-accent));
  opacity: 0;
  transition: opacity var(--t-base);
  border-radius: 0 2px 2px 0;
}
.audience-card:hover {
  border-color: var(--c-accent);
  box-shadow: var(--glow-sm);
  transform: translateY(-5px);
}
.audience-card:hover::before { opacity: 1; }

/* Big background number */
.audience-num {
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-sans);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--c-accent);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity var(--t-base);
}
.audience-card:hover .audience-num { opacity: 0.14; }
[data-theme="dark"] .audience-num { opacity: 0.1; }
[data-theme="dark"] .audience-card:hover .audience-num { opacity: 0.2; }

/* Icon */
.audience-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--c-accent-soft);
  color: var(--c-accent-deep);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background var(--t-base), color var(--t-base);
}
[data-theme="dark"] .audience-icon {
  background: rgba(174,207,228,0.12);
  color: var(--c-accent);
}
.audience-card:hover .audience-icon {
  background: var(--c-accent);
  color: var(--c-accent-ink);
}

.audience-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--heading);
  line-height: 1.3;
  margin: 0 0 12px;
}
.audience-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  flex: 1;
}

/* Per-card CTA */
.audience-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-accent-deep);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--t-fast), color var(--t-fast);
}
[data-theme="dark"] .audience-cta { color: var(--c-accent); }
.audience-card:hover .audience-cta { gap: 10px; }

.home-audience-footer { text-align: center; margin-top: 48px; }

/* ============ REVIEWS (Google) ============ */
.home-reviews { padding: 80px 0 64px; }
.home-reviews-head {
  text-align: center;
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.reviews-rating-num {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1;
}
.reviews-rating-stars {
  display: inline-flex;
  gap: 2px;
}
.reviews-rating-meta {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reviews-rating-meta strong { color: var(--heading); font-weight: 600; }

.reviews-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 32px;
}
.review-card {
  padding: 28px 26px;
  border-radius: 16px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
[data-theme="dark"] .review-card {
  background: rgba(242,248,250,0.03);
  border-color: rgba(242,248,250,0.08);
}
.review-stars { display: inline-flex; gap: 2px; }
.review-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--heading);
  margin: 0;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent-top) 0%, var(--c-accent) 100%);
  color: var(--c-accent-ink);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; gap: 1px; }
.review-meta strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
}
.review-meta span {
  font-size: 11px;
  color: var(--muted);
}
.home-reviews-footer { text-align: center; }

/* ── Elfsight Reviews Widget ── */
.elfsight-reviews-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  /* Verhindert Overflow auf Mobile */
  overflow: hidden;
  border-radius: 20px;
}
/* Widget passt sich dem Theme an */
[data-theme="dark"] .elfsight-reviews-wrap {
  filter: brightness(0.92) contrast(1.04);
}
@media (max-width: 768px) {
  .elfsight-reviews-wrap {
    border-radius: 14px;
    margin: 0 -4px; /* leicht volle Breite auf Mobile */
  }
}
@media (max-width: 480px) {
  .elfsight-reviews-wrap { margin: 0 -8px; border-radius: 0; }
}

/* ============ SERVICES (4 Leistungen) ============ */
.home-services { padding: 80px 0 64px; }
.home-services-head { margin-bottom: 40px; max-width: 820px; }
.services-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0;
}
.service-card { margin: 0; }
.service-link {
  display: block;
  padding: 32px 30px;
  border-radius: 20px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base);
  height: 100%;
}
[data-theme="dark"] .service-link {
  background: rgba(242,248,250,0.03);
  border-color: rgba(242,248,250,0.08);
}
.service-link:hover {
  border-color: var(--c-accent);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--c-accent-soft);
  color: var(--c-accent-deep);
  margin-bottom: 20px;
  transition: all var(--t-base);
}
[data-theme="dark"] .service-icon {
  background: rgba(174,207,228,0.12);
  color: var(--c-accent);
}
.service-link:hover .service-icon {
  background: linear-gradient(180deg, var(--c-accent-top) 0%, var(--c-accent) 100%);
  color: var(--c-accent-ink);
  box-shadow: var(--glow-sm);
}
.service-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 18px;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent-deep);
  transition: gap var(--t-fast);
}
[data-theme="dark"] .service-arrow { color: var(--c-accent); }
.service-link:hover .service-arrow { gap: 9px; }

/* ============ TESTIMONIALS (YouTube Facade) ============ */
.home-testimonials { padding: 80px 0 64px; }
.home-testimonials-head { margin-bottom: 40px; max-width: 820px; }

.yt-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
}
.yt-card { margin: 0; }

.yt-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--c-black);
  cursor: pointer;
  padding: 0;
  isolation: isolate;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="dark"] .yt-facade { border-color: rgba(242,248,250,0.08); }

.yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Overlay für Lesbarkeit */
.yt-facade::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,15,22,0.15) 0%, rgba(7,15,22,0.55) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 300ms ease;
}

/* Play-Button zentriert */
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow:
    0 10px 28px rgba(7,15,22,0.3),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), background 200ms;
  color: var(--c-black);
  padding-left: 4px;
}
[data-theme="dark"] .yt-play {
  background: linear-gradient(180deg, var(--c-accent-top) 0%, var(--c-accent) 100%);
  color: var(--c-accent-ink);
  box-shadow: var(--glow-md), inset 0 1px 0 rgba(255,255,255,0.5);
}

/* YouTube-Brand dezent unten links */
.yt-brand {
  position: absolute;
  bottom: 10px; left: 12px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

@media (hover: hover) {
  .yt-facade:hover { box-shadow: 0 20px 48px rgba(7,15,22,0.2), var(--glow-sm); transform: translateY(-2px); }
  .yt-facade:hover .yt-thumb { transform: scale(1.02); }
  .yt-facade:hover::after { opacity: 0.7; }
  .yt-facade:hover .yt-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: linear-gradient(180deg, var(--c-accent-top) 0%, var(--c-accent) 100%);
    color: var(--c-accent-ink);
  }
}

/* Wenn Video geladen: iframe ersetzt Facade-Inhalte, Overlay weg */
.yt-facade.is-playing::after,
.yt-facade.is-playing .yt-play,
.yt-facade.is-playing .yt-brand { display: none; }
.yt-facade.is-playing .yt-thumb { filter: none; }
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}

.yt-caption {
  padding: 14px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yt-caption strong {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--heading);
}
.yt-caption span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ============ ABOUT INTRO (Homepage) ============ */
.home-about {
  padding: 80px 0 64px;
  background: var(--surface-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .home-about {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(242,248,250,0.025) 10%,
    rgba(242,248,250,0.025) 90%,
    transparent 100%
  );
  border-color: transparent;
}
.home-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.home-about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 560px;
}
.home-about-claim {
  color: var(--heading) !important;
  font-weight: 600 !important;
  padding-top: 10px;
}
.home-about-ctas { margin-top: 24px; }
.home-about-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--c-background);
  border: 1px solid var(--border);
}
[data-theme="dark"] .home-about-visual {
  background: rgba(242,248,250,0.04);
  border-color: rgba(242,248,250,0.08);
}
.home-about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ FAQ (Accordion) ============ */
.home-faq { padding: 80px 0 96px; }
.home-faq-head { margin-bottom: 40px; max-width: 820px; }

.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}
.faq-left {
  position: sticky;
  top: calc(var(--header-actual, 72px) + 48px);
}
.faq-left-headline {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
  margin: 0 0 16px;
}
.faq-left-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
}
.faq-left-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--c-accent-top) 0%, var(--c-accent) 100%);
  color: var(--c-accent-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--glow-sm);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
.faq-left-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
  color: var(--c-accent-ink);
}
.faq-left-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--c-accent-soft);
  border: 1px solid rgba(174,207,228,0.4);
  margin-bottom: 16px;
}
[data-theme="dark"] .faq-left-badge {
  background: rgba(174,207,228,0.1);
  border-color: rgba(174,207,228,0.2);
}
.faq-left-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent-deep);
}
[data-theme="dark"] .faq-left-badge span {
  color: var(--c-accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-raised);
  overflow: hidden;
  transition: border-color var(--t-base);
}
[data-theme="dark"] .faq-item {
  background: rgba(242,248,250,0.03);
  border-color: rgba(242,248,250,0.08);
}
.faq-item[open] { border-color: var(--c-accent); box-shadow: var(--glow-sm); }
.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--heading);
  line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent-deep);
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="dark"] .faq-icon {
  background: rgba(174,207,228,0.12);
  color: var(--c-accent);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-a p { margin: 0; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero--home .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo-wrap { max-width: 560px; justify-self: start; }
  .benefits-grid,
  .reviews-grid,
  .services-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .yt-grid { grid-template-columns: 1fr; }
  .showcase-vgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .home-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-left { position: static; }
  .faq-left-count { display: none; }
}
@media (max-width: 720px) {
  .home-benefits, .home-showcase, .home-audience,
  .home-reviews, .home-services, .home-testimonials,
  .home-about, .home-faq { padding: 56px 0; }
  .benefit-card, .audience-card { padding: 28px 22px; }
  .service-link { padding: 24px 22px; }
  .faq-q { padding: 16px 18px; font-size: 15px; }
  .faq-a { padding: 0 18px 18px; font-size: 14px; }
  .review-card { padding: 22px 20px; }
  .showcase-vkpi { padding: 7px 10px; top: 10px; right: 10px; }
  .showcase-vkpi .kpi-num { font-size: 13px; }
  .showcase-vcaption { left: 16px; right: 16px; bottom: 16px; }
  .showcase-vcaption strong { font-size: 15px; }
  .yt-play { width: 56px; height: 56px; }
}
@media (max-width: 560px) {
  .showcase-vgrid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .showcase-vmedia { aspect-ratio: 1 / 1; }
}

/* ============ SECTION-LEVEL ORB (Benefits, Reviews, etc.) ============ */
.home-benefits,
.home-showcase,
.home-services,
.home-reviews,
.home-testimonials,
.home-faq { position: relative; overflow: hidden; }

.home-section-orb {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.home-section-orb + .container { position: relative; z-index: 1; }
.home-section-orb--right {
  top: -160px; right: -160px;
  background: none;
  filter: blur(52px);
}
.home-section-orb--left {
  bottom: -140px; left: -180px;
  background: none;
  filter: blur(48px);
}
[data-theme="dark"] .home-section-orb--right {
  background: radial-gradient(circle, rgba(174,207,228,0.10) 0%, transparent 60%);
}
[data-theme="dark"] .home-section-orb--left {
  background: radial-gradient(circle, rgba(194,233,242,0.08) 0%, transparent 60%);
}

/* Benefits & Reviews: leichter raised background wie services-Cluster */
.home-benefits,
.home-reviews {
  background: var(--surface-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .home-benefits,
[data-theme="dark"] .home-reviews {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(242,248,250,0.03) 10%,
    rgba(242,248,250,0.03) 90%,
    transparent 100%
  );
  border-color: transparent;
}

/* ============ HERO · Orb Positionen für Home (innerhalb sichtbarem Bereich) ============ */
.hero--home {
  background: var(--c-background);
}
[data-theme="dark"] .hero--home {
  background: transparent;
}
.hero--home .hero-orb-a {
  top: -80px;
  left: -120px;
  width: 700px; height: 700px;
}
.hero--home .hero-orb-b {
  bottom: -40px;
  right: 0;
  width: 500px; height: 500px;
}
/* Video-BG deaktiviert (war Quelle des Grautons) */
.hero-bg-video { display: none; }

/* ============ TECH STACK STRIP ============ */
.home-tech-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 8px;
  flex-wrap: wrap;
}
.home-tech-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  opacity: 0.7;
  flex-shrink: 0;
}
.home-tech-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.home-tech-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: var(--surface-raised);
  cursor: default;
  transition: all var(--t-base);
}
[data-theme="dark"] .home-tech-item {
  background: rgba(242,248,250,0.04);
  border-color: rgba(242,248,250,0.1);
}
.home-tech-item:hover {
  border-color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}
.home-tech-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
.home-tech-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--heading);
  white-space: nowrap;
}

/* ============ BENEFITS · Icon Badge ============ */
.benefit-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-accent-soft);
  color: var(--c-accent-deep);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: all var(--t-base);
}
[data-theme="dark"] .benefit-icon-wrap {
  background: rgba(174,207,228,0.12);
  color: var(--c-accent);
}
.benefit-card:hover .benefit-icon-wrap {
  background: linear-gradient(180deg, var(--c-accent-top) 0%, var(--c-accent) 100%);
  color: var(--c-accent-ink);
  box-shadow: var(--glow-sm);
}

/* ============ REVIEWS · Google Badge ============ */
.reviews-rating-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.reviews-rating-wrap--link {
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  padding: 12px 20px;
  transition: background var(--t-fast), box-shadow var(--t-fast);
}
.reviews-rating-wrap--link:hover {
  background: var(--surface-raised);
  box-shadow: var(--glow-sm);
}
.reviews-google-badge {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .reviews-google-badge { height: 40px; }
  .home-tech-strip { gap: 10px; padding: 16px 0 4px; }
  .home-tech-item { padding: 5px 10px; }
  .home-tech-item img { width: 15px; height: 15px; }
  .home-tech-item span { font-size: 10px; }
}

/* ============================================================
   HOME CLOSER — rebuild
   ============================================================ */
.home-closer {
  position: relative;
  padding: 120px 0 240px;
  margin-bottom: -140px;
  background: var(--c-black);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

/* Orbs */
.hcl-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hcl-orb-1 {
  width: 700px; height: 700px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(174,207,228,0.12) 0%, transparent 60%);
  filter: blur(60px);
}
.hcl-orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(174,207,228,0.08) 0%, transparent 60%);
  filter: blur(48px);
}

/* Subtle grid lines */
.hcl-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(174,207,228,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,207,228,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hcl-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Label */
.hcl-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 28px;
}
.hcl-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: hclPulse 2s ease-in-out infinite;
}
@keyframes hclPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Headline */
.hcl-hl {
  font-family: var(--font-sans);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--c-white);
  margin: 0 0 28px;
}
.hcl-hl em {
  font-style: normal;
  color: var(--c-accent);
  display: inline-block;
  position: relative;
}
/* Blinking cursor after "rebuild_" */
.hcl-hl em span {
  display: inline-block;
  animation: hclBlink 1.1s step-end infinite;
  margin-left: 1px;
  opacity: 1;
}
@keyframes hclBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Subtext */
.hcl-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(242,248,250,0.6);
  max-width: 560px;
  margin: 0 0 48px;
}

/* Actions */
.hcl-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hcl-btn-ghost {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: rgba(242,248,250,0.5);
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(242,248,250,0.15);
  transition: color 0.18s, border-color 0.18s;
}
.hcl-btn-ghost:hover {
  color: rgba(242,248,250,0.85);
  border-color: rgba(242,248,250,0.4);
}

/* Claim line at bottom */
.hcl-claim {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(242,248,250,0.25);
  border-top: 1px solid rgba(242,248,250,0.07);
  padding-top: 28px;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .home-closer { padding: 80px 0 160px; }
  .hcl-hl { font-size: clamp(32px, 9vw, 52px); }
  .hcl-sub { font-size: 16px; margin-bottom: 36px; }
  .hcl-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hcl-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .home-closer { padding: 64px 0 148px; }
}

/* =============================================================
   HERO — Entrance Animations (CSS-only, page load)
   ============================================================= */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.hero--home .hero-badge  { animation: heroFadeUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.08s both; }
.hero--home .hero-headline { animation: heroFadeUp 0.7s  cubic-bezier(0.16,1,0.3,1) 0.18s both; }
.hero--home .hero-subtext  { animation: heroFadeUp 0.7s  cubic-bezier(0.16,1,0.3,1) 0.30s both; }
.hero--home .hero-ctas     { animation: heroFadeUp 0.7s  cubic-bezier(0.16,1,0.3,1) 0.42s both; }
.hero--home .hero-trust    { animation: heroFadeUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.52s both; }
.hero--home .hero-photo-wrap { animation: heroFadeIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.22s both; }

@media (prefers-reduced-motion: reduce) {
  .hero--home .hero-badge,
  .hero--home .hero-headline,
  .hero--home .hero-subtext,
  .hero--home .hero-ctas,
  .hero--home .hero-trust,
  .hero--home .hero-photo-wrap { animation: none; }
}

/* =============================================================
   BENEFITS — Dekorative Hintergrund-Zahl
   ============================================================= */
.benefits-grid { counter-reset: benefit-cnt; }
.benefit-card  { counter-increment: benefit-cnt; overflow: hidden; }
.benefit-card::after {
  content: counter(benefit-cnt, decimal-leading-zero);
  position: absolute;
  bottom: -14px; right: 10px;
  font-family: var(--font-sans);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--border);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color var(--t-base);
}
[data-theme="dark"] .benefit-card::after {
  color: rgba(242,248,250,0.05);
}
.benefit-card:hover::after {
  color: rgba(174,207,228,0.2);
}
/* Content above decorative number */
.benefit-icon-wrap,
.benefit-num,
.benefit-title,
.benefit-text { position: relative; z-index: 1; }

/* =============================================================
   SERVICES — Section-Eyebrow-Linie
   ============================================================= */
.home-services-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =============================================================
   SHOWCASE — Mobile: horizontal snap scroll
   ============================================================= */
@media (max-width: 640px) {
  .showcase-vgrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior: contain;
    gap: 14px;
    margin: 0 -20px 0;
    padding: 0 20px 20px;
    /* override grid columns */
    grid-template-columns: unset;
  }
  .showcase-vgrid::-webkit-scrollbar { display: none; }
  .showcase-vcard {
    flex: none;
    width: 74vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  .showcase-vmedia { aspect-ratio: 9 / 14; }
}

/* =============================================================
   TESTIMONIALS — Mobile: horizontal snap scroll
   ============================================================= */
@media (max-width: 640px) {
  .yt-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior: contain;
    gap: 14px;
    margin: 0 -20px 0;
    padding: 0 20px 16px;
    grid-template-columns: unset;
  }
  .yt-grid::-webkit-scrollbar { display: none; }
  .yt-card {
    flex: none;
    width: 80vw;
    scroll-snap-align: start;
  }
}

/* =============================================================
   ABOUT INTRO — Bild-Hover lift
   ============================================================= */
.home-about-visual {
  transition: transform 500ms cubic-bezier(0.16,1,0.3,1), box-shadow 500ms cubic-bezier(0.16,1,0.3,1);
}
.home-about-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(7,15,22,0.12);
}
.home-about-visual img {
  transition: none;
}

/* =============================================================
   FAQ — smooth animation support (overflow: hidden + padding)
   ============================================================= */
.faq-a { overflow: hidden; }

/* =============================================================
   SECTION HEADS — einheitliche Spacing-Rhythmus
   ============================================================= */
.home-benefits-head,
.home-showcase-head,
.home-audience-head,
.home-reviews-head,
.home-testimonials-head,
.home-faq-head { margin-bottom: 52px; }

/* Eyebrow accent-line */
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 2px;
}

/* =============================================================
   AUDIENCE — Responsive
   ============================================================= */
@media (max-width: 900px) {
  .audience-grid { gap: 16px; }
  .audience-card { padding: 32px 26px; }
  .audience-num { font-size: 56px; }
}
@media (max-width: 600px) {
  .audience-grid { grid-template-columns: 1fr; gap: 14px; }
  .audience-card { padding: 28px 22px; }
  .audience-num { font-size: 52px; top: 12px; right: 16px; }
}

/* =============================================================
   REVIEWS — stagger spacing
   ============================================================= */
@media (max-width: 900px) {
  .reviews-grid { gap: 12px; }
}

/* =============================================================
   CLOSER — scroll-reveal scoped animation
   ============================================================= */
.hcl-inner [data-reveal] {
  --rd: 0ms;
}
.hcl-label   { animation: heroFadeUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.1s  both; }
.hcl-hl      { animation: heroFadeUp 0.75s cubic-bezier(0.16,1,0.3,1) 0.22s both; }
.hcl-sub     { animation: heroFadeUp 0.7s  cubic-bezier(0.16,1,0.3,1) 0.34s both; }
.hcl-actions { animation: heroFadeUp 0.7s  cubic-bezier(0.16,1,0.3,1) 0.44s both; }
.hcl-claim   { animation: heroFadeUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.54s both; }

/* Closer animations nur wenn sichtbar — toggle via is-visible on section */
.home-closer:not(.is-visible) .hcl-label,
.home-closer:not(.is-visible) .hcl-hl,
.home-closer:not(.is-visible) .hcl-sub,
.home-closer:not(.is-visible) .hcl-actions,
.home-closer:not(.is-visible) .hcl-claim { animation: none; opacity: 0; transform: translateY(22px); }
.home-closer.is-visible .hcl-label   { animation: heroFadeUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.05s  both; }
.home-closer.is-visible .hcl-hl      { animation: heroFadeUp 0.75s cubic-bezier(0.16,1,0.3,1) 0.16s both; }
.home-closer.is-visible .hcl-sub     { animation: heroFadeUp 0.7s  cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.home-closer.is-visible .hcl-actions { animation: heroFadeUp 0.7s  cubic-bezier(0.16,1,0.3,1) 0.38s both; }
.home-closer.is-visible .hcl-claim   { animation: heroFadeUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.48s both; }

/* Touch: active tap feedback */
@media (pointer: coarse) {
  .service-link:active,
  .audience-card:active,
  .review-card:active,
  .yt-facade:active { opacity: 0.82; }
  .showcase-vcard:active .showcase-vmedia { transform: scale(0.97); }
}

/* =============================================================
   MOBILE MEGA-OPTIMIERUNG — alle Home-Sections
   ============================================================= */

/* ── 900px: Grid-Collapse ─────────────────────────────────── */
@media (max-width: 900px) {

  /* Shared section text */
  .section-subtext       { color: #3D4352; font-size: 16px; }
  [data-theme="dark"] .section-subtext { color: rgba(242,248,250,0.85); }

  /* Section-Head spacing vereinheitlichen */
  .home-benefits-head,
  .home-showcase-head,
  .home-audience-head,
  .home-reviews-head,
  .home-services-head,
  .home-testimonials-head,
  .home-faq-head         { margin-bottom: 36px; }

  /* ── HERO ─────────────────────────── */
  .hero--home            { padding: 36px 0 48px; }
  .hero-subtext          { color: #3D4352; font-size: 17px; margin-bottom: 28px; }
  [data-theme="dark"] .hero-subtext { color: rgba(242,248,250,0.88); }

  .hero-photo-wrap       { aspect-ratio: unset; max-height: 300px; overflow: hidden; }
  .hero-photo            { border-radius: 18px; }
  .hero-photo img        { object-position: center 20%; }
  .hero-photo-caption    { display: none; }

  /* CTA Button volle Breite */
  .hero-ctas .btn        { width: 100%; justify-content: center; }

  /* ── BENEFITS ─────────────────────── */
  .home-benefits         { padding: 56px 0; }
  .benefits-grid         { gap: 14px; }
  .benefit-card          { padding: 28px 24px; }
  .benefit-title         { font-size: 20px; }
  .benefit-text          { color: #3D4352; font-size: 14.5px; }
  [data-theme="dark"] .benefit-text { color: rgba(242,248,250,0.82); }

  /* ── SERVICES ─────────────────────── */
  .home-services         { padding: 56px 0; }
  .services-grid         { gap: 14px; }
  .service-link          { padding: 26px 22px; }
  .service-title         { font-size: 19px; }
  .service-text          { color: #3D4352; font-size: 14px; }
  [data-theme="dark"] .service-text { color: rgba(242,248,250,0.82); }

  /* ── PORTFOLIO SHOWCASE ───────────── */
  .home-showcase         { padding: 56px 0 48px; }
  .home-showcase-head    { margin-bottom: 28px; }

  /* ── AUDIENCE ─────────────────────── */
  .home-audience         { padding: 56px 0; }
  .home-audience-head    { margin-bottom: 36px; }
  .audience-card         { padding: 32px 26px; }
  .audience-title        { font-size: 19px; }
  .audience-text         { color: #3D4352; font-size: 14px; }
  [data-theme="dark"] .audience-text { color: rgba(242,248,250,0.82); }

  /* ── REVIEWS ─────────────────────── */
  .home-reviews          { padding: 56px 0; }
  .reviews-grid          { gap: 14px; }
  .review-card           { padding: 24px 20px; }
  .review-text           { font-size: 14px; color: var(--heading); }
  .review-meta span      { color: #6B6E7E; }
  [data-theme="dark"] .review-meta span { color: rgba(242,248,250,0.55); }

  /* ── TESTIMONIALS ─────────────────── */
  .home-testimonials     { padding: 56px 0; }
  .yt-caption strong     { font-size: 14px; }
  .yt-caption span       { font-size: 11px; }

  /* ── ABOUT INTRO ──────────────────── */
  .home-about            { padding: 56px 0; }
  .home-about-grid       { gap: 32px; }
  .home-about-content p  { color: #3D4352; font-size: 15px; }
  [data-theme="dark"] .home-about-content p { color: rgba(242,248,250,0.82); }
  .home-about-visual     { aspect-ratio: unset; max-height: 260px; overflow: hidden; }
  .home-about-visual img { object-position: center 20%; }

  /* ── FAQ ──────────────────────────── */
  .home-faq              { padding: 56px 0 72px; }
  .faq-grid              { gap: 28px; }
  .faq-left-sub          { color: #3D4352; font-size: 14px; }
  [data-theme="dark"] .faq-left-sub { color: rgba(242,248,250,0.82); }
  .faq-left-headline     { font-size: clamp(22px, 5vw, 32px); }
  .faq-a                 { color: #3D4352; font-size: 14px; line-height: 1.65; }
  [data-theme="dark"] .faq-a { color: rgba(242,248,250,0.82); }
  .faq-q                 { font-size: 15px; color: var(--heading); }
}

/* ── 600px: Single-Column verfeinern ─────────────────────── */
@media (max-width: 600px) {

  /* Hero: minimaler Fotobereich */
  .hero--home            { padding: 28px 0 40px; }
  .hero-photo-wrap       { max-height: 240px; }
  .hero-headline         { font-size: clamp(30px, 8.5vw, 46px); }
  .hero-subtext          { font-size: 16px; }

  /* Sections enger */
  .home-benefits, .home-services, .home-audience,
  .home-reviews, .home-testimonials, .home-about,
  .home-showcase         { padding: 48px 0; }
  .home-faq              { padding: 48px 0 64px; }

  /* Section-Heads kompakter */
  .section-headline      { font-size: clamp(24px, 7vw, 36px); letter-spacing: -0.025em; }
  .section-subtext       { font-size: 15px; }

  /* Benefits */
  .benefits-grid         { gap: 12px; }
  .benefit-card          { padding: 24px 20px; }
  .benefit-title         { font-size: 18px; }
  .benefit-text          { font-size: 14px; }

  /* Services */
  .services-grid         { gap: 12px; }
  .service-link          { padding: 22px 18px; }
  .service-title         { font-size: 18px; }

  /* Audience: 1 Spalte */
  .audience-grid         { grid-template-columns: 1fr; gap: 12px; }
  .audience-card         { padding: 24px 20px; }
  .audience-title        { font-size: 18px; }

  /* Reviews: 1 Spalte */
  .reviews-grid          { grid-template-columns: 1fr; }
  .review-card           { padding: 20px 18px; }

  /* About visual kleiner */
  .home-about-visual     { max-height: 220px; }

  /* FAQ */
  .faq-q                 { font-size: 14px; padding: 15px 18px; }
  .faq-a                 { font-size: 13.5px; padding: 0 18px 18px; }
  .faq-icon              { width: 28px; height: 28px; }
}

/* ── 480px: Kleinste Screens ─────────────────────────────── */
@media (max-width: 480px) {

  .hero--home            { padding: 24px 0 36px; }
  .hero-photo-wrap       { max-height: 200px; }
  .hero-headline         { font-size: clamp(28px, 8vw, 40px); }

  .section-headline      { font-size: clamp(22px, 7vw, 32px); }

  /* Benefits: noch kompakter */
  .benefit-card          { padding: 20px 18px; }
  .benefit-num           { font-size: 12px; margin-bottom: 14px; }

  /* Services */
  .service-icon          { width: 40px; height: 40px; }

  /* Audience */
  .audience-icon         { width: 40px; height: 40px; border-radius: 12px; }
  .audience-num          { font-size: 48px; }

  /* Closer */
  .hcl-sub               { font-size: 15px; }
  .hcl-actions .btn      { font-size: 14px; }

  /* FAQ */
  .faq-left-cta          { font-size: 13px; padding: 11px 18px; }
}
