/* ============================================================
   payroll · consulting — Design-Entwurf
   Schriften lokal gehostet (DSGVO): keine externen Requests.
   ============================================================ */

/* ---------- 1. Fonts ---------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/archivo-black-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/archivo-black-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- 2. Tokens ---------- */
:root {
  /* Farbe */
  --paper:       #f7f3ea;
  --paper-warm:  #f1ebde;
  --paper-pure:  #fffdf8;
  --line:        #e2d9c6;
  --line-soft:   #ece5d6;
  --ink:         #111621;
  --ink-70:      #4a5262;
  --ink-55:      #6b7383;
  --navy:        #123155;
  --navy-deep:   #0b2038;
  --navy-ink:    #071628;
  --gold:        #b89b67;
  --gold-bright: #cbaf74;

  /* Raster */
  --maxw:   1240px;
  --maxw-n: 980px;              /* schmalere Textspalte */
  --gutter: clamp(22px, 5.2vw, 64px);

  /* Vertikaler Rhythmus — großzügig, aber kontrolliert */
  --sy:      clamp(96px, 12.5vw, 190px);   /* Sektionsabstand */
  --sy-half: clamp(56px, 7vw, 104px);

  /* Abstandsskala */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 88px; --s-10: 120px;

  /* Typografie — fluide Skala */
  --fs-hero:  clamp(3.05rem, 10.2vw, 8.75rem);
  --fs-h2:    clamp(2.05rem, 5.1vw, 4.15rem);
  --fs-h3:    clamp(1.28rem, 2.05vw, 1.72rem);
  --fs-h4:    clamp(1.02rem, 1.35vw, 1.16rem);
  --fs-lead:  clamp(1.06rem, 1.45vw, 1.3rem);
  --fs-body:  clamp(1rem, 1.02vw, 1.07rem);
  --fs-small: 0.905rem;
  --fs-label: clamp(0.66rem, 0.78vw, 0.735rem);

  --ls-hero:  -0.035em;
  --ls-h2:    -0.028em;
  --ls-label:  0.2em;

  /* Deutsche Versalien brauchen Platz fuer Umlautpunkte (Ä steigt 0.885em)
     und Kommas (0.183em unter der Grundlinie) — darunter ueberschneiden
     sich die Zeilen. Gemessen an Archivo Black, nicht geschaetzt. */
  --lh-hero: 1.08;
  --lh-h2:   1.06;
  --lh-body: 1.65;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 3. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--navy); color: var(--paper); }

.skip-link {
  position: absolute; left: var(--s-4); top: var(--s-4);
  transform: translateY(-160%);
  background: var(--navy); color: var(--paper);
  padding: 12px 20px; z-index: 200; border-radius: 2px;
  font-size: var(--fs-small); font-weight: 600; text-decoration: none;
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ---------- 4. Layout ---------- */
.wrap {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: calc(var(--maxw-n) + var(--gutter) * 2); }

.section { padding-block: var(--sy); position: relative; }
.section--tight { padding-block: var(--sy-half); }

/* Zarte Trennlinie zwischen hellen Sektionen */
.section + .section:not(.section--dark)::before {
  content: '';
  position: absolute; inset-inline: var(--gutter); top: 0; height: 1px;
  background: var(--line);
}
.section--dark + .section::before,
.section--dark::before { display: none !important; }

.section--dark {
  background: var(--navy-deep);
  color: #e7e2d6;
  --ink: #f4f0e6;
  --ink-70: #a9b4c4;
  --ink-55: #8b97a9;
  --line: rgba(255,255,255,.14);
  --line-soft: rgba(255,255,255,.08);
  --paper-pure: rgba(255,255,255,.045);
}

/* ---------- 5. Typografie-Bausteine ---------- */
.label {
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-55);
  line-height: 1.4;
}

/* Kapitelmarke: 01 / UNSERE PHILOSOPHIE */
.chapter {
  display: flex; align-items: baseline; gap: var(--s-4);
  margin-bottom: clamp(28px, 3.4vw, 44px);
}
.chapter__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--fs-label);
  letter-spacing: .08em;
  color: var(--gold);
  padding-bottom: 2px;
}
.chapter__rule { flex: 0 0 clamp(28px, 5vw, 64px); height: 1px; background: var(--gold); opacity: .55; align-self: center; }
.chapter__title { font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; font-weight: 600; color: var(--ink-55); }

h1, h2, h3 { font-weight: 400; }

.h-display {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--fs-hero);
  line-height: var(--lh-hero);
  letter-spacing: var(--ls-hero);
  text-transform: uppercase;
  text-wrap: balance;
}
.h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 16ch;
}
.h2--wide { max-width: 21ch; }
.h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.24;
  letter-spacing: -0.014em;
  text-wrap: balance;
}

/* Wichtig: großzügiger Abstand nach jeder Überschrift */
.h2 + .lead, .h-display + .lead { margin-top: clamp(26px, 3vw, 42px); }
.h3 + p { margin-top: var(--s-4); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.62;
  color: var(--ink-70);
  max-width: 56ch;
}
.body-text { max-width: 62ch; color: var(--ink-70); }
.body-text + .body-text { margin-top: var(--s-4); }
.lead + .body-text { margin-top: clamp(18px, 2vw, 26px); }
.body-text strong { color: var(--ink); font-weight: 600; }

.accent { color: var(--gold); }

/* ---------- 6. Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 28px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: var(--fs-small); font-weight: 600;
  letter-spacing: .045em;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  border-radius: 2px;
  position: relative; overflow: hidden;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .3s var(--ease);
  cursor: pointer;
}
.btn__arrow { transition: transform .4s var(--ease-out); flex: none; }
.btn:hover { background: var(--navy-ink); border-color: var(--navy-ink); transform: translateY(-2px); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #14202f; }
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

/* Textlink mit Unterstrich-Animation */
.link-u {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-small); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; padding-block: 6px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .45s var(--ease-out), color .3s var(--ease);
}
.link-u:hover { background-size: 0% 1px; color: var(--gold); }
.link-u svg { transition: transform .4s var(--ease-out); }
.link-u:hover svg { transform: translateX(5px); }

/* ---------- 7. Header ---------- */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
  height: 78px;
}
.header.is-stuck {
  background: rgba(247, 243, 234, .88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
}
.header.is-stuck .brand, .header.is-stuck .nav a, .header.is-stuck .lang { color: var(--ink); }
.header.is-stuck .lang { border-color: var(--line); }

.brand {
  display: flex; align-items: center; gap: 13px; line-height: 1;
  text-decoration: none; color: var(--paper);
  transition: color .45s var(--ease);
  flex: none;
}
.brand__words { display: flex; flex-direction: column; line-height: 1; }
.brand__mark {
  position: relative; display: block;
  width: 34px; height: 54px; flex: none;
  transition: transform .5s var(--ease-out);
}
.brand__mark-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity .45s var(--ease);
}
.brand__mark-img--light { opacity: 0; }
.header.is-stuck .brand__mark-img--dark  { opacity: 0; }
.header.is-stuck .brand__mark-img--light { opacity: 1; }
.brand__mark--static { position: static; width: 28px; height: 45px; }
.brand:hover .brand__mark { transform: translateY(-2px); }
.brand__name { font-family: 'Archivo Black', sans-serif; font-size: 1.02rem; letter-spacing: -.02em; }
.brand__sub { font-size: .55rem; letter-spacing: .34em; text-transform: uppercase; margin-top: 5px; opacity: .72; font-weight: 600; }

.nav { display: flex; gap: clamp(16px, 2.1vw, 32px); }
.nav a {
  color: var(--paper);
  font-size: var(--fs-label);
  letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  text-decoration: none; padding-block: 8px;
  transition: color .35s var(--ease), opacity .35s var(--ease);
  position: relative; opacity: .82;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 2px; height: 1px; width: 0;
  background: var(--gold); transition: width .4s var(--ease-out);
}
.nav a:hover, .nav a[aria-current="true"] { opacity: 1; }
.nav a:hover::after, .nav a[aria-current="true"]::after { width: 100%; }

.header__right { display: flex; align-items: center; gap: var(--s-4); flex: none; }
.lang {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 3px;
  color: var(--paper); transition: color .45s var(--ease), border-color .45s var(--ease);
}
.lang button {
  border: 0; background: transparent; cursor: pointer;
  font-size: .66rem; letter-spacing: .14em; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; color: inherit; opacity: .6;
  transition: background .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.lang button[aria-pressed="true"] { background: var(--gold); color: #14202f; opacity: 1; }

.header .btn { padding: 13px 22px; }
.header:not(.is-stuck) .btn {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.32); color: var(--paper);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.header:not(.is-stuck) .btn:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

.burger { display: none; }

/* Lesefortschritt */
.progress {
  position: absolute; left: 0; bottom: -1px; height: 2px;
  background: var(--gold); width: 0;
  transition: opacity .3s var(--ease);
  opacity: 0;
}
@supports (animation-timeline: scroll()) {
  .progress {
    animation: readProgress linear both;
    animation-timeline: scroll(root block);
  }
}
@keyframes readProgress { from { width: 0; } to { width: 100%; } }
.header.is-stuck .progress { opacity: 1; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex; align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(56px, 7vw, 92px);
  overflow: clip;
  background: var(--navy-ink);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 55%;
  transform: scale(1.08);
  will-change: transform;
}
/* Parallaxe rein per CSS — blockiert das Scrollen nie */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero__media img {
      animation: heroPar linear both;
      animation-timeline: view(block);
      animation-range: contain 0% contain 100%;
    }
  }
}
@keyframes heroPar {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to   { transform: scale(1.08) translate3d(0, 7%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(7,22,40,.94) 0%, rgba(7,22,40,.74) 32%, rgba(7,22,40,.28) 62%, rgba(7,22,40,.42) 100%),
    linear-gradient(to right, rgba(7,22,40,.7) 0%, rgba(7,22,40,.1) 62%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; color: var(--paper); }
.hero .label { color: rgba(247,243,234,.72); }
.hero__eyebrow { display: flex; align-items: center; gap: var(--s-4); margin-bottom: clamp(26px, 3.2vw, 40px); }
.hero__eyebrow .rule { width: clamp(30px, 5vw, 56px); height: 1px; background: var(--gold); }
.hero h1 { color: var(--paper); max-width: 14ch; }
.hero__lead {
  margin-top: clamp(30px, 3.6vw, 46px);
  max-width: 54ch;
  color: rgba(247,243,234,.82);
  font-size: var(--fs-lead);
  line-height: 1.64;
}
.hero__actions {
  margin-top: clamp(38px, 4.6vw, 58px);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-5) var(--s-7);
}
.hero__actions .link-u { color: rgba(247,243,234,.9); }
.hero__meta {
  position: absolute; right: var(--gutter); top: clamp(110px, 14vh, 150px);
  z-index: 2; text-align: right; color: rgba(247,243,234,.75);
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.hero__meta .n { font-family: 'Archivo Black', sans-serif; font-size: .8rem; color: var(--gold-bright); letter-spacing: .06em; text-shadow: 0 1px 12px rgba(7,22,40,.6); }
.scroll-cue {
  position: absolute; right: var(--gutter); bottom: 24px;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(247,243,234,.5); font-size: .62rem; letter-spacing: .24em; text-transform: uppercase;
}
.scroll-cue span.bar {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%,100% { opacity:.25; transform: scaleY(.55); transform-origin: top; } 50% { opacity:1; transform: scaleY(1); transform-origin: top; } }

/* ---------- 9. Split (Text + Bild) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%; height: auto; border-radius: 2px;
  box-shadow: 0 26px 70px -28px rgba(11,32,56,.42);
}
.split__badge {
  position: absolute; left: -18px; bottom: -18px;
  background: var(--paper-pure); border: 1px solid var(--line);
  padding: 16px 22px; border-radius: 2px;
  box-shadow: 0 16px 40px -22px rgba(11,32,56,.3);
  max-width: 230px;
}
.split__badge .n { font-family: 'Archivo Black', sans-serif; font-size: 1.5rem; letter-spacing: -.03em; display: block; }
.split__badge .t { font-size: .78rem; color: var(--ink-55); line-height: 1.4; margin-top: 4px; display: block; }

/* Kasten „Rechtlicher Rahmen" */
.note {
  margin-top: clamp(34px, 4vw, 50px);
  border-left: 2px solid var(--gold);
  padding: var(--s-4) 0 var(--s-4) var(--s-5);
  max-width: 58ch;
}
.note .label { margin-bottom: 10px; display: block; }
.note p { font-size: var(--fs-small); color: var(--ink-55); line-height: 1.66; }

/* ---------- 10. Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--paper-warm);
  padding-block: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
  --dur: 46s;
}
.marquee__track { display: flex; width: max-content; animation: slide var(--dur) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(.78rem, 1.1vw, .93rem);
  letter-spacing: .13em; text-transform: uppercase;
  padding-inline: clamp(16px, 1.8vw, 26px);
  white-space: nowrap; color: var(--ink);
}
.marquee__dot { color: var(--gold); font-size: .55rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ---------- 11. Kennzahlen ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(48px, 5.5vw, 72px);
}
.stat {
  background: var(--paper);
  padding: clamp(32px, 3.8vw, 48px) clamp(26px, 3vw, 40px);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.stat__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: .96; letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.stat__num .suf { color: var(--gold); }
.stat__label { font-size: var(--fs-small); color: var(--ink-55); line-height: 1.55; max-width: 30ch; }

/* ---------- 12. Kompetenzen (Tabs) ---------- */
.comp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(40px, 5.5vw, 84px);
  margin-top: clamp(46px, 5.5vw, 68px);
  align-items: start;
}
.comp__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.comp__btn {
  display: grid; grid-template-columns: auto 1fr auto; gap: var(--s-4);
  align-items: center;
  width: 100%; text-align: left;
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: clamp(20px, 2.3vw, 27px) 0;
  cursor: pointer; position: relative;
  transition: color .35s var(--ease);
}
.comp__btn::before {
  content: ''; position: absolute; left: -100vw; right: -12px; top: 0; bottom: 0;
  background: linear-gradient(to right, transparent 0%, rgba(184,155,103,.06) 92%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.comp__btn:hover::before { opacity: 1; }
.comp__btn[aria-selected="true"]::before { opacity: 1; }
.comp__n {
  font-family: 'Archivo Black', sans-serif; font-size: .72rem;
  color: var(--ink-55); letter-spacing: .06em;
  transition: color .35s var(--ease);
}
.comp__t {
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  font-weight: 600; letter-spacing: -.012em; line-height: 1.3;
  transition: color .35s var(--ease);
}
.comp__i { color: var(--ink-55); opacity: .5; transition: transform .45s var(--ease-out), opacity .35s var(--ease), color .35s var(--ease); }
.comp__btn[aria-selected="true"] .comp__n,
.comp__btn[aria-selected="true"] .comp__i { color: var(--gold); opacity: 1; }
.comp__btn[aria-selected="true"] .comp__i { transform: translateX(4px); }
.comp__btn:hover .comp__i { transform: translateX(4px); opacity: .9; }

.comp__panels { position: relative; }
.comp__panel { display: none; }
.comp__panel.is-active { display: block; animation: fadeUp .55s var(--ease-out) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .comp__panel.is-active { animation: none; } }
.comp__panel img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px;
  box-shadow: 0 26px 70px -30px rgba(11,32,56,.4);
}
.comp__body { margin-top: clamp(26px, 3vw, 34px); }
.comp__body .label { margin-bottom: var(--s-4); display: block; }
.comp__body p { color: var(--ink-70); max-width: 52ch; }
.comp__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s-5); }
.tag {
  font-size: .715rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-55);
}

/* ---------- 13. Sicherheit (dunkel) ---------- */
.secure { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.78fr); gap: clamp(40px, 6vw, 92px); align-items: center; }
.secure__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: clamp(38px, 4.4vw, 54px);
}
.secure__cell {
  background: var(--navy-deep); padding: clamp(26px, 3vw, 34px);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.secure__cell svg { color: var(--gold); margin-bottom: 2px; }
.secure__cell h3 { font-size: var(--fs-h4); font-weight: 600; letter-spacing: -.005em; line-height: 1.3; }
.secure__cell p { font-size: var(--fs-small); color: var(--ink-70); line-height: 1.55; }
.secure__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; }

/* ---------- 14. Zielgruppen ---------- */
.aud { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(20px, 2.4vw, 30px); margin-top: clamp(46px, 5.5vw, 68px); }
.card {
  background: var(--paper-pure); border: 1px solid var(--line);
  padding: clamp(28px, 3.2vw, 40px);
  border-radius: 2px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 58px -32px rgba(11,32,56,.4); border-color: var(--gold); }
.card__n { font-family: 'Archivo Black', sans-serif; font-size: .72rem; color: var(--gold); letter-spacing: .06em; }
.card h3 { margin-top: var(--s-5); font-size: var(--fs-h4); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; line-height: 1.3; }
.card p { margin-top: var(--s-4); font-size: var(--fs-small); color: var(--ink-70); line-height: 1.6; }
.card__rule { margin-top: var(--s-6); height: 1px; background: var(--line); }
.card__foot { margin-top: var(--s-4); font-size: .74rem; letter-spacing: .11em; text-transform: uppercase; color: var(--ink-55); font-weight: 600; }

.aud__strip { margin-top: clamp(46px, 5vw, 68px); position: relative; }
.aud__strip img { width: 100%; aspect-ratio: 21/8; object-fit: cover; object-position: 50% 62%; border-radius: 2px; }
.aud__quote {
  position: absolute; left: clamp(20px, 4vw, 56px); bottom: clamp(20px, 4vw, 48px);
  right: clamp(20px, 4vw, 56px);
  color: var(--paper);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  line-height: 1.2; letter-spacing: -.025em; text-transform: uppercase;
  max-width: 26ch; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(7,22,40,.5);
}
.aud__strip::after {
  content: ''; position: absolute; inset: 0; border-radius: 2px;
  background: linear-gradient(to top, rgba(7,22,40,.82), rgba(7,22,40,.18) 55%, transparent);
}
.aud__quote { z-index: 2; }

/* ---------- 15. FAQ ---------- */
.faq { margin-top: clamp(40px, 5vw, 60px); border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: transparent; border: 0; cursor: pointer;
  display: grid; grid-template-columns: auto 1fr auto; gap: var(--s-4) var(--s-5);
  align-items: center; text-align: left;
  padding: clamp(22px, 2.5vw, 30px) 0;
  transition: color .3s var(--ease);
}
.faq__q:hover { color: var(--navy); }
.faq__n { font-family: 'Archivo Black', sans-serif; font-size: .72rem; color: var(--gold); letter-spacing: .06em; }
.faq__t { font-size: clamp(1rem, 1.45vw, 1.18rem); font-weight: 600; letter-spacing: -.01em; line-height: 1.35; }
.faq__ic { position: relative; width: 15px; height: 15px; flex: none; }
.faq__ic::before, .faq__ic::after {
  content: ''; position: absolute; background: currentColor; border-radius: 1px;
  transition: transform .45s var(--ease-out), opacity .3s var(--ease);
}
.faq__ic::before { inset: 7px 0 7px 0; height: 1.5px; }
.faq__ic::after  { inset: 0 7px 0 7px; width: 1.5px; }
.faq__q[aria-expanded="true"] .faq__ic::after { transform: scaleY(0); opacity: 0; }
.faq__q[aria-expanded="true"] .faq__ic { color: var(--gold); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-out); }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  color: var(--ink-70); max-width: 62ch; font-size: var(--fs-small); line-height: 1.7;
  padding: 0 0 clamp(24px, 2.8vw, 32px) calc(var(--s-5) + 22px);
}
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* ---------- 16. CTA ---------- */
.cta { position: relative; overflow: clip; background: var(--navy-ink); color: var(--paper); isolation: isolate; }
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 55%; }
.cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(7,22,40,.95) 0%, rgba(7,22,40,.84) 45%, rgba(7,22,40,.42) 100%);
}
.cta__inner { padding-block: clamp(104px, 13vw, 190px); }
.cta .h2 { color: var(--paper); }
.cta__lead { margin-top: clamp(24px, 2.8vw, 36px); max-width: 50ch; color: rgba(247,243,234,.8); font-size: var(--fs-lead); line-height: 1.6; }
.cta__actions { margin-top: clamp(34px, 4vw, 50px); display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-5) var(--s-7); }
.cta__actions .link-u { color: rgba(247,243,234,.9); }
/* Wasserzeichen: die Marke gross und halbdurchsichtig hinter dem Text */
.cta__mark {
  position: absolute; right: calc(var(--gutter) - 1vw); top: 50%;
  transform: translateY(-50%);
  height: clamp(280px, 46vw, 620px); width: auto;
  opacity: .085; z-index: -1;
  pointer-events: none; user-select: none;
}
@media (max-width: 900px) {
  .cta__mark { height: clamp(260px, 62vw, 420px); opacity: .07; right: -4vw; }
}
.monogram {
  display: block; width: 78px; height: 78px; object-fit: contain;
  margin-bottom: clamp(26px, 3vw, 38px);
}
.cta .chapter__num { color: var(--gold); }

/* ---------- 17. Footer ---------- */
.footer { background: var(--navy-deep); color: #cfd7e2; padding-block: clamp(56px, 6.5vw, 86px) var(--s-7); border-top: 1px solid rgba(255,255,255,.1); }
.footer__top { display: grid; grid-template-columns: minmax(0,1.4fr) repeat(2, minmax(0,1fr)); gap: clamp(32px, 4vw, 64px); }
.footer .brand { color: var(--paper); }
.footer__desc { margin-top: var(--s-5); font-size: var(--fs-small); color: #98a4b6; max-width: 40ch; line-height: 1.65; }
.footer h4 { font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: var(--s-4); }
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer a { text-decoration: none; font-size: var(--fs-small); color: #b8c2d0; transition: color .3s var(--ease); }
.footer a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: clamp(44px, 5vw, 66px); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6); justify-content: space-between; align-items: center;
  font-size: .8rem; color: #7f8b9c;
}
.footer__legal { max-width: 78ch; font-size: .78rem; line-height: 1.65; color: #7f8b9c; margin-top: var(--s-6); }

/* Teaser-Hinweis */
.teaser-note {
  background: var(--gold); color: #14202f;
  font-size: .76rem; letter-spacing: .04em; font-weight: 600;
  padding: 11px var(--gutter); text-align: center;
}
.teaser-note a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 18. Reveal-Animationen ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal].d1 { --d: 60ms; }
[data-reveal].d2 { --d: 80ms; }
[data-reveal].d3 { --d: 90ms; }
[data-reveal].d4 { --d: 120ms; }
[data-reveal].d5 { --d: 130ms; }
[data-reveal].d6 { --d: 140ms; }
[data-reveal].d7 { --d: 160ms; }
[data-reveal].d8 { --d: 180ms; }
[data-reveal].d9 { --d: 190ms; }
[data-reveal].d10 { --d: 250ms; }
[data-reveal].d11 { --d: 260ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__media img { transform: none !important; }
}

/* ---------- 19. Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3);
    background: transparent; border-radius: 2px; cursor: pointer; color: var(--paper);
    transition: color .45s var(--ease), border-color .45s var(--ease);
  }
  .header.is-stuck .burger { color: var(--ink); border-color: var(--line); }
  .header .btn { display: none; }
  .comp { grid-template-columns: minmax(0, 1fr); }
  .comp__panels { order: -1; }
  .secure { grid-template-columns: minmax(0, 1fr); }
  .secure__media { max-width: 380px; }
}
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: minmax(0, 1fr); }
  .split--reverse > :first-child { order: 0; }
  .split__badge { left: auto; right: 12px; bottom: -14px; }
  .stats { grid-template-columns: minmax(0, 1fr); }
  .aud { grid-template-columns: minmax(0, 1fr); }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__meta { display: none; }
}
@media (max-width: 760px), (max-height: 620px) {
  .scroll-cue { display: none; }
}
@media (max-width: 560px) {
  .secure__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .brand__sub { letter-spacing: .26em; }
  .aud__strip img { aspect-ratio: 4/3; }
  .faq__q { grid-template-columns: auto 1fr auto; }
  .faq__a p { padding-left: 0; }
}

/* Mobiles Menü */
.mmenu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--navy-deep); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .5s var(--ease-out), visibility .4s;
}
.mmenu.is-open { opacity: 1; visibility: visible; transform: none; }
.mmenu nav { display: flex; flex-direction: column; gap: var(--s-4); }
.mmenu a {
  font-family: 'Archivo Black', sans-serif; text-transform: uppercase;
  font-size: clamp(1.8rem, 8vw, 3rem); letter-spacing: -.03em; text-decoration: none; line-height: 1.05;
}
.mmenu a:hover { color: var(--gold); }
.mmenu__close {
  position: absolute; top: 22px; right: var(--gutter);
  width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.28);
  background: transparent; color: var(--paper); border-radius: 2px; cursor: pointer;
  font-size: 1.3rem; line-height: 1;
}
.mmenu__foot { margin-top: var(--s-8); display: flex; flex-direction: column; gap: var(--s-3); font-size: var(--fs-small); color: #9fabbd; }

/* Scroll-Sperre bei offenem Menü (statt Inline-Style) */
body.is-locked { overflow: hidden; }
/* CTA-Kapitelzeile */
.cta .chapter__title { color: rgba(247, 243, 234, .6); }

@media (max-width: 420px) {
  .brand__mark { width: 26px; height: 42px; }
  .brand { gap: 11px; }
}
