/* W.W.I. KG – Markenanpassung (nach style.css laden). Hauptfarbe Olivgrün,
   grau-weiße Akzente. */
:root {
  --navy:  #58595b;  /* neutrales Grau (Lauftext, Lead, Dauer) */
  --wine:  #0C6398;  /* Primärfarbe Olivgrün (Buttons, Auswahl, Kacheln) */
  --beige: #f5f5f5;  /* Hintergrund Hellgrau */
}

.hero-photo {
  background: linear-gradient(135deg, var(--wine), #1a1a1a);
  background-size: cover;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

/* ── Buttons rot ────────────────────────────── */
.btn-primary,
.fn-next,
.fn-sub,
.fn-bar-fill {
  background: var(--wine);
}
/* Ausgewählte Kachel/Radio-Zeile: wie bei Trausnitz nur graue Umrandung
   (aus style-test.css), kein rotes Flächen-Highlight - sonst scheint das
   .fn-choice-tile-Hintergrund als roter Balken unter dem Kachelbild durch. */
.btn-primary:hover,
.fn-next:hover,
.fn-sub:not(:disabled):hover,
.fn-choice:hover {
  background: var(--wine);
  filter: brightness(.85);
}
.btn-outline {
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--white);
}
.pain-card-cta .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  white-space: normal;
}

/* ── Header: größeres Logo ─────────────────────── */
.hdr-logo img { height: 54px; max-height: 54px; }

/* ── Footer: dezentes Anthrazit ────────────────── */
.footer-uni { background: #2b2c2e; }

/* ── Bewertungen: Klick-Karussell ─────────────────── */
.rv-carousel { margin-top: 40px; }
.rv-carousel-outer { overflow: hidden; }
.rv-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
}
.rv-carousel-track .rv-card { flex: 0 0 340px; }
.rv-carousel-arrows { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.rv-arr {
  width: 44px; height: 44px; border-radius: 50%;
  background: #e9e9ea; color: #58595b;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; border: none; cursor: pointer;
}
.rv-arr:hover:not(:disabled) { background: var(--wine); color: var(--white); }
.rv-arr:disabled { opacity: .35; cursor: default; }

/* ── Zertifikate unter dem Hero-Foto (rechte Spalte) ───────── */
.hero-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}
.hero-certs img { height: 85px; width: auto; display: block; }
@media (max-width: 639px) {
  .hero-certs { justify-content: center; }
}

/* ── Zertifikate-Leiste: kompakt direkt unter dem Hero-Bild ── */
.cert-bar {
  background: var(--white);
  padding: 14px 24px;
  border-bottom: 1px solid #ececec;
}
.cert-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 40px;
  max-width: var(--cw);
  margin: 0 auto;
}
.cert-item {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  color: #58595b; font-size: .82rem; font-weight: 600;
}
.cert-item svg { flex-shrink: 0; color: var(--wine); }
.cert-item img { height: 108px; width: auto; display: block; border-radius: 6px; }
.cert-bar { padding: 40px 24px; background: #fff; }
.cert-track { gap: 28px 48px; }

/* ── Überschriften-Hervorhebung: Unterstreichung statt Fläche ── */
.hl-gray, .hl-wine, .hl-light {
  background: none;
  padding: 0;
  border-bottom: 3px solid rgba(88,89,91,.5);
}

/* ── Über uns: Team-Foto breiter und oben ausgerichtet ── */
.about-mini-inner { align-items: flex-start; }
.about-mini-photo { width: 460px; }

/* ── "Für Eigentümer in ..."-Badge: weiß mit grauem Rahmen statt
   halbtransparent, damit es sich klarer vom Hero-Foto abhebt ── */
.hero-mini-eyebrow {
  background: #fff;
  border: 1px solid #cfcfcf;
}

/* ── Google-Rezension: "Local Guide"-Kennzeichnung unter dem Namen ── */
.gmap-local-guide { font-size: .72rem; color: #70757a; margin-top: 1px; }

/* ── /wertermittlung/: eigenständiger Mini-Funnel, ein Screen pro Schritt ──
   Kein Site-Header mehr: Logo + Google-Badge sind Teil des Seiteninhalts.
   Reines Weiß, keine Hero-Fotografie, kein Fortschrittsbalken, keine
   Emojis. Poppins statt Inter für einen hochwertigeren Look, Inhalte
   überwiegend zentriert. Kacheln in WeserBergland-Rot mit dunkelgrauem
   Label-Balken (statt Gelb/Dunkelblau der Vorlage). ── */
/* Hintergrundfoto optional: am <section class="wert-hero2"> per Inline-Style
   ergänzen, z.B. style="background-image:url('../images/hero.jpg')". Ohne
   Foto bleibt der helle Verlauf als Hintergrund stehen. */
.wert-hero2 {
  position: relative; padding-top: 48px; font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #f2f5f7 0%, #e7edf1 100%);
  background-size: cover; background-position: center;
}
.wert-hero2::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.62) 0%, rgba(255,255,255,.4) 45%, rgba(255,255,255,.62) 100%);
}
.wert-hero2-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 0 24px 160px; }
.wert-hero2-text { max-width: 100%; text-align: center; }

.wert-top-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 44px; }
.wert-logo { height: 52px; width: auto; display: block; }

/* Desktop: Logo, Headline, Google-Badge und Formular gemeinsam in EINER
   großen weißen Karte auf dem Hero-Foto (wie WeserBergland). Auf Mobile
   (Media Query unten) wird dieser Container aufgelöst und nur das Formular
   bleibt eine Karte. */
.wert-hero2-card {
  max-width: 760px; margin: 0 auto;
  background: var(--white); border-radius: var(--r);
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
  padding: 56px 64px 52px;
}
.wert-hero2-card .wert-top-row { margin-bottom: 36px; }
.wert-hero2-card .wert-lead { margin-bottom: 44px; }
.wert-card2 { max-width: 520px; margin: 0 auto; }
.wert-card2 .fn-body { padding: 16px 0 0; }

.wert-h1 {
  font-size: clamp(2rem, 6.8vw, 2.7rem); font-weight: 700;
  line-height: 1.4; letter-spacing: -.005em; color: var(--ink); margin-bottom: 24px;
}
.wert-lead { font-size: .98rem; line-height: 1.7; font-weight: 400; color: var(--navy); margin: 0 0 115px; }
.wert-lead strong { font-weight: 700; }

.wert-google-card {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid #ebebeb; border-radius: 14px;
  padding: 12px 18px; box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.wert-google-icon { width: 34px; height: 34px; flex-shrink: 0; display: block; }
.wert-google-info { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; text-align: left; }
.wert-google-rating { display: flex; align-items: center; gap: 6px; font-size: .95rem; font-weight: 700; color: var(--ink); }
.wert-google-count { font-size: .8rem; font-weight: 500; color: #8a8a8a; }

.wert-stars { display: flex; align-items: center; justify-content: center; gap: 3px; }
.wert-stars svg { fill: #fbbc04; }
.wert-stars-sm svg { width: 14px; height: 14px; }
.wert-stars-lg { gap: 6px; margin: 8px 0 16px; }
.wert-stars-lg svg { width: 26px; height: 26px; }

.wert-card-h2 { font-size: 1.35rem; font-weight: 700; line-height: 1.35; color: var(--ink); text-align: center; margin-bottom: 8px; }
.wert-card-sub { font-size: .85rem; font-weight: 400; color: #8a8a8a; text-align: center; margin-bottom: 0; }
/* Einheitlicher Abstand zwischen Frage (bzw. Hinweistext) und der
   anklickbaren Antwort/den Eingabefeldern - bei jedem Schritt gleich groß,
   unabhängig davon ob ein Hinweistext dazwischen steht oder nicht. */
.wert-card2 .fn-choices, .wert-card2 .fn-fields { margin-top: 28px; }

/* Immobilienart-Kacheln: leuchtendes WeserBergland-Rot statt Gelb, dunkelgrauer
   Label-Balken statt Dunkelblau - Struktur/Proportion wie in der Vorlage.
   Größer, mit spürbarem Hover-/Klick-Effekt statt statisch. */
.fn-choices.fn-choices-tiles.wert-tiles { grid-template-columns: repeat(2, 1fr); gap: 22px; }
.wert-tiles .fn-choice.fn-choice-tile {
  flex-direction: column; align-items: stretch;
  background: var(--wine); border: none; border-radius: 10px; overflow: hidden;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--wine) 28%, transparent);
  transition: box-shadow .18s ease, transform .18s ease;
}
.wert-tiles .fn-choice.fn-choice-tile:hover {
  box-shadow: 0 10px 22px color-mix(in srgb, var(--wine) 36%, transparent);
  transform: translateY(-3px);
}
.wert-tiles .fn-choice-tile-imgwrap {
  width: 100%; height: 190px; display: flex; align-items: center; justify-content: center;
  background: transparent; overflow: hidden;
}
.wert-tiles .fn-choice-tile-imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wert-tiles .fn-choice-tile-label {
  font-size: 1.02rem; font-weight: 700; text-align: center; padding: 16px 8px;
  color: var(--white); background: var(--wine);
}
/* Label bleibt beim Klick immer weiß - die generische .sel-Regel aus
   style-test.css würde die Schrift sonst kurz schwarz aufblitzen lassen,
   bevor automatisch zur nächsten Frage weitergesprungen wird. */
.wert-tiles .fn-choice.fn-choice-tile.sel .fn-choice-tile-label { color: var(--white); }

.wert-duration {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .85rem; font-weight: 500; color: var(--navy); margin: 36px 0 36px;
}
.wert-duration svg { width: 18px; height: 18px; flex-shrink: 0; }

.wert-avatars { display: flex; align-items: center; justify-content: center; }
.wert-avatar {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--white); box-shadow: 0 0 0 1px #e2e2e2;
  margin-left: -14px;
}
.wert-avatar:first-child { margin-left: 0; }
.wert-reviews-text { font-size: .92rem; font-weight: 400; color: var(--ink); text-align: center; margin-top: 8px; }
.wert-reviews-text strong { font-weight: 700; }

/* Kontaktschritt: dünner hellgrauer Rahmenstil wie die Kacheln-Karte, keine
   Emojis, kein farbiger Hintergrund am Sicherheits-Hinweis. */
.wert-security {
  font-size: .9rem; font-weight: 500; color: #8a8a8a; text-align: center; margin-bottom: 28px;
}
/* "+49" fest im Eingabefeld statt als loses Element daneben - nur die
   äußere Zeile trägt den Rahmen, das Input selbst bleibt rahmenlos und
   schließt nahtlos an den fett gesetzten Präfix an. Die Selektoren sind
   bewusst auf .wert-card2 .wert-phone-row .fn-inp verschärft, damit sie
   zuverlässig die generischen .wert-card2 .fn-inp(:focus)-Regeln schlagen
   (gleiche Spezifität + spätere Position im Stylesheet gewann sonst und
   ließ das Input-Feld einen zweiten, sichtbaren Rahmen/Fokusring zeigen). */
.wert-phone-row {
  display: flex; align-items: center; flex-wrap: wrap;
  border: 1px solid #e3e5e8; border-radius: 10px; background: var(--white);
  padding: 0 18px; transition: border-color .15s;
}
.wert-phone-row:focus-within { border-color: var(--wine); }
.wert-phone-prefix {
  font-size: .95rem; font-weight: 700; color: var(--ink); flex-shrink: 0;
  padding-right: 12px; border-right: 1px solid #e3e5e8;
}
.wert-card2 .wert-phone-row .fn-inp {
  flex: 1; min-width: 140px; border: none; padding: 14px 0 14px 12px; background: transparent;
}
.wert-card2 .wert-phone-row .fn-inp:focus { border: none; }
.wert-phone-row .fn-err { flex-basis: 100%; width: 100%; margin: 4px 0 8px; }
.wert-card2 .fn-inp { border: 1px solid #e3e5e8; font-family: inherit; font-size: .95rem; padding: 14px 18px; }
.wert-card2 .fn-inp:focus { border-color: var(--wine); outline: none; }
.wert-card2 .fn-sub { font-size: 1.02rem; font-weight: 700; padding: 16px; margin-top: 28px; border-radius: 12px; }
.wert-card2 .fn-next { font-weight: 700; border-radius: 12px; }

/* Auswahl-Buttons (Verkaufsabsicht) im selben dünnen, hellen Rahmenstil wie
   die restliche Seite - die generische graue/dicke .sel-Fläche aus
   style-test.css sonst zu dick/grau statt dünn/rot. Auch der blaue
   Standard-Fokusring beim automatischen Fokus nach Schrittwechsel entfernt. */
.wert-card2 .fn-choice.fn-choice-radio {
  background: var(--white); color: var(--ink);
  border: 1px solid #e3e5e8; border-radius: 10px;
  padding: 16px 20px; font-size: .95rem;
  transition: background .2s, border-color .2s, border-width .2s, transform .15s ease, box-shadow .15s ease;
}
.wert-card2 .fn-choice.fn-choice-radio:hover {
  background: var(--white); border-color: #c7cbd1;
  transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.wert-card2 .fn-choice.fn-choice-radio:focus,
.wert-card2 .fn-choice.fn-choice-radio:focus-visible { outline: none; box-shadow: none; }
.wert-card2 .fn-choice.fn-choice-radio.sel {
  background: var(--white); border-color: var(--wine); border-width: 1px; padding: 16px 20px;
}
.wert-card2 .fn-choice.fn-choice-radio.sel .fn-choice-radio-dot { border-color: var(--wine); }
.wert-card2 .fn-choice.fn-choice-radio.sel .fn-choice-radio-dot::after { background: var(--wine); }
.wert-card2 .fn-choice.fn-choice-tile:focus,
.wert-card2 .fn-choice.fn-choice-tile:focus-visible { outline: none; }
.wert-card2 .fn-choices { max-width: 460px; margin-left: auto; margin-right: auto; gap: 14px; }
.wert-card2 .fn-fields { max-width: 460px; margin-left: auto; margin-right: auto; gap: 14px; }
.wert-card2 .fn-consent { max-width: 460px; margin-left: auto; margin-right: auto; }

@media (max-width: 639px) {
  .wert-hero2 { padding-top: 32px; }
  /* Auf Mobile steht Logo/Headline/Lead direkt auf dem Hero-Foto (die große
     weiße Karte ist hier aufgelöst) – deshalb den weißen Schleier deutlich
     stärker, damit die Schrift lesbar bleibt. */
  .wert-hero2::before {
    background: linear-gradient(180deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.86) 45%, rgba(255,255,255,.93) 100%);
  }
  .wert-hero2-inner { padding: 0 20px 120px; }
  .wert-top-row { margin-bottom: 32px; }
  .wert-logo { height: 42px; }
  .wert-google-card { padding: 9px 14px; gap: 9px; }
  .wert-google-icon { width: 28px; height: 28px; }
  .wert-google-rating { font-size: .92rem; }
  .wert-h1 { font-size: clamp(1.7rem, 8vw, 2.1rem); margin-bottom: 18px; }
  .wert-lead { font-size: .98rem; margin-bottom: 42px; }
  /* Großer Container nur auf Desktop – auf Mobile bleibt nur das Formular eine Karte. */
  .wert-hero2-card { background: none; box-shadow: none; padding: 0; }
  .wert-card2 {
    background: var(--white); border-radius: var(--r);
    box-shadow: 0 10px 34px rgba(0,0,0,.18);
    padding: 24px 20px;
  }
  .wert-card2 .fn-body { padding: 8px 0 0; }
  .wert-card-h2 { font-size: 1.3rem; }
  .wert-tiles .fn-choice-tile-imgwrap { height: 128px; }
  .wert-tiles .fn-choice-tile-label { font-size: 1.02rem; padding: 14px 6px; }
  .wert-avatar { width: 48px; height: 48px; margin-left: -12px; }
}

/* ══ W.W.I. KG – Ergänzungen ══════════════════════════════ */

/* Drei Kacheln (Haus/Wohnung/Grundstück) statt zwei */
.fn-choices.fn-choices-tiles.wert-tiles { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wert-tiles .fn-choice-tile-imgwrap { height: 150px; }

/* Avatare: deutlicher weißer Rand */
.wert-avatar { border: 3px solid var(--white); box-shadow: 0 2px 6px rgba(0,0,0,.15); }

/* Halber Stern (4,5-Bewertung): 5. Stern per Verlauf halb gold / halb grau.
   Der Verlauf #halfgold wird inline in der Seite definiert. */
.wert-stars svg.wert-star-half { fill: url(#halfgold); }

/* Baujahr-Schieberegler */
.wert-baujahr { max-width: 460px; margin: 28px auto 0; }
.wert-baujahr-value { text-align: center; font-size: 1.7rem; font-weight: 700; color: var(--wine); margin-bottom: 10px; }
.wert-baujahr-range { width: 100%; accent-color: var(--wine); height: 6px; cursor: pointer; }
.wert-baujahr-scale { display: flex; justify-content: space-between; font-size: .75rem; color: #8a8a8a; margin-top: 8px; }
.wert-card2 .fn-next.js-n3 { margin-top: 26px; }

/* Fußzeile im mittleren Grau (#9D9D9D), dazu dunkle Schrift/Links und das
   echte (nicht weiß-invertierte) Logo, damit alles gut lesbar bleibt. */
/* Fußzeile weiß mit dunkler, lesbarer Schrift. */
.footer-mini.wert-footer { background: #ffffff; border-top: 1px solid #ececec; }
.wert-footer .footer-mini-logo img { filter: none; height: 34px; }
.wert-footer .footer-mini-copy { color: #2f2f2f; }
.wert-footer .footer-mini-madeby { color: #2f2f2f; }
.wert-footer .footer-mini-madeby:hover { color: #111; }
.wert-footer .footer-mini-madeby img { filter: brightness(0.2); }
.wert-footer .footer-mini-divider { background: rgba(0,0,0,.18); }
.wert-footer .footer-mini-links a { color: #2f2f2f; }
.wert-footer .footer-mini-links a:hover { color: #111; }

/* +49-Telefonzeile auch außerhalb der WB-Card (langes Funnel-Design) sauber:
   das Eingabefeld selbst ohne eigenen Rahmen, nur die Zeile trägt den Rahmen. */
.wert-phone-row .fn-inp { flex: 1; min-width: 140px; border: none; padding: 14px 0 14px 12px; background: transparent; }
.wert-phone-row .fn-inp:focus { border: none; outline: none; box-shadow: none; }

@media (max-width: 639px) {
  /* Haus + Wohnung nebeneinander, Grundstück darunter mittig, gleiche Breite */
  .fn-choices.fn-choices-tiles.wert-tiles { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .wert-tiles .fn-choice.fn-choice-tile:nth-child(3) { grid-column: 1 / -1; justify-self: center; width: calc(50% - 8px); }
  .wert-tiles .fn-choice-tile-imgwrap { height: 128px; }
  .wert-baujahr-value { font-size: 1.5rem; }
}

/* ── Referenz-Video-Bereich (Erbe-Seite) ───────────────── */
.video-sec { background: #fff; padding: 20px 24px 44px; }
.video-sec-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.video-sec .sec-h2 { font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 22px; }
.video-sec-sub { color: #7a7a7a; margin-bottom: 28px; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 34px rgba(0,0,0,.14); background: #eceef0; }
.video-embed iframe, .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { display: flex; align-items: center; justify-content: center; }
.video-placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #6b6b6b; font-size: .95rem; padding: 24px; text-align: center; }
.video-placeholder-inner .vp-play { width: 64px; height: 64px; border-radius: 50%; background: var(--wine); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }


/* ══ ARR – Feinschliff (Hero ruhiger, Headline fetter, Zertifikate als Karten) ══ */
.hero-photo::before {
  background: linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.7) 45%, rgba(255,255,255,.88) 100%);
}
.hero-mini-h1 { font-weight: 800; }
.cert-bar { padding: 52px 24px; background: #f3f3f3; }
.cert-track { gap: 40px; }
/* Kein Container um die Zertifikate - nur die viereckigen Badges selbst mit Schatten. */
.cert-item {
  background: none; border: none; border-radius: 0; padding: 0; box-shadow: none;
}
.cert-item img {
  height: 168px; width: auto; display: block; border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,.20);
}
/* Zertifikate direkt im weißen Wertermittlungs-Container (unter der Bewertungszeile) */
.wert-card-certs { margin-top: 26px; }
.wert-card-certs .cert-item img { height: 122px; }

/* ── Funnel-Antworten (Radio): kein Auto-Fokus-/Browser-Ring; beim Hover/Auswählen
   mit Marken-Blau umranden statt grau. Gilt fürs lange Funnel-Design (.funnel-card)
   UND die WB-Card (.wert-card2). ── */
.fn-choice:focus,
.fn-choice:focus-visible { outline: none; box-shadow: none; }
.fn-choice.fn-choice-radio:hover,
.wert-card2 .fn-choice.fn-choice-radio:hover {
  background: var(--white);
  border-color: var(--wine);
  filter: none;
}
.fn-choice.fn-choice-radio.sel,
.wert-card2 .fn-choice.fn-choice-radio.sel {
  background: var(--white);
  border-color: var(--wine);
}
.fn-choice.fn-choice-radio.sel .fn-choice-radio-dot,
.wert-card2 .fn-choice.fn-choice-radio.sel .fn-choice-radio-dot { border-color: var(--wine); }
.fn-choice.fn-choice-radio.sel .fn-choice-radio-dot::after,
.wert-card2 .fn-choice.fn-choice-radio.sel .fn-choice-radio-dot::after { background: var(--wine); }


/* ── Kacheln im langen Funnel-Design (.fn-choices-tiles-3, z.B. Erbe-Seite):
   Hover NICHT blau - stattdessen die ganze Kachel nur leicht abdunkeln,
   ohne farbigen Rand. (Die WB-Card-Kacheln .wert-tiles bleiben unberührt.) ── */
.fn-choices-tiles-3 .fn-choice.fn-choice-tile:hover {
  background: var(--white);
  border-color: #cfcbc2;
  filter: brightness(.85);
}


/* ── Video-Facade (wiederverwendbar): lokales Vorschaubild + Play-Button;
   echter Vimeo-Player + player.js erst nach Klick. Play-Button im Markenblau,
   dezent mit sanftem Hover. Die feste 16:9-Ratio kommt von .video-embed
   (aspect-ratio), daher kein Layout-Shift. ── */
.video-facade { position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; overflow: hidden; }
.video-facade-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.video-facade::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.30)); transition: background .25s ease; }
.video-facade:hover::after, .video-facade:focus-visible::after { background: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.40)); }
.video-facade:focus-visible { outline: 3px solid var(--wine); outline-offset: 3px; }
.video-facade-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%; border: none; z-index: 2; cursor: pointer;
  background: rgba(255,255,255,.94); color: var(--wine);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.30);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.video-facade:hover .video-facade-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; box-shadow: 0 14px 38px rgba(0,0,0,.36); }
.video-facade-play svg { width: 30px; height: 30px; margin-left: 4px; fill: currentColor; }
/* Sauberer Free-Plan-Trick: das iframe minimal vergrößern und unten-links
   verankern, sodass die Vimeo-Icon-Spalte (oben rechts) + Logo (unten rechts)
   aus dem sichtbaren, per overflow:hidden beschnittenen Bereich herausfallen.
   Person bleibt mittig, Play/Timeline unten bleiben sichtbar. */
.video-embed .video-facade-iframe {
  position: absolute; inset: auto; left: 0; bottom: 0;
  width: calc(100% + 116px); height: calc(100% + 65px);
  border: 0; z-index: 1;
}
@media (max-width: 639px) {
  .video-embed .video-facade-iframe { width: calc(100% + 74px); height: calc(100% + 42px); }
}
@media (max-width: 639px) { .video-facade-play { width: 66px; height: 66px; } .video-facade-play svg { width: 24px; height: 24px; } }


/* "100% kostenlos"-Zeile im langen Funnel-Design linksbündig wie die Frage. */
.funnel-card .wert-security { text-align: left; margin: -6px 0 22px; }

/* Overlay über der Vimeo-Icon-Leiste oben rechts (Like/Watch-Later/Share/Embed).
   Auf dem Free-Plan nicht per Embed-Parameter abschaltbar -> weiches Verlaufs-
   Overlay in der Ecke, pointer-events:none (Play/Pause/Timeline bleiben klickbar).
   Erscheint erst, wenn der Player läuft (.vf-playing). */
.vimeo-cover {
  position: absolute; top: 0; right: 0;
  width: 8.5%; max-width: 62px; min-width: 46px;
  height: 34%; max-height: 172px; min-height: 112px;
  pointer-events: none; z-index: 4;
  /* Eigene Composite-Ebene erzwingen, damit das Overlay in Safari ÜBER dem
     Video-iframe liegt (das sonst auf seiner GPU-Ebene darüber gerendert wird). */
  transform: translateZ(0); will-change: transform;
  opacity: 0; transition: opacity .25s ease;
  /* Weiche Ecken-Vignette (dunkelste Stelle exakt in der Ecke bei den Icons,
     nach innen/unten sanft auslaufend), damit möglichst wenig sichtbar. */
  background: radial-gradient(125% 120% at 100% 0%,
      rgba(24,24,26,.86) 0%, rgba(24,24,26,.74) 26%, rgba(24,24,26,.42) 52%,
      rgba(24,24,26,.14) 74%, rgba(24,24,26,0) 92%);
}
.video-embed.vf-playing .vimeo-cover { opacity: 1; }
@media (max-width: 639px) { .vimeo-cover { width: 13%; min-width: 40px; height: 30%; min-height: 92px; } }
