/* ============================================================
   WERKBANK — One-Pager Styles
   Built on Immerdran tokens · Apple-inspired Mittelstand
   Blueprint / Aufmaß visual language
   ============================================================ */

@import url('ds/colors_and_type.css');

/* ── Werkbank brand overrides ──────────────────────────────── */
:root {
  --wb-ink:        #14161C;          /* slightly darker than Immerdran */
  --wb-navy:       #161E2E;          /* deep navy for dark tiles */
  --wb-navy-mid:   #1F2940;
  --wb-parchment:  #F4F1EB;          /* slightly warmer than Immerdran */
  --wb-paper:      #FAF8F3;          /* lightest blueprint paper */
  --wb-blue:       #0055B3;
  --wb-blue-dark:  #00447F;
  --wb-amber:      #D77036;
  --wb-amber-light:#FBEFE5;
  --wb-rule:       rgba(20,22,28,0.10);
  --wb-rule-strong:rgba(20,22,28,0.22);
  --wb-rule-dark:  rgba(255,255,255,0.14);
  --wb-grid:       rgba(20,22,28,0.045);
}

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  color: var(--wb-ink);
  background: var(--wb-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
}
button { font-family: inherit; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Layout primitives ─────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }

/* ── Type utilities ────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wb-amber);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}
.eyebrow.is-dark { color: var(--wb-amber); }

.h-display {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--wb-ink);
}
.h-section {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--wb-ink);
}
.h-card {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.22;
  letter-spacing: -0.015em;
}
.lead {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(20,22,28,0.66);
}
.body { font-size: 17px; line-height: 1.55; color: rgba(20,22,28,0.74); }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(20,22,28,0.55); }
.dark .mono, .dark .lead { color: rgba(255,255,255,0.62); }
.dark .body { color: rgba(255,255,255,0.74); }
.dark .h-section, .dark .h-card, .dark .h-display { color: #fff; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: transform 100ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--wb-ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-amber { background: var(--wb-amber); color: #fff; }
.btn-amber:hover { background: #B85B26; }
.btn-ghost {
  background: transparent;
  color: var(--wb-ink);
  border: 1px solid var(--wb-rule-strong);
}
.btn-ghost:hover { border-color: var(--wb-ink); }
.btn-ghost.is-light {
  color: #fff;
  border-color: rgba(255,255,255,0.32);
}
.btn-ghost.is-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-arrow::after {
  content: '→';
  margin-left: -2px;
  transition: transform 160ms ease;
}
.btn:hover .btn-arrow::after,
.btn.btn-arrow:hover::after { transform: translateX(3px); }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 92px;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: height 280ms cubic-bezier(0.22,1,0.36,1), padding 280ms cubic-bezier(0.22,1,0.36,1);
}
/* Soft top scrim — premium fade at the very top, hands off to the pill on scroll */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  bottom: auto;
  height: 160%;
  background: linear-gradient(180deg, rgba(15,20,32,0.55) 0%, rgba(15,20,32,0.18) 45%, transparent 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 280ms ease;
  z-index: -1;
}
.nav.is-scrolled::before { opacity: 0; }
.nav-inner {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  height: 100%;
  display: flex; align-items: center;
  padding: 0 28px;
  gap: 32px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 280ms ease, border-color 280ms ease,
              backdrop-filter 280ms ease,
              border-radius 280ms cubic-bezier(0.22,1,0.36,1),
              box-shadow 280ms ease, max-width 280ms cubic-bezier(0.22,1,0.36,1);
}
/* Floating, condensed bar once the user scrolls */
.nav.is-scrolled {
  height: 76px;
  padding: 12px 16px 0;
}
.nav.is-scrolled .nav-inner {
  max-width: 1140px;
  background: rgba(20,27,41,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(255,255,255,0.10);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 18px 50px -12px rgba(0,0,0,0.55),
    0 0 0 1px rgba(0,0,0,0.20);
}
/* Hairline scroll-progress line hugging the bottom of the bar */
.nav-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: var(--nav-progress, 0%);
  background: linear-gradient(90deg, var(--wb-amber), #F2A565);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
  z-index: 2;
}
.nav.is-scrolled .nav-progress { opacity: 0.9; }
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  margin-right: auto;
  text-decoration: none;
  color: #fff;
}
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-top: 14px;
  transition: height 280ms cubic-bezier(0.22,1,0.36,1), margin-top 280ms cubic-bezier(0.22,1,0.36,1);
}
.nav.is-scrolled .nav-logo-img { height: 56px; margin-top: 0; }
.nav-logo-img.is-footer {
  height: 64px;
}
.nav-logo-mark {
  display: inline-block;
  width: 18px; height: 18px;
  position: relative;
  transform: translateY(2px);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.nav-links {
  display: flex; gap: 4px; list-style: none;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  border-radius: 8px;
  transition: color 160ms ease;
}
/* Animated amber underline that grows from the centre */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--wb-amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms cubic-bezier(0.22,1,0.36,1), opacity 200ms ease;
  opacity: 0;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); opacity: 1; }
.nav-links a.is-active { color: #fff; }
.nav-links a.is-active::after { transform: scaleX(1); opacity: 1; }
.nav-cta {
  background: var(--wb-amber); color: #fff;
  font-size: 14px; padding: 10px 18px;
  border-radius: 980px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 160ms ease, transform 100ms ease;
}
.nav-cta:hover { background: #B85B26; }
.nav-cta:active { transform: scale(0.97); }
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 132px 0 0;
  background: var(--wb-navy);
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 38%, #000 25%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 38%, #000 25%, transparent 95%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  /* soft amber glow center-bottom — pushed below marquee so it sits under logos */
  content: '';
  position: absolute;
  left: 50%; bottom: -300px;
  width: 1100px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(215,112,54,0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-stage {
  position: relative;
  text-align: center;
  padding: 28px 0 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wb-amber);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--wb-amber);
  border-radius: 50%;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: none;
  margin: 0 auto;
  text-wrap: pretty;
}
.hero-headline em {
  font-style: normal;
  color: var(--wb-amber);
  position: relative;
  white-space: nowrap;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 8px;
  background: rgba(215,112,54,0.22);
  z-index: -1;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
  max-width: 58ch;
  margin: 28px auto 36px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-ctas > .btn,
.hero-ctas > .voice-block {
  width: 320px;
  max-width: 100%;
  justify-content: center;
}
.hero-ctas > .voice-block { justify-content: flex-start; padding-left: 18px; }

/* Voice KI dot */
.voice-block {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 980px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  cursor: pointer;
  text-align: left;
}
.voice-block:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.28);
}
.voice-orb {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FF9E6B, var(--wb-amber) 65%);
  flex: none;
}
.voice-orb::before, .voice-orb::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--wb-amber);
  animation: voice-pulse 2.4s ease-out infinite;
}
.voice-orb::after { animation-delay: 1.2s; }
@keyframes voice-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  80%  { transform: scale(2.0); opacity: 0;   }
  100% { transform: scale(2.0); opacity: 0;   }
}
.voice-text { display: flex; flex-direction: column; line-height: 1.25; }
.voice-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.voice-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* Hero trust strip */
.hero-trust {
  display: flex; gap: 32px;
  justify-content: center; align-items: center;
  flex-wrap: wrap;
  padding: 28px 0 0;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.trust-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(74,178,118,0.18);
  color: #6BD08E;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}

/* Blueprint dimension marks around hero */
.hero-dims {
  position: absolute; inset: 0;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(20,22,28,0.42);
  text-transform: uppercase;
}
.dim {
  position: absolute;
  display: flex; align-items: center;
}
.dim-line {
  border-top: 1px dashed var(--wb-rule-strong);
  height: 1px;
}
.dim-tick { width: 1px; height: 8px; background: var(--wb-rule-strong); }
.dim-label {
  background: var(--wb-paper);
  padding: 2px 8px;
}
.hero-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--wb-rule-strong);
  border-style: solid;
  border-width: 0;
}
.hero-corner.tl { top: 80px;  left: 24px;  border-top-width: 1px; border-left-width: 1px; border-color: rgba(255,255,255,0.22); }
.hero-corner.tr { top: 80px;  right: 24px; border-top-width: 1px; border-right-width: 1px; border-color: rgba(255,255,255,0.22); }
.hero-corner.bl { bottom: 120px; left: 24px;  border-bottom-width: 1px; border-left-width: 1px; border-color: rgba(255,255,255,0.22); }
.hero-corner.br { bottom: 120px; right: 24px; border-bottom-width: 1px; border-right-width: 1px; border-color: rgba(255,255,255,0.22); }

/* Hero stat row */
.hero-blueprint {
  position: relative;
  margin: 64px auto 0;
  max-width: 920px;
  border-top: 1px solid var(--wb-rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hb-cell {
  padding: 24px 24px 8px;
  text-align: left;
  border-right: 1px solid var(--wb-rule);
  position: relative;
}
.hb-cell:last-child { border-right: none; }
.hb-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20,22,28,0.48);
  margin-bottom: 10px;
}
.hb-figure {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--wb-ink);
  line-height: 1.05;
}
.hb-figure .unit {
  font-size: 0.55em;
  color: var(--wb-amber);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0.02em;
}
.hb-caption {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(20,22,28,0.58);
  line-height: 1.45;
}
.hb-cell::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 24px; height: 1px;
  background: var(--wb-amber);
}

/* ── LOGO MARQUEE (sits inside .hero — inherits dark bg + grid) ── */
.marquee-section {
  position: relative;
  z-index: 1;
  padding: 8px 0 56px;
  background: transparent;
  border-top: none;
  border-bottom: none;
  margin-top: 0;
}
.marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 48s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-tile {
  flex: none;
  width: 200px; height: 80px;
  border: 1px solid var(--wb-rule);
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
}
.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* engel ships as a light/white logo — give it a dark tile so it reads */
.logo-tile.is-ondark {
  background: var(--wb-navy-mid);
  border-color: rgba(255,255,255,0.12);
}

/* ── PROBLEM SECTION ───────────────────────────────────────── */
.section.bg-paper { background: var(--wb-paper); }
.section.bg-parchment { background: var(--wb-parchment); }
.section.bg-dark { background: var(--wb-navy); color: #fff; }

.section-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-header.is-left { text-align: left; margin-left: 0; }
.section-header .eyebrow { justify-content: center; margin-bottom: 18px; }
.section-header.is-left .eyebrow { justify-content: flex-start; }
.section-header h2 { margin-bottom: 18px; text-wrap: balance; }
.section-header p { margin: 0 auto; max-width: 56ch; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-card {
  background: #fff;
  border: 1px solid var(--wb-rule);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}
.p-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(20,22,28,0.07);
}
.p-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wb-amber);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.p-card-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--wb-rule);
}
.p-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--wb-ink);
  text-wrap: balance;
}
.p-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(20,22,28,0.66);
  margin-bottom: 24px;
}
.p-card .stats {
  margin-top: auto;
  border-top: 1px dashed var(--wb-rule);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.p-stat .lbl {
  font-size: 12px;
  color: rgba(20,22,28,0.55);
  line-height: 1.35;
  max-width: 60%;
}
.p-stat .val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--wb-ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.p-stat .val em {
  color: var(--wb-amber);
  font-style: normal;
}

.p-summary {
  margin-top: 32px;
  background: var(--wb-ink);
  color: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.p-summary::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.p-summary > * { position: relative; }
.p-summary-text { max-width: 56ch; }
.p-summary-text .figure {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: clamp(28px, 3.3vw, 40px);
  letter-spacing: -0.022em;
  line-height: 1.12;
}
.p-summary-text .figure em {
  color: var(--wb-amber);
  font-style: normal;
}
.p-summary-text .figure-sub {
  margin-top: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.62);
}
.p-summary .btn-amber { flex: none; }
.p-foot {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(20,22,28,0.48);
  text-align: center;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ── METHODE ───────────────────────────────────────────────── */
.method-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--wb-rule-dark);
  border-radius: 18px;
  overflow: hidden;
}
.dark .method-track { background: var(--wb-navy-mid); }
.m-step {
  padding: 40px 28px 32px;
  border-right: 1px solid var(--wb-rule-dark);
  position: relative;
}
.m-step:last-child { border-right: none; }
.m-step-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.m-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--wb-amber);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  flex: none;
  box-shadow: 0 0 0 4px rgba(215,112,54,0.18);
}
.m-step-num::before {
  /* dotted connector ring */
}
.m-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.m-step-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.018em;
  color: #fff;
  margin-bottom: 16px;
}
.m-step-body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}
/* connecting horizontal axis line between steps */
.method-axis {
  position: absolute;
  top: 76px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--wb-amber) 0 8px, transparent 8px 16px);
  background-size: 16px 1px;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 980px) {
  .method-track { grid-template-columns: 1fr 1fr; }
  .m-step:nth-child(2) { border-right: none; }
  .m-step:nth-child(1), .m-step:nth-child(2) { border-bottom: 1px solid var(--wb-rule-dark); }
  .method-axis { display: none; }
}
@media (max-width: 620px) {
  .method-track { grid-template-columns: 1fr; }
  .m-step { border-right: none !important; border-bottom: 1px solid var(--wb-rule-dark); }
  .m-step:last-child { border-bottom: none; }
}

/* ── MODULE ────────────────────────────────────────────────── */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.mod-card {
  background: #fff;
  border: 1px solid var(--wb-rule);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.mod-card:hover { box-shadow: 0 12px 40px rgba(20,22,28,0.06); transform: translateY(-2px); }
.mod-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wb-amber);
  margin-bottom: 14px;
}
.mod-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin-bottom: 10px;
}
.mod-quote {
  font-style: italic;
  color: rgba(20,22,28,0.55);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--wb-rule);
}
.mod-lead {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(20,22,28,0.74);
  margin-bottom: 18px;
}
.mod-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(20,22,28,0.74);
}
.mod-list li {
  padding-left: 26px;
  position: relative;
}
.mod-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 14px; height: 1px;
  background: var(--wb-amber);
}
.mod-decide {
  margin-top: 24px;
  padding: 16px;
  border-radius: 12px;
  background: var(--wb-parchment);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(20,22,28,0.74);
}
.mod-decide strong { color: var(--wb-ink); }
.mod-closer {
  margin-top: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(20,22,28,0.62);
  font-weight: var(--weight-light);
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .module-grid { grid-template-columns: 1fr; }
}

/* ── WARUM WERKBANK ────────────────────────────────────────── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}
.why-lead {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(20,22,28,0.74);
  margin-top: 24px;
}
.why-lead strong {
  font-weight: 600;
  color: var(--wb-ink);
}
.why-list { display: flex; flex-direction: column; gap: 4px; }
.why-item {
  border-top: 1px solid var(--wb-rule);
  padding: 28px 0 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.why-item:last-child { border-bottom: 1px solid var(--wb-rule); }
.why-num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--wb-amber);
  padding-top: 4px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.018em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.why-item p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(20,22,28,0.68);
}
.why-item p strong { color: var(--wb-ink); font-weight: 600; }
@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ── KOSTEN RECHNER ────────────────────────────────────────── */
.calc-wrap {
  background: var(--wb-ink);
  border-radius: 24px;
  padding: 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.calc-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.calc-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.calc-side .calc-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.calc-sliders { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.calc-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.calc-field .label-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.005em;
}
.calc-field .label-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.015em;
}
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.14);
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--wb-amber);
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(215,112,54,0.4);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--wb-amber);
  border: 3px solid #fff;
  cursor: pointer;
}
.calc-bounds {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

.calc-display {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 56px;
}
.calc-display .label-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.calc-display .label-mono::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wb-amber);
  animation: voice-pulse 2s ease-out infinite;
}
.calc-figure {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: clamp(40px, 5.2vw, 68px);
  letter-spacing: -0.028em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.calc-figure .unit { color: var(--wb-amber); font-weight: 500; font-size: 0.45em; margin-left: 8px; letter-spacing: 0; }
.calc-tag {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 36ch;
  line-height: 1.5;
}
.calc-break {
  margin-top: 28px;
  border-top: 1px dashed rgba(255,255,255,0.16);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.calc-break-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.calc-break-row .v { font-family: var(--font-display); font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }
.calc-cta {
  margin-top: 28px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.calc-foot {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
  max-width: 64ch;
}
@media (max-width: 900px) {
  .calc-wrap { padding: 32px; }
  .calc-inner { grid-template-columns: 1fr; gap: 32px; }
  .calc-display { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 32px; }
}

/* ── TERMIN / FORM ─────────────────────────────────────────── */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 1.42fr;
  gap: 48px;
  align-items: start;
}
.booking-embed { width: 80%; justify-self: end; }
.booking-embed .calendly-inline-widget { min-width: 0 !important; }
.book-info .expect-list {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.expect-item {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(20,22,28,0.78);
}
.expect-check {
  width: 22px; height: 22px;
  flex: none;
  border-radius: 50%;
  background: rgba(42,122,75,0.12);
  color: #2A7A4B;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.form-card {
  background: #fff;
  border: 1px solid var(--wb-rule);
  border-radius: 18px;
  padding: 36px;
}
/* Calendly inline embed — no surrounding card, just the widget */
.booking-embed .calendly-inline-widget {
  border-radius: 18px;
}
.form-card .form-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wb-amber);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.form-card .form-title::after {
  content: ''; flex: 1; height: 1px; background: var(--wb-rule);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--wb-ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.form-field label .opt {
  color: rgba(20,22,28,0.42);
  font-weight: 400;
  margin-left: 4px;
}
.form-field input,
.form-field select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--wb-rule);
  border-radius: 10px;
  background: var(--wb-paper);
  color: var(--wb-ink);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2314161C' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--wb-ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20,22,28,0.06);
}
.form-submit {
  margin-top: 24px;
  width: 100%;
  background: var(--wb-ink);
  color: #fff;
  padding: 16px 24px;
  border-radius: 980px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 160ms ease, transform 100ms ease;
}
.form-submit:hover { background: #000; }
.form-submit:active { transform: scale(0.98); }
.form-trust {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(20,22,28,0.5);
  text-align: center;
  line-height: 1.5;
}
.form-success {
  display: none;
  padding: 28px 24px;
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(42,122,75,0.14);
  color: #2A7A4B;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.form-success p { font-size: 15px; color: rgba(20,22,28,0.66); line-height: 1.5; }
@media (max-width: 900px) {
  .book-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--wb-rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--wb-rule); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.015em;
  color: var(--wb-ink);
  transition: color 160ms ease;
}
.faq-q:hover { color: var(--wb-amber); }
.faq-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--wb-amber);
  font-weight: 500;
  flex: none;
  align-self: flex-start;
  padding-top: 6px;
  width: 32px;
}
.faq-q .q-text { flex: 1; }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--wb-rule-strong);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex: none;
  transition: background 160ms ease, transform 200ms ease, border-color 160ms ease;
}
.faq-toggle svg { transition: transform 200ms ease; }
.faq-item.is-open .faq-toggle { background: var(--wb-ink); border-color: var(--wb-ink); color: #fff; }
.faq-item.is-open .faq-toggle svg { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}
.faq-a-inner { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding: 0 0 28px 32px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(20,22,28,0.7);
  max-width: 70ch;
}
@media (max-width: 600px) {
  .faq-q { font-size: 17px; }
  .faq-num { width: 28px; padding-top: 4px; }
  .faq-a p { padding-left: 28px; font-size: 15px; }
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--wb-navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo-text { color: #fff; }
.footer-tag {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 30ch;
  line-height: 1.55;
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  transition: color 160ms ease;
}
.footer ul a:hover { color: var(--wb-amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
}
.footer-bottom .badges { display: flex; gap: 16px; }
.footer-bottom .badges span { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── LEGAL / IMPRESSUM ─────────────────────────────────────── */
.legal-hero {
  position: relative;
  background: var(--wb-navy);
  color: #fff;
  padding: 160px 0 72px;
  overflow: hidden;
}
.legal-hero .hero-grid {
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 25%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 25%, transparent 95%);
}
.legal-hero .container-narrow { position: relative; z-index: 1; }
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
}
.legal-hero .legal-sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  max-width: 56ch;
}

.legal-body { padding: 72px 0 110px; background: var(--wb-paper); }
.legal-block { margin-bottom: 52px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block .legal-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wb-amber);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.legal-block .legal-kicker::after {
  content: ''; flex: 1; height: 1px; background: var(--wb-rule);
}
.legal-block h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--wb-ink);
  margin-bottom: 18px;
}
.legal-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.012em;
  color: var(--wb-ink);
  margin: 28px 0 10px;
}
.legal-block p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(20,22,28,0.74);
  margin-bottom: 14px;
  max-width: 72ch;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--wb-amber); text-decoration: underline; text-underline-offset: 2px; }
.legal-block a:hover { color: #B85B26; }
.legal-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
  margin: 4px 0 16px;
  max-width: 72ch;
}
.legal-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(20,22,28,0.74);
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 14px; height: 1px;
  background: var(--wb-amber);
}
.legal-stand {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(20,22,28,0.5);
}
.legal-sub-stand {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

/* Numbered legal clauses (AGB) */
.legal-ol {
  list-style: none;
  counter-reset: legal;
  display: flex; flex-direction: column;
  gap: 16px;
  max-width: 74ch;
  margin: 4px 0 0;
}
.legal-ol > li {
  counter-increment: legal;
  position: relative;
  padding-left: 44px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(20,22,28,0.74);
}
.legal-ol > li::before {
  content: '(' counter(legal) ')';
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--wb-amber);
  letter-spacing: 0;
}
.legal-ol strong { color: var(--wb-ink); font-weight: 600; }
.legal-sublist {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
  margin: 14px 0 2px;
}
.legal-sublist li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20,22,28,0.72);
}
.legal-sublist li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 12px; height: 1px;
  background: var(--wb-amber);
}

/* Address / contact card */
.legal-card {
  background: #fff;
  border: 1px solid var(--wb-rule);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 32px 48px;
}
.legal-card .lc-item .lc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,22,28,0.5);
  margin-bottom: 8px;
}
.legal-card .lc-item .lc-value {
  font-size: 16px;
  line-height: 1.55;
  color: var(--wb-ink);
}
.legal-card .lc-item .lc-value a { color: var(--wb-amber); text-decoration: none; }
.legal-card .lc-item .lc-value a:hover { text-decoration: underline; }
.legal-card .lc-item .lc-value strong { font-weight: 600; }
@media (max-width: 640px) {
  .legal-card { grid-template-columns: 1fr; padding: 28px 24px; gap: 24px; }
}

/* Reveal on scroll ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .voice-orb::before, .voice-orb::after, .marquee-track {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ── Dark-section overrides for components used on dark tiles ── */
.dark .why-lead { color: rgba(255,255,255,0.74); }
.dark .why-lead strong { color: #fff; }
.dark .why-item { border-color: rgba(255,255,255,0.10); }
.dark .why-item:last-child { border-bottom-color: rgba(255,255,255,0.10); }
.dark .why-item h3 { color: #fff; }
.dark .why-item p { color: rgba(255,255,255,0.74); }
.dark .why-item p strong { color: #fff; }

.dark .expect-item { color: rgba(255,255,255,0.82); }
.dark .expect-check { background: rgba(107,208,142,0.18); color: #6BD08E; }

/* Eyebrow dot stays amber on dark */
.dark .section-header .eyebrow { color: var(--wb-amber); }
