/* =====================================================
   VZ CONCEPT — Homepage V4 (index.html)
   Index-spezifische Styles, ausgelagert aus inline <style>
   Laedt NACH style.css → kann globale Styles ueberschreiben
   ===================================================== */

/* ── Seitenspezifische Ergänzungen ── */

/* Branchen-Tags */
.branche-strip {
  background: var(--color-accent-light);
  border-top: 1px solid var(--color-accent-mid);
  border-bottom: 1px solid var(--color-accent-mid);
  padding-block: var(--space-sm);
  overflow: hidden;
}

.branche-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.branche-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Differenzierung-Box */
.diff-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.diff-box__col {
  padding: var(--space-xl);
  background: var(--color-white);
}

.diff-box__col--dark {
  background: var(--color-primary);
}

.diff-box__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.diff-box__col .diff-box__label {
  color: var(--color-text-muted);
}

.diff-box__col--dark .diff-box__label {
  color: var(--color-accent);
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--fs-sm);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.45;
  color: var(--color-text-muted);
}

.diff-list li:last-child { border-bottom: none; }

.diff-box__col--dark .diff-list li {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.08);
}

.diff-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Kennzahlen-Band */
.kpi-band {
  background: var(--color-primary);
  padding-block: var(--space-2xl);
}

@media (max-width: 768px) {
  .diff-box {
    grid-template-columns: 1fr;
  }
}

/* Neue Startseiten-Version: Conversion-Struktur im bestehenden Branding */
.home-v4 {
  background: var(--color-white);
  overflow: hidden;
}

.v4-hero {
  position: relative;
  min-height: 100svh;
  padding-top: 76px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background:
    radial-gradient(circle at 86% 24%, rgba(0,200,168,0.32), transparent 36%),
    radial-gradient(circle at 58% 58%, rgba(0,200,168,0.08), transparent 32%),
    linear-gradient(112deg, #061815 0%, #081F1C 28%, #0C3530 62%, #0B7669 100%);
  color: var(--color-white);
}

.v4-hero__main {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.v4-hero::before {
  content: '';
  position: absolute;
  display: none;
}

.v4-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 320px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(8,31,28,0.4) 50%,
    rgba(8,31,28,0.85) 85%,
    var(--color-primary-deep) 100%);
  pointer-events: none;
  z-index: 3;
}

.v4-hero__glow {
  position: absolute;
  width: clamp(180px, 26vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,168,0.26), transparent 68%);
  filter: blur(8px);
  opacity: 0.72;
  pointer-events: none;
}

.v4-hero__glow--left {
  left: -9vw;
  bottom: 8vh;
}

.v4-hero__glow--right {
  right: 8vw;
  top: 12vh;
}

.v4-hero .container {
  position: relative;
  z-index: 1;
}

.v4-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.92fr);
  gap: clamp(2rem, 4vw, 4.25rem);
  align-items: end;
  padding-block: clamp(4rem, 7vw, 6rem) 0;
}

.v4-eyebrow,
.v4-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.v4-eyebrow::before,
.v4-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.v4-hero__title {
  display: grid;
  gap: 0.08em;
  max-width: 650px;
  color: var(--color-white);
  margin-bottom: 1.35rem;
}

.v4-hero__title-main {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(3rem, 5.4vw, 5.05rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 48px rgba(0,0,0,0.22);
}

.v4-hero__title-script {
  display: block;
  margin-top: -0.02em;
  color: var(--color-accent);
  font-family: var(--font-script);
  font-size: clamp(3.45rem, 6.4vw, 6rem);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.035em;
  text-shadow: 0 18px 45px rgba(0,200,168,0.15);
}

.v4-hero__title span:not(.v4-hero__title-main):not(.v4-hero__title-script) {
  color: var(--color-accent);
}

.v4-hero__text {
  max-width: 540px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.72;
  margin-bottom: 2.15rem;
}

.v4-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.v4-hero .btn {
  min-width: 190px;
  justify-content: center;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: none;
}

.v4-hero .btn--primary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.v4-hero .btn--primary:hover {
  background: var(--color-accent);
  color: var(--color-primary-deep);
  border-color: var(--color-accent);
  box-shadow: 0 18px 42px rgba(0,200,168,0.22);
}

.v4-hero .btn--outline-white {
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.84);
  border-color: rgba(255,255,255,0.38);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.v4-hero .btn--outline-white:hover,
.v4-hero .btn--outline-white:focus-visible {
  background: rgba(255,255,255,0.10);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.72);
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
  transform: translateY(-1px);
}

.v4-hero__note {
  max-width: 560px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.62);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.v4-hero__visual {
  position: relative;
  justify-self: end;
  width: min(46vw, 590px);
  aspect-ratio: 4 / 5;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  --hero-visual-base: clamp(0.5rem, 1.5vw, 1.2rem);
  transform: translateY(calc(var(--hero-visual-base) + var(--hero-visual-shift, 0px)));
}

.v4-hero__visual::before {
  content: '';
  position: absolute;
  z-index: 0;
  right: clamp(-26rem, -28vw, -14rem);
  top: clamp(-8rem, -7vw, -3rem);
  width: min(128vw, 1620px);
  height: min(108vh, 1180px);
  background-image: url('assets/images/vanessa/vz-background-mark.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.18;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 80px rgba(0, 200, 168, 0.06));
  pointer-events: none;
}

.v4-hero__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.v4-hero__visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 32px 54px rgba(0,0,0,0.34))
    drop-shadow(0 0 10px rgba(0,200,168,0.06));
}

.v4-hero__google {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: -1.4rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(0, 200, 168, 0.32);
  border-radius: 999px;
  background: rgba(8, 31, 28, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.v4-hero__google:hover,
.v4-hero__google:focus-visible {
  background: rgba(8, 31, 28, 0.94);
  border-color: var(--color-accent);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
}

.v4-hero__google-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
}

.v4-hero__google-stars {
  color: #FFC107;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.v4-hero__google-score {
  color: var(--color-white);
  font-weight: 800;
}

.v4-hero__google-divider {
  color: rgba(255, 255, 255, 0.32);
  font-weight: 400;
}

.v4-hero__google-meta {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.v4-hero__badge {
  display: none;
  position: absolute;
  z-index: 2;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  background: rgba(8,31,28,0.78);
  backdrop-filter: blur(12px);
}

.v4-hero__badge strong {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.v4-hero__badge span {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-xs);
  line-height: 1.35;
  font-weight: 700;
}

/* === STATS GRID (Premium-Cards, jetzt in Why-Sektion) =========== */

.v4-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.v4-stats__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 1.5rem 1.1rem 1.35rem;
  border: 1px solid rgba(0, 200, 168, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(8, 31, 28, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 40px -28px rgba(0, 0, 0, 0.45);
}

.v4-stats__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(0, 200, 168, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.v4-stats__card:hover,
.v4-stats__card--link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 168, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 32px 72px -28px rgba(0, 0, 0, 0.55),
    0 0 32px -8px rgba(0, 200, 168, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(8, 31, 28, 0.65);
}

.v4-stats__card:hover::after,
.v4-stats__card--link:focus-visible::after {
  opacity: 1;
}

.v4-stats__indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 14px rgba(0, 200, 168, 0.55);
}

.v4-stats__indicator--gold {
  background: #FFC107;
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.5);
}

.v4-stats__stars-row {
  margin-bottom: -0.2rem;
}

.v4-stats__stars {
  color: #FFC107;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.35));
}

.v4-stats__value {
  display: block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  text-shadow:
    0 0 28px rgba(0, 200, 168, 0.2),
    0 4px 18px rgba(0, 0, 0, 0.4);
}

.v4-stats__value--text {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: 0.05em;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, #B3EDE4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.v4-stats__plus {
  color: var(--color-accent);
  margin-left: 0.04em;
  text-shadow: 0 0 24px rgba(0, 200, 168, 0.55);
}

.v4-stats__label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 200px;
}

.v4-partners {
  background: var(--color-primary-deep);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: none;
}

.v4-partners .v4-kicker {
  margin-bottom: 0.35rem;
}

.v4-partners__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
}

.v4-partners__top h2 {
  color: var(--color-white);
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  line-height: 1.1;
  margin: 0;
}

.v4-partners__top > a {
  color: var(--color-accent);
  font-size: var(--fs-sm);
  font-weight: 850;
  white-space: nowrap;
}

.v4-partners .partner-marquee {
  width: 100%;
  margin-top: 1.15rem;
  border-block-color: rgba(255,255,255,0.1);
}

.v4-section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

/* Ruhige Premium-Motion: sichtbar nur, wenn JS aktiv ist */
.motion-ready .v4-hero__content > *,
.motion-ready .v4-hero__visual,
.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .v4-hero__title span {
  display: block;
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 0.38em, 0);
  transition:
    clip-path 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .v4-hero.is-visible .v4-hero__content > *,
.motion-ready .v4-hero.is-visible .v4-hero__visual,
.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .v4-hero.is-visible .v4-hero__title span {
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
}

.motion-ready .v4-hero.is-visible .v4-hero__visual {
  transform: translateY(calc(var(--hero-visual-base) + var(--hero-visual-shift, 0px)));
}

.motion-ready .v4-hero__content {
  transform: translate3d(0, var(--hero-content-shift, 0px), 0);
  transition: transform 0.2s linear;
}

.motion-ready .v4-hero__glow {
  transform: translate3d(0, var(--hero-glow-shift, 0px), 0);
}

.motion-ready .v4-title.reveal-item {
  clip-path: inset(0 0 100% 0);
}

.motion-ready .v4-title.reveal-item.is-visible {
  clip-path: inset(0);
}

/* Globale Wort-Umbruch-Sicherung gegen lange deutsche Compound-Words */
.v4-title,
.v4-hero__title,
.v4-offer-card h3,
.v4-process h3,
.v4-final-cta h2,
.v4-faq-question {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.v4-section--light {
  background: linear-gradient(180deg, var(--color-light-bg), var(--color-white));
}

.v4-section--dark {
  background:
    radial-gradient(circle at 100% 0%, rgba(0,200,168,0.16), transparent 30%),
    var(--color-primary);
  color: var(--color-white);
}

.v4-section--faq {
  background: var(--color-off-white);
}

.v4-section-head {
  max-width: 780px;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.v4-section-head--dark .v4-title,
.v4-section--dark .v4-title {
  color: var(--color-white);
}

.v4-section-head--dark .v4-lead,
.v4-section--dark .v4-lead {
  color: rgba(255,255,255,0.76);
}

.v4-title {
  color: var(--color-primary);
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}

.v4-lead {
  max-width: 650px;
  color: var(--color-text-muted);
  font-size: clamp(1.03rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.v4-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.v4-situation-list {
  display: grid;
  gap: 0.85rem;
}

.v4-situation-list a {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 50px rgba(12,53,48,0.07);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.v4-situation-list a:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent-mid);
  box-shadow: var(--shadow-md);
}

.v4-situation-list strong {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  line-height: 1.25;
}

.v4-situation-list span {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.v4-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.v4-compare__side {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--color-white);
}

.v4-compare__side--dark {
  background: var(--color-primary);
}

.v4-compare__label {
  color: var(--color-accent);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.v4-compare li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.6rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.v4-compare__side--dark li {
  color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.1);
}

.v4-compare li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.v4-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.v4-offer-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background: rgba(255,255,255,0.055);
  box-shadow: 0 24px 70px rgba(0,0,0,0.16);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.v4-offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,168,0.45);
  background: rgba(255,255,255,0.085);
}

.v4-offer-card span {
  color: var(--color-accent);
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 1.6rem;
}

.v4-offer-card h3 {
  color: var(--color-white);
  font-size: clamp(1.25rem, 1.75vw, 1.7rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.v4-offer-card p {
  color: rgba(255,255,255,0.72);
  font-size: var(--fs-sm);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.v4-offer-card a {
  margin-top: auto;
  color: var(--color-accent);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.v4-center-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.v4-proof-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.v4-proof-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  background: var(--color-light-bg);
}

.v4-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v4-proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}

.v4-proof-points div {
  padding: 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-white);
}

.v4-proof-points strong {
  display: block;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  overflow-wrap: anywhere;
  hyphens: manual;
}

.v4-proof-points span {
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  line-height: 1.35;
}

/* === WHY SECTION (mit Stats integriert) ===================== */

.v4-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.v4-section-head--center .v4-kicker {
  justify-content: center;
}

.v4-section-head--center .v4-lead {
  margin-left: auto;
  margin-right: auto;
}

.v4-why__stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin: 0;
}

.v4-why__metrics {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v4-why__metrics .v4-stats__card {
  min-height: 150px;
}

.v4-why__metrics .v4-stats__label {
  max-width: 230px;
}

.v4-why__split {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.25rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v4-why__bio-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-md);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Proof-Points auf dunklem BG (in Why-Sektion) */
.v4-section--dark .v4-proof-points div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 200, 168, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.v4-section--dark .v4-proof-points div:hover {
  border-color: rgba(0, 200, 168, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.v4-section--dark .v4-proof-points strong {
  color: var(--color-accent);
  font-size: clamp(1.2rem, 1.75vw, 1.5rem);
  line-height: 1.08;
}

.v4-section--dark .v4-proof-points span {
  color: rgba(255, 255, 255, 0.68);
}

.v4-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.v4-process article {
  position: relative;
  min-height: 245px;
  padding: 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 18px 45px rgba(12,53,48,0.07);
}

.v4-process span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  font-weight: 900;
}

.v4-process h3 {
  font-size: var(--fs-xl);
  margin-bottom: 0.75rem;
}

.v4-process p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.v4-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.v4-testimonials article {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(12,53,48,0.08);
}

.v4-testimonials__stars {
  color: #FFC107;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.v4-testimonials p {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.v4-testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border-light);
}

.v4-testimonials__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.v4-testimonials__name {
  display: block;
  color: var(--color-text);
  font-size: var(--fs-sm);
  font-weight: 800;
  line-height: 1.3;
}

.v4-testimonials__role {
  display: block;
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  font-weight: 500;
  line-height: 1.3;
}

.v4-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.v4-faq-list {
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.v4-final-cta {
  padding-block: clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 18% 10%, rgba(0,200,168,0.16), transparent 34%),
    linear-gradient(135deg, var(--color-primary-deep), var(--color-primary));
  color: var(--color-white);
}

.v4-final-cta__inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.v4-final-cta__inner .v4-kicker {
  justify-content: center;
}

.v4-final-cta h2 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1.2rem;
}

.v4-final-cta p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-lg);
  line-height: 1.7;
}

.v4-final-cta .v4-hero__actions {
  justify-content: center;
}

@media (max-width: 1024px) {
  .v4-hero__grid,
  .v4-split,
  .v4-proof-split,
  .v4-faq-layout {
    grid-template-columns: 1fr;
  }

  .v4-hero__visual {
    justify-self: start;
    width: min(100%, 400px);
    --hero-visual-base: 0.75rem;
  }

  .v4-hero__visual::before {
    right: -12rem;
    top: -1rem;
    width: min(125vw, 820px);
    height: 600px;
  }

  .v4-partners__top {
    align-items: start;
    flex-direction: column;
  }

  .v4-offer-grid,
  .v4-process,
  .v4-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v4-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v4-proof-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {
  .v4-hero {
    min-height: 100svh;
    padding-top: 68px;
    overflow: hidden;
  }

  .v4-hero__grid {
    padding-block: 2.5rem 3rem;
  }

  /* Text-Content vor dem absolut positionierten Foto */
  .v4-hero__content {
    position: relative;
    z-index: 2;
  }

  .v4-hero__visual {
    display: none;
  }

  /* Google-Pille auf Mobile ausblenden (wird vom Cookie-Banner verdeckt;
     prominentere Google-Karte ist eh in der Why-Sektion sichtbar) */
  .v4-hero__google {
    display: none;
  }

  /* Hintergrund-Mark auf Mobile ausblenden */
  .v4-hero__visual::before {
    display: none;
  }

  .v4-hero__title {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  .v4-hero__actions .btn,
  .v4-final-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .v4-compare,
  .v4-offer-grid,
  .v4-proof-points,
  .v4-process,
  .v4-testimonials {
    grid-template-columns: 1fr;
  }

  .v4-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v4-stats {
    padding-block: 3.5rem;
  }

  .v4-section {
    padding-block: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v4-hero__content > *,
  .v4-hero__visual,
  .v4-hero__title span,
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }

}
