/* ============================================================
   co-drAIver — Race Engineered
   site.css : Produktions-Stylesheet (Design: Claude Design Handoff)
   Theme: Pole Position (hell) · Akzent #F135CB · Hero: Cinematic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&family=Archivo+Expanded:ital,wght@0,600;0,700;0,800;0,900;1,800;1,900&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* ---- type families ---- */
  --f-display: "Archivo Expanded", "Archivo", system-ui, sans-serif;
  --f-body: "Archivo", system-ui, sans-serif;
  --f-mono: "Space Mono", ui-monospace, monospace;

  /* ---- accent: brand pink #F135cb ---- */
  --acc-h: 338;
  --accent: oklch(0.665 0.258 var(--acc-h));      /* ≈ #F135cb */
  --accent-bright: oklch(0.725 0.252 var(--acc-h));
  --accent-deep: oklch(0.55 0.235 var(--acc-h));
  --accent-tint: oklch(0.665 0.258 var(--acc-h) / 0.10);
  --on-accent: oklch(0.99 0.012 var(--acc-h));
  --cream: oklch(1 0 0);

  /* ---- Pole Position (hell) — warme Sand-Neutrals ---- */
  --bg: oklch(0.962 0.011 88);        /* ~F4F1EB */
  --bg-2: oklch(0.922 0.017 86);      /* ~EAE3D8 */
  --sand: oklch(0.86 0.026 85);       /* ~D5C7B1 */
  --sand-deep: oklch(0.32 0.026 70);
  --surface: oklch(0.988 0.006 88);
  --ink: oklch(0.255 0.018 72);
  --ink-soft: oklch(0.46 0.018 74);
  --ink-faint: oklch(0.62 0.016 78);
  --line: oklch(0.255 0.018 72 / 0.13);
  --line-strong: oklch(0.255 0.018 72 / 0.24);
  --shadow: 0 1px 2px oklch(0.3 0.03 72 / 0.07), 0 12px 32px -12px oklch(0.3 0.03 72 / 0.2);
  --shadow-lift: 0 2px 6px oklch(0.3 0.03 72 / 0.09), 0 26px 60px -20px oklch(0.3 0.03 72 / 0.34);

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--on-accent); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 9vw, 140px); position: relative; }

/* ---------- type primitives ---------- */
.kicker {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 700;
}
.kicker::before {
  content: attr(data-num);
  font-size: 0.85em;
  color: var(--on-accent);
  background: var(--accent);
  padding: 0.18em 0.5em 0.12em;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.kicker.bare::before { display: none; }

.h-display {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  text-wrap: balance;
}
.h-sec {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.018em;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  text-wrap: balance;
}
.h-card {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 56ch;
  text-wrap: pretty;
}
.body { font-size: 1rem; color: var(--ink-soft); text-wrap: pretty; }
.accent-text { color: var(--accent); }
.italic-speed { font-style: italic; font-family: var(--f-display); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 0.95em 1.5em;
  border-radius: var(--radius);
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .18s, background .18s, color .18s;
  position: relative;
  white-space: nowrap;
}
.btn .arw { transition: transform .22s cubic-bezier(.2,.7,.3,1); }
.btn:hover .arw { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 8px 22px -8px var(--accent); }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 14px 30px -8px var(--accent); }
.btn-ghost { color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost.on-pink { color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-lg { padding: 1.1em 1.8em; font-size: 1.05rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 900; font-size: 1.35rem; letter-spacing: -0.03em; white-space: nowrap; }
.brand .mark-img { width: 32px; height: 32px; object-fit: contain; flex: none; }
.brand .ai { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.95rem; font-weight: 600; padding: 9px 14px; border-radius: var(--radius);
  color: var(--ink-soft); transition: color .15s, background .15s; position: relative;
}
.nav-link:hover { color: var(--ink); background: var(--bg-2); }
.nav-link.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; width: 44px; height: 44px; place-items: center; border-radius: var(--radius); }
.menu-btn:hover { background: var(--bg-2); }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform .25s; }
.menu-btn span::before { top: -6px; } .menu-btn span::after { top: 6px; }
.mobile-menu { display: none; }

/* ---------- hero (cinematic) ---------- */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero { position: relative; overflow: hidden; min-height: clamp(580px, 88vh, 940px); display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(91deg, oklch(0.21 0.03 62 / 0.93) 0%, oklch(0.21 0.03 62 / 0.66) 36%, oklch(0.21 0.03 62 / 0.12) 66%, transparent 90%),
    linear-gradient(0deg, oklch(0.18 0.025 62 / 0.5) 0%, transparent 42%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(70px, 9vw, 130px); }
.hero-text { max-width: 680px; }
.hero-flag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.07);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 100px; padding: 7px 15px 7px 9px; margin-bottom: 26px;
}
.hero-flag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 0 4px oklch(0.7 0.25 var(--acc-h) / 0.3); animation: pulse 2.2s infinite; flex: none; }
.hero h1 { color: #fff; margin-bottom: 22px; text-shadow: 0 2px 30px oklch(0.1 0.03 320 / 0.5); }
.hero h1 .ln2 { color: var(--accent-bright); }
.hero .lead { color: rgba(255,255,255,0.85); margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-family: var(--f-mono); font-size: 0.8rem; color: rgba(255,255,255,0.62); margin-top: 24px; letter-spacing: 0.02em; }

/* Subseiten-Hero — kompakter */
.hero.hero-sub { min-height: clamp(420px, 58vh, 620px); }

/* ---------- section head ---------- */
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .kicker { margin-bottom: 20px; }
.sec-head .lead { margin-top: 18px; }
.sec-head.center .lead { margin-inline: auto; }

/* ---------- stats — kräftiges Pink-Segment ---------- */
.stats { background: var(--accent); color: var(--on-accent); position: relative; overflow: hidden; }
.stats .kicker { color: var(--on-accent); }
.stats .kicker::before { background: var(--on-accent); color: var(--accent-deep); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 10px; }
.stat { padding: 8px clamp(20px, 3vw, 44px); position: relative; }
.stat + .stat { border-left: 1px solid oklch(1 0 0 / 0.28); }
.stat .num {
  font-family: var(--f-display); font-weight: 900; letter-spacing: -0.03em; line-height: 0.9;
  font-size: clamp(3.2rem, 6.5vw, 5.4rem);
  display: flex; align-items: baseline; gap: 0.08em;
}
.stat .num .suf { font-size: 0.42em; color: var(--cream); font-weight: 800; }
.stat .lbl-main { font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; margin-top: 14px; letter-spacing: -0.01em; }
.stat .lbl-sub { font-size: 0.92rem; opacity: .82; margin-top: 6px; line-height: 1.4; }
.stats-rail { display: flex; gap: 5px; margin-top: 54px; }
.stats-rail i { height: 4px; flex: 1; background: oklch(1 0 0 / 0.25); border-radius: 2px; }
.stats-rail i.on { background: var(--on-accent); }

/* ---------- problems / Kiesbett ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px 28px; position: relative; overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, border-color .25s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--line-strong); }
.pcard .pnum { font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700; color: var(--ink-faint); letter-spacing: 0.1em; }
.pcard h3 { margin: 18px 0 12px; }
.pcard p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.5; }
.pcard .consequence {
  margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--line-strong);
  font-family: var(--f-display); font-weight: 800; font-style: italic; font-size: 1rem;
  color: var(--ink); display: flex; align-items: center; gap: 9px;
}
.pcard .consequence::before { content: ""; width: 7px; height: 7px; background: var(--ink-faint); transform: rotate(45deg); flex: none; }
.pcard:hover .consequence::before { background: var(--accent); }
.pcard .picon { margin-bottom: 22px; }
.pcard .picon img { width: 50px; height: 50px; object-fit: contain; display: block; }

/* ---------- approach / 3 Schritte ---------- */
.approach { background: var(--bg-2); }
.steps { display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px, 3.5vw, 52px); align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 42px) clamp(26px, 4vw, 52px); position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.step:hover { border-color: var(--line-strong); box-shadow: var(--shadow); }
.step .sidx {
  font-family: var(--f-display); font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  font-size: clamp(3rem, 7vw, 6rem);
  -webkit-text-stroke: 2px var(--accent); color: transparent;
  width: 1.3em; text-align: center;
}
.step .sbody .verb { font-family: var(--f-mono); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; }
.step .sbody h3 { margin: 10px 0 12px; font-size: clamp(1.3rem, 2.2vw, 1.85rem); }
.step .sbody p { font-size: 1rem; color: var(--ink-soft); max-width: 62ch; line-height: 1.55; }
.step .soutcome {
  max-width: 230px; padding-left: clamp(20px, 3vw, 40px); border-left: 1px solid var(--line);
  font-family: var(--f-display); font-weight: 800; font-size: 1.02rem; line-height: 1.25;
}
.step .soutcome .ol { font-family: var(--f-mono); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; color: var(--ink-faint); text-transform: uppercase; display: block; margin-bottom: 10px; }

/* ---------- safety / Leitplanken ---------- */
.safety { background: var(--sand); color: var(--ink); }
.safety .kicker { color: var(--accent); }
.safety .lead { color: var(--ink-soft); }
.guard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-strong); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); overflow: hidden; }
.guard { background: var(--surface); padding: 34px 30px; position: relative; }
.guard .ico { width: 44px; height: 44px; border-radius: 8px; background: var(--surface); border: 1.5px solid var(--accent); color: var(--accent); display: grid; place-items: center; margin-bottom: 22px; }
.guard .ico img { width: 26px; height: 26px; object-fit: contain; display: block; }
.guard h3 { font-size: 1.2rem; margin-bottom: 12px; }
.guard p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }
.guard-rail { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.guard-rail .barrier { flex: 1; height: 8px; background: repeating-linear-gradient(90deg, var(--accent) 0 14px, transparent 14px 28px); opacity: .9; border-radius: 2px; }

/* ---------- comparison ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comp { border-radius: var(--radius-lg); padding: 34px 32px; position: relative; overflow: hidden; }
.comp.now { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-lift); }
.comp.wait { background: var(--surface); border: 1px solid var(--line); color: var(--ink-faint); }
.comp .ch { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.comp .ch .tag { font-family: var(--f-mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 10px; border-radius: 3px; }
.comp.now .ch .tag { background: var(--on-accent); color: var(--accent); }
.comp.wait .ch .tag { background: var(--bg-2); color: var(--ink-faint); }
.comp .ch h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.comp ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.comp li { display: flex; gap: 13px; font-size: 1.02rem; line-height: 1.4; align-items: flex-start; }
.comp li .mk { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
.comp.now li .mk { background: var(--on-accent); color: var(--accent); }
.comp.wait li .mk { border: 1.5px solid var(--line-strong); color: var(--ink-faint); }
.comp li b { font-weight: 700; }
.comp.now li b { color: var(--on-accent); }
.comp.wait li b { color: var(--ink-soft); }

/* ---------- use cases ---------- */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.uc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, border-color .25s;
}
.uc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--accent); }
.uc-top { padding: 26px 26px 22px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.uc-top .ico { display: flex; align-items: center; justify-content: center; flex: none; }
.uc-top .ico img { width: 32px; height: 32px; object-fit: contain; display: block; }
.uc-top .tag { font-family: var(--f-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.uc-mid { padding: 24px 26px; flex: 1; }
.uc-mid h3 { margin-bottom: 12px; }
.uc-mid p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.5; }
.uc-win {
  margin: 0 26px 26px; padding: 18px 0 0; border-top: 1px solid var(--line);
  font-family: var(--f-display); font-weight: 800; font-size: 0.98rem; color: var(--accent);
  display: flex; align-items: center; gap: 10px; line-height: 1.25;
}
.uc-win .gain { font-size: 1.3em; }

/* ---------- offers / Startlinie ---------- */
.offers { background: var(--bg-2); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.offer.feature { border-color: var(--accent); }
.offer.feature::before { content: "Startpunkt"; position: absolute; top: 18px; right: -32px; transform: rotate(45deg); background: var(--accent); color: var(--on-accent); font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 40px; }
.offer .oicon { margin-bottom: 20px; }
.offer .oicon img { width: 50px; height: 50px; object-fit: contain; display: block; }
.offer .onum { font-family: var(--f-mono); font-size: 0.76rem; font-weight: 700; color: var(--accent); letter-spacing: 0.12em; margin-bottom: 16px; }
.offer h3 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 14px; letter-spacing: -0.01em; line-height: 1.04; }
.offer .q { font-family: var(--f-display); font-weight: 700; font-style: italic; color: var(--ink); font-size: 1.05rem; margin-bottom: 12px; line-height: 1.3; }
.offer p { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.5; }
.offer .olink { margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-display); font-weight: 800; color: var(--accent); font-size: 1rem; }
.offer .olink .arw { transition: transform .2s; }
.offer:hover .olink .arw { transform: translateX(5px); }

/* ---------- about / 2 Expertinnen ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); border: 1px solid var(--line); }
.about-photo .badge {
  position: absolute; bottom: -16px; left: -16px; background: var(--accent); color: var(--on-accent);
  font-family: var(--f-mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 16px; border-radius: var(--radius); box-shadow: var(--shadow-lift); line-height: 1.4;
}
.about-body h2 { margin: 18px 0 22px; }
.about-body .lead { margin-bottom: 22px; }
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.cred { font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-soft); border: 1px solid var(--line-strong); border-radius: 100px; padding: 8px 14px; display: inline-flex; align-items: center; gap: 8px; }
.cred::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- testimonials ---------- */
.testi { background: var(--bg-2); color: var(--ink); }
.testi .kicker { color: var(--accent); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { padding: 32px 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); position: relative; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.quote .qm { font-family: var(--f-display); font-weight: 900; font-size: 3.4rem; line-height: 0.6; color: var(--accent); height: 0.5em; margin-bottom: 12px; }
.quote p { font-size: 1.05rem; line-height: 1.5; flex: 1; color: var(--ink); }
.quote .who { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote .who .nm { font-family: var(--f-display); font-weight: 800; font-size: 1rem; }
.quote .who .co { font-family: var(--f-mono); font-size: 0.8rem; color: var(--accent); margin-top: 4px; letter-spacing: 0.04em; }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line-strong); }
.faq-item:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; gap: 20px; padding: 26px 4px; }
.faq-q .fnum { font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700; color: var(--accent); letter-spacing: 0.06em; flex: none; width: 28px; }
.faq-q .ftxt { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.1rem, 1.6vw, 1.35rem); letter-spacing: -0.01em; flex: 1; line-height: 1.2; transition: color .2s; }
.faq-q:hover .ftxt { color: var(--accent); }
.faq-q .fic { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; transition: all .25s; position: relative; }
.faq-q .fic::before, .faq-q .fic::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: all .25s; }
.faq-q .fic::before { width: 13px; height: 2px; }
.faq-q .fic::after { width: 2px; height: 13px; }
.faq-item.open .fic { background: var(--accent); border-color: var(--accent); transform: rotate(135deg); }
.faq-item.open .fic::before, .faq-item.open .fic::after { background: var(--on-accent); }
.faq-item.open .ftxt { color: var(--accent); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.2,.7,.2,1); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-pad { padding: 0 4px 30px 52px; }
.faq-a-pad .lead-ans { font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; color: var(--accent); margin-bottom: 12px; line-height: 1.3; }
.faq-a-pad p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.6; max-width: 64ch; }
.faq-a-pad p + p { margin-top: 12px; }

/* ---------- footer ---------- */
.footer { background: var(--bg-2); color: var(--ink); padding-top: clamp(56px, 7vw, 96px); }
.foot-base { background: oklch(0.84 0.03 84); }
.foot-cta {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 5vw, 56px); align-items: center;
  background: var(--accent); color: var(--on-accent);
  border-radius: var(--radius-lg); padding: clamp(34px, 4.5vw, 64px);
  margin-bottom: clamp(44px, 5vw, 72px); box-shadow: var(--shadow-lift);
  position: relative; overflow: hidden;
}
.foot-cta h2 { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 0.98; letter-spacing: -0.02em; }
.foot-cta h2 .accent-text { color: var(--cream); }
.foot-cta .fc-right { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.foot-cta .fc-right .btn { width: 100%; justify-content: space-between; }
.foot-cta .fc-right .btn-primary { background: var(--on-accent); color: var(--accent-deep); box-shadow: none; }
.foot-cta .fc-right .btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
.foot-cta .fc-note { font-family: var(--f-mono); font-size: 0.8rem; color: var(--on-accent); opacity: .82; margin-top: 4px; }
.foot-low { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-block: clamp(44px, 5vw, 60px) 36px; flex-wrap: wrap; }
.foot-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.foot-brand .brand { color: var(--ink); }
.foot-brand p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.foot-brand p.muted { color: var(--ink-faint); }
.foot-cols { display: flex; gap: clamp(36px, 6vw, 80px); flex-wrap: wrap; }
.foot-col h4 { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.foot-col a { display: block; font-size: 0.95rem; color: var(--ink-soft); padding: 6px 0; transition: color .15s; }
.foot-col a:hover { color: var(--accent); }
.foot-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-faint); }
.foot-meta .fm-links { display: flex; gap: 22px; }
.foot-meta a:hover { color: var(--accent); }

/* ---------- track separator (Start-/Ziellinie) ---------- */
.track-sep {
  height: 28px;
  background-color: var(--bg-2);
  background-image:
    linear-gradient(45deg, color-mix(in oklch, var(--ink) 15%, transparent) 25%, transparent 25%, transparent 75%, color-mix(in oklch, var(--ink) 15%, transparent) 75%),
    linear-gradient(45deg, color-mix(in oklch, var(--ink) 15%, transparent) 25%, transparent 25%, transparent 75%, color-mix(in oklch, var(--ink) 15%, transparent) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
}

/* ============================================================
   Subseiten-Module
   ============================================================ */

/* Workshop-Module (KI-Workshops) */
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; display: flex; flex-direction: column; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.module:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--accent); }
.module .mimg { width: calc(100% + 60px); margin: -32px -30px 22px; aspect-ratio: 16/10; object-fit: cover; border-bottom: 1px solid var(--line); }
.module.feature { background: var(--accent); color: var(--on-accent); border-color: var(--accent); box-shadow: var(--shadow-lift); }
.module.feature h3 { color: var(--on-accent); }
.module.feature p { color: oklch(0.99 0.012 338 / 0.88); }
.module.feature .mtag { background: var(--on-accent); color: var(--accent-deep); }
.module.feature .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.module.feature .btn-ghost:hover { background: #fff; color: var(--accent-deep); border-color: #fff; }
.module .mmeta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.module .mtag { font-family: var(--f-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border-radius: 3px; background: var(--bg-2); color: var(--ink-soft); }
.module .mtag.hot { background: var(--accent); color: var(--on-accent); }
.module h3 { margin-bottom: 12px; }
.module p { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.55; }
.module .btn { margin-top: 24px; align-self: flex-start; }

/* Galerie (Workshop Moments) */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s; box-shadow: var(--shadow);
}
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-lift); }

/* Methoden-Schritte (Change Management) — nummerierte Zeilen */
.method { counter-reset: meth; display: grid; gap: 18px; }
.mrow {
  counter-increment: meth;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3.5vw, 48px); align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px) clamp(26px, 4vw, 48px);
  transition: border-color .25s, box-shadow .25s;
}
.mrow:hover { border-color: var(--line-strong); box-shadow: var(--shadow); }
.mrow::before {
  content: "0" counter(meth);
  font-family: var(--f-display); font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  font-size: clamp(2.4rem, 5vw, 4rem);
  -webkit-text-stroke: 2px var(--accent); color: transparent;
}
.mrow h3 { margin-bottom: 10px; }
.mrow p { font-size: 1rem; color: var(--ink-soft); line-height: 1.55; max-width: 70ch; }

/* Säulen / Bios (Über uns) */
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bio {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
}
.bio img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center top; }
.ai-photo { position: relative; margin: 0; line-height: 0; }
.ai-badge {
  font-family: var(--f-mono); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1;
  color: #fff; background: oklch(0 0 0 / 0.6); backdrop-filter: blur(2px);
  padding: 5px 9px; border-radius: 6px; pointer-events: none;
}
.ai-photo .ai-badge { position: absolute; left: 12px; bottom: 12px; }
.hero .ai-badge-hero { position: absolute; right: 16px; bottom: 16px; z-index: 3; }
.about-photo .ai-badge-about { position: absolute; right: 12px; bottom: 12px; z-index: 2; }
.hero .hero-net {
  position: absolute; right: 0; bottom: 0; z-index: 2;
  width: clamp(260px, 60%, 1050px); height: auto;
  pointer-events: none; user-select: none;
}
.bio .bio-body { padding: 30px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.bio .brole { font-family: var(--f-mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.bio h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 14px; }
.bio p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.55; }
.bio ul { list-style: none; margin: 18px 0; display: flex; flex-direction: column; gap: 9px; }
.bio li { display: flex; gap: 10px; font-size: 0.94rem; color: var(--ink-soft); line-height: 1.45; }
.bio li::before { content: ""; width: 7px; height: 7px; background: var(--accent); transform: rotate(45deg); flex: none; margin-top: 7px; }
.bio .superpower {
  margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line-strong);
  font-family: var(--f-display); font-weight: 800; font-style: italic; font-size: 1.02rem; color: var(--ink); line-height: 1.35;
}
.bio .superpower .sp { font-family: var(--f-mono); font-style: normal; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; }

/* Blog-Karten */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--accent); }
.post .ptag { font-family: var(--f-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.post h3 { font-size: 1.2rem; line-height: 1.15; margin-bottom: 12px; }
.post p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.post .olink { margin-top: 20px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-display); font-weight: 800; color: var(--accent); font-size: 0.95rem; }

/* Rechtstexte */
.legal { max-width: 800px; }
.legal h1 { margin-bottom: 10px; }
.legal .stand { font-family: var(--f-mono); font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 40px; }
.legal h2 { font-family: var(--f-display); font-weight: 800; font-size: 1.35rem; margin: 44px 0 14px; letter-spacing: -0.01em; }
.legal h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; margin: 30px 0 10px; }
.legal p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 20px; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  /* Header scrollt auf Mobile mit (nicht sticky) */
  .nav { position: static; background: var(--bg); backdrop-filter: none; }
  .nav.scrolled { box-shadow: none; }
  .nav-links { display: none; }
  .menu-btn { display: grid; }
  body.menu-open { overflow: hidden; }
  .mobile-menu { display: block; position: fixed; inset: 0; z-index: 60; background: var(--bg); padding: 78px var(--gut) 22px; transform: translateY(-110%); transition: transform .32s cubic-bezier(.2,.7,.3,1); overflow-y: auto; }
  .mobile-menu.open { transform: translateY(0); }
  .menu-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--radius); font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); background: var(--bg-2); }
  .mobile-menu a { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; padding: 16px 0; border-bottom: 1px solid var(--line); letter-spacing: -0.01em; }
  .mobile-menu .btn { margin-top: 22px; width: 100%; justify-content: center; font-size: 1.05rem; }

  .cards-3, .uc-grid, .offer-grid, .testi-grid, .guard-grid, .module-grid, .post-grid, .bio-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat + .stat { border-left: none; border-top: 1px solid oklch(1 0 0 / 0.28); padding-top: 28px; }
  .step { grid-template-columns: auto 1fr; }
  .step .soutcome { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 18px; max-width: none; }
  .compare-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .foot-cta { grid-template-columns: 1fr; }
  .foot-low { flex-direction: column; }
}
@media (max-width: 560px) {
  .stat .num { font-size: 4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .mrow { grid-template-columns: 1fr; }
}

/* ============================================================
   Logo-Wordmark, Dropdown-Navigation
   ============================================================ */
.brand-logo { height: 28px; width: auto; display: block; }
.foot-brand .brand-logo { height: 26px; }

.nav-item { position: relative; }
.nav-item > .nav-link .caret { display: inline-block; margin-left: 5px; font-size: 0.7em; transition: transform .2s; }
.nav-sub {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 60;
}
.nav-item:hover > .nav-sub, .nav-item:focus-within > .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item:hover > .nav-link .caret, .nav-item:focus-within > .nav-link .caret { transform: rotate(180deg); }
.nav-sub a {
  display: block; padding: 11px 14px; border-radius: var(--radius);
  font-size: 0.93rem; font-weight: 600; color: var(--ink-soft); transition: background .15s, color .15s;
}
.nav-sub a:hover { background: var(--accent-tint); color: var(--accent); }
.mobile-menu .sub-label { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); padding: 18px 0 4px; }
.mobile-menu a.sub-item { font-size: 1.15rem; padding: 12px 0 12px 16px; }

/* ============================================================
   Cookie-Consent-Banner
   ============================================================ */
.cookie-banner {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 90;
  max-width: 560px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); padding: 24px 26px;
  display: none;
}
.cookie-banner.show { display: block; animation: cookieIn .35s cubic-bezier(.2,.7,.3,1); }
@keyframes cookieIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.cookie-banner h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.cookie-banner h3::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s infinite; }
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.7em 1.2em; font-size: 0.88rem; }

/* ============================================================
   KI-Readiness-Quiz
   ============================================================ */
.quiz-shell { max-width: 780px; margin-inline: auto; }
.quiz-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); padding: clamp(28px, 4vw, 48px);
}
.quiz-progress { display: flex; gap: 5px; margin-bottom: 28px; }
.quiz-progress i { height: 5px; flex: 1; background: var(--line); border-radius: 2px; transition: background .3s; }
.quiz-progress i.on { background: var(--accent); }
.quiz-dim { font-family: var(--f-mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.quiz-q { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 26px; }
.quiz-answers { display: grid; gap: 10px; }
.quiz-answer {
  text-align: left; border: 1.5px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: 16px 18px; font-size: 0.98rem; line-height: 1.4; color: var(--ink-soft);
  transition: border-color .15s, background .15s, transform .15s; display: flex; gap: 12px; align-items: flex-start;
}
.quiz-answer:hover { border-color: var(--accent); background: var(--accent-tint); color: var(--ink); transform: translateX(4px); }
.quiz-answer .ltr { font-family: var(--f-mono); font-weight: 700; font-size: 0.78rem; color: var(--accent); flex: none; margin-top: 2px; }
.quiz-meta { font-family: var(--f-mono); font-size: 0.76rem; color: var(--ink-faint); margin-top: 22px; letter-spacing: 0.04em; }
.quiz-result-tier { font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.quiz-result-title { font-family: var(--f-display); font-weight: 900; font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1; letter-spacing: -0.02em; margin-bottom: 16px; }
.quiz-result-text { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 28px; }
.quiz-dims { display: grid; gap: 14px; margin-bottom: 32px; }
.quiz-dim-row { display: grid; grid-template-columns: 170px 1fr auto; gap: 14px; align-items: center; }
.quiz-dim-row .dlabel { font-family: var(--f-mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.quiz-dim-row .dbar { height: 8px; background: var(--bg-2); border-radius: 4px; overflow: hidden; }
.quiz-dim-row .dbar i { display: block; height: 100%; background: var(--accent); border-radius: 4px; width: 0; transition: width .8s cubic-bezier(.2,.7,.3,1); }
.quiz-dim-row .dval { font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700; color: var(--ink); min-width: 38px; text-align: right; }
.quiz-restart { margin-top: 18px; }
@media (max-width: 560px) { .quiz-dim-row { grid-template-columns: 1fr auto; } .quiz-dim-row .dbar { grid-column: 1 / -1; } }

/* Quiz: Intro, Kontaktformular, Tachometer */
.quiz-intro ul { list-style: none; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 12px; }
.quiz-intro li { display: flex; gap: 11px; font-size: 0.98rem; color: var(--ink-soft); line-height: 1.5; }
.quiz-intro li::before { content: ""; width: 7px; height: 7px; background: var(--accent); transform: rotate(45deg); flex: none; margin-top: 8px; }
.quiz-intro .note { font-style: italic; font-size: 0.92rem; color: var(--ink-faint); margin-bottom: 26px; }
.quiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.quiz-nav .spacer { flex: 1; }
.form-group { margin-bottom: 18px; }
.form-label { font-family: var(--f-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 7px; }
.form-label .req { color: var(--accent); }
.form-input, .form-textarea {
  width: 100%; font-family: var(--f-body); font-size: 0.95rem; color: var(--ink);
  background: var(--bg-2); border: 1.5px solid transparent; border-radius: var(--radius-lg);
  padding: 13px 15px; outline: none; transition: border-color .15s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-error { font-size: 0.8rem; color: #c0392b; margin-top: 5px; display: none; }
.consent-wrap { display: flex; align-items: flex-start; gap: 11px; margin: 22px 0 6px; }
.consent-wrap input[type="checkbox"] { width: 19px; height: 19px; min-width: 19px; accent-color: #F135CB; margin-top: 2px; cursor: pointer; }
.consent-wrap label { font-size: 0.85rem; color: var(--ink-faint); line-height: 1.55; cursor: pointer; }
.consent-wrap label a { color: var(--accent); text-decoration: underline; }
.tacho-wrap { position: relative; width: 300px; height: 158px; margin: 0 auto 26px; }
.tacho-wrap svg { width: 100%; height: 100%; overflow: visible; }
.tacho-center { position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); text-align: center; line-height: 1.15; }
.tacho-score-num { font-family: var(--f-display); font-size: 2.5rem; font-weight: 900; color: var(--accent); display: block; letter-spacing: -0.02em; }
.tacho-score-label { font-family: var(--f-mono); font-size: 0.7rem; color: var(--ink-faint); }
.quiz-result-center { text-align: center; }
.quiz-result-center .quiz-dims { text-align: left; }
.quiz-result-center .hero-cta { justify-content: center; }
.quiz-sent { font-family: var(--f-mono); font-size: 0.76rem; color: var(--ink-faint); margin-top: 18px; letter-spacing: 0.04em; }

/* ============================================================
   Blog-Artikel
   ============================================================ */
.article-hero { position: relative; }
.article-hero img { width: 100%; max-height: 440px; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-lift); }
.article { max-width: 760px; margin-inline: auto; }
.article-head { margin-bottom: 36px; }
.article-head .kicker { margin-bottom: 18px; }
.article-head h1 { font-family: var(--f-display); font-weight: 900; font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 18px; text-wrap: balance; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.04em; }
.article-body p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; }
.article-body p:first-of-type em { color: var(--ink); }
.article-body h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.1; letter-spacing: -0.015em; margin: 46px 0 18px; }
.article-body h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.2rem; margin: 34px 0 14px; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid var(--accent); padding: 6px 0 6px 22px; margin: 28px 0; font-family: var(--f-display); font-weight: 700; font-style: italic; font-size: 1.15rem; color: var(--ink); line-height: 1.4; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body strong { color: var(--ink); }
.article-back { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-display); font-weight: 800; color: var(--accent); font-size: 0.95rem; margin-bottom: 28px; }
.article-cta { margin-top: 56px; padding: 32px; background: var(--accent); color: var(--on-accent); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow-lift); }
.article-cta .t { font-family: var(--f-display); font-weight: 800; font-size: 1.25rem; line-height: 1.15; max-width: 26ch; }
.article-cta .btn { background: var(--on-accent); color: var(--accent-deep); }
.article-cta .btn:hover { background: var(--cream); transform: translateY(-2px); }
.post .pdate { font-family: var(--f-mono); font-size: 0.74rem; color: var(--ink-faint); margin-bottom: 10px; letter-spacing: 0.04em; }
.post-img { width: calc(100% + 56px); margin: -30px -28px 20px; aspect-ratio: 16/9; object-fit: cover; border-bottom: 1px solid var(--line); }
