/* ============================================================
   LIONIST MEDIA — Brand design system
   Schwarz & Gold · Montserrat (Headlines, UPPERCASE) + Open Sans
   Gold #D4AF37 · Akzent #FDE672 · Schwarz #000 · Hellgrau #D9D9D9
   Werte: Stärke · Mut · Leadership
   ============================================================ */

:root {
  --gold:       #D4AF37;
  --gold-bri:   #FDE672;
  --gold-deep:  #B8932B;
  --gold-grad:  linear-gradient(104deg, #B8932B 0%, #D4AF37 30%, #FDE672 52%, #D4AF37 72%, #B8932B 100%);

  --black:      #000000;
  --bg:         #000000;
  --panel:      #0E0E0E;
  --panel-2:    #161616;
  --hr-d:       rgba(255,255,255,0.10);

  --paper:      #F5F3ED;
  --paper-2:    #FFFFFF;
  --ink:        #0A0A0A;
  --ink-soft:   rgba(10,10,10,0.70);
  --ink-mute:   rgba(10,10,10,0.52);
  --hr-l:       rgba(10,10,10,0.12);
  --hellgrau:   #D9D9D9;

  --w-soft:     rgba(255,255,255,0.74);
  --w-mute:     rgba(255,255,255,0.52);

  --display: 'Montserrat', system-ui, sans-serif;
  --body:    'Open Sans', system-ui, sans-serif;

  --maxw: 1240px;
  --padx: clamp(22px, 6.4vw, 92px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: #fff;
  font-family: var(--body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }
::selection { background: var(--gold); color: #000; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--padx); padding-right: var(--padx); }
.sec  { padding: clamp(74px, 11vw, 138px) 0; position: relative; overflow: hidden; }
.on-dark  { background: var(--bg);      color: #fff; }
.on-dark2 { background: #070707;        color: #fff; }
.on-light { background: var(--paper);   color: var(--ink); }

/* ---------- type ---------- */
h1,h2,h3,h4 { margin: 0; font-family: var(--display); font-weight: 800; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
}
.eyebrow .dot { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex: 0 0 auto; }

.h-display {
  font-size: clamp(38px, 5vw, 70px); line-height: 1.04; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.h-section {
  font-size: clamp(30px, 4vw, 50px); line-height: 1.07; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.008em;
}
.h-card {
  font-family: var(--display); font-weight: 700; font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.16; letter-spacing: 0.005em;
}
.accent {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; /* metallic gold */
}
.lead { font-family: var(--body); font-size: clamp(16.5px, 1.3vw, 19px); line-height: 1.62; font-weight: 400; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px; white-space: nowrap;
  font-family: var(--display); font-weight: 700; font-size: 14.5px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 17px 28px; border-radius: 4px; border: 1px solid transparent;
  text-decoration: none; transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
}
.btn svg { flex: 0 0 auto; }
.btn-gold { background: var(--gold-grad); color: #000; box-shadow: 0 16px 38px -16px rgba(212,175,55,0.6); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -16px rgba(212,175,55,0.8); }
.btn-ghost-d { background: transparent; color: #fff; border-color: rgba(255,255,255,0.26); }
.btn-ghost-d:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-l { background: transparent; color: var(--ink); border-color: rgba(10,10,10,0.22); }
.btn-ghost-l:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.txtlink { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display);
  font-weight: 600; font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; }

/* ---------- bits ---------- */
.tick { display: inline-block; width: 44px; height: 1px; background: var(--gold); vertical-align: middle; }
.rule { height: 1px; background: var(--hr-d); border: 0; }

/* ============================================================ NAV */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(0,0,0,0.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--hr-d); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.brand .wm { font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; line-height: 1; }
.brand .wm b { font-weight: 800; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-family: var(--display); color: var(--w-soft); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; padding: 12px 22px; border: 1px solid rgba(212,175,55,0.45); border-radius: 4px; color: var(--gold); text-decoration: none; white-space: nowrap; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--gold); color: #000; }
@media (max-width: 880px){ .nav-links { display: none; } }

/* ============================================================ HERO */
.hero-grid { display: grid; grid-template-columns: 1.26fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.hero-glow { position: absolute; top: -180px; right: -160px; width: 680px; height: 680px; pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 64%); }
.hero h1 { max-width: 16ch; margin-top: 26px; }
.hero .lead { color: var(--w-mute); max-width: 52ch; margin: 28px 0 0; }
.hero-cta { display: flex; align-items: center; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.play-dot { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold); display: inline-flex; align-items: center; justify-content: center; color: var(--gold); transition: background .2s; }
.txtlink:hover .play-dot { background: rgba(212,175,55,0.14); }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 48px; color: var(--w-mute); font-size: 14px; font-family: var(--display); font-weight: 500; letter-spacing: 0.02em; }

.portrait-wrap { position: relative; justify-self: end; }
.portrait-frame { position: absolute; inset: 22px -22px -22px 22px; border: 1px solid rgba(212,175,55,0.55); border-radius: 4px; }
.portrait { position: relative; width: clamp(300px, 33vw, 432px); height: clamp(384px, 42vw, 552px); border-radius: 4px; overflow: hidden;
  box-shadow: 0 50px 90px -44px rgba(0,0,0,0.9); background: #111; }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.badge { position: absolute; left: -34px; bottom: 42px; background: rgba(0,0,0,0.86); border: 1px solid rgba(212,175,55,0.4);
  border-radius: 6px; padding: 17px 24px; min-width: 230px; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.9); }
.badge .k { font-family: var(--display); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; white-space: nowrap; }
.badge .v { font-family: var(--display); font-weight: 800; font-size: 27px; margin-top: 6px; line-height: 1; white-space: nowrap; }
@media (max-width: 880px){ .hero-grid { grid-template-columns: 1fr; } .portrait-wrap { justify-self: start; margin-top: 14px; } }

/* ============================================================ section head */
.sec-head { max-width: 760px; }
.sec-head .h-section { margin-top: 22px; }
.sec-head .lead { margin-top: 22px; }
.on-light .sec-head .lead { color: var(--ink-mute); }
.on-dark .sec-head .lead, .on-dark2 .sec-head .lead { color: var(--w-mute); }

/* ============================================================ PROBLEM cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 58px; }
.pcard { border-radius: 8px; padding: 34px 30px 36px; position: relative; }
.on-light .pcard { background: var(--paper-2); border: 1px solid var(--hr-l); }
.on-dark .pcard, .on-dark2 .pcard { background: var(--panel); border: 1px solid var(--hr-d); }
.pcard .topbar { position: absolute; top: 0; left: 30px; width: 40px; height: 3px; background: var(--gold-grad); border-radius: 0 0 3px 3px; }
.pcard .num { font-family: var(--display); font-size: 30px; font-weight: 800; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pcard h3 { margin: 16px 0 11px; text-transform: uppercase; letter-spacing: 0.01em; }
.pcard p { margin: 0; font-size: 15.5px; line-height: 1.6; }
.on-light .pcard p { color: var(--ink-mute); }
.on-dark .pcard p, .on-dark2 .pcard p { color: var(--w-mute); }
.closing { display: flex; align-items: center; gap: 16px; margin-top: 52px; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(18px,1.8vw,24px); }
@media (max-width: 920px){ .cards-3 { grid-template-columns: 1fr; } }

/* ============================================================ SYSTEM diagram + accordion */
.sys-grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(40px,6vw,88px); align-items: center; margin-top: 60px; }

/* Mobile: zweispaltige sys-grid stackt. In der Einwände-Section ist die
   linke Spalte ein rein dekoratives Portrait — auf Mobile blenden wir es
   aus, damit das Akkordeon (eigentlicher Inhalt) den vollen Viewport
   bekommt und nichts in den Rand quetscht. */
@media (max-width: 920px){
  .sys-grid { grid-template-columns: 1fr; }
  #einwaende .sys-grid > .media { display: none; }
}
.diagram { position: relative; padding: 10px 0; text-align: center; }
.dg-node { display: block; text-align: center; background: var(--panel); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px; padding: 22px 24px; max-width: 300px; margin: 0 auto; box-shadow: 0 30px 60px -34px rgba(212,175,55,0.4); }
.dg-node .k { font-family: var(--display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.dg-node .v { font-family: var(--display); font-weight: 800; font-size: 26px; line-height: 1; margin-top: 5px; text-transform: uppercase; }
.dg-stem { width: 2px; height: 40px; margin: 0 auto; background: linear-gradient(var(--gold), rgba(212,175,55,0.35)); }

/* highlighted main-platform hub */
.dg-hub { display: inline-flex; flex-direction: column; align-items: center; gap: 7px;
  background: rgba(212,175,55,0.08); border: 1.5px solid var(--gold); border-radius: 10px;
  padding: 18px 38px; box-shadow: 0 26px 54px -30px rgba(212,175,55,0.55); }
.dg-hub-tag { font-family: var(--display); font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }
.dg-hub-main { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: 0.01em; }
.chip-ic-lg { width: 28px; height: 28px; }
.chip-ic-lg svg { width: 28px; height: 28px; }

/* branching connectors (fine gold) */
.dg-connect { position: relative; height: 36px; }
.dg-connect span { position: absolute; background: rgba(212,175,55,0.55); }
.dg-connect .c-v { left: 50%; top: 0; width: 2px; height: 18px; transform: translateX(-50%); }
.dg-connect .c-h { top: 18px; left: 10%; right: 10%; height: 2px; }
.dg-connect .c-drop { top: 18px; width: 2px; height: 18px; transform: translateX(-50%); }

.chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.chips.chips-5 { grid-template-columns: repeat(5, 1fr); }
.chip { display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--hr-d); border-radius: 6px;
  padding: 15px 8px; font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--w-soft);
  background: rgba(255,255,255,0.02); transition: border-color .2s, color .2s, transform .2s; }
.chip:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.chip.chip-sm { flex-direction: column; gap: 8px; padding: 14px 6px; font-size: 11.5px; text-align: center; min-height: 78px; }
.chip-sm .chip-nm { line-height: 1.15; }
.chip .gdot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
.chip-ic { width: 20px; height: 20px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; color: inherit; }
.chip-ic svg { width: 20px; height: 20px; display: block; }
@media (max-width: 620px){
  .chips.chips-5 { grid-template-columns: repeat(3, 1fr); }
  .dg-connect .c-h, .dg-connect .c-drop { display: none; }
  .dg-connect .c-v { height: 100%; }
}

.acc-item { border-top: 1px solid var(--hr-d); }
.on-light .acc-item { border-top-color: var(--hr-l); }
.acc-item:last-child { border-bottom: 1px solid var(--hr-d); }
.on-light .acc-item:last-child { border-bottom-color: var(--hr-l); }
.acc-btn { width: 100%; background: none; border: 0; color: inherit; text-align: left; display: flex; align-items: center; gap: 18px; padding: 24px 4px; }
.acc-num { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; width: 26px; flex: 0 0 auto; }
.acc-title { font-family: var(--display); font-weight: 700; font-size: clamp(16px,1.5vw,21px); text-transform: uppercase; letter-spacing: 0.005em; flex: 1; }
.acc-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid currentColor; opacity: .45; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; transition: transform .3s, opacity .2s, background .2s, color .2s, border-color .2s; }
.acc-btn:hover .acc-icon { opacity: 1; }
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: #000; opacity: 1; }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.acc-panel-in { padding: 0 50px 26px 44px; line-height: 1.6; font-size: 15.5px; }
.on-dark .acc-panel-in, .on-dark2 .acc-panel-in { color: var(--w-mute); }
.on-light .acc-panel-in { color: var(--ink-mute); }

/* ============================================================ PROCESS timeline */
.proc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px,6vw,84px); align-items: start; }
.proc-left { position: sticky; top: 120px; }
.tl { position: relative; padding-left: 38px; }
.tl::before { content:''; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 2px; background: var(--hr-d); }
.on-light .tl::before { background: var(--hr-l); }
.tl-step { position: relative; padding-bottom: 26px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -38px; top: 28px; width: 15px; height: 15px; border-radius: 50%; background: var(--gold-grad); box-shadow: 0 0 0 5px var(--bg); }
.on-light .tl-dot { box-shadow: 0 0 0 5px var(--paper); }
.tl-card { border-radius: 10px; padding: 28px 32px; }
.on-dark .tl-card, .on-dark2 .tl-card { background: var(--panel); border: 1px solid var(--hr-d); }
.on-light .tl-card { background: var(--paper-2); border: 1px solid var(--hr-l); }
.tl-card .ic { width: 42px; height: 42px; color: var(--gold); }
.tl-card h3 { margin: 16px 0 9px; text-transform: uppercase; letter-spacing: 0.01em; }
.tl-card p { margin: 0; line-height: 1.58; font-size: 15.5px; }
.on-dark .tl-card p, .on-dark2 .tl-card p { color: var(--w-mute); }
.on-light .tl-card p { color: var(--ink-mute); }
@media (max-width: 920px){ .proc-grid { grid-template-columns: 1fr; } .proc-left { position: static; } }

/* ============================================================ STATS + CASE */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 6px 34px; border-left: 1px solid var(--hr-l); }
.on-dark .stat, .on-dark2 .stat { border-left-color: var(--hr-d); }
.stat:first-child { padding-left: 0; border-left: 0; }
.stat .big { font-family: var(--display); font-weight: 800; font-size: clamp(38px,4.4vw,60px); line-height: 1; letter-spacing: -0.01em;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { margin-top: 13px; font-size: 15px; line-height: 1.45; }
.on-light .stat .lbl { color: var(--ink-soft); }
.on-light .stat .lbl b { color: var(--ink); }
.on-dark .stat .lbl, .on-dark2 .stat .lbl { color: var(--w-mute); }

.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,70px); align-items: center; }
.media { position: relative; border-radius: 12px; overflow: hidden; background: #111; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.v { aspect-ratio: 16/10; }
.play-btn { position: absolute; inset: 0; margin: auto; width: 78px; height: 56px; border-radius: 14px; background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 50px -16px rgba(0,0,0,0.6); }
.play-btn svg { fill: #000; }

.quote-block { border-radius: 14px; padding: clamp(34px,4vw,52px); }
.on-light .quote-block { background: var(--paper-2); border: 1px solid var(--hr-l); }
.on-dark .quote-block, .on-dark2 .quote-block { background: var(--panel); border: 1px solid var(--hr-d); }
.quote-block .q { font-family: var(--body); font-size: clamp(20px,2.1vw,28px); line-height: 1.4; font-weight: 400; }
.on-light .quote-block .q { color: var(--ink-mute); }
.on-light .quote-block .q b { color: var(--ink); font-weight: 700; }
.on-dark .quote-block .q, .on-dark2 .quote-block .q { color: var(--w-mute); }
.on-dark .quote-block .q b, .on-dark2 .quote-block .q b { color: #fff; font-weight: 700; }
.quote-author { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.quote-author .av { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: #222; }
.quote-author .nm { font-family: var(--display); font-weight: 700; font-size: 15px; }
.quote-author .ro { font-size: 13.5px; }
.on-light .quote-author .ro { color: var(--ink-mute); }
.on-dark .quote-author .ro, .on-dark2 .quote-author .ro { color: var(--w-mute); }
@media (max-width: 920px){ .case-grid, .stats { grid-template-columns: 1fr; } .stat { border-left: 0; padding: 16px 0; border-top: 1px solid var(--hr-l); } .stat:first-child { border-top: 0; } }

/* ============================================================ TESTIMONIAL grid */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.tcard { border-radius: 12px; overflow: hidden; }
.on-light .tcard { background: var(--paper-2); border: 1px solid var(--hr-l); }
.on-dark .tcard, .on-dark2 .tcard { background: var(--panel); border: 1px solid var(--hr-d); }
.tcard .thumb { position: relative; aspect-ratio: 16/10; background: #111; }
/* Jacob video thumb: face in upper third, smaller play button in lower third */
.thumb.thumb-play img { object-position: 50% 18%; }
.thumb.thumb-play .play-btn { inset: auto; left: 50%; bottom: 14%; transform: translateX(-50%); width: 60px; height: 44px; border-radius: 12px; }
.thumb.thumb-play .play-btn svg { width: 18px; height: 18px; }
.tcard .body { padding: 26px 26px 28px; }
.tcard .body p { margin: 0 0 14px; line-height: 1.55; font-size: 15.5px; }
.verify-link { display: inline-flex; align-items: center; gap: 5px; font-family: var(--display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em; color: var(--gold-deep); text-decoration: none; margin-bottom: 22px; transition: color .2s, opacity .2s; }
.verify-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.verify-link .vl-arr { font-size: 12px; }
.on-light .tcard .body p { color: var(--ink-soft); }
.on-dark .tcard .body p, .on-dark2 .tcard .body p { color: var(--w-soft); }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .av { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: #222; }
.tcard .who .nm { font-family: var(--display); font-weight: 700; font-size: 14.5px; }
.tcard .who .ro { font-size: 13px; }
.on-light .tcard .who .ro { color: var(--ink-mute); }
.on-dark .tcard .who .ro, .on-dark2 .tcard .who .ro { color: var(--w-mute); }
@media (max-width: 980px){ .tgrid { grid-template-columns: 1fr; } }

/* ============================================================ UNIFIED CARD SHADOW
   Problem cards, testimonial cards, timeline step cards, system diagram tiles
   (drehtag box, YouTube hub, platform chips). Soft diffuse float + hover lift.
   !important sorgt dafür, dass die Regel auch im theme-light durchgreift
   (theme-light hat einen separat-spezifischeren Selektor, aber dort wird kein
   box-shadow mehr gesetzt — die Borders werden aber dort weiterhin gepflegt). */
.pcard, .tcard, .tl-card, .dg-node, .dg-hub, .chip {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 10px 28px rgba(0, 0, 0, 0.14) !important;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease, color .2s ease;
}
.pcard:hover, .tcard:hover, .tl-card:hover, .dg-node:hover, .dg-hub:hover, .chip:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10), 0 18px 44px rgba(0, 0, 0, 0.18) !important;
  transform: translateY(-4px);
}

/* ============================================================ ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1.04fr; gap: clamp(40px,6vw,86px); align-items: center; }
.about-collage { position: relative; height: 580px; }
.about-collage .ph { position: absolute; border-radius: 8px; overflow: hidden; background: #111; }
.about-collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.about-collage .main { left: 0; top: 0; width: 62%; height: 100%; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8); }
.about-collage .s1 { right: 0; top: 12%; width: 44%; height: 40%; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); border: 1px solid rgba(212,175,55,0.25); }
.about-collage .s2 { right: 6%; bottom: 4%; width: 48%; height: 38%; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }
.about-body p { color: var(--w-soft); line-height: 1.72; margin: 0 0 16px; font-size: 16.5px; }
.about-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.social-row { display: flex; align-items: center; gap: 10px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: var(--w-soft); transition: border-color .2s, color .2s; }
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 920px){ .about-grid { grid-template-columns: 1fr; } .about-collage { height: 440px; } }

/* ============================================================ FINAL CTA */
.cta-band { text-align: center; }
.cta-glow { position: absolute; left: 50%; top: 30%; width: 760px; height: 520px; transform: translateX(-50%); pointer-events: none;
  background: radial-gradient(ellipse, rgba(212,175,55,0.16) 0%, transparent 66%); }
.cta-band .h-section { max-width: 20ch; margin: 22px auto 0; }
.cta-band .lead { max-width: 56ch; margin: 22px auto 0; color: var(--w-mute); }
.cta-band .btn { margin-top: 38px; }
.cta-scarcity { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--w-mute); }
.cta-scarcity .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(212,175,55,0.5);} 70%{box-shadow:0 0 0 11px rgba(212,175,55,0);} 100%{box-shadow:0 0 0 0 rgba(212,175,55,0);} }

/* ============================================================ FOOTER */
.footer { border-top: 1px solid var(--hr-d); padding-top: clamp(58px,8vw,88px); padding-bottom: 46px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 38px; }
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand p { color: var(--w-mute); font-size: 14.5px; line-height: 1.9; margin: 0; }
.foot-claim { color: var(--ink); font-weight: 700; }
.foot-grid h4 { font-family: var(--display); font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; }
.foot-col { display: flex; flex-direction: column; gap: 13px; }
.foot-col a { color: var(--w-mute); font-size: 14.5px; text-decoration: none; transition: color .2s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--hr-d); color: var(--w-mute); font-size: 13px; }
.foot-mail { display: inline-flex; align-items: center; gap: 9px; }
.foot-mail-ic { display: inline-flex; opacity: 0.7; }
.foot-social { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.foot-social a { display: inline-flex; line-height: 0; border-radius: 6px; transition: transform .2s ease, filter .2s ease; }
.foot-social a:hover { transform: translateY(-2px); filter: brightness(1.06); }
.foot-legal { display: flex; align-items: center; gap: 18px; }
.foot-legal-lbl { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.foot-legal a { text-decoration: none; }
@media (max-width: 620px){ .foot-bottom { flex-direction: column; align-items: flex-start; gap: 18px; } }
@media (max-width: 920px){ .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- reveal: content always visible (preview engine freezes time-based animation) ---------- */
.reveal { opacity: 1; }

/* ============================================================ TESTIMONIAL 2-col */
.tgrid.tgrid-2 { grid-template-columns: 1fr 1fr; max-width: 980px; margin-left: auto; margin-right: auto; }
.thumb.thumb-play { cursor: pointer; }
@media (max-width: 860px){ .tgrid.tgrid-2 { grid-template-columns: 1fr; } }

/* ============================================================ VIDEO LIGHTBOX */
.lb-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(6,6,8,0.82); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px; animation: lbFade .22s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb-frame { position: relative; height: 80vh; aspect-ratio: 9 / 16; max-width: 92vw; border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8); background: #000; }
/* .lb-video kann ein <video> oder <iframe> sein.
   object-fit: contain gilt nur für video (für iframe wirkungslos, aber harmlos).
   iframes brauchen explizit border: 0. */
.lb-video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; border: 0; }
.lb-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.5); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s; }
.lb-close:hover { background: rgba(0,0,0,0.75); border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
@media (max-width: 600px){
  .lb-backdrop { padding: 0; }
  .lb-frame { height: 100vh; width: 100vw; max-width: 100vw; aspect-ratio: auto; border-radius: 0; }
}

/* ============================================================ FALLSTUDIE placeholder */
.case-tag { display: inline-block; font-family: var(--display); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-deep); border: 1px solid rgba(176,141,76,0.4); border-radius: 999px; padding: 7px 14px; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.case-metric { border: 1px dashed rgba(10,10,10,0.2); border-radius: 8px; padding: 16px 12px; text-align: center; }
.on-dark .case-metric, .on-dark2 .case-metric { border-color: rgba(255,255,255,0.18); }
.case-metric .cm-big { font-family: var(--display); font-weight: 800; font-size: 30px; line-height: 1; color: var(--gold-deep); }
.case-metric .cm-lbl { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; opacity: 0.6; }

/* ============================================================ LEAD FORM */
.lead-form { margin-top: 34px; text-align: left; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px){ .field-row { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--display); font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 8px; color: var(--w-soft); }
.field label .opt { text-transform: none; letter-spacing: 0; font-weight: 500; opacity: 0.6; }
.field input { width: 100%; font-family: var(--body); font-size: 16px; padding: 14px 16px; border-radius: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--hr-d); color: inherit; transition: border-color .2s, background .2s; }
.field input::placeholder { color: var(--w-mute); opacity: 0.7; }
.field input:focus { outline: none; border-color: var(--gold); background: rgba(212,175,55,0.06); }
.form-note { font-size: 14px; line-height: 1.55; color: var(--w-mute); margin: 18px 0 0; text-align: center; }
.form-done { margin-top: 34px; padding: 40px 30px; border: 1px solid rgba(212,175,55,0.4); border-radius: 12px; background: rgba(212,175,55,0.05); }
.form-done-mark { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #000; background: var(--gold-grad); }
.cta-scarcity { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-family: var(--body);
  font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--w-mute); }
