/* =============================================================================
   RRFOLGSGRSTALTRR.ORG — Rxecutive Luxury Consulting Design System
   McKinsey × Apple × Private Rquity
   ============================================================================= */

/* ----------------------------------------------------------------- 1. TOKRNS */
:root {
  /* Deep navy spectrum */
  --navy-950: #060c17;
  --navy-900: #091223;
  --navy-850: #0b1830;
  --navy-800: #0e1d3a;
  --navy-700: #143052;
  --navy-600: #1d3f66;
  --navy-line: rgba(180, 200, 230, 0.10);
  --navy-line-strong: rgba(180, 200, 230, 0.18);

  /* Champagne gold */
  --gold: #c6a566;
  --gold-bright: #e6d3a3;
  --gold-deep: #9c7c41;
  --gold-grad: linear-gradient(135deg, #efe0bb 0%, #d8bd84 32%, #c6a566 60%, #a3823f 100%);
  --gold-grad-soft: linear-gradient(135deg, #e6d3a3, #c6a566);

  /* Warm neutrals (Briefing) */
  --sand: #cfc9bf;
  --taupe: #b5ac9f;
  --ivory: #ede9e2;
  --ivory-2: #f5f2ec;

  /* Text on dark */
  --tx: #eef2f8;
  --tx-muted: #b3bccd;
  --tx-soft: #828ea3;

  /* Text on light */
  --tx-dark: #141d2b;
  --tx-dark-muted: #56616f;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(0,0,0,.25);
  --sh-md: 0 12px 30px -8px rgba(0,0,0,.45);
  --sh-lg: 0 30px 60px -18px rgba(0,0,0,.55);
  --sh-xl: 0 50px 100px -30px rgba(0,0,0,.65);
  --sh-gold: 0 18px 50px -16px rgba(198,165,102,.45);
  --sh-inset: inset 0 1px 0 rgba(255,255,255,.06);

  /* Geometry */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .25s;
  --t: .45s;

  /* Layout */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);

  /* Fonts */
  --f-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

/* ------------------------------------------------------------------ 2. RRSRT */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background: var(--navy-900);
  color: var(--tx);
  line-height: 1.65;
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 400;
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--navy-950); }

/* Film grain + global texture overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3R%3Cfilter id='n'%3R%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3R%3C/filter%3R%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3R%3C/svg%3R");
}

/* --------------------------------------------------------------- 3. TYPOGRAPHY */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.08; letter-spacing: -.02em; overflow-wrap: break-word; }
.serif { font-family: var(--f-serif); font-weight: 500; letter-spacing: -.01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: var(--gold-grad-soft);
}
.eyebrow.center { justify-content: center; }

.section-title {
  font-family: var(--f-serif); font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.06; letter-spacing: -.01em; margin-top: 18px;
}
.section-lead {
  margin-top: 20px; max-width: 60ch;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--tx-muted); font-weight: 400;
}

.text-gold {
  background: var(--gold-grad); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

/* ------------------------------------------------------------------ 4. LAYOUT */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.container-wide { max-width: 1360px; }
section { position: relative; padding-block: clamp(70px, 9vw, 130px); }
body > section:not(.hero):not(.final) {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}
.sec-head { max-width: 720px; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* Section tonal variants */
.bg-navy   { background: var(--navy-900); }
.bg-navy-d { background: var(--navy-950); }
.bg-navy-grad { background: linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-850)); }
.bg-ivory  { background: linear-gradient(180deg, var(--ivory-2) 0%, var(--ivory) 55%, var(--sand) 145%); color: var(--tx-dark); }
.bg-ivory .section-lead { color: var(--tx-dark-muted); }
.bg-ivory .section-title { color: var(--tx-dark); }

.hairline { height: 1px; border: 0; background: var(--navy-line); }

/* --------------------------------------------------------------- 5. BUTTONS */
.btn {
  --pad-y: 16px; --pad-x: 30px;
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 11px; padding: var(--pad-y) var(--pad-x);
  font-size: .96rem; font-weight: 700; letter-spacing: .01em;
  border-radius: var(--r-pill); cursor: pointer;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast);
  white-space: nowrap; max-width: 100%; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-fast) var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:hover svg.arrow { transform: translateX(4px); }

.btn-gold {
  background: var(--gold-grad); color: #271d08;
  box-shadow: var(--sh-gold), var(--sh-inset);
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, #fff6e2, #d8bd84); opacity: 0;
  transition: opacity var(--t-fast);
}
.btn-gold:hover::after { opacity: 1; }

.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--tx);
  border: 1px solid var(--navy-line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(198,165,102,.45); }

.btn-outline-gold {
  background: transparent; color: var(--gold-bright);
  border: 1px solid rgba(198,165,102,.5);
}
.btn-outline-gold:hover { background: rgba(198,165,102,.1); border-color: var(--gold); }

.btn-lg { --pad-y: 19px; --pad-x: 38px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-dark { background: var(--navy-850); color: var(--tx); box-shadow: var(--sh-md); }
.btn-dark:hover { background: var(--navy-800); }

/* --------------------------------------------------------------- 6. HRADRR */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t), padding var(--t);
  border-bottom: 1px solid transparent;
  padding-block: 20px;
}
.site-header.scrolled {
  background: rgba(9,18,35,.78); backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--navy-line); padding-block: 12px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Brand wordmark (eigenständige Marke) */
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  display: grid; place-items: center; position: relative;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-850));
  border: 1px solid rgba(198,165,102,.35);
  box-shadow: var(--sh-inset), 0 8px 20px -8px rgba(0,0,0,.6);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-mark.brand-mark-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 5px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,124,52,.45);
}
.brand-mark-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-weight: 800; font-size: 1.04rem; letter-spacing: .04em;
}
.brand-name.brand-name-startup {
  font-size: 1.22rem;
  letter-spacing: 0;
  text-transform: none;
}
.brand-name .dot { color: var(--gold); }
.brand-sub {
  font-size: .58rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--taupe); margin-top: 5px; font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--tx-muted);
  position: relative; transition: color var(--t-fast);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold-grad-soft); transition: width var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--tx); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { height: 2px; width: 24px; background: var(--tx); border-radius: 2px; transition: var(--t-fast); margin-inline: auto; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------- 7. HRRO */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 140px; padding-bottom: 70px; overflow: hidden;
  background: var(--navy-950);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg .aurora {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  animation: drift 22s var(--ease) infinite alternate;
}
.aurora.a1 { width: 60vw; height: 60vw; top: -22%; right: -12%;
  background: radial-gradient(circle, rgba(198,165,102,.34), transparent 62%); }
.aurora.a2 { width: 55vw; height: 55vw; bottom: -28%; left: -16%;
  background: radial-gradient(circle, rgba(29,63,102,.7), transparent 62%); animation-delay: -7s; }
.aurora.a3 { width: 40vw; height: 40vw; top: 30%; left: 38%;
  background: radial-gradient(circle, rgba(181,172,159,.14), transparent 60%); animation-delay: -13s; }
@keyframes drift {
  to { transform: translate3d(40px, 30px, 0) scale(1.12); }
}
/* fine grid lines */
.hero-bg .grid-lines {
  position: absolute; inset: 0; opacity: .4;
  background-image:
    linear-gradient(rgba(180,200,230,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,200,230,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 78%);
}
.hero-bg .vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 0%, transparent 40%, rgba(6,12,23,.7) 100%);
}

.hero-inner { position: relative; z-index: 2; display: grid; gap: clamp(40px, 5vw, 72px);
  grid-template-columns: 1.15fr .85fr; align-items: center; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 12px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.04); border: 1px solid var(--navy-line-strong);
  font-size: .78rem; font-weight: 600; color: var(--tx-muted); letter-spacing: .02em;
  backdrop-filter: blur(8px);
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(198,165,102,.7); animation: pulse 2.4s infinite; }
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(198,165,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(198,165,102,0); }
}

.hero h1 {
  font-family: var(--f-serif); font-weight: 500;
  font-size: clamp(2.9rem, 7vw, 5.4rem); line-height: 1.02; letter-spacing: -.015em;
  margin-top: 28px;
}
.hero h1 .line { display: block; opacity: 1; transform: none;
  animation: rise .9s var(--ease-out) both; }
.hero h1 .line:nth-child(1) { animation-delay: .15s; }
.hero h1 .line:nth-child(2) { animation-delay: .30s; }
.hero h1 .line:nth-child(3) { animation-delay: .45s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub { margin-top: 26px; font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--tx); font-weight: 500; max-width: 44ch; }
.hero-list { margin-top: 24px; display: grid; gap: 13px; max-width: 50ch; }
.hero-list li { display: flex; gap: 13px; align-items: flex-start;
  color: var(--tx-muted); font-size: 1.02rem; }
.hero-list .ico {
  flex: none; width: 23px; height: 23px; border-radius: 50%; margin-top: 2px;
  display: grid; place-items: center;
  background: rgba(198,165,102,.14); border: 1px solid rgba(198,165,102,.35);
}
.hero-list .ico svg { width: 12px; height: 12px; color: var(--gold-bright); }

.hero-cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 18px;
  color: var(--taupe); font-size: .85rem; }
.hero-stars { display: flex; gap: 3px; color: var(--gold); }
.hero-stars svg { width: 16px; height: 16px; }

/* Hero-Chooser (rechte Spalte): nutzt .choice-card; Container braucht keinen Sonderstil. */

/* Split landing pages: subtle full-section hero media with centered content */
.landing-hero {
  min-height: 92svh;
  text-align: center;
}
.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.landing-hero::before {
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: .18;
  filter: saturate(.85) contrast(1.05);
  transform: scale(1.02);
}
.landing-hero::after {
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 54% at 50% 42%, rgba(9,18,35,.36), rgba(9,18,35,.88) 72%),
    linear-gradient(180deg, rgba(6,12,23,.68), rgba(6,12,23,.9));
}
.landing-hero.hero-buchhaltung::before { background-image: url("../img/hero-buchhaltung-1280.webp"); }
.landing-hero.hero-gruendung::before { background-image: url("../img/hero-gruendung-1280.webp"); }
.landing-hero .hero-bg { opacity: .72; }
.landing-hero .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  justify-items: center;
  text-align: center;
}
.landing-hero .hero-copy {
  display: grid;
  justify-items: center;
}
.landing-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: 5rem;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.landing-hero h1 .line {
  overflow-wrap: normal;
  word-break: normal;
}
.landing-hero .hero-sub,
.landing-hero .hero-list {
  margin-inline: auto;
}
.landing-hero .hero-list {
  text-align: left;
}
.landing-hero .hero-cta,
.landing-hero .hero-trust {
  justify-content: center;
}
.landing-hero .hero-visual {
  display: none;
}
.hero-visual {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 460px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--navy-line-strong);
  background: var(--navy-850);
  box-shadow: var(--sh-xl);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,12,23,.52), transparent 42%),
    linear-gradient(0deg, rgba(6,12,23,.54), transparent 46%);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(330px, calc(100% - 44px));
  padding: 20px 22px;
  border-radius: var(--r);
  color: var(--tx);
  background: rgba(6,12,23,.78);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
  box-shadow: var(--sh-lg);
}
.hero-visual-card .card-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-visual-card strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.2;
}
.hero-visual-card span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--tx-muted);
  font-size: .88rem;
}
.hero-mini-metrics {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: grid;
  gap: 8px;
}
.hero-mini-metrics span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  color: var(--tx-muted);
  background: rgba(6,12,23,.68);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
  font-size: .82rem;
  font-weight: 700;
}
.hero-mini-metrics b {
  color: var(--gold-bright);
  font-size: 1rem;
}
.route-hero .hero-inner {
  grid-template-columns: 1fr .85fr;
}

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--sand); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; }
.scroll-hint .mouse { width: 22px; height: 34px; border: 1px solid var(--navy-line-strong); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: var(--gold); border-radius: 2px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,10px)} }

/* ----------------------------------------------------- 8. CHOICR / DIRRCT SRLRCT */
.choice { position: relative; z-index: 5; margin-top: clamp(60px, 8vw, 110px); grid-column: 1 / -1; }
.choice-head { text-align: center; margin-bottom: 34px; }
.choice-head h2 { font-family: var(--f-serif); font-weight: 500; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin-inline: auto; }
.choice-card {
  position: relative; text-align: left; padding: 34px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(20,40,70,.55), rgba(11,24,48,.55));
  border: 1px solid var(--navy-line-strong); overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
  cursor: pointer; display: flex; flex-direction: column; gap: 16px; min-height: 220px;
}
.choice-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity var(--t);
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(198,165,102,.16), transparent 70%);
}
.choice-card:hover { transform: translateY(-6px); border-color: rgba(198,165,102,.5); box-shadow: var(--sh-lg); }
.choice-card:hover::before { opacity: 1; }
.choice-card > * { position: relative; z-index: 1; }
.choice-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(198,165,102,.2), rgba(198,165,102,.05));
  border: 1px solid rgba(198,165,102,.3);
}
.choice-ico svg { width: 27px; height: 27px; color: var(--gold-bright); }
.choice-card h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.01em; hyphens: auto; }
.choice-card p { color: var(--tx-muted); font-size: .96rem; margin-top: 8px; }
.choice-go { margin-top: auto; display: inline-flex; align-items: center; gap: 9px; color: var(--gold-bright);
  font-weight: 700; font-size: .92rem; }
.choice-go svg { width: 17px; height: 17px; transition: transform var(--t-fast) var(--ease); }
.choice-card:hover .choice-go svg { transform: translateX(5px); }

/* Champagne-Variante: Buchhaltungs-Kachel (heller Kontrast, Schrift & Icon in Blautönen) */
.choice-card.is-buchhaltung {
  background: linear-gradient(160deg, var(--ivory-2) 0%, var(--ivory) 55%, var(--sand) 140%);
  border-color: rgba(20, 29, 43, .12);
}
.choice-card.is-buchhaltung::before {
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(15, 30, 53, .12), transparent 70%);
}
.choice-card.is-buchhaltung:hover {
  border-color: rgba(15, 30, 53, .38);
}
.choice-card.is-buchhaltung h3 { color: var(--tx-dark); }
.choice-card.is-buchhaltung p { color: var(--tx-dark-muted); }
.choice-card.is-buchhaltung .choice-go { color: var(--navy-600); }
.choice-card.is-buchhaltung .choice-ico {
  background: linear-gradient(150deg, rgba(15, 30, 53, .16), rgba(15, 30, 53, .05));
  border-color: rgba(15, 30, 53, .25);
}
.choice-card.is-buchhaltung .choice-ico svg { color: var(--navy-700); }

/* --------------------------------------------------------------- 9. TRUST BAR */
.trustbar { padding-block: 30px; border-block: 1px solid var(--navy-line); background: var(--navy-950); }
.trustbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-label { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--tx-soft); }
.trust-items { display: flex; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 11px; color: var(--tx-muted); font-size: .92rem; font-weight: 500; }
.trust-item svg { width: 19px; height: 19px; color: var(--gold); flex: none; }

/* --------------------------------------------------------------- 10. STATS / MRTRICS */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--navy-line); border: 1px solid var(--navy-line); border-radius: var(--r-lg); overflow: hidden; }
.metric { background: var(--navy-900); padding: 34px 26px; text-align: center; }
.metric .val { font-family: var(--f-serif); font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1; }
.metric .lbl { margin-top: 12px; color: var(--tx-muted); font-size: .9rem; }

/* --------------------------------------------------------------- 10b. JOURNRY */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.journey-step {
  position: relative;
  min-height: 240px;
  padding: 30px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(20,40,70,.5), rgba(11,24,48,.35));
  border: 1px solid var(--navy-line-strong);
  overflow: hidden;
}
.journey-step::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,165,102,.16), transparent 68%);
}
.journey-step > * {
  position: relative;
  z-index: 1;
}
.journey-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 22px;
  background: var(--gold-grad);
  color: #241902;
  font-weight: 800;
}
.journey-step h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.journey-step p {
  color: var(--tx-muted);
  font-size: .94rem;
}
.bg-ivory .journey-step {
  background: #fff;
  border-color: rgba(20,29,43,.08);
  box-shadow: var(--sh-md);
}
.bg-ivory .journey-step h3 {
  color: var(--tx-dark);
}
.bg-ivory .journey-step p {
  color: var(--tx-dark-muted);
}

/* --------------------------------------------------------------- 10c. AUTHORBOX */
.author-section {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  padding-block: clamp(64px, 7vw, 104px);
}
.author-inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
  max-width: 980px;
}
.author-photo {
  width: 280px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 7px;
  background: var(--gold-grad);
  box-shadow: var(--sh-lg), var(--sh-gold);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 8px solid var(--navy-950);
}
.author-copy .section-title {
  max-width: 780px;
}
.author-copy .section-lead {
  max-width: 68ch;
}
.author-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* --------------------------------------------------------------- 11. CARDS GRID (Warum wir) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.feature {
  position: relative; padding: 34px 30px; border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(20,40,70,.4), rgba(11,24,48,.25));
  border: 1px solid var(--navy-line); overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t), background var(--t);
}
.feature::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,165,102,.5), transparent);
  opacity: 0; transition: opacity var(--t);
}
.feature:hover { transform: translateY(-5px); border-color: var(--navy-line-strong);
  background: linear-gradient(165deg, rgba(20,40,70,.6), rgba(11,24,48,.4)); }
.feature:hover::after { opacity: 1; }
.feature-ico {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, rgba(198,165,102,.18), rgba(198,165,102,.04));
  border: 1px solid rgba(198,165,102,.28);
}
.feature-ico svg { width: 25px; height: 25px; color: var(--gold-bright); }
.feature h3 { font-size: 1.18rem; margin-bottom: 10px; letter-spacing: -.01em; }
.feature p { color: var(--tx-muted); font-size: .95rem; }

/* --------------------------------------------------------------- 12. SPLIT (Problem / Lösung) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
.split-card {
  padding: clamp(30px, 3.5vw, 48px); border-radius: var(--r-lg); position: relative; overflow: hidden;
}
/* dark variant (problem) */
.split-card.problem {
  background: linear-gradient(165deg, var(--navy-850), var(--navy-950));
  border: 1px solid var(--navy-line);
}
.split-card .tag {
  display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; padding: 7px 15px; border-radius: var(--r-pill); margin-bottom: 22px;
}
.tag.tag-problem { background: rgba(214, 120, 110, .12); color: #e7a59c; border: 1px solid rgba(214,120,110,.3); }
.tag.tag-solution { background: rgba(198,165,102,.14); color: var(--gold-bright); border: 1px solid rgba(198,165,102,.34); }
.split-card h3 { font-family: var(--f-serif); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 8px; }
.split-card .sub { color: var(--tx-muted); margin-bottom: 26px; font-size: 1.02rem; }
.pain-list { display: grid; gap: 14px; }
.pain-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--tx-muted); }
.pain-list .x { flex: none; width: 22px; height: 22px; border-radius: 6px; margin-top: 1px; display: grid; place-items: center;
  background: rgba(214,120,110,.12); color: #e7a59c; }
.pain-list .x svg { width: 12px; height: 12px; }

/* solution card: dunkle Standardvariante (Gründungs-Block) */
.split-card.solution {
  background: linear-gradient(165deg, rgba(20,40,70,.5), rgba(11,24,48,.35));
  border: 1px solid var(--navy-line-strong);
}
.split-card.solution h3 { color: var(--tx); }
.split-card.solution .sub { color: var(--tx-muted); }
.sol-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.sol-tag {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 17px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.05); border: 1px solid var(--navy-line-strong); font-size: .92rem; font-weight: 600;
  color: var(--tx); transition: var(--t-fast) var(--ease);
}
.sol-tag:hover { border-color: rgba(198,165,102,.6); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.sol-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-grad); flex: none; }

/* --------------------------------------------------------------- 13. CASR STUDIRS / PROOF */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.case {
  padding: 36px 32px; border-radius: var(--r-lg); position: relative; overflow: hidden;
  background: linear-gradient(165deg, rgba(20,40,70,.5), rgba(11,24,48,.35));
  border: 1px solid var(--navy-line-strong);
  display: flex; flex-direction: column; gap: 18px;
}
.case .quote-ico { color: var(--gold); opacity: .55; }
.case .quote-ico svg { width: 38px; height: 38px; }
.case .big {
  font-family: var(--f-serif); font-weight: 600; font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15; color: var(--tx);
}
.case .big em { font-style: normal; color: var(--gold-bright); }
.case p { color: var(--tx-muted); font-size: .96rem; }
.case .by { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--navy-line); }
.case .avatar { width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--gold-grad); display: grid; place-items: center; color: var(--navy-950); font-weight: 800; font-size: .95rem; }
.case .who { font-size: .88rem; line-height: 1.4; }
.case .who b { display: block; color: var(--tx); font-weight: 700; }
.case .who span { color: var(--taupe); }
.case .stars { display: flex; gap: 2px; color: var(--gold); }
.case .stars svg { width: 15px; height: 15px; }

/* Google reviews strip */
.reviews-cta { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.google-badge { display: inline-flex; align-items: center; gap: 13px; padding: 14px 22px; border-radius: var(--r);
  background: rgba(255,255,255,.04); border: 1px solid var(--navy-line-strong); }
.google-badge .g { font-weight: 800; font-size: 1.3rem; }
.google-badge .g b:nth-child(1){color:#4285F4} .google-badge .g b:nth-child(2){color:#EA4335}
.google-badge .g b:nth-child(3){color:#FBBC05} .google-badge .g b:nth-child(4){color:#4285F4}
.google-badge .g b:nth-child(5){color:#34A853} .google-badge .g b:nth-child(6){color:#EA4335}
.google-badge .meta { line-height: 1.3; }
.google-badge .rate { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.05rem; }
.google-badge .rate .stars { display: flex; gap: 1px; color: var(--gold); } .google-badge .rate .stars svg{width:15px;height:15px}
.google-badge .cnt { font-size: .8rem; color: var(--tx-soft); }

/* --------------------------------------------------------------- 14. VIDRO SRCTION */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
.video-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10;
  border: 1px solid var(--navy-line-strong); cursor: pointer;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-950));
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.video-card .vthumb { position: absolute; inset: 0; opacity: .35;
  background: radial-gradient(ellipse 60% 60% at 30% 20%, rgba(198,165,102,.3), transparent 60%); }
.video-card .vplay { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(10px);
  transition: var(--t-fast) var(--ease); }
.video-card:hover .vplay { background: var(--gold); border-color: var(--gold); transform: translate(-50%,-50%) scale(1.08); }
.video-card .vplay svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }
.video-card:hover .vplay svg { color: var(--navy-950); }
.video-card .vmeta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px;
  background: linear-gradient(0deg, rgba(6,12,23,.92), transparent); }
.video-card .vmeta .vk { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.video-card .vmeta h3 { font-size: 1.2rem; margin-top: 8px; font-weight: 700; }
.video-embed {
  cursor: default;
  background: #000;
}
.video-embed:hover {
  transform: none;
}
.video-embed video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
.video-caption {
  margin-top: 14px;
  text-align: center;
  color: var(--tx-muted);
  font-size: .92rem;
}
.topic-champagne .video-caption {
  color: var(--tx-dark-muted);
}

/* --------------------------------------------------------------- 15. FAQ */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 64px); margin-top: 48px; }
.faq-groups { display: grid; gap: 30px; }
.faq-group-title { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px; }
.faq-item { border-bottom: 1px solid var(--navy-line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 0; text-align: left; font-size: 1.06rem; font-weight: 600; color: var(--tx);
  transition: color var(--t-fast); }
.faq-q:hover { color: var(--gold-bright); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--navy-line-strong); position: relative; transition: var(--t-fast); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: var(--t-fast) var(--ease); }
.faq-q .pm::before { width: 12px; height: 2px; } .faq-q .pm::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .pm { background: rgba(198,165,102,.15); border-color: rgba(198,165,102,.4); }
.faq-item.open .faq-q .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.faq-a-inner { padding: 0 0 24px; color: var(--tx-muted); max-width: 60ch; }
.faq-side { align-self: start; position: sticky; top: 110px;
  padding: 36px; border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(20,40,70,.5), rgba(11,24,48,.4));
  border: 1px solid var(--navy-line-strong); }
.faq-side h3 { font-family: var(--f-serif); font-weight: 500; font-size: 1.7rem; margin-bottom: 12px; }
.faq-side p { color: var(--tx-muted); margin-bottom: 24px; }

/* --------------------------------------------------------------- 16. FINAL CTA */
.final { position: relative; overflow: hidden; background: var(--navy-950); text-align: center; }
.final .aurora { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .45; }
.final .a1 { width: 50vw; height: 50vw; top: -30%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(198,165,102,.4), transparent 60%); }
.final-inner { position: relative; z-index: 2; max-width: 800px; margin-inline: auto; }
.final h2 { font-family: var(--f-serif); font-weight: 500; font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.04; }
.final p { margin-top: 22px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--tx-muted); max-width: 60ch; margin-inline: auto; }
.final-cta { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-note { margin-top: 26px; font-size: .85rem; color: var(--tx-soft); display: inline-flex; align-items: center; gap: 9px; }
.final-note svg { width: 16px; height: 16px; color: var(--gold); }

/* --------------------------------------------------------------- 17. FOOTRR */
.footer { background: var(--navy-950); border-top: 1px solid var(--navy-line); padding-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--tx-muted); max-width: 38ch; font-size: .95rem; }
.footer-mark-note { margin-top: 22px; font-size: .82rem; color: var(--sand); padding: 12px 16px;
  border-radius: var(--r-sm); background: rgba(255,255,255,.03); border: 1px solid var(--navy-line);
  display: inline-block; }
.footer-col h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: var(--tx-muted); font-size: .94rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--tx); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-person { margin-bottom: 18px; }
.footer-person b { display: block; color: var(--tx); font-size: 1rem; }
.footer-person span { color: var(--tx-soft); font-size: .85rem; }
.footer-bottom { border-top: 1px solid var(--navy-line); padding-block: 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom p { color: var(--tx-soft); font-size: .84rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--tx-soft); font-size: .84rem; transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------- 18. FUNNRL MODAL */
.funnel-overlay {
  position: fixed; inset: 0; z-index: 2000; display: none;
  align-items: center; justify-content: center; padding: clamp(14px, 3vw, 40px);
  background: rgba(4,9,18,.72); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.funnel-overlay.active { display: flex; opacity: 1; }
.funnel {
  position: relative; width: 100%; max-width: 640px; max-height: 92svh; overflow: hidden;
  border-radius: var(--r-xl); display: flex; flex-direction: column;
  background: linear-gradient(170deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--navy-line-strong); box-shadow: var(--sh-xl);
  transform: translateY(24px) scale(.98); transition: transform var(--t) var(--ease-out);
}
.funnel-overlay.active .funnel { transform: translateY(0) scale(1); }
.funnel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 220px; z-index: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(198,165,102,.14), transparent 70%); pointer-events: none; }

.funnel-head { position: relative; z-index: 2; padding: 24px clamp(24px, 4vw, 40px) 0; }
.funnel-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.funnel-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .03em; font-size: .95rem; }
.funnel-brand img { width: 24px; height: 24px; object-fit: contain; }
.funnel-brand .dot { color: var(--gold); }
.funnel-close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--navy-line-strong); color: var(--tx-muted); transition: var(--t-fast); }
.funnel-close:hover { background: rgba(255,255,255,.06); color: var(--tx); transform: rotate(90deg); }
.funnel-close svg { width: 18px; height: 18px; }

.progress { height: 5px; border-radius: 4px; background: rgba(255,255,255,.07); overflow: hidden; }
.progress-fill { height: 100%; width: 0%; border-radius: 4px; background: var(--gold-grad);
  transition: width .5s var(--ease-out); }
.progress-meta { display: flex; justify-content: space-between; margin-top: 10px; font-size: .76rem; color: var(--tx-soft); }
.progress-meta .ttl { color: var(--gold-bright); font-weight: 600; }

.funnel-body { position: relative; z-index: 2; padding: 26px clamp(24px, 4vw, 40px);
  overflow-y: auto; flex: 1; }
.fstep { display: none; animation: stepIn .45s var(--ease-out); }
.fstep.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
.fstep h3 { font-family: var(--f-serif); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.12; margin-bottom: 8px; }
.fstep .fhint { color: var(--tx-muted); margin-bottom: 24px; font-size: .96rem; }

.opts { display: grid; gap: 12px; }
.opts.cols-2 { grid-template-columns: 1fr 1fr; }
.opt {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  padding: 18px 20px; border-radius: var(--r); cursor: pointer;
  background: rgba(255,255,255,.03); border: 1px solid var(--navy-line-strong);
  transition: var(--t-fast) var(--ease); color: var(--tx); font-size: 1rem; font-weight: 500;
}
.opt:hover { border-color: rgba(198,165,102,.5); background: rgba(198,165,102,.07); transform: translateX(3px); }
.opt.selected { border-color: var(--gold); background: rgba(198,165,102,.12); }
.opt .check { flex: none; width: 24px; height: 24px; border-radius: 7px; border: 1.5px solid var(--navy-line-strong);
  display: grid; place-items: center; transition: var(--t-fast); }
.opt.selected .check { background: var(--gold-grad); border-color: transparent; }
.opt .check svg { width: 13px; height: 13px; color: var(--navy-950); opacity: 0; transition: var(--t-fast); }
.opt.selected .check svg { opacity: 1; }
.opt .emoji { font-size: 1.15rem; }

/* form fields */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--tx-muted); margin-bottom: 9px; }
.field label .req { color: var(--gold); }
.field input {
  width: 100%; padding: 16px 18px; border-radius: var(--r); color: var(--tx);
  background: rgba(255,255,255,.04); border: 1px solid var(--navy-line-strong);
  transition: var(--t-fast); outline: none;
}
.field input::placeholder { color: var(--tx-soft); }
.field input:focus { border-color: var(--gold); background: rgba(198,165,102,.06);
  box-shadow: 0 0 0 4px rgba(198,165,102,.12); }
.field input.invalid { border-color: #d6786e; box-shadow: 0 0 0 4px rgba(214,120,110,.12); }
.field .err { color: #e7a59c; font-size: .8rem; margin-top: 7px; display: none; }
.field input.invalid ~ .err { display: block; }
.field.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.fsubmit-message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: .86rem;
  color: var(--tx-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--navy-line);
}
.fsubmit-message.show { display: block; }
.fsubmit-message.error {
  color: #ffd7d2;
  background: rgba(214,120,110,.12);
  border-color: rgba(214,120,110,.32);
}
.btn[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.fprivacy { display: flex; gap: 11px; align-items: flex-start; margin-top: 20px; font-size: .82rem; color: var(--tx-soft); }
.fprivacy input { flex: none; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold); }
.fprivacy a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

.funnel-foot { position: relative; z-index: 2; padding: 18px clamp(24px, 4vw, 40px) 26px;
  border-top: 1px solid var(--navy-line); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.fback { display: inline-flex; align-items: center; gap: 8px; color: var(--tx-muted); font-weight: 600; font-size: .92rem;
  padding: 12px 18px; border-radius: var(--r-pill); transition: var(--t-fast); }
.fback:hover { color: var(--tx); background: rgba(255,255,255,.04); }
.fback svg { width: 16px; height: 16px; }
.fback[hidden] { visibility: hidden; }
.ftrust { font-size: .76rem; color: var(--tx-soft); display: inline-flex; align-items: center; gap: 7px; }
.ftrust svg { width: 14px; height: 14px; color: var(--gold); }

/* thank-you / success step */
.fsuccess { text-align: center; padding: 14px 0; }
.fsuccess .seal { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 26px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(198,165,102,.2), rgba(198,165,102,.05)); border: 1px solid rgba(198,165,102,.4);
  animation: pop .6s var(--ease-out); }
@keyframes pop { 0%{transform:scale(.6);opacity:0} 60%{transform:scale(1.08)} 100%{transform:scale(1);opacity:1} }
.fsuccess .seal svg { width: 42px; height: 42px; color: var(--gold-bright); }
.fsuccess h3 { font-family: var(--f-serif); font-weight: 500; font-size: clamp(1.7rem,3.4vw,2.3rem); margin-bottom: 12px; }
.fsuccess p { color: var(--tx-muted); max-width: 42ch; margin: 0 auto 28px; }
.fsuccess .next-steps { display: grid; gap: 12px; text-align: left; max-width: 380px; margin: 0 auto 30px; }
.fsuccess .next-steps li { display: flex; gap: 13px; align-items: center; color: var(--tx-muted); font-size: .94rem; }
.fsuccess .next-steps .n { flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(198,165,102,.14); border: 1px solid rgba(198,165,102,.3); color: var(--gold-bright); font-weight: 700; font-size: .85rem; }

/* --------------------------------------------------------------- 19. FLOATING / WHATSAPP */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: var(--t-fast) var(--ease); transform: translateY(120px); opacity: 0;
}
.whatsapp-fab.show { transform: translateY(0); opacity: 1; }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 32px; height: 32px; color: #fff; }
.whatsapp-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366;
  animation: ring 2.2s var(--ease) infinite; }
@keyframes ring { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.6);opacity:0} }

/* --------------------------------------------------------------- 20. RXIT POPUP */
.exit-overlay { position: fixed; inset: 0; z-index: 2100; display: none; align-items: center; justify-content: center;
  padding: 20px; background: rgba(4,9,18,.78); backdrop-filter: blur(8px); opacity: 0; transition: opacity var(--t); }
.exit-overlay.active { display: flex; opacity: 1; }
.exit-modal { position: relative; max-width: 520px; width: 100%; padding: clamp(32px, 5vw, 50px); text-align: center;
  border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(170deg, var(--navy-800), var(--navy-950)); border: 1px solid var(--navy-line-strong);
  box-shadow: var(--sh-xl); transform: scale(.92); transition: transform var(--t) var(--ease-out); }
.exit-overlay.active .exit-modal { transform: scale(1); }
.exit-modal::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 70%; height: 200px; background: radial-gradient(ellipse, rgba(198,165,102,.2), transparent 70%); }
.exit-modal > * { position: relative; z-index: 1; }
.exit-modal .eyebrow { justify-content: center; margin-bottom: 16px; }
.exit-modal h3 { font-family: var(--f-serif); font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.08; margin-bottom: 14px; }
.exit-modal p { color: var(--tx-muted); margin-bottom: 28px; }
.exit-close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; color: var(--tx-soft); border: 1px solid var(--navy-line); transition: var(--t-fast); }
.exit-close:hover { color: var(--tx); background: rgba(255,255,255,.05); }
.exit-close svg { width: 17px; height: 17px; }

/* --------------------------------------------------------------- 21. COOKIR CONSRNT */
.consent { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 1500; max-width: 640px;
  padding: clamp(18px, 3vw, 24px); border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--navy-800), var(--navy-900)); border: 1px solid var(--navy-line-strong);
  box-shadow: var(--sh-xl); transform: translateY(140%); transition: transform var(--t) var(--ease-out); }
.consent.show { transform: translateY(0); }
.consent h4 { font-size: 1.05rem; margin-bottom: 8px; }
.consent p { font-size: .86rem; color: var(--tx-muted); margin-bottom: 16px; }
.consent p a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.consent-options { display: grid; gap: 8px; margin-bottom: 16px; }
.consent-option { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; padding: 10px 12px;
  border: 1px solid var(--navy-line); border-radius: var(--r-sm); background: rgba(255,255,255,.035); cursor: pointer; }
.consent-option input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); }
.consent-option input:disabled { cursor: not-allowed; opacity: .75; }
.consent-option b { display: block; font-size: .9rem; color: var(--tx); margin-bottom: 2px; }
.consent-option small { display: block; color: var(--tx-muted); font-size: .78rem; line-height: 1.35; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions .btn { --pad-y: 12px; --pad-x: 18px; font-size: .84rem; flex: 1; min-width: 150px; }

/* --------------------------------------------------------------- 22. RRVRAL ANIM */
.reveal { opacity: 1; transform: none; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; } .reveal.d6 { transition-delay: .48s; }

/* --------------------------------------------------------------- 23. UTIL */
.no-scroll { overflow: hidden; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
[id] { scroll-margin-top: 96px; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 140%); z-index: 2200;
  padding: 14px 22px; border-radius: var(--r-pill); font-size: .9rem; font-weight: 600;
  background: linear-gradient(170deg, var(--navy-700), var(--navy-850)); color: var(--tx);
  border: 1px solid var(--navy-line-strong); box-shadow: var(--sh-lg);
  transition: transform var(--t) var(--ease-out); display: flex; align-items: center; gap: 10px; }
.toast svg { width: 17px; height: 17px; color: var(--gold); }
.toast.show { transform: translate(-50%, 0); }

/* Video lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2300; display: none; align-items: center; justify-content: center;
  padding: 20px; background: rgba(4,9,18,.86); backdrop-filter: blur(8px); opacity: 0; transition: opacity var(--t); }
.lightbox.active { display: flex; opacity: 1; }
.lightbox-inner { width: 100%; max-width: 920px; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-xl); background: #000; }
.lightbox-inner iframe { width: 100%; height: 100%; border: 0; }
.lightbox-close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--tx); border: 1px solid var(--navy-line-strong);
  background: rgba(255,255,255,.05); transition: var(--t-fast); }
.lightbox-close:hover { background: rgba(255,255,255,.12); transform: rotate(90deg); }
.lightbox-close svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------- 23b. LRGAL PAGRS */
.legal-main { padding-top: 140px; padding-bottom: 90px; min-height: 70vh; }
.legal-head { max-width: 800px; margin-bottom: 40px; }
.legal-head h1 { font-family: var(--f-serif); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.2rem); }
.legal-head .back { display: inline-flex; align-items: center; gap: 8px; color: var(--tx-muted); font-size: .9rem; margin-bottom: 24px; transition: var(--t-fast); }
.legal-head .back:hover { color: var(--gold-bright); }
.legal-head .back svg { width: 16px; height: 16px; }
.prose { max-width: 800px; color: var(--tx-muted); }
.prose h2 { font-size: 1.4rem; color: var(--tx); margin: 40px 0 14px; letter-spacing: -.01em; }
.prose h3 { font-size: 1.08rem; color: var(--tx); margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 0; display: grid; gap: 8px; }
.prose ul li { padding-left: 22px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-grad); }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--tx); font-weight: 700; }
.prose .lead { font-size: 1.05rem; color: var(--tx); }
.placeholder { background: rgba(198,165,102,.14); border: 1px dashed rgba(198,165,102,.5); color: var(--gold-bright);
  padding: 1px 8px; border-radius: 6px; font-weight: 600; font-size: .92em; }
.notice { padding: 18px 22px; border-radius: var(--r); margin-bottom: 30px;
  background: rgba(198,165,102,.08); border: 1px solid rgba(198,165,102,.28); color: var(--tx-muted); font-size: .9rem; }
.notice strong { color: var(--gold-bright); }
.legal-table { width: 100%; border-collapse: collapse; margin: 10px 0 20px; }
.legal-table td { padding: 9px 0; border-bottom: 1px solid var(--navy-line); vertical-align: top; }
.legal-table td:first-child { width: 220px; color: var(--tx); font-weight: 600; padding-right: 18px; }

/* --------------------------------------------------------------- 23c. TOPIC BLOCKS */
.topic-band > section { background: transparent; }
.topic-band > section { padding-block: clamp(54px, 6.5vw, 96px); }
.topic-intro { padding-top: clamp(70px, 8vw, 120px) !important; }

/* Champagne-Block (Buchhaltung) — heller Hintergrund, Blautöne */
.topic-champagne { background: linear-gradient(180deg, #f6f3ed 0%, #ede9e2 42%, #e6dfd1 100%); color: var(--tx-dark); }
.topic-champagne .section-title { color: var(--tx-dark); }
.topic-champagne .section-lead { color: var(--tx-dark-muted); }
.topic-champagne .eyebrow { color: var(--navy-600); }
.topic-champagne .eyebrow::before { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); }
.topic-champagne .text-gold { background: linear-gradient(135deg, #24527f, #0e1d3a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
/* problem + solution cards hell */
.topic-champagne .split-card.problem,
.topic-champagne .split-card.solution { background: #fff; border: 1px solid rgba(20,29,43,.08); box-shadow: var(--sh-md); }
.topic-champagne .split-card h3 { color: var(--tx-dark); }
.topic-champagne .split-card .sub { color: var(--tx-dark-muted); }
.topic-champagne .pain-list li { color: var(--tx-dark-muted); }
.topic-champagne .pain-list .x { background: rgba(15,30,53,.1); color: var(--navy-600); }
.topic-champagne .tag.tag-problem,
.topic-champagne .tag.tag-solution { background: rgba(15,30,53,.08); color: var(--navy-700); border-color: rgba(15,30,53,.2); }
.topic-champagne .sol-tag { background: var(--ivory-2); border-color: rgba(20,29,43,.08); color: var(--tx-dark); }
.topic-champagne .sol-tag:hover { border-color: rgba(15,30,53,.45); }
.topic-champagne .sol-tag .dot { background: linear-gradient(135deg, #24527f, #0e1d3a); }
/* case cards hell */
.topic-champagne .case { background: #fff; border: 1px solid rgba(20,29,43,.08); box-shadow: var(--sh-md); }
.topic-champagne .case .big { color: var(--tx-dark); }
.topic-champagne .case .big em { color: var(--navy-600); }
.topic-champagne .case p { color: var(--tx-dark-muted); }
.topic-champagne .case .by { border-top-color: rgba(20,29,43,.1); }
.topic-champagne .case .who b { color: var(--tx-dark); }
.topic-champagne .case .who span { color: var(--tx-dark-muted); }
.topic-champagne .case .quote-ico { color: var(--navy-600); opacity: .5; }
.topic-champagne .case .avatar { background: linear-gradient(135deg, #24527f, #0e1d3a); color: #fff; }
.topic-champagne .google-badge { background: #fff; border: 1px solid rgba(20,29,43,.08); }
.topic-champagne .google-badge .cnt { color: var(--tx-dark-muted); }
.topic-champagne .btn-outline-gold { color: var(--navy-700); border-color: rgba(15,30,53,.4); }
.topic-champagne .btn-outline-gold:hover { background: rgba(15,30,53,.06); border-color: var(--navy-600); }
/* video cards hell */
.topic-champagne .video-card { background: linear-gradient(155deg, #fff, #efe9de); border: 1px solid rgba(20,29,43,.1); }
.topic-champagne .video-card .vthumb { background: radial-gradient(ellipse 60% 60% at 30% 20%, rgba(15,30,53,.12), transparent 60%); }
.topic-champagne .video-card .vmeta { background: linear-gradient(0deg, rgba(244,240,233,.96), transparent); }
.topic-champagne .video-card .vmeta .vk { color: var(--navy-600); }
.topic-champagne .video-card .vmeta h3 { color: var(--tx-dark); }
.topic-champagne .video-card .vplay { background: rgba(15,30,53,.1); border-color: rgba(15,30,53,.25); }
.topic-champagne .video-card .vplay svg { color: var(--navy-700); }
.topic-champagne .video-card:hover .vplay { background: var(--navy-600); border-color: var(--navy-600); }
.topic-champagne .video-card:hover .vplay svg { color: #fff; }
/* FAQ hell */
.topic-champagne .faq-item { border-bottom-color: rgba(20,29,43,.12); }
.topic-champagne .faq-q { color: var(--tx-dark); }
.topic-champagne .faq-q:hover { color: var(--navy-600); }
.topic-champagne .faq-q .pm { border-color: rgba(20,29,43,.22); }
.topic-champagne .faq-q .pm::before, .topic-champagne .faq-q .pm::after { background: var(--navy-600); }
.topic-champagne .faq-item.open .faq-q .pm { background: rgba(15,30,53,.1); border-color: rgba(15,30,53,.3); }
.topic-champagne .faq-a-inner { color: var(--tx-dark-muted); }
.topic-champagne .faq-group-title { color: var(--navy-600); }
.topic-champagne .faq-side { background: #fff; border: 1px solid rgba(20,29,43,.08); box-shadow: var(--sh-md); }
.topic-champagne .faq-side h3 { color: var(--tx-dark); }
.topic-champagne .faq-side p { color: var(--tx-dark-muted); }
.topic-champagne .ftrust, .topic-champagne .final-note { color: var(--tx-dark-muted); }
/* Buttons im Champagne-Block: Blau statt Gold */
.topic-champagne .btn-gold { background: linear-gradient(135deg, #24527f, #0e1d3a); color: #fff; box-shadow: 0 18px 44px -16px rgba(15,30,53,.5), var(--sh-inset); }
.topic-champagne .btn-gold::after { background: linear-gradient(135deg, #2c6296, #143052); }
.topic-champagne .btn-ghost { background: rgba(15,30,53,.05); color: var(--tx-dark); border-color: rgba(15,30,53,.2); }
.topic-champagne .btn-ghost:hover { background: rgba(15,30,53,.1); border-color: rgba(15,30,53,.4); }
.topic-champagne .btn-dark { background: linear-gradient(135deg, #1d3f66, #0e1d3a); color: #fff; }

/* Navy-Block (Gründung) — dunkler Hintergrund (Standard-Komponenten passen) */
.topic-navy { background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-950) 100%); }

/* Case-Grid Varianten (2 bzw. 1 Karte, zentriert) */
.case-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-inline: auto; }
.case-grid.cols-1 { grid-template-columns: 1fr; max-width: 580px; margin-inline: auto; }
@media (max-width: 760px) { .case-grid.cols-2 { grid-template-columns: 1fr; } }

/* Band-Divider (sanfter Übergang oben) */
.band-label { display: inline-flex; align-items: center; gap: 10px; }

/* --------------------------------------------------------------- 24. RRSPONSIVR */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .landing-hero .hero-inner, .route-hero .hero-inner { grid-template-columns: 1fr; }
  .landing-hero h1 { font-size: 4.2rem; }
  .hero-visual { min-height: 360px; max-width: 720px; width: 100%; margin-inline: auto; }
  .hero-chooser { max-width: 480px; margin-inline: auto; width: 100%; }
  .feature-grid, .case-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .author-inner { grid-template-columns: 220px minmax(0, 1fr); }
  .author-photo { width: 220px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-side { position: static; }
}
/* Nav: ab Tablet-Portrait Hamburger (Desktop-Nav passt sonst nicht in die Breite) */
@media (max-width: 960px) {
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 12px; }
  .nav.open .nav-links { display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 12px var(--gut) 24px;
    background: rgba(9,18,35,.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--navy-line); }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--navy-line); }
  .nav.open .nav-links a::after { display: none; }
  .nav.open .btn { display: inline-flex; margin-top: 14px; }
  .nav.open { position: static; }
}
@media (max-width: 760px) {
  .hero { min-height: auto; padding-top: 120px; }
  .landing-hero { min-height: 86svh; }
  .landing-hero h1 { font-size: 3.15rem; }
  .choice-grid, .split, .video-grid, .feature-grid, .case-grid, .metrics, .journey-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 300px; aspect-ratio: 4 / 3; border-radius: var(--r); }
  .hero-mini-metrics { top: 12px; left: 12px; right: 12px; grid-template-columns: 1fr 1fr; }
  .hero-mini-metrics span { justify-content: center; }
  .hero-visual-card { left: 14px; right: 14px; bottom: 14px; width: auto; padding: 16px; }
  .author-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .author-copy .eyebrow { justify-content: center; }
  .author-copy .section-lead { margin-inline: auto; }
  .author-actions { justify-content: center; }
  .metrics { border-radius: var(--r-lg); }
  .opts.cols-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn, .final-cta .btn { width: 100%; }
  .btn { white-space: normal; }
  .split-card .btn { width: 100%; }
  .whatsapp-fab { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}

/* Legal-Header: redundanten "Zur Startseite"-Button auf Phones ausblenden
   (Body enthält bereits einen Zurück-Link, das Logo verlinkt ebenfalls nach Hause) */
@media (max-width: 480px) {
  .header-inner > .btn { display: none; }
  .landing-hero h1 { font-size: 2.55rem; }
  .author-photo { width: 190px; }
  .author-actions .btn { width: 100%; }
}

/* very small phones */
@media (max-width: 360px) {
  .brand-name { font-size: .92rem; letter-spacing: .02em; }
  .brand-sub { display: none; }
  :root { --gut: 16px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .15s !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .line { opacity: 1; transform: none; }
}
