/* ============================================================
   DotGrid Komponenten-CSS (aus React-Bits übernommen)
   ============================================================ */
.dot-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}
.dot-grid__wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.dot-grid__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ============================================================
   Basis (Silber/Weiß-Variante)
   ============================================================ */
:root {
  --bg: #08080b;
  --fg: #ffffff;
  --muted: #a7abb5;
  --accent: #d6dae3;        /* Silber */
  --anthracite: #1c1e24;    /* Anthrazit Schriftfarbe */
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ============================================================
   HERO  (Dark + DotGrid)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(60% 50% at 50% 45%, rgba(214,218,227,0.14) 0%, rgba(8,8,11,0) 70%);
}

/* ---------- Glas-Menü ---------- */
.glass-nav {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 14px 10px 22px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}
.glass-nav__brand {
  display: flex; align-items: center; gap: 9px;
  font-weight: 700; letter-spacing: -0.02em; font-size: 15px;
}
.glass-nav__logo {
  height: 22px; width: auto; display: block;
  filter: drop-shadow(0 0 8px rgba(214,218,227,0.35));
}
.glass-nav__links {
  display: flex; align-items: center; gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
.glass-nav__links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color .18s ease;
}
.glass-nav__links a:hover { color: #fff; }
.glass-nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 9999px;
  background: #fff; color: #0a0a0a;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.glass-nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,0.18); }
.glass-nav__burger { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 6px; }

/* ---------- Hero Content ---------- */
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; min-height: 100svh;
  padding: 120px 24px 80px;
  pointer-events: none;
}
.hero__content a, .hero__content button { pointer-events: auto; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 9999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; color: var(--muted); margin-bottom: 26px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__badge span.tag { color: #fff; font-weight: 600; }
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.02; letter-spacing: -0.04em; font-weight: 700;
  margin: 0 0 22px; max-width: 16ch;
}
.hero__title .grad {
  background: linear-gradient(180deg, #ffffff 0%, #aeb4c2 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6; color: var(--muted); max-width: 54ch; margin: 0 0 38px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn--primary {
  background: linear-gradient(180deg, #ffffff 0%, #d6dae3 100%);
  color: #0a0a0a; box-shadow: 0 10px 30px rgba(214,218,227,0.3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(214,218,227,0.45); }
.btn--ghost {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.16); color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.hero__hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 13px; color: rgba(167,171,181,0.7); pointer-events: none;
}

/* ============================================================
   Shared section header
   ============================================================ */
.sec-head { text-align: center; max-width: 60ch; margin: 0 auto 56px; }
.sec-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px;
}
.sec-title { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.08; letter-spacing: -0.03em; font-weight: 700; margin: 0 0 16px; }
.sec-lead { font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.6; margin: 0; }

/* ============================================================
   SECTION 2 — COMPETENCIES (Silber/Weiß-Verlauf, Anthrazit-Text)
   ============================================================ */
.competencies {
  position: relative;
  background: linear-gradient(180deg, #1f2229 0%, #111319 55%, #08080b 100%);
  color: #eef0f4;
  padding: 130px 24px 140px;
}
.competencies .sec-eyebrow { color: #b9c0cf; }
.competencies .sec-title { color: #ffffff; }
.competencies .sec-lead { color: #a7abb5; }

.cards {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}

.card-tilt {
  position: relative;
  background: linear-gradient(160deg, #1d2027 0%, #14161b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease;
  will-change: transform;
}
.card-tilt:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 64px rgba(0,0,0,0.6);
  border-color: rgba(214,218,227,0.28);
}
/* glanz-sweep beim hover */
.card-tilt::before {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 50%; height: 100%; z-index: 3; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: skewX(-18deg);
  transition: left .7s ease;
}
.card-tilt:hover::before { left: 130%; }

.card-media {
  position: relative; height: 200px; overflow: hidden;
  /* Fallback-Verlauf, falls Bild nicht lädt */
  background: linear-gradient(150deg, #3a4658, #11151c);
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.card-tilt:hover .card-media img { transform: scale(1.09); }
/* dezenter blaugrauer Duoton-Overlay + Verlauf zum Karten-BG */
.card-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,22,27,0) 55%, rgba(20,22,27,1) 100%),
    linear-gradient(160deg, rgba(58,76,102,0.45), rgba(18,26,38,0.30));
}
.card-body { padding: 24px 24px 30px; }
.card-num {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  color: #8a90a0; margin-bottom: 12px; font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.card-h { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 10px; color: #ffffff; }
.card-p { font-size: 0.97rem; line-height: 1.6; color: #aab0bd; margin: 0; }

/* ============================================================
   SECTION 3 — INDUSTRIES (dunkles Anthrazit, Marquee)
   ============================================================ */
.industries {
  background: linear-gradient(180deg, #08080b 0%, #14161b 30%, #16181e 100%);
  color: #e8eaef;
  padding: 120px 0 130px;
  overflow: hidden;
}
.industries .sec-eyebrow { color: #b9c0cf; }
.industries .sec-lead { color: #aab0bd; }
.industries .sec-head { padding: 0 24px; }

.marquee {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; gap: 22px; width: max-content;
  animation: marquee 90s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ind-card {
  position: relative;
  flex: 0 0 300px;
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(150deg, #2b3340, #11151c);
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.ind-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 26px 50px rgba(0,0,0,0.55);
}
.ind-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(0.86);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}
.ind-card:hover img { transform: scale(1.1); filter: saturate(1.15) contrast(1.06) brightness(1); }
.ind-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,10,14,0.05) 35%, rgba(8,10,14,0.82) 100%);
}
.ind-card__label {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; color: #fff;
}
.ind-card__idx {
  position: absolute; top: 16px; right: 18px; z-index: 2;
  font-size: 12px; color: rgba(214,218,227,0.7);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* ============================================================
   SECTION 4 — LET'S TALK (Dark + DotGrid)
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  min-height: 78svh;
  display: flex; align-items: center; justify-content: center;
  background: #08080b;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(55% 50% at 50% 50%, rgba(214,218,227,0.12) 0%, rgba(8,8,11,0) 70%);
}
.cta__inner {
  position: relative; z-index: 2; text-align: center; padding: 80px 24px;
  pointer-events: none;
}
.cta__inner a { pointer-events: auto; }
.cta__eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.cta__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05; letter-spacing: -0.04em; font-weight: 700;
  margin: 0 0 34px; max-width: 18ch; margin-inline: auto;
}
.cta__title .grad {
  background: linear-gradient(180deg, #ffffff 0%, #aeb4c2 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   FOOTER (Dark, dezenter Silber-Trennstrich)
   ============================================================ */
.footer {
  background: #08080b;
  border-top: 1px solid rgba(214,218,227,0.18);
  padding: 30px 24px 36px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 760px) {
  .glass-nav { gap: 14px; padding: 9px 12px 9px 18px; width: calc(100% - 32px); justify-content: space-between; }
  .glass-nav__links { display: none; }
  .glass-nav__cta { display: none; }
  .glass-nav__burger { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================================
   Mobile Menu (Burger Dropdown)
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 80px; left: 16px; right: 16px;
  z-index: 49;
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(20,22,27,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: 12px;
  color: #e8eaef; text-decoration: none; font-size: 15px; font-weight: 600;
  transition: background .18s ease, color .18s ease;
}
.mobile-menu a:hover, .mobile-menu a:active { background: rgba(255,255,255,0.06); color: #fff; }
.mobile-menu__cta {
  margin-top: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #d6dae3 100%);
  color: #0a0a0a !important; justify-content: center !important;
  box-shadow: 0 8px 24px rgba(214,218,227,0.25);
}
.glass-nav__burger.is-open { color: var(--accent); }
@media (min-width: 761px) { .mobile-menu { display: none !important; } }

/* ============================================================
   AUDIT FUNNEL (audit.html — Dark + DotGrid, Silber/Weiß)
   ============================================================ */
.audit {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 90px;
}
.audit__bg { position: absolute; inset: 0; z-index: 0; }
.audit::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(58% 50% at 50% 38%, rgba(214,218,227,0.12) 0%, rgba(8,8,11,0) 70%);
}
.audit__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 640px; margin: 0 auto;
}

/* ---------- Intro ---------- */
.audit-intro {
  text-align: center; max-width: 560px; margin: 0 auto 34px;
  transition: opacity .5s ease, max-height .5s ease, margin .5s ease;
}
.audit-intro.is-hidden {
  opacity: 0; max-height: 0; margin-bottom: 0; overflow: hidden; pointer-events: none;
}
.audit-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 9999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--accent); margin-bottom: 18px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.audit-pill .dot { width: 7px; height: 7px; border-radius: 9999px; background: var(--accent); }
.audit-intro__title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.05; letter-spacing: -0.035em; font-weight: 700;
  margin: 0 0 16px; color: #fff;
}
.audit-intro__title .grad {
  background: linear-gradient(180deg, #ffffff 0%, #aeb4c2 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.audit-intro__lead { font-size: clamp(1rem, 2vw, 1.12rem); line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- Progress ---------- */
.audit-progress { max-width: 520px; margin: 0 auto 22px; }
.audit-progress__meta {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #8a90a0; margin-bottom: 9px;
}
.audit-progress__bar {
  width: 100%; height: 6px; border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08); overflow: hidden;
}
.audit-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, #d6dae3 100%);
  border-radius: 9999px;
  transition: width .5s cubic-bezier(.2,.7,.2,1), background .4s ease;
}

/* ---------- Card ---------- */
.audit-card {
  max-width: 520px; margin: 0 auto;
  background: linear-gradient(160deg, #1d2027 0%, #14161b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
@media (min-width: 640px) { .audit-card { padding: 38px 36px; } }

.audit-step { display: flex; flex-direction: column; gap: 22px; }
.audit-step.is-hidden { display: none; }
.audit-step__head h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 700;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 8px;
}
.audit-step__head p { font-size: 12.5px; color: #8a90a0; margin: 0; line-height: 1.5; }

/* ---------- Radio options ---------- */
.audit-options { display: grid; grid-template-columns: 1fr; gap: 12px; }
.audit-option {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(8,8,11,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.audit-option:hover { border-color: rgba(214,218,227,0.4); background: rgba(8,8,11,0.85); }
.audit-option input { margin-top: 3px; accent-color: #d6dae3; flex: 0 0 auto; }
.audit-option:has(input:checked) {
  border-color: rgba(214,218,227,0.55);
  background: rgba(214,218,227,0.06);
}
.audit-option__title {
  display: block; font-size: 14px; font-weight: 700; color: #fff;
  margin-bottom: 3px; transition: color .2s ease;
}
.audit-option:hover .audit-option__title { color: var(--accent); }
.audit-option__desc { display: block; font-size: 12px; line-height: 1.5; color: #9a9faa; }

/* ---------- Fields ---------- */
.audit-fields { display: flex; flex-direction: column; gap: 16px; }
.audit-field label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #9a9faa; margin-bottom: 6px;
}
.audit-field input,
.audit-field select {
  width: 100%;
  background: rgba(8,8,11,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff; font-size: 14px; font-family: inherit;
  transition: border-color .2s ease;
}
.audit-field input:focus,
.audit-field select:focus { outline: none; border-color: var(--accent); }
.audit-field select { appearance: none; cursor: pointer; }
.audit-field-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 540px) { .audit-field-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Success ---------- */
.audit-success { text-align: center; }
.audit-success__icon {
  width: 60px; height: 60px; margin: 0 auto 6px;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(52,211,153,0.12);
  border: 1.5px solid rgba(52,211,153,0.55);
  color: #34d399;
  box-shadow: 0 0 28px -4px rgba(52,211,153,0.4);
}
/* grüner Pfeil im Abschluss-CTA */
.audit-success .btn svg { stroke: #10b981; }
.audit-success h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0 0 8px; }
.audit-success__lead { font-size: 13.5px; color: var(--muted); max-width: 360px; margin: 0 auto; line-height: 1.55; }
.audit-success__box {
  text-align: left; margin-top: 4px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(8,8,11,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}
.audit-success__tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: rgba(214,218,227,0.1);
  padding: 3px 10px; border-radius: 9999px; margin-bottom: 10px;
}
.audit-success__box h4 { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.audit-success__box p { font-size: 12px; color: #9a9faa; margin: 0; line-height: 1.5; }
.audit-success .btn { width: 100%; justify-content: center; }

/* ---------- Controls ---------- */
.audit-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.audit-controls.is-hidden { display: none; }
.audit-back {
  background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #8a90a0; transition: color .18s ease; padding: 6px 4px;
}
.audit-back:hover { color: #fff; }
.audit-back.is-hidden { visibility: hidden; }
.audit-next {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 12px;
  font-family: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  background: linear-gradient(180deg, #ffffff 0%, #d6dae3 100%);
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(214,218,227,0.3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.audit-next:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(214,218,227,0.45); }

/* ---------- Sub-questions (grouped within a step) ---------- */
.audit-subq { display: flex; flex-direction: column; gap: 11px; }
.audit-subq + .audit-subq { padding-top: 4px; }
.audit-subq__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #9a9faa;
}
.audit-subq.is-hidden { display: none; }

/* ---------- Multi-select grid + compact options ---------- */
.audit-options--multi { gap: 10px; }
@media (min-width: 540px) { .audit-options--multi { grid-template-columns: 1fr 1fr; } }
.audit-option--compact { align-items: center; padding: 13px 14px; }
.audit-option--compact .audit-option__title { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .audit-progress__fill, .audit-intro { transition: none; }
}

/* ============================================================
   INDEX22 — Consulting / Transformation sections
   ============================================================ */
/* Gradient-Canvas hinter allen Sektionen nach dem Hero (dezent durch dunkles Overlay) */
.x2-canvas {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,8,11,0.86) 0%, rgba(8,8,11,0.82) 100%),
    linear-gradient(135deg, rgba(34,64,77,1) 0%, rgba(8,43,64,1) 50%, rgba(14,58,140,1) 100%);
}
.x2-section { position: relative; padding: 110px 24px; }
.x2-section--alt {
  background: rgba(5,8,12,0.5);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.x2-wrap { max-width: 1120px; margin: 0 auto; }
.x2-section .sec-eyebrow { color: #b9c0cf; }
.x2-section .sec-title { color: #fff; }
.x2-section .sec-lead { color: var(--muted); }

/* pulse dot for hero badge */
.pulse-dot {
  width: 7px; height: 7px; border-radius: 9999px; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(214,218,227,0.5); animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(214,218,227,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(214,218,227,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,218,227,0); }
}

/* --- Status Quo split layout --- */
.x2-split { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .x2-split { grid-template-columns: 5fr 7fr; } }
.x2-intro__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; color: #fff; line-height: 1.1; margin: 0 0 18px; }
.x2-intro__text { color: var(--muted); line-height: 1.65; margin: 0 0 22px; }
.x2-quote {
  padding: 18px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--accent);
  font-style: italic; color: #c7ccd6; font-size: 14px; line-height: 1.6;
}

/* --- 2x2 / generic dark cards --- */
.x2-cards-2 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .x2-cards-2 { grid-template-columns: 1fr 1fr; } }
.x2-card {
  padding: 26px 24px; border-radius: 18px;
  background: linear-gradient(160deg, #1d2027 0%, #14161b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.x2-card:hover { transform: translateY(-6px); border-color: rgba(214,218,227,0.25); box-shadow: 0 26px 54px rgba(0,0,0,0.55); }
.x2-badge {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; margin-bottom: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: #c7ccd6;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.x2-badge--green { background: rgba(52,211,153,0.12); border-color: rgba(52,211,153,0.4); color: #34d399; }
.x2-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0 0 8px; letter-spacing: -0.01em; }
.x2-card h3.is-green { color: #34d399; }
.x2-card p { font-size: 0.92rem; line-height: 1.6; color: var(--muted); margin: 0; }

/* --- Pillars (4-up) --- */
.x2-grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .x2-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .x2-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.x2-pillar {
  padding: 30px 26px; border-radius: 18px;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 300px;
  background: linear-gradient(180deg, #1a1d23 0%, #0b0d12 100%);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color .35s ease, transform .35s ease;
}
.x2-pillar:hover { border-color: rgba(214,218,227,0.28); transform: translateY(-6px); }
.x2-pillar__num { font-size: 3rem; font-weight: 800; line-height: 1; color: rgba(255,255,255,0.08); margin-bottom: 20px; transition: color .35s ease; }
.x2-pillar:hover .x2-pillar__num { color: rgba(214,218,227,0.18); }
.x2-pillar h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin: 0 0 10px; }
.x2-pillar p { font-size: 0.9rem; line-height: 1.6; color: var(--muted); margin: 0 0 18px; }
.x2-pillar__tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #b9c0cf; }

/* --- Services / plans (3-up) --- */
.x2-grid-3 { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: stretch; }
@media (min-width: 980px) { .x2-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.x2-plan {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  padding: 34px 28px; border-radius: 20px;
  background: linear-gradient(160deg, #1d2027 0%, #14161b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.x2-plan--featured { border-color: rgba(214,218,227,0.55); box-shadow: 0 26px 60px rgba(0,0,0,0.6), 0 0 40px -10px rgba(214,218,227,0.25); }
@media (min-width: 980px) { .x2-plan--featured { transform: translateY(-16px); } }
.x2-plan__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, #fff, #d6dae3); color: #0a0a0a;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 9999px; white-space: nowrap;
}
.x2-plan h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0 0 6px; }
.x2-plan__sub { font-size: 13px; font-weight: 600; color: #b9c0cf; margin: 0 0 20px; }
.x2-plan p { font-size: 0.92rem; line-height: 1.65; color: var(--muted); margin: 0 0 28px; }
.x2-plan .btn { width: 100%; justify-content: center; }
.x2-plan .btn--ghost { color: #fff; }

/* --- Philosophy --- */
.x2-philo {
  max-width: 820px; margin: 0 auto; text-align: center; padding: 56px 36px; border-radius: 26px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.x2-philo h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: #fff; margin: 0 0 18px; letter-spacing: -0.02em; }
.x2-philo p { color: #c7ccd6; font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.7; max-width: 620px; margin: 0 auto 30px; }
.x2-stats { display: inline-flex; align-items: center; gap: 28px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }
.x2-stats__n { font-size: 1.6rem; font-weight: 800; color: #fff; }
.x2-stats__n.is-accent { color: var(--accent); }
.x2-stats__l { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8a90a0; }
.x2-stats__div { width: 1px; height: 34px; background: rgba(255,255,255,0.12); }

/* --- Contact form --- */
.x2-form {
  max-width: 680px; margin: 0 auto; padding: 34px 30px; border-radius: 22px;
  background: linear-gradient(160deg, #1d2027 0%, #14161b 100%); border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.x2-form .audit-fields { gap: 18px; }
.audit-field textarea {
  width: 100%; background: rgba(8,8,11,0.8); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 16px; color: #fff; font-size: 14px; font-family: inherit;
  resize: vertical; min-height: 120px;
}
.audit-field textarea:focus { outline: none; border-color: var(--accent); }
.x2-form .btn { width: 100%; justify-content: center; }
.x2-feedback { display: none; text-align: center; font-size: 13px; font-weight: 600; padding: 12px; border-radius: 10px; }
.x2-feedback.is-info { display: block; background: rgba(214,218,227,0.08); color: #c7ccd6; }
.x2-feedback.is-ok { display: block; background: rgba(52,211,153,0.12); color: #34d399; }
.x2-feedback.is-err { display: block; background: rgba(248,113,113,0.12); color: #f87171; }
