/* =============================================
   Werkier KI-Content · Design System
   Basis: Beispiel Webseite (editorial style)
   Font: Montserrat · Farben: CI Werkier
   ============================================= */

/* ── CI Tokens ──────────────────────────────── */
:root {
  --navy:    #1B2E4A;
  --crimson: #E32058;
  --paper:   #F4F4F9;
  --gray:    #95989A;

  --bg:        #FFFFFF;
  --bg-elev:   #F4F4F9;
  --bg-deep:   #1B2E4A;
  --ink:       #1B2E4A;
  --ink-soft:  #4A5A75;
  --ink-muted: #95989A;
  --accent:    #E32058;
  --accent-ink:#FFFFFF;
  --rule:      rgba(27,46,74,0.14);
  --rule-soft: rgba(27,46,74,0.07);
  --on-navy:       #FFFFFF;
  --on-navy-soft:  rgba(255,255,255,0.72);
  --on-navy-muted: rgba(255,255,255,0.48);
  --on-navy-rule:  rgba(255,255,255,0.16);
}
html[data-theme="dark"] {
  --bg:        #0F1A2E;
  --bg-elev:   #182740;
  --bg-deep:   #0A1220;
  --ink:       #F4F4F9;
  --ink-soft:  #C4CAD6;
  --ink-muted: #7C8599;
  --rule:      rgba(244,244,249,0.16);
  --rule-soft: rgba(244,244,249,0.08);
}

/* ── Base ───────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background .35s ease, color .35s ease;
}

/* ── Layout ─────────────────────────────────── */
.wrap        { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 820px;  margin: 0 auto; padding: 0 40px; }
@media (max-width: 700px) { .wrap, .wrap-narrow { padding: 0 20px; } }

/* ── Eyebrow ────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--crimson); margin-right: 12px; vertical-align: 2px;
}
.eyebrow.on-navy { color: var(--on-navy-muted); }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--navy);
  background: var(--navy); color: #fff;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--crimson); color: #fff; border-color: var(--crimson); }
.btn-accent:hover { background: #c91a4c; border-color: #c91a4c; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-ghost-light { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--navy); }
.btn svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════ */
nav.top {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--rule-soft);
}
nav.top .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  max-width: 1240px; margin: 0 auto;
}
.brand-logo { height: 52px; width: auto; display: block; }
html[data-theme="dark"] .brand-logo { filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a:not(.btn) {
  color: var(--ink-soft); text-decoration: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  transition: color .2s;
}
.nav-links a:not(.btn):hover { color: var(--crimson); }
.nav-links a.btn { color: #fff; }

/* ── Hamburger Button ───────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background .15s;
}
.nav-burger:hover { background: var(--rule-soft); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav: Backdrop ───────────────────────── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* ── Mobile Nav: Label (nur mobil sichtbar) ─────── */
.nav-menu-label { display: none; }

/* ── Mobile Nav: Scroll-Hinweis ─────────────────── */
.nav-scroll-hint {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 51;
  height: 72px;
  background: linear-gradient(to bottom, transparent, var(--bg) 80%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.nav-scroll-hint.show {
  opacity: 1;
  visibility: visible;
}
.nav-scroll-hint svg { flex-shrink: 0; }

@media (max-width: 860px) {
  .brand-logo { height: 42px; }
  nav.top .inner { padding: 14px 20px; }
  .nav-burger { display: flex; }
  /* Alle Nav-Links inkl. CTA im Header verstecken – nur Hamburger bleibt sichtbar */
  .nav-links a { display: none; }

  /* Navigation-Label: nur sichtbar wenn Menü offen */
  .nav-links.open .nav-menu-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crimson);
    border-bottom: 2px solid var(--crimson);
    margin-bottom: 4px;
  }
  .nav-links.open .nav-menu-label svg { flex-shrink: 0; stroke: var(--crimson); }

  /* Mobiles Overlay-Menü */
  .nav-links.open {
    position: fixed;
    top: 71px;
    left: 0; right: 0; bottom: 0;
    padding: 20px 24px 80px;
    background: var(--bg);
    flex-direction: column;
    z-index: 49;
    overflow-y: auto;
    gap: 0;
    border-top: 2px solid var(--crimson);
    animation: nav-slide-in .22s ease;
  }
  @keyframes nav-slide-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open a:not(.btn) {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule-soft);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-links.open a:not(.btn):hover { color: var(--crimson); }
  .nav-links.open .btn {
    display: flex;
    margin-top: 28px;
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 24px;
  }
  body.nav-open { overflow: hidden; }
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
header.hero {
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

h1.display {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
}
html[data-theme="dark"] h1.display { color: var(--ink); }
h1.display .accent {
  color: var(--crimson);
  position: relative;
  white-space: nowrap;
}
h1.display .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.08em;
  background: var(--crimson);
  opacity: 0.18;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.6;
  margin-top: 32px;
}
.hero-meta {
  display: flex; gap: 44px; margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  flex-wrap: wrap;
}
.hero-meta div strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
html[data-theme="dark"] .hero-meta div strong { color: var(--ink); }
.hero-cta { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

/* Hero Visual – Content Calendar */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1.08;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  overflow: hidden;
}
.hv-header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 18px;
}
.hv-header .m { font-weight: 700; font-size: 18px; color: var(--navy); letter-spacing: -0.01em; }
html[data-theme="dark"] .hv-header .m { color: var(--ink); }
.hv-header .y { font-size: 10px; color: var(--ink-muted); letter-spacing: 0.18em; font-weight: 600; text-transform: uppercase; }
.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  overflow: hidden;
}
.cal .d {
  aspect-ratio: 1;
  background: var(--bg-elev);
  padding: 6px 7px;
  font-size: 10px;
  color: var(--ink-muted);
  position: relative;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.cal .d.has { color: var(--navy); font-weight: 700; }
html[data-theme="dark"] .cal .d.has { color: var(--ink); }
.cal .d .pill {
  position: absolute;
  left: 6px; right: 6px; bottom: 6px;
  height: 4px;
  border-radius: 2px;
  background: var(--crimson);
}
.cal .d.alt .pill { background: var(--navy); }
html[data-theme="dark"] .cal .d.alt .pill { background: var(--ink); }
.cal .d.newsletter .pill { background: var(--gray); }
.cal .d.off { opacity: 0.35; }
.hv-foot {
  display: flex; justify-content: space-between;
  margin-top: 18px;
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.hv-foot .swatch { display: inline-block; width: 8px; height: 8px; border-radius: 2px; vertical-align: middle; margin-right: 6px; }
.hv-tag {
  position: absolute;
  top: 22px; right: -16px;
  background: var(--crimson);
  color: #fff;
  padding: 6px 18px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(4deg);
  box-shadow: 0 6px 16px -6px rgba(227,32,88,0.5);
}

/* ══════════════════════════════════════════════
   SECTION BASE
   ══════════════════════════════════════════════ */
section { padding: 110px 0; position: relative; }
section + section { border-top: 1px solid var(--rule-soft); }
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: start;
}
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: 20px; } }
.section-head .tag { position: sticky; top: 120px; }
.section-head .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 48px;
  color: var(--crimson);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.section-head h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 820px;
  color: var(--navy);
}
html[data-theme="dark"] .section-head h2 { color: var(--ink); }
.section-head h2 .accent { color: var(--crimson); }
.section-head .lead {
  margin-top: 20px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 620px;
  font-weight: 400;
}

/* ══════════════════════════════════════════════
   INTRO
   ══════════════════════════════════════════════ */
.intro-lead {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 920px;
  color: var(--ink);
}
.intro-lead .accent { color: var(--crimson); font-weight: 700; }

/* ══════════════════════════════════════════════
   FÜR WEN – 4 Cards
   ══════════════════════════════════════════════ */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--navy);
}
html[data-theme="dark"] .cards-4 { border-top-color: var(--ink); }
@media (max-width: 900px) { .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards-4 { grid-template-columns: 1fr; } }
.cards-4 .card { padding: 32px 28px 40px 0; border-bottom: 1px solid var(--rule); }
.cards-4 .card:not(:last-child) { border-right: 1px solid var(--rule); padding-right: 28px; }
.cards-4 .card:not(:first-child) { padding-left: 28px; }
@media (max-width: 900px) {
  .cards-4 .card:nth-child(2n) { border-right: none; padding-right: 0; }
  .cards-4 .card:not(:first-child) { padding-left: 28px; }
  .cards-4 .card:nth-child(odd) { padding-left: 0; }
}
@media (max-width: 560px) {
  .cards-4 .card { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }
}
.cards-4 .card .n { font-size: 11px; color: var(--crimson); letter-spacing: 0.18em; margin-bottom: 28px; font-weight: 700; }
.cards-4 .card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700; font-size: 19px;
  line-height: 1.25; letter-spacing: -0.01em;
  margin-bottom: 12px; color: var(--navy);
}
html[data-theme="dark"] .cards-4 .card h3 { color: var(--ink); }
.cards-4 .card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; font-weight: 400; }

/* ══════════════════════════════════════════════
   LEISTUNGEN
   ══════════════════════════════════════════════ */
.leistungen { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
@media (max-width: 820px) { .leistungen { grid-template-columns: 1fr; gap: 40px; } }
.leistungen .col h4 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--crimson); font-weight: 700;
  padding-bottom: 14px; border-bottom: 1px solid var(--rule);
  margin-bottom: 12px;
}
.lst { list-style: none; }
.lst li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}
.lst li .ix { font-size: 11px; color: var(--ink-muted); font-weight: 700; letter-spacing: 0.1em; }
.lst li .txt { font-size: 16px; color: var(--ink); font-weight: 600; }
.lst li .sub { display: block; font-size: 14px; color: var(--ink-soft); margin-top: 4px; font-weight: 400; }

/* ══════════════════════════════════════════════
   PAKETE
   ══════════════════════════════════════════════ */
.pakete { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 920px) { .pakete { grid-template-columns: 1fr; } }
.pkt {
  padding: 32px 28px 36px;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pkt:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(27,46,74,0.25); }
.pkt.featured { background: var(--navy); border-color: var(--navy); color: #fff; }
html[data-theme="dark"] .pkt.featured { background: var(--crimson); border-color: var(--crimson); }
.pkt.featured h3, .pkt.featured .price .num { color: #fff; }
.pkt.featured .kicker { color: rgba(255,255,255,0.6); }
.pkt.featured .price { border-color: rgba(255,255,255,0.18); }
.pkt.featured .price .ab, .pkt.featured .price .per { color: rgba(255,255,255,0.7); }
.pkt.featured ul.features li { color: #fff; border-color: rgba(255,255,255,0.14); }
.pkt.featured ul.features li::before { background: var(--crimson); }
.pkt.featured .ideal { color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.18); }
.pkt.featured .ideal em { color: #fff; }
.pkt.featured .pkt-btn { background: var(--crimson); color: #fff; border-color: var(--crimson); }
.pkt.featured .pkt-btn:hover { background: #fff; color: var(--navy); border-color: #fff; }

.pkt .badge {
  position: absolute; top: -10px; left: 28px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--crimson); color: #fff;
  padding: 6px 12px; font-weight: 700; border-radius: 3px;
}
html[data-theme="dark"] .pkt.featured .badge { background: var(--navy); }
.pkt .kicker { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); font-weight: 700; margin-bottom: 10px; }
.pkt h3 { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 32px; line-height: 1; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--navy); }
html[data-theme="dark"] .pkt h3 { color: var(--ink); }
.pkt .price { display: flex; align-items: baseline; gap: 8px; padding: 18px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 24px; }
.pkt .price .ab { font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; }
.pkt .price .num { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; color: var(--navy); }
.pkt .price .per { font-size: 13px; color: var(--ink-muted); font-weight: 500; }
.pkt ul.features { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.pkt ul.features li {
  padding: 11px 0; font-size: 14px; color: var(--ink); font-weight: 500;
  display: flex; gap: 12px; border-bottom: 1px solid var(--rule-soft); line-height: 1.45;
}
.pkt ul.features li:last-child { border-bottom: none; }
.pkt ul.features li::before { content: ""; flex: 0 0 10px; height: 10px; border-radius: 50%; background: var(--crimson); margin-top: 5px; }
.pkt .ideal { font-size: 13px; color: var(--ink-soft); padding: 16px 0 24px; border-top: 1px solid var(--rule); line-height: 1.55; font-weight: 400; }
.pkt .ideal em { font-style: normal; font-weight: 700; color: var(--navy); }
html[data-theme="dark"] .pkt .ideal em { color: var(--ink); }
.pkt .pkt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--navy); border: 2px solid var(--navy);
  text-decoration: none; padding: 14px 20px; border-radius: 4px;
  transition: background .2s, color .2s; text-align: center;
}
.pkt .pkt-btn:hover { background: var(--crimson); border-color: var(--crimson); }

.setup {
  margin-top: 36px; padding: 24px 28px;
  background: var(--bg-elev); border: 1px solid var(--rule); border-radius: 6px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
}
@media (max-width: 720px) { .setup { grid-template-columns: 1fr; gap: 10px; text-align: left; } }
.setup .lbl { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--crimson); font-weight: 700; }
.setup h4 { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 18px; margin-top: 4px; color: var(--navy); letter-spacing: -0.01em; }
html[data-theme="dark"] .setup h4 { color: var(--ink); }
.setup .desc { font-size: 14px; color: var(--ink-soft); max-width: 540px; }
.setup .setup-price { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 26px; color: var(--navy); letter-spacing: -0.02em; }
html[data-theme="dark"] .setup .setup-price { color: var(--crimson); }

/* ══════════════════════════════════════════════
   PROZESS
   ══════════════════════════════════════════════ */
.process {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; border-top: 2px solid var(--navy);
}
html[data-theme="dark"] .process { border-top-color: var(--ink); }
@media (max-width: 1000px) { .process { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .process { grid-template-columns: repeat(2, 1fr); } }
.step { padding: 28px 20px 32px 0; border-right: 1px solid var(--rule); position: relative; }
.step:not(:first-child) { padding-left: 20px; }
.step:last-child { border-right: none; }
@media (max-width: 1000px) {
  .step:nth-child(3n) { border-right: none; }
  .step:nth-child(n+4) { border-top: 1px solid var(--rule); padding-top: 28px; }
}
@media (max-width: 640px) {
  .step { border-right: 1px solid var(--rule); }
  .step:nth-child(2n) { border-right: none; }
  .step:nth-child(n+3) { border-top: 1px solid var(--rule); padding-top: 28px; }
}
.step .s-num { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 48px; color: var(--crimson); line-height: 1; margin-bottom: 20px; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.step h4 { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 10px; line-height: 1.3; color: var(--navy); letter-spacing: -0.005em; }
html[data-theme="dark"] .step h4 { color: var(--ink); }
.step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

/* ══════════════════════════════════════════════
   WARUM – Navy Band
   ══════════════════════════════════════════════ */
.why-band {
  background: var(--navy); color: #fff;
  padding: 110px 0; position: relative; overflow: hidden;
}
html[data-theme="dark"] .why-band { background: var(--bg-deep); }
.why-band::before {
  content: ""; position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--crimson) 0%, transparent 70%);
  opacity: 0.22; pointer-events: none;
}
.why-band .section-head h2 { color: #fff; }
.why-band .section-head .num { color: var(--crimson); }
.why-band .section-head .eyebrow { color: var(--on-navy-muted); }
.why-band .section-head .eyebrow .dot { background: var(--crimson); }

.why { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; gap: 40px; } }
.why-reasons { list-style: none; border-top: 1px solid var(--on-navy-rule); }
.why-reasons li {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 24px; padding: 24px 0;
  border-bottom: 1px solid var(--on-navy-rule); align-items: baseline;
}
.why-reasons li .k { font-family: "Montserrat", sans-serif; font-weight: 300; font-size: 28px; color: var(--crimson); font-variant-numeric: tabular-nums; }
.why-reasons li .v { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 20px; line-height: 1.3; letter-spacing: -0.015em; color: #fff; }
.why-reasons li .v span { display: block; font-weight: 400; font-size: 14px; color: var(--on-navy-soft); margin-top: 8px; line-height: 1.6; letter-spacing: 0; }

.pullquote {
  font-family: "Montserrat", sans-serif;
  font-weight: 500; font-size: 22px;
  line-height: 1.4; letter-spacing: -0.01em;
  color: #fff; padding: 28px 0;
  border-top: 1px solid var(--on-navy-rule);
  border-bottom: 1px solid var(--on-navy-rule);
  margin-bottom: 24px;
}
.pullquote::before { content: "„"; font-size: 3em; line-height: 0; color: var(--crimson); margin-right: 6px; vertical-align: 0.4em; }
.why-right p { font-size: 14.5px; color: var(--on-navy-soft); line-height: 1.65; font-weight: 400; }

/* ══════════════════════════════════════════════
   ÜBER MICH
   ══════════════════════════════════════════════ */
.ueber { display: grid; grid-template-columns: 320px 1fr; gap: 72px; align-items: start; }
@media (max-width: 860px) { .ueber { grid-template-columns: 1fr; gap: 40px; } }
.portrait-wrap { position: sticky; top: 120px; }
.portrait {
  aspect-ratio: 3/4;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 6px;
  position: relative; overflow: hidden;
}
.portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}
.portrait .corner {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: var(--crimson); border-radius: 50%; z-index: 2;
}
.portrait-caption { margin-top: 16px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; }

.story h3 { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: clamp(24px, 2.8vw, 34px); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 28px; color: var(--navy); }
html[data-theme="dark"] .story h3 { color: var(--ink); }
.story h3 .accent { color: var(--crimson); }
.story p { font-size: 16px; color: var(--ink); line-height: 1.7; margin-bottom: 20px; max-width: 680px; font-weight: 400; }
.story p.lede { font-size: 17px; color: var(--ink); }
.story p.lede::first-letter {
  font-family: "Montserrat", sans-serif;
  font-weight: 800; font-size: 4.2em; line-height: 0.9;
  float: left; margin: 6px 14px 0 0;
  color: var(--crimson); letter-spacing: -0.05em;
}
.story .pullquote-light {
  font-family: "Montserrat", sans-serif;
  font-weight: 500; font-size: 22px; line-height: 1.4;
  letter-spacing: -0.01em; color: var(--navy);
  padding: 28px 0 28px 28px;
  border-left: 4px solid var(--crimson);
  margin: 32px 0; max-width: 640px;
}
html[data-theme="dark"] .story .pullquote-light { color: var(--ink); }

.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 36px; border-top: 2px solid var(--navy); }
html[data-theme="dark"] .creds { border-top-color: var(--ink); }
@media (max-width: 560px) { .creds { grid-template-columns: 1fr; } }
.creds .c { padding: 22px 20px 22px 0; border-bottom: 1px solid var(--rule); }
.creds .c:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 20px; }
.creds .c:nth-child(even) { padding-left: 20px; }
@media (max-width: 560px) { .creds .c { padding-left: 0 !important; padding-right: 0 !important; border-right: none !important; } }
.creds .c .k { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 26px; color: var(--crimson); margin-bottom: 6px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.creds .c .t { font-weight: 700; font-size: 15px; margin-bottom: 4px; color: var(--navy); }
html[data-theme="dark"] .creds .c .t { color: var(--ink); }
.creds .c .d { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq-list { border-top: 2px solid var(--navy); }
html[data-theme="dark"] .faq-list { border-top-color: var(--ink); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: grid; grid-template-columns: 44px 1fr 40px;
  gap: 20px; padding: 28px 0; cursor: pointer;
  align-items: center; list-style: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600; font-size: 18px; line-height: 1.35; letter-spacing: -0.005em;
  color: var(--navy); transition: color .2s;
}
html[data-theme="dark"] .faq-q { color: var(--ink); }
.faq-q:hover { color: var(--crimson); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q .ix { font-size: 11px; color: var(--crimson); font-weight: 700; letter-spacing: 0.14em; align-self: start; padding-top: 6px; }
.faq-q .plus { width: 24px; height: 24px; position: relative; align-self: center; transition: transform .3s ease; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: currentColor; }
.faq-q .plus::before { left: 2px; right: 2px; top: 11px; height: 2px; border-radius: 1px; }
.faq-q .plus::after  { top: 2px; bottom: 2px; left: 11px; width: 2px; border-radius: 1px; }
details[open] .faq-q .plus { transform: rotate(45deg); color: var(--crimson); }
details[open] .faq-q { color: var(--crimson); }
.faq-a { display: grid; grid-template-columns: 44px 1fr 40px; gap: 20px; padding: 0 0 32px; }
.faq-a p { grid-column: 2; font-size: 15px; color: var(--ink-soft); line-height: 1.7; max-width: 720px; }

/* ══════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════ */
.final {
  padding: 140px 0; text-align: center;
  background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
}
html[data-theme="dark"] .final { background: var(--bg-deep); }
.final::before {
  content: ""; position: absolute;
  bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--crimson) 0%, transparent 70%);
  opacity: 0.18; pointer-events: none;
}
.final .inner-rel { position: relative; z-index: 1; }
.final h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800; font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 24px; color: #fff;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.final h2 .accent { color: var(--crimson); }
.final p { font-size: 17px; color: var(--on-navy-soft); max-width: 620px; margin: 0 auto 40px; }
.final-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.final .meta { margin-top: 36px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-navy-muted); font-weight: 600; }
.final .meta span { margin: 0 14px; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer.foot { padding: 56px 0 40px; background: var(--bg-elev); font-size: 13px; color: var(--ink-muted); }
.foot-inner { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; }
@media (max-width: 720px) { .foot-inner { grid-template-columns: 1fr; gap: 24px; } }
.foot-brand img { height: 47px; width: auto; }
html[data-theme="dark"] .foot-brand img { filter: brightness(0) invert(1); }
.foot-right { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 28px; font-size: 13px; }
@media (max-width: 720px) { .foot-right { justify-content: flex-start; } }
.foot-right a { color: var(--ink-soft); text-decoration: none; font-weight: 500; }
.foot-right a:hover { color: var(--crimson); }
.foot-bottom {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--ink-muted); letter-spacing: 0.02em;
}
.foot-bottom a { color: var(--ink-soft); text-decoration: none; font-weight: 500; }
.foot-bottom a:hover { color: var(--crimson); }

.foot-social { display: flex; gap: 4px; align-items: center; }
.foot-social a {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 6px;
  color: var(--ink-muted); transition: color .2s, background .2s;
  text-decoration: none;
}
.foot-social a:hover { color: var(--crimson); background: var(--bg); }
.foot-social svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   TWEAKS PANEL
   ══════════════════════════════════════════════ */
.tweaks {
  position: fixed; right: 24px; bottom: 24px;
  width: 280px; background: var(--bg);
  border: 1px solid var(--rule); border-radius: 8px;
  padding: 20px;
  box-shadow: 0 24px 60px -20px rgba(27,46,74,0.25), 0 2px 8px rgba(27,46,74,0.08);
  z-index: 100; font-size: 13px; display: none;
}
.tweaks.open { display: block; }
.tweaks h5 { font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; }
html[data-theme="dark"] .tweaks h5 { color: var(--ink); }
.tweaks h5 .close { cursor: pointer; color: var(--ink-muted); font-size: 18px; padding: 0 4px; font-weight: 300; }
.tweaks .row { margin-bottom: 16px; }
.tweaks .row .lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 10px; font-weight: 700; }
.theme-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
.theme-toggle button { padding: 10px; background: transparent; border: none; cursor: pointer; font-family: "Montserrat", sans-serif; font-size: 11px; color: var(--ink-soft); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.theme-toggle button.on { background: var(--navy); color: #fff; }
.swatches { display: flex; gap: 10px; }
.swatches button { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); outline: 1px solid var(--rule); cursor: pointer; padding: 0; transition: transform .15s; }
.swatches button:hover { transform: scale(1.1); }
.swatches button.on { outline: 2px solid var(--navy); outline-offset: 2px; }
html[data-theme="dark"] .swatches button.on { outline-color: var(--ink); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   INNER PAGES (Impressum / Datenschutz)
   ══════════════════════════════════════════════ */
.page-hero { background: var(--navy); color: #fff; padding: 72px 0 60px; }
.page-hero h1 { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: clamp(32px, 5vw, 58px); line-height: 1.06; letter-spacing: -0.025em; color: #fff; margin-bottom: 12px; }
.page-hero p  { font-size: 16px; color: var(--on-navy-soft); }

.page-content { padding: 80px 0 120px; }
.page-content .wrap { max-width: 820px; }

.page-content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700; font-size: 20px;
  color: var(--navy); letter-spacing: -0.01em;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--crimson);
  display: inline-block;
}
html[data-theme="dark"] .page-content h2 { color: var(--ink); }
.page-content h2:first-child { margin-top: 0; }
.page-content p  { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.page-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content li { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 0.4rem; }
.page-content a  { color: var(--crimson); text-decoration: underline; }
.page-content a:hover { color: var(--navy); }
.page-content address {
  font-style: normal;
  background: var(--bg-elev);
  border-left: 4px solid var(--crimson);
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin: 1rem 0 1.5rem;
  font-size: 15px; line-height: 1.8;
  color: var(--ink);
}

/* ══════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════ */
.blog-section { padding: 80px 0 120px; }
.blog-section .wrap { max-width: 1100px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { box-shadow: 0 16px 48px -12px rgba(27,46,74,.18); transform: translateY(-3px); }

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a75 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img svg { opacity: .18; }
.blog-card-img .blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--crimson); color: #fff;
  font-family: "Montserrat", sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 12px; color: var(--gray); font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px;
}
.blog-card h3 {
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 17px;
  color: var(--navy); line-height: 1.35; letter-spacing: -.015em;
  margin-bottom: 10px;
}
html[data-theme="dark"] .blog-card h3 { color: var(--ink); }
.blog-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-card .blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "Montserrat", sans-serif; font-size: 13px; font-weight: 700;
  color: var(--crimson); text-decoration: none; letter-spacing: .04em;
  text-transform: uppercase; margin-top: auto;
}
.blog-card .blog-link svg { transition: transform .2s; }
.blog-card .blog-link:hover svg { transform: translateX(4px); }

.blog-card.featured { grid-column: 1 / -1; flex-direction: row; }
.blog-card.featured .blog-card-img { width: 380px; flex-shrink: 0; height: auto; min-height: 220px; border-radius: 0; }
.blog-card.featured .blog-card-body { padding: 32px; }
.blog-card.featured h3 { font-size: 22px; margin-bottom: 14px; }
.blog-card.featured p { font-size: 15px; }
@media (max-width: 760px) {
  .blog-card.featured { flex-direction: column; }
  .blog-card.featured .blog-card-img { width: 100%; min-height: 180px; }
}

.blog-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px;
}
.blog-filter button {
  font-family: "Montserrat", sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 20px; border: 1.5px solid var(--rule);
  background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.blog-filter button.active,
.blog-filter button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.blog-empty { text-align: center; padding: 60px 0; color: var(--gray); font-size: 15px; display: none; }
.blog-empty.visible { display: block; }
