/* ==========================================================================
   Finture Partnerprogramm — Landingpage V3
   CI: Navy #0F1E3D · Gold #C9A24A · Charcoal #2A2A2A · Cream #F5F1E8 · White
   Headings: Gilda Display · Body: Inter
   ========================================================================== */

:root{
  --navy:#0F1E3D;
  --navy-light:#1B2E54;
  --gold:#C9A24A;
  --gold-light:#E4C878;
  --charcoal:#2A2A2A;
  --cream:#F5F1E8;
  --white:#FFFFFF;
  --line:#E4DFD2;
  --shadow: 0 20px 50px -20px rgba(15,30,61,.35);
  --radius: 14px;
  --maxw: 1160px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
html,body{overflow-x:hidden;} /* Sicherheitsnetz: das skalierende Hero-Video (js/scroll-focus.js)
  kann auf schmalen Viewports bei voller 28%-Vergrößerung leicht über den Seitenrand hinausragen —
  transform:scale() löst dabei aber keinen echten Scroll-Container aus, overflow-x:hidden
  verhindert nur, dass daraus je eine horizontale Scrollleiste entsteht. */
body{
  margin:0;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--charcoal);
  background:var(--navy); /* V4-Design: Hauptfarbe der Seite ist jetzt Finture Navy, nicht mehr Weiß/Cream */
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  font-size:17px;
}
img{max-width:100%;display:block;}
a{color:inherit;}
h1,h2,h3,h4{
  font-family:'Gilda Display',Georgia,serif;
  font-weight:400;
  color:var(--navy);
  line-height:1.18;
  margin:0 0 .5em;
  letter-spacing:.2px;
  overflow-wrap:normal; /* Bugfix 2026-09-16: "break-word" + "hyphens:auto" zusammen erzeugten
    hässliche Mitten-im-Wort-Trennungen ("Kundenbe-ziehungen"). overflow-wrap:normal lässt nur an
    Wortgrenzen umbrechen; ein einzelnes, wirklich zu langes Wort würde zur Not trotzdem umbrechen
    (Browser-Fallback), das ist bei unseren Überschriften aber nie der Fall. */
  hyphens:none;
}
h1{font-size:clamp(2rem,4vw,3rem);} /* etwas kleiner als vorher (war 3.4rem max) — bricht bei
  langen Wörtern wie "Kundenbeziehungen" zuverlässiger an sinnvollen Stellen um */
h2{font-size:clamp(1.7rem,3.4vw,2.35rem);}
h3{font-size:1.3rem;}
p{margin:0 0 1.1em;}
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px;}
.eyebrow{
  display:inline-block;
  font-family:'Inter',sans-serif;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}
section[id]{scroll-margin-top:76px;}
.section{padding:88px 0;}
.section--tight{padding:64px 0;}
.section--cream{background:var(--cream);}
.section--navy{background:var(--navy);color:#DCE2EE;}
/* Nur h2 (Section-Headlines liegen immer direkt auf dem Navy-Hintergrund, nie in einer Karte).
   h3/h4 werden bewusst NICHT pauschal überschrieben — die kommen auch innerhalb weißer Karten vor
   (z.B. .feature-card h3, .stack-compact-card h4), wo sie navy-auf-weiß bleiben müssen. Vorher war
   hier ein Bug: ".section--navy h3{color:white}" hat Karten-Überschriften unlesbar gemacht (weiß
   auf weiß). Textblöcke, die wirklich direkt auf Navy liegen, bekommen unten gezielte Regeln. */
.section--navy h1,.section--navy h2{color:var(--white);} /* Bugfix 2026-09-16: h1 fehlte hier —
  war auf der Danke-Seite navy-auf-navy unlesbar (auf der Startseite unsichtbar, weil .hero h1
  bereits eine eigene weiße Farbe hat, aber danke.html nutzt kein .hero, sondern .section--navy). */
.section--navy .eyebrow{color:var(--gold-light);}
.center{text-align:center;}
.lede{
  font-size:1.15rem;
  color:#54524a;
  max-width:680px;
}
.center .lede{margin-left:auto;margin-right:auto;}
.section--navy .lede{color:#B9C2D6;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 30px;
  /* Bugfix 2026-09-16 (User-Feedback): volle Pillenform (999px) wirkte zu verspielt/DR-artig für
     Finture — an den ruhigeren Radius der übrigen UI (Karten, Inputs, var(--radius)) angeglichen. */
  border-radius:10px;
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:1rem;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  line-height:1.1;
}
.btn:active{transform:translateY(1px);}
.btn-gold{
  background:var(--gold);
  color:var(--navy);
  box-shadow:0 12px 28px -10px rgba(201,162,74,.55);
}
.btn-gold:hover{background:var(--gold-light);box-shadow:0 16px 34px -10px rgba(201,162,74,.65);}
.btn-outline{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,.4);
}
.btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,.06);}
.btn-dark{
  background:var(--navy);
  color:var(--white);
}
.btn-dark:hover{background:var(--navy-light);}
.btn-block{width:100%;justify-content:center;}
.btn-lg{padding:19px 36px;font-size:1.06rem;}
.btn small{display:block;font-weight:400;font-size:.72rem;opacity:.85;}

.cta-sub{
  margin-top:12px;
  font-size:.85rem;
  color:#8B8879;
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:center;
}
.section--navy .cta-sub{color:#9AA5BE;}
.cta-sub svg{flex:none;}

/* ---------- Header (V4-Design: dunkelblau, helles Logo — siehe DESIGN-NOTES.md) ---------- */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(15,30,61,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.1);
}
.site-header .container{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:14px;padding-bottom:14px;
}
.brand{display:flex;align-items:center;gap:10px;}
.brand img{height:30px;width:auto;}
.header-cta{display:flex;align-items:center;gap:18px;}
.header-phone-note{
  font-size:.82rem;color:#B9C2D6;font-weight:600;display:none;
}
@media(min-width:760px){.header-phone-note{display:block;}}
.btn-sm{padding:11px 22px;font-size:.9rem;}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  color:var(--white);
  overflow:hidden;
  background:var(--navy);
}
.hero-bg{
  position:absolute;inset:0;
  background-image:url('../assets/hero-gold-sicherheit.jpg');
  background-size:cover;background-position:center 35%;
  opacity:.55;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(15,30,61,.55) 0%, rgba(15,30,61,.82) 55%, rgba(15,30,61,.97) 100%);
}
.hero-inner{
  position:relative;z-index:2;
  padding:84px 0 76px;
}

/* ---------- Hero V4-Design: Split-Layout (links Text, rechts Video) ----------
   Referenz: ATF-Layout mit "links H1/Sub/CTA, rechts Video mit Play-Button"
   (User-Vorgabe, 2026-09-16). Ersetzt die alte gestapelte v3-Hero-Anordnung. */
.hero-split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.hero-split .hero-text{max-width:560px;}
.hero-split .hero-video-col{width:100%;}
@media(max-width:980px){
  .hero-split{grid-template-columns:1fr;gap:36px;}
  /* Reihenfolge bewusst NICHT vertauscht: auf Mobile liest der Nutzer zuerst H1+CTA (Message-
     Klarheit beim Skimmen), das Video folgt direkt danach statt davor. */
  .hero-split .hero-text{max-width:none;}
}

/* ---------- Hero-Variante B: alles zentriert, großes Video als Brücke zu den Sections
   (Vorschau-Auftrag 2026-09-16, Referenz "Finally Freelancing"-Screenshot) ---------- */
.hero-centered{max-width:760px;margin:0 auto;text-align:center;}
.hero-centered .hero-actions{justify-content:center;}
.hero-centered .cta-sub{justify-content:center !important;}
.hero-centered .hero-trust{justify-content:center;}
.hero-centered .lede{margin-left:auto;margin-right:auto;}
.hero-video-large{
  max-width:920px;margin:56px auto 0;
  position:relative;
  z-index:46; /* über dem .scroll-focus-overlay (z-index:45), damit es beim Blur scharf bleibt */
  transform:scale(1);
  transform-origin:50% 40%;
  transition:transform .2s ease-out; /* fängt kleine Sprünge zwischen rAF-Frames sanft ab */
  will-change:transform;
}
.hero-video-large .vsl-frame{box-shadow:0 30px 70px -24px rgba(0,0,0,.55);}
@media(max-width:600px){
  .hero-video-large{margin-top:34px;}
}

/* ---------- Scroll-Fokus-Effekt (User-Vorgabe 2026-09-16) ----------
   Fixed Overlay über der ganzen Seite, standardmäßig unsichtbar. js/scroll-focus.js setzt
   --focus (0–1, wie nah die Video-Mitte an der Bildschirmmitte ist) und steuert darüber
   Deckkraft + Blur. Das Video selbst (.hero-video-large, z-index:46) liegt darüber und bleibt
   scharf, während alles andere dahinter abdunkelt/verschwimmt. */
.scroll-focus-overlay{
  position:fixed;inset:0;z-index:45;
  pointer-events:none;
  background:rgba(6,12,26,.68);
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
  opacity:0; /* JS (scroll-focus.js) setzt opacity 0–1 je nach Scroll-Nähe zum Video — nur
                opacity wird pro Frame animiert (billig), backdrop-filter bleibt konstant
                (teuer, deshalb nicht pro Frame neu berechnet) */
  transition:opacity .12s linear;
}
@media(prefers-reduced-motion:reduce){
  .hero-video-large{transition:none;transform:none !important;}
  .scroll-focus-overlay{display:none;}
}
.hero .eyebrow{color:var(--gold-light);}
.hero h1{color:var(--white);}
.hero .lede{color:#D9DFEC;font-size:1.2rem;max-width:640px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:18px;align-items:center;margin-top:30px;}
.hero-trust{
  display:flex;flex-wrap:wrap;gap:28px;
  margin-top:52px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.16);
}
.hero-trust-item{font-size:.88rem;color:#B9C2D6;display:flex;align-items:center;gap:9px;}
.hero-trust-item strong{color:var(--white);font-weight:600;}

/* ---------- VSL Video-Embed Platzhalter (Hero) ---------- */
.vsl-embed{
  margin:36px 0 8px;
  max-width:680px;
}
.vsl-frame{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  background:
    linear-gradient(180deg, rgba(15,30,61,.65) 0%, rgba(9,18,38,.9) 100%),
    repeating-linear-gradient(45deg, rgba(201,162,74,.05) 0 12px, transparent 12px 24px);
  background-color:#0A1428;
  border:1px solid rgba(201,162,74,.35);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  overflow:hidden;
  color:var(--gold-light);
}
.vsl-poster{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
}
.vsl-frame video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;background:#000;
}
.vsl-play{
  position:relative;z-index:2;
  width:72px;height:72px;border-radius:50%;
  background:rgba(201,162,74,.18);
  border:1.5px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
  transition:background .2s ease, transform .15s ease;
  padding:0;font:inherit;cursor:pointer;
  backdrop-filter:blur(2px);
  animation:vsl-pulse 2.4s ease-out infinite; /* signalisiert "hier abspielen", User-Vorgabe 2026-09-16 */
}
.vsl-frame:hover .vsl-play{background:rgba(201,162,74,.3);}
.vsl-play:active{transform:scale(.96);}
.vsl-play svg{margin-left:4px;}
.vsl-frame.is-playing .vsl-poster,
.vsl-frame.is-playing .vsl-play{display:none;}

@keyframes vsl-pulse{
  0%{box-shadow:0 0 0 0 rgba(201,162,74,.5);}
  70%{box-shadow:0 0 0 26px rgba(201,162,74,0);}
  100%{box-shadow:0 0 0 0 rgba(201,162,74,0);}
}
@media(prefers-reduced-motion:reduce){
  .vsl-play{animation:none;}
}

/* Trust-Strip neben/unter dem Hero-Video (Referenzlayout: Badges rechts vom Video) */
.hero-video-trust{
  display:flex;flex-wrap:wrap;gap:10px;
  margin-top:16px;
}
.hero-video-trust span{
  font-size:.78rem;font-weight:600;color:var(--navy);
  background:var(--white);border:1px solid var(--line);
  padding:7px 13px;border-radius:999px;
  display:inline-flex;align-items:center;gap:6px;
}

/* .vsl-frame--mobile (9:16) ausgemustert (2026-09-16): fehlerhafte Captions + wirkte laut User
   auf Mobile nicht überzeugend. .vsl-frame--desktop (16:9) läuft jetzt auf allen Breakpoints,
   bleibt dank aspect-ratio:16/9 einfach schmaler statt abgeschnitten zu werden. */
@media(max-width:600px){
  .vsl-embed{margin:26px 0 4px;}
  .vsl-play{width:58px;height:58px;}
}

/* ---------- Qualifying question cards (Lücke im Bestand) ---------- */
.qgrid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
  margin-top:44px;
}
.qcard{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
  box-shadow:var(--shadow);
}
.qcard .qnum{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:50%;
  background:var(--navy);color:var(--gold-light);
  font-family:'Gilda Display',serif;font-size:1.05rem;
  margin-bottom:16px;
}
.qcard p{margin:0;font-size:1.02rem;color:var(--navy);font-weight:500;}

/* ---------- Two column media/text ---------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.split.rev .split-media{order:2;}
.split.rev .split-text{order:1;}
@media(max-width:860px){
  .split{grid-template-columns:1fr;gap:36px;}
  .split.rev .split-media{order:1;}
  .split.rev .split-text{order:2;}
}
.split-media img{border-radius:var(--radius);box-shadow:var(--shadow);}

/* ---------- Signature moment: Michael trust section ---------- */
.signature-section{padding:112px 0;}
.split--signature{align-items:stretch;}
.quote-mark{
  display:block;
  font-family:'Gilda Display',serif;
  font-size:5.5rem;line-height:1;
  color:var(--gold);
  margin:6px 0 -14px;
}
.pull-quote{
  font-family:'Gilda Display',serif;
  font-size:1.65rem;line-height:1.32;
  color:var(--navy);
  max-width:520px;
  margin:0 0 28px;
}
.split-media--signature{display:flex;}
.split-media--signature img{
  width:100%;height:100%;min-height:420px;
  object-fit:cover;
  border:1px solid var(--line);
}
@media(max-width:860px){
  .split-media--signature img{min-height:320px;}
  .quote-mark{font-size:4rem;}
  .pull-quote{font-size:1.4rem;}
}
.split-text ul{margin:22px 0;padding:0;list-style:none;}
.split-text li{
  display:flex;gap:12px;margin-bottom:14px;font-size:1rem;color:var(--charcoal);
}
.split-text li svg{flex:none;margin-top:3px;}
/* V4-Design: Fließtext-Elemente, die direkt auf dem (jetzt navy) Section-Hintergrund liegen statt
   in einer weißen Card — brauchen helle Textfarbe, sonst navy-auf-navy unlesbar. */
.section--navy .split-text li{color:#DCE2EE;}
.section--navy .pull-quote{color:var(--white);}
.section--navy .faq-q{color:var(--white);}
.section--navy .faq-item{border-color:rgba(255,255,255,.14);}
.section--navy .faq-a-inner{color:#B9C2D6;}

/* ---------- Definition list "ausdrücklich nicht" ---------- */
.notlist{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;margin:30px 0;
}
.notitem{
  display:flex;align-items:center;gap:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:10px;padding:16px 18px;
  font-size:.94rem;color:#DCE2EE;
}
.section--cream .notitem{
  background:var(--white);border-color:var(--line);color:var(--charcoal);
}

/* ---------- Feature / platform grid ---------- */
.feature-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:26px;margin-top:44px;
  /* Bugfix 2026-09-16: die Provisionsstruktur-Karten saßen (geerbt von .container.center) mittig,
     die Schulungsplattform-Karten links — zwei Designsprachen für dasselbe Karten-Muster. Jetzt
     immer links, unabhängig vom umgebenden Container, für einheitliches Erscheinungsbild und
     bessere Lesbarkeit der mehrzeiligen Beschreibungstexte. */
  text-align:left;
}
.feature-card .ficon{margin-left:0;margin-right:auto;}
.feature-card{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius);padding:32px 28px;
}
.feature-card .ficon{
  width:46px;height:46px;border-radius:12px;
  background:var(--cream);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;color:var(--gold);
}
.feature-card h3{margin-bottom:8px;font-size:1.12rem;}
.feature-card p{font-size:.95rem;color:#5A574C;margin:0;}

/* ---------- Value stack (screenshot showcase) ---------- */
.stack-showcase{
  margin-top:56px;
  display:flex;flex-direction:column;gap:76px;
}
.stack-item{
  display:grid;grid-template-columns:1fr 1fr;
  gap:56px;align-items:center;
}
.stack-item.rev .stack-media{order:2;}
.stack-item.rev .stack-text{order:1;}
@media(max-width:860px){
  .stack-item{grid-template-columns:1fr;gap:26px;}
  .stack-item.rev .stack-media{order:1;}
  .stack-item.rev .stack-text{order:2;}
}
.stack-media{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px;
  display:flex;align-items:center;justify-content:center;
}
.stack-media img{
  width:100%;display:block;
  border-radius:8px;
}
.stack-text .check{
  flex:none;width:26px;height:26px;border-radius:50%;
  background:var(--navy);color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.stack-text h4{margin:0 0 8px;font-size:1.2rem;font-weight:400;}
.stack-text p{margin:0;font-size:.98rem;color:#5A574C;max-width:420px;}
/* Bugfix: .stack-text liegt direkt auf dem Section-Hintergrund (kein Karten-Wrapper) — auf Navy
   braucht h4/p helle Farben, sonst navy-auf-navy bzw. dunkelgrau-auf-navy unlesbar. */
.section--navy .stack-text h4,
.section--navy .stack-closing h4{color:var(--white);}
.section--navy .stack-text p,
.section--navy .stack-closing p{color:#B9C2D6;}
.section--navy .stack-text .check,
.section--navy .stack-closing .check{background:rgba(255,255,255,.1);border:1px solid var(--gold);color:var(--gold);}

/* ---------- Value stack: compact secondary grid (quieter than the zigzag) ---------- */
.stack-compact-grid{
  margin-top:52px;
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
}
@media(max-width:640px){.stack-compact-grid{grid-template-columns:1fr;}}
.stack-compact-card{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);
}
.stack-compact-card .stack-compact-media{
  padding:20px;border-bottom:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
}
.stack-compact-card img{width:100%;display:block;border-radius:6px;}
.stack-compact-card .stack-compact-body{padding:20px 22px 22px;}
.stack-compact-card h4{margin:0 0 6px;font-size:1.02rem;font-weight:400;}
.stack-compact-card p{margin:0;font-size:.9rem;color:#5A574C;}

.stack-closing{
  margin-top:48px;padding-top:40px;border-top:1px solid var(--line);
  display:flex;align-items:flex-start;gap:16px;max-width:640px;margin-left:auto;margin-right:auto;text-align:left;
}
.stack-closing .check{
  flex:none;width:26px;height:26px;border-radius:50%;
  background:var(--navy);color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;margin-top:2px;
}
.stack-closing h4{margin:0 0 4px;font-size:1rem;font-weight:400;}
.stack-closing p{margin:0;font-size:.92rem;color:#5A574C;}

/* ---------- Testimonials ---------- */
.testi-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:26px;margin-top:44px;
}
.testi-card{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius);padding:30px 28px;
  display:flex;flex-direction:column;gap:16px;
}
.testi-stars{color:var(--gold);letter-spacing:2px;font-size:1rem;}
.testi-quote{font-size:1.02rem;color:var(--navy);font-style:italic;margin:0;}
.testi-person{display:flex;align-items:center;gap:12px;margin-top:auto;padding-top:10px;}
.testi-person img{width:48px;height:48px;border-radius:50%;object-fit:cover;}
.testi-person .avatar-fallback{
  width:48px;height:48px;border-radius:50%;
  background:var(--navy);color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;
  font-family:'Gilda Display',serif;font-size:1.1rem;
}
.testi-person .name{font-weight:700;font-size:.92rem;color:var(--navy);}
.testi-person .role{font-size:.8rem;color:#8B8879;}
.trust-photo-card{
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
}

/* ---------- Process steps (aufgewertet 2026-09-16: verbundene Linie + Karten statt nackter
   Text-Spalten — User-Feedback: "zu langweilig", geprüft mit ui-ux-pro-max) ---------- */
.steps{
  counter-reset:step;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:20px;
  margin-top:52px;
  position:relative;
}
/* Verbindungslinie durch alle Step-Kreise — nur ab 2 Spalten (Desktop/Tablet) sichtbar.
   12.5%/87.5%-Inset ist für genau 4 gleich breite Spalten berechnet (Mitte der 1./4. Karte);
   bei einer anderen Step-Anzahl an dieser Stelle anpassen. */
@media(min-width:700px){
  .steps::before{
    content:"";
    position:absolute;top:63px;left:12.5%;right:12.5%;
    height:1px;
    background:linear-gradient(90deg, rgba(201,162,74,.05), rgba(201,162,74,.45) 12%, rgba(201,162,74,.45) 88%, rgba(201,162,74,.05));
    z-index:0;
  }
}
.step{
  position:relative;text-align:left;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  padding:26px 22px 24px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.step:hover{transform:translateY(-4px);background:rgba(255,255,255,.075);border-color:rgba(201,162,74,.4);}
.step .stepnum{
  counter-increment:step;
  width:44px;height:44px;border-radius:50%;
  background:var(--gold);color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-family:'Gilda Display',serif;font-size:1.2rem;
  margin-bottom:18px;
  position:relative;z-index:1; /* liegt als solider Kreis über der dünnen Verbindungslinie */
}
.step .stepnum::before{content:counter(step);}
.step h4{font-family:'Inter',sans-serif;font-weight:700;font-size:1rem;color:var(--navy);margin:0 0 8px;}
.step p{font-size:.9rem;color:#5A574C;margin:0;}
.step .steptime{
  display:inline-block;margin-top:10px;font-size:.76rem;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;color:var(--gold);
}
.section--navy .step h4{color:var(--white);}
.section--navy .step p{color:#B9C2D6;}
@media(max-width:700px){
  .step:hover{transform:none;} /* kein Hover-Lift auf Touch-Geräten */
}

/* ---------- Exclusion list ---------- */
.exclude-list{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;margin-top:36px;
}
.exclude-item{
  display:flex;gap:14px;padding:20px;
  background:var(--white);border:1px solid var(--line);border-radius:12px;
}
.exclude-item svg{flex:none;color:#B4432E;margin-top:2px;}
.exclude-item p{margin:0;font-size:.95rem;color:var(--charcoal);}
.exclude-item strong{color:var(--navy);}

/* ---------- FAQ ---------- */
.faq{max-width:800px;margin:44px auto 0;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%;text-align:left;background:none;border:none;cursor:pointer;
  padding:22px 4px;display:flex;justify-content:space-between;align-items:center;gap:20px;
  font-family:'Inter',sans-serif;font-weight:600;font-size:1.02rem;color:var(--navy);
}
.faq-q .plus{
  flex:none;width:26px;height:26px;border-radius:50%;border:1.5px solid var(--gold);
  display:flex;align-items:center;justify-content:center;color:var(--gold);
  transition:transform .2s ease;font-size:1.1rem;line-height:1;
}
.faq-item.open .faq-q .plus{transform:rotate(45deg);}
.faq-a{
  max-height:0;overflow:hidden;transition:max-height .25s ease;
}
.faq-a-inner{padding:0 4px 22px;font-size:.97rem;color:#5A574C;}
.faq-a-inner .fine{font-size:.8rem;color:#9A9686;margin-top:10px;}

/* ---------- Qualification gate (Signature Moment) ---------- */
.section--gate{
  position:relative;
  overflow:hidden;
  background:var(--navy);
  color:var(--white);
  padding:140px 0;
}
.gate-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center 60%;
}
.gate-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(15,30,61,.32) 0%, rgba(9,18,38,.72) 65%, rgba(9,18,38,.88) 100%);
}
.gate-inner{position:relative;z-index:2;max-width:720px;}
.section--gate .eyebrow{color:var(--gold-light);}
.section--gate h2{color:var(--white);font-size:clamp(2.1rem,4.2vw,2.9rem);margin-bottom:22px;}
.section--gate .lede{color:#D9DFEC;font-size:1.18rem;max-width:640px;margin:0 auto 40px;}
@media(max-width:600px){.section--gate{padding:88px 0;}}
.gate-box h3{color:var(--white);margin-bottom:6px;}
.gate-box p{color:#B9C2D6;margin:0;font-size:.96rem;}

/* ---------- Lead form ---------- */
.form-wrap{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:44px;
  max-width:640px;margin:44px auto 0;
  border:1px solid var(--line);
}
.form-wrap h3{margin-bottom:6px;}
.form-progress{
  display:flex;gap:6px;margin-bottom:28px;
}
.form-progress i{
  height:4px;flex:1;border-radius:3px;background:var(--line);
  transition:background .25s ease;
}
.form-progress i.active{background:var(--gold);}
.form-step{display:none;}
.form-step.active{display:block;animation:fadein .3s ease;}
@keyframes fadein{from{opacity:0;transform:translateY(6px);}to{opacity:1;transform:translateY(0);}}
.form-step h4{
  font-family:'Inter',sans-serif;font-weight:700;font-size:1.05rem;color:var(--navy);
  margin:0 0 18px;
}
.field{margin-bottom:18px;}
.field label{
  display:block;font-size:.85rem;font-weight:600;color:var(--navy);margin-bottom:8px;
}
.required-mark{color:#B4432E;}
.field input[type=text],
.field input[type=email],
.field input[type=tel],
.field select,
.field textarea{
  width:100%;padding:13px 15px;border:1.5px solid var(--line);border-radius:9px;
  font-family:'Inter',sans-serif;font-size:.98rem;color:var(--charcoal);
  background:var(--cream);
}
.field select{appearance:none;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%230F1E3D' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center;}
.field textarea{min-height:90px;resize:vertical;}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--gold);background:var(--white);
}
.option-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
@media(max-width:480px){.option-grid{grid-template-columns:1fr;}}
.option-card{
  border:1.5px solid var(--line);border-radius:9px;padding:14px 16px;
  cursor:pointer;font-size:.92rem;color:var(--charcoal);
  transition:border-color .15s ease, background .15s ease;
  position:relative;
}
.option-card input{position:absolute;opacity:0;pointer-events:none;}
.option-card:hover{border-color:var(--gold);}
.option-card.selected{border-color:var(--gold);background:#FBF6E9;font-weight:600;color:var(--navy);}
/* Bugfix 2026-09-16 (User-Feedback): "Zurück" als zweiter Button neben "Weiter"/Absenden wirkte
   unordentlich (zwei nebeneinander gequetschte Pillen). Jetzt eine Zeile pro Element: der
   Primär-Button volle Breite, "Zurück" darunter als reiner Text-Link statt Button. */
.form-actions{display:flex;flex-direction:column;align-items:center;gap:14px;margin-top:26px;}
.step-back{
  background:none;border:none;padding:4px;
  font-family:'Inter',sans-serif;font-size:.92rem;font-weight:500;
  color:#8A8577;cursor:pointer;text-decoration:underline;text-underline-offset:3px;
}
.step-back:hover{color:var(--navy);}
.checkbox-row{display:flex;gap:10px;align-items:flex-start;margin-top:8px;font-size:.85rem;color:#5A574C;}
.checkbox-row input{margin-top:3px;flex:none;}
.form-error{color:#B4432E;font-size:.82rem;margin-top:6px;display:none;}
.form-error.show{display:block;}
/* Honeypot-Feld: visuell versteckt, aber nicht display:none/visibility:hidden — einfache Bots
   überspringen genau solche Felder oft nicht, wenn sie nur per CSS off-screen positioniert sind. */
.hp-field{position:absolute;left:-9999px;top:-9999px;width:1px;height:1px;overflow:hidden;}

/* ---------- PS block ---------- */
.ps-block{
  border-left:3px solid var(--gold);
  padding:20px 26px;
  background:var(--cream);
  border-radius:0 10px 10px 0;
  font-size:.98rem;
  color:var(--navy);
}
.ps-block strong{color:var(--navy);}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--navy);color:#8E97B2;padding:56px 0 30px;font-size:.85rem;
}
.footer-brand{
  display:flex;align-items:center;margin-bottom:14px;
}
.footer-logo{height:28px;width:auto;}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px;padding-bottom:38px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
@media(max-width:700px){.footer-grid{grid-template-columns:1fr;gap:28px;}}
.footer-grid h5{color:var(--white);font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;margin:0 0 14px;font-weight:600;}
.footer-grid ul{list-style:none;padding:0;margin:0;}
.footer-grid li{margin-bottom:9px;}
.footer-grid a{text-decoration:none;color:#8E97B2;}
.footer-grid a:hover{color:var(--white);}
.footer-legal{
  padding-top:26px;display:flex;flex-wrap:wrap;justify-content:space-between;gap:16px;
  font-size:.78rem;color:#697089;
}
.footer-disclaimer{
  font-size:.76rem;color:#697089;max-width:820px;margin-top:18px;line-height:1.6;
}

/* ---------- Compare-Cards ("Was sich ändert, was nicht") ----------
   Neu 2026-09-16 (ersetzt die Tabellen-Variante): zwei Karten statt Tabellenzeilen,
   User-Wunsch nach mehr visueller Struktur + "Accomplishment"-Gefühl auf der rechten Seite.
   Grün ist hier bewusst NICHT Teil der Finture-Markenpalette (Navy/Gold/Charcoal/Cream) — es wird
   ausschließlich als semantische UI-Farbe für "Gewinn/Enthalten" genutzt (wie ein Cross-Browser-
   Standard-Grün für Erfolg/Bestätigung), gedeckt statt neongrün, damit es nicht aus dem seriösen
   Ton fällt. Falls das nicht gewünscht ist, ist die einzige Stelle dafür --compare-gain unten. */
.compare-cards{
  display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:44px;
}
@media(max-width:700px){.compare-cards{grid-template-columns:1fr;}}
.compare-card{
  border-radius:var(--radius);padding:30px 28px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.12);
}
.compare-card h3{
  font-family:'Inter',sans-serif;font-weight:700;font-size:.82rem;letter-spacing:.05em;text-transform:uppercase;
  margin:0 0 20px;color:#B9C2D6;
}
.compare-card ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px;}
.compare-card li{display:flex;align-items:flex-start;gap:12px;font-size:.98rem;color:#DCE2EE;}
.compare-icon{
  flex:none;width:22px;height:22px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin-top:1px;
}
.compare-icon--neutral{background:rgba(255,255,255,.1);color:#8B93A8;}
.compare-card--gain{
  background:rgba(201,162,74,.07);border-color:rgba(201,162,74,.35);
}
.compare-card--gain h3{color:var(--gold-light);}
.compare-card--gain li{color:var(--white);font-weight:500;}
.compare-icon--gain{background:var(--compare-gain, #2F8F5B);color:#fff;}
@media(max-width:640px){
  .compare-card{padding:24px 22px;}
}

/* ---------- Einwand-Sektion "Sie haben wahrscheinlich schon..." — neu für V4-Design ---------- */
.objection-list{margin:28px 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:14px;}
.objection-list li{
  display:flex;gap:14px;align-items:flex-start;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
  border-radius:12px;padding:18px 20px;font-size:.98rem;color:#DCE2EE;
}
.objection-list strong{color:var(--white);}
.section:not(.section--cream):not(.section--navy) .objection-list li,
.section--cream .objection-list li{
  background:var(--white);border-color:var(--line);color:var(--charcoal);
}
.section--cream .objection-list strong{color:var(--navy);}

/* ---------- Utility ---------- */
.mt-0{margin-top:0;}
.badge-row{
  display:flex;flex-wrap:wrap;gap:10px;
  margin-top:38px; /* war 18px — User-Feedback: zu wenig Abstand zum Fließtext darüber */
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.12); /* aktuell nur innerhalb .section--navy verwendet */
}
.badge{
  font-size:.78rem;font-weight:600;color:var(--navy);
  background:var(--cream);border:1px solid var(--line);
  padding:7px 14px;border-radius:999px;
}
.section--navy .badge{background:rgba(255,255,255,.08);color:var(--white);border-color:rgba(255,255,255,.18);}
.thankyou-icon{
  width:78px;height:78px;border-radius:50%;
  background:var(--gold);color:var(--navy);
  display:flex;align-items:center;justify-content:center;margin:0 auto 26px;
}
.timeline{max-width:620px;margin:44px auto 0;}
.timeline-item{display:flex;gap:18px;margin-bottom:26px;}
.timeline-item .tdot{
  flex:none;width:36px;height:36px;border-radius:50%;
  background:var(--navy);color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem;
}
.timeline-item h4{margin:0 0 4px;font-size:1rem;color:var(--navy);font-family:'Inter',sans-serif;font-weight:700;}
.timeline-item p{margin:0;font-size:.92rem;color:#5A574C;}
/* Bugfix 2026-09-16 (Danke-Seite): .tdot liegt direkt auf dem Section-Hintergrund, kein Karten-
   Wrapper — auf Navy war das ein navy Kreis auf navy Hintergrund (praktisch unsichtbar). */
.section--navy .tdot{background:rgba(255,255,255,.1);border:1px solid var(--gold);color:var(--gold);}

@media(max-width:600px){
  .section{padding:60px 0;}
  .hero-inner{padding:56px 0 48px;}
  .form-wrap{padding:28px 22px;}
  .gate-box{padding:32px 24px;}
}

/* ---------- Mobile Sticky CTA ----------
   User-Feedback (2026-09-16): eine feste creme-farbene Leiste wirkte als Fremdkörper auf der
   navy Seite. Jetzt: kein harter Balken/Rand mehr, sondern ein Verlauf in Navy (passt zum
   Seitenhintergrund) mit Blur darunter, aus dem nur der Button "schwebend" hervortritt. */
.mobile-sticky-cta{
  display:none;
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  padding:22px 16px calc(14px + env(safe-area-inset-bottom));
  background:linear-gradient(to top, rgba(9,17,36,.92) 0%, rgba(9,17,36,.78) 55%, rgba(9,17,36,0) 100%);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  border:none;
  box-shadow:none;
  transform:translateY(0);
  transition:transform .25s ease, opacity .25s ease;
}
.mobile-sticky-cta.is-hidden{transform:translateY(110%);opacity:0;}
@media(max-width:760px){
  .mobile-sticky-cta{display:block;}
  /* Platz am Seitenende, damit die Leiste das Formular/Footer nicht dauerhaft überdeckt */
  body.has-sticky-cta{padding-bottom:76px;}
}

/* ---------- Cookie-Consent-Banner ----------
   User-Vorgabe 2026-09-16: unauffällig wie partner.finture.de (kleine Karte unten rechts), aber
   mit echter Blockierfunktion statt reinem Hinweistext — siehe js/cookie-consent.js. */
.cookie-banner{
  position:fixed;right:18px;bottom:18px;z-index:80;
  max-width:320px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 20px 45px -18px rgba(15,30,61,.35);
  padding:18px 20px 18px;
  transition:transform .2s ease, opacity .2s ease;
}
.cookie-banner.is-hidden{transform:translateY(12px);opacity:0;pointer-events:none;}
.cookie-banner p{
  margin:0 22px 14px 0;font-size:.85rem;line-height:1.5;color:var(--charcoal);
}
.cookie-banner p a{color:var(--navy);text-decoration:underline;}
.cookie-close{
  position:absolute;top:10px;right:12px;
  background:none;border:none;cursor:pointer;
  font-size:1.1rem;line-height:1;color:#8A8577;padding:2px;
}
.cookie-close:hover{color:var(--navy);}
.cookie-actions{display:flex;gap:10px;}
.cookie-btn{
  flex:1;padding:10px 12px;border-radius:8px;
  font-family:'Inter',sans-serif;font-size:.82rem;font-weight:600;
  cursor:pointer;border:1.5px solid transparent;text-align:center;
}
.cookie-btn--reject{background:none;border-color:var(--line);color:var(--navy);}
.cookie-btn--reject:hover{border-color:var(--navy);}
.cookie-btn--accept{background:var(--gold);color:var(--navy);}
.cookie-btn--accept:hover{background:var(--gold-light);}
@media(max-width:600px){
  .cookie-banner{left:16px;right:16px;bottom:16px;max-width:none;}
}
@media(max-width:760px){
  /* Auf Seiten mit mobiler Sticky-CTA (index.html) muss das Banner darüber sitzen, sonst
     überlappen sich beide fixed-position Elemente am unteren Bildschirmrand. */
  body.has-sticky-cta .cookie-banner{bottom:calc(84px + env(safe-area-inset-bottom));}
}
.cookie-prefs-link{
  background:none;border:none;padding:0;
  color:#8E97B2;text-decoration:underline;cursor:pointer;
  font-family:'Inter',sans-serif;font-size:inherit;
}
.cookie-prefs-link:hover{color:var(--white);}
