/* ============================================
   Able AI — Production Stylesheet (Light Theme)
   Tiefes Aubergine #382b3f als primärer Akzent
   ============================================ */

:root {
  /* Light theme base */
  --bg-base: #fbf9f6;          /* Cremeweiß als Hauptfläche */
  --bg-soft: #f3efe9;          /* Sanfteres Cream für Sektionswechsel */
  --bg-card: #ffffff;          /* Reine Karten / Surfaces */
  --bg-tint: #f7f3ed;          /* Sehr leichter Aubergine-Tint */

  /* Aubergine palette */
  --accent: #382b3f;           /* Hauptakzent: tiefes Aubergine */
  --accent-strong: #1f1823;    /* Maximalkontrast (für Headings) */
  --accent-soft: #7a6284;      /* Weicher Akzent (Eyebrows, Icons) */
  --accent-tint: rgba(56,43,63,0.08);   /* Aubergine als Hauchsschicht */
  --accent-border: rgba(56,43,63,0.16); /* Borders / Trennlinien */

  /* Text */
  --text: #1f1823;             /* Haupttext: fast schwarz mit Aubergine-Note */
  --text-muted: #4a4453;       /* Sekundär */
  --text-dim: #6e6876;         /* Tertiär / Meta */

  /* Borders */
  --border: rgba(31,24,35,0.10);
  --border-strong: rgba(31,24,35,0.16);

  /* Misc */
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 3px rgba(31,24,35,0.04), 0 8px 24px rgba(31,24,35,0.04);
  --shadow-cta: 0 8px 24px rgba(56,43,63,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

.serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
a { color: inherit; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
nav.nav-scrolled {
  background: rgba(251, 249, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(31, 24, 35, 0.04);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  color: var(--ink, var(--text));
}
.logo-word {
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
}
.logo-dot {
  display: inline-block;
  width: 3.7px;
  height: 3.7px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 1.5px;
  align-self: flex-end;
  margin-bottom: 3.7px;
  flex-shrink: 0;
}
/* Nav: leicht größeres Logo */
nav .logo-word { font-size: 24px; }
nav .logo-dot { width: 4.1px; height: 4.1px; margin-bottom: 4.1px; margin-left: 1.5px; }

/* Footer: gleiche Größe wie Nav für Konsistenz */
footer .logo-word { font-size: 24px; }
footer .logo-dot { width: 4.1px; height: 4.1px; margin-bottom: 4.1px; margin-left: 1.5px; }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: var(--text-muted);
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* Dropdown-Menü unter "Leistungen" */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.dropdown-chevron {
  font-size: 10px;
  transition: transform 0.25s ease;
  margin-top: 1px;
}
.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 320px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(31, 24, 35, 0.08), 0 2px 6px rgba(31, 24, 35, 0.04);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
/* Unsichtbare Brücke, damit Hover beim Wechsel von Trigger zu Menü nicht abbricht */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--bg-soft);
  color: var(--text);
}
.dropdown-item-title {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-strong);
  margin-bottom: 2px;
}
.dropdown-item-desc {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
}
.nav-cta {
  background: var(--accent);
  color: #fbf9f6;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 18px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg-1 {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122,98,132,0.08) 0%, rgba(251,249,246,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-2 {
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56,43,63,0.05) 0%, rgba(251,249,246,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 920px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-tint);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
h1 {
  font-family: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;
  font-size: clamp(44px, 6.8vw, 88px);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--accent-strong);
  text-transform: none;
}
h1 .able-word {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
  letter-spacing: -0.02em;
}
h1 .serif {
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ============================================
   BLOCK HIGHLIGHT — das Stronger-Treatment
   Genutzt sparsam, max. 2x pro Seite
   ============================================ */
.hl-block {
  display: inline-block;
  background: var(--accent);
  color: #fbf9f6;
  padding: 0.02em 0.18em 0.08em;
  border-radius: 4px;
  letter-spacing: -0.02em;
  /* leicht nach unten verschoben, damit es wie ein Marker wirkt */
  transform: translateY(-0.02em);
  /* Akzent: feiner Innen-Rahmen für mehr Tiefe */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
/* Light-Variante für dunklen CTA-Hintergrund */
.hl-block-light {
  background: #fbf9f6;
  color: var(--accent-strong);
}

/* Outline-Variante: sanfter, für Atemzüge zwischen den starken Blöcken */
.hl-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 0.02em 0.18em 0.08em;
  border-radius: 4px;
  letter-spacing: -0.02em;
  transform: translateY(-0.02em);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}

/* H2-Headlines auch in Inter Tight, etwas mehr Gewicht */
h2 {
  font-family: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
  color: var(--accent-strong);
}
h2 .serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent) !important;
  letter-spacing: -0.015em;
}

/* ============================================
   ABLE WORD ANIMATION — freistehende Marken-Geste
   be / become / get / stay → able
   ============================================ */
.able-anim-row {
  display: block;
  margin-bottom: 36px;
}
.able-anim {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  user-select: none;
}
.able-anim-prefix {
  position: relative;
  display: inline-block;
  /* kein overflow:hidden mehr -> nichts kann je abgeschnitten werden */
  text-align: right;
  vertical-align: baseline;
}
/* Unsichtbarer Sizer: bestimmt die Breite anhand des längsten Wortes,
   damit "able" fix bleibt. Großzügiger Puffer rechts. */
.able-sizer {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  padding-right: 0.12em;
}
.able-slot {
  position: absolute;
  right: 0.12em;
  bottom: 0;
  display: inline-block;
  color: var(--accent-soft);
  will-change: opacity;
  white-space: nowrap;
  line-height: 1;
}
.able-anim-word {
  display: inline-block;
  margin-left: 0.04em;
  background: var(--accent);
  color: var(--bg-base);
  padding: 0.04em 0.2em 0.1em;
  border-radius: 6px;
}

/* Dictionary box */
.dict-box {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
.dict-word {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.dict-phon {
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.dict-meaning {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}
.dict-meaning em {
  color: var(--text);
  font-style: italic;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 44px;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}

/* Buttons */
.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-row.centered { justify-content: center; }
.btn-primary {
  background: var(--accent);
  color: #fbf9f6;
  border: none;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}
.btn-primary .arrow {
  opacity: 0.7;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-tint);
}

/* Trust bar */
.trust-bar {
  position: relative;
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.trust-item::before {
  content: '●';
  color: var(--accent);
  font-size: 8px;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 100px 0;
  position: relative;
}
.section-mid {
  background: var(--bg-soft);
}
.section-eyebrow {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 600;
}
.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
}

/* Problem grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.problem-icon { font-size: 28px; margin-bottom: 14px; }
.problem-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.problem-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.process-step {
  border-left: 2px solid var(--accent-border);
  padding: 6px 0 6px 22px;
  position: relative;
  transition: border-left-color 0.5s ease;
}
/* "Active"-Balken: dickerer Aubergine-Strich über dem Default-Border */
.process-step::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step.is-active::before {
  transform: scaleY(1);
}
.process-num {
  font-size: 12px;
  color: var(--accent-soft);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  transition: color 0.5s ease;
}
.process-step.is-active .process-num {
  color: var(--accent);
}
.process-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.process-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.promise-box {
  margin-top: 48px;
  padding: 22px 26px;
  background: var(--accent-tint);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.promise-box strong {
  color: var(--accent);
  font-weight: 600;
}
.promise-box em { color: var(--accent); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-card);
}
.service-card:hover .service-link {
  color: var(--accent-strong);
}
.service-card:hover .service-link .arrow {
  transform: translateX(3px);
}
.service-link {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.service-link .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.service-num {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 600;
}
.service-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  color: var(--accent-strong);
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  margin-top: auto;
}
.service-list li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 600;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s;
}
.about-card:hover { box-shadow: var(--shadow-card); }
.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-tint), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 14px;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.03em;
  color: var(--bg-base);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--accent-strong);
}
.about-role {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.about-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* FAQ */
.faq-list { margin-top: 56px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item details {
  padding: 22px 0;
}
.faq-item summary {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item details[open] summary::after {
  transform: rotate(45deg);
}
.faq-a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
  margin-top: 14px;
}

/* CTA section */
.cta-section {
  background: var(--accent-strong);
  color: #fbf9f6;
  text-align: center;
}
.cta-section h2 {
  color: #fbf9f6;
  margin: 0 auto 20px;
}
.cta-section h2 .serif {
  color: #c9b8d3 !important;
}
.cta-section .container { max-width: 760px; }
.cta-section .section-eyebrow {
  color: #c9b8d3;
}
.cta-section .section-lead {
  color: rgba(251,249,246,0.78);
  margin: 0 auto 40px;
}
.cta-section .btn-primary {
  background: #fbf9f6;
  color: var(--accent-strong);
}
.cta-section .btn-primary:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.cta-section .btn-ghost {
  border-color: rgba(251,249,246,0.3);
  color: #fbf9f6;
}
.cta-section .btn-ghost:hover {
  background: rgba(251,249,246,0.08);
  border-color: rgba(251,249,246,0.6);
  color: #fbf9f6;
}
.cta-foot {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(251,249,246,0.55);
}

/* Footer */
footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 320px;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(31,24,35,0.12);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  flex: 1;
  min-width: 120px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-accept {
  background: var(--accent);
  color: #fbf9f6;
  border: none;
}
.cookie-accept:hover { background: var(--accent-strong); }
.cookie-decline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.cookie-decline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   FACTS / DATEN-SEKTION
   ============================================ */
.facts-section {
  background: var(--bg-soft);
  padding: 110px 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.fact-card {
  background: var(--bg-base);
  border: 1px solid rgba(31, 24, 35, 0.08);
  border-radius: 14px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fact-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fact-card[data-fact="2"].in-view { transition-delay: 0.15s; }
.fact-card[data-fact="3"].in-view { transition-delay: 0.3s; }

/* große Zahl */
.fact-number {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 18px;
}
.fact-number-row {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.fact-multi {
  display: inline-block;
}
.fact-divider {
  font-size: 36px;
  color: var(--accent-soft);
  font-weight: 400;
  opacity: 0.5;
}
.fact-unit {
  font-size: 0.6em;
  font-weight: 700;
  margin-left: 2px;
  color: var(--accent-soft);
}

/* Label (Hauptaussage der Karte) */
.fact-label {
  font-size: 17px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 14px;
}
.fact-label-strong {
  font-family: 'Inter Tight', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.fact-num-inline {
  color: var(--accent);
  font-weight: 800;
}

/* Detail-Text */
.fact-detail {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: auto;
  padding-bottom: 22px;
}

/* Quelle */
.fact-source {
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 24, 35, 0.08);
}

/* 100-Punkte-Grid für Karte 2 */
.fact-dots {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  margin-bottom: 22px;
  max-width: 132px;
}
.fact-dots .dot {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(31, 24, 35, 0.12);
  transform: scale(0);
  transition: transform 0.4s ease;
}
.fact-dots .dot-hi {
  background: var(--accent);
}
.fact-card.in-view .fact-dots .dot {
  transform: scale(1);
}
/* Punkte staffeln: hervorgehobene zuerst, dann der Rest */
.fact-card.in-view .fact-dots .dot { transition-delay: calc(var(--i, 0) * 8ms); }
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  section { padding: 70px 0; }
  .hero { padding: 60px 0 50px; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }

  .problem-grid,
  .process-grid,
  .services-grid,
  .about-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .facts-section { padding: 70px 0; }
  .fact-number { font-size: 56px; }
  .fact-number-row { font-size: 44px; }
  .fact-label-strong { font-size: 26px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .trust-bar {
    gap: 16px;
    margin-top: 56px;
    padding-top: 28px;
  }
  .trust-bar > * { font-size: 13px; }

  h1 { font-size: 42px; letter-spacing: -0.035em; }
  h2 { font-size: 30px; }
  .hero-sub { font-size: 17px; }
  .hl-block { padding: 0.02em 0.14em 0.06em; }

  .cta-row { width: 100%; }
  .cta-row .btn-primary,
  .cta-row .btn-ghost {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .dict-box {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn-primary,
  .cta-row .btn-ghost { width: 100%; justify-content: center; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
/* ============================================
   INTAKE FORMULAR (Erstgespräch)
   ============================================ */

.intake-hero {
  padding: 70px 0 30px;
  background: var(--bg-base);
}
.intake-container {
  max-width: 760px;
}
.intake-hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--accent-strong);
  margin: 18px 0 22px;
}
.intake-hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 0;
}

.intake-form-section {
  padding: 30px 0 110px;
  background: var(--bg-base);
}

/* Progressbar */
.intake-progress {
  margin-bottom: 48px;
}
.intake-progress-bar {
  height: 4px;
  background: rgba(31, 24, 35, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.intake-progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.intake-progress-steps {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.intake-step-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.intake-step-label.is-active,
.intake-step-label.is-done {
  color: var(--accent);
}
.intake-step-label .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(31, 24, 35, 0.08);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.intake-step-label.is-active .step-num {
  background: var(--accent);
  color: white;
}
.intake-step-label.is-done .step-num {
  background: var(--accent);
  color: white;
}

/* Form Step Container */
.intake-form {
  position: relative;
}
.intake-step {
  display: none;
  animation: stepFadeIn 0.4s ease forwards;
}
.intake-step.is-current {
  display: block;
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.intake-step-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--accent-strong);
  margin: 0 0 10px;
}
.intake-step-lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 36px;
}

/* Fields */
.intake-field {
  margin-bottom: 24px;
}
.intake-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.intake-field-row .intake-field {
  margin-bottom: 0;
}
.intake-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.intake-field .req {
  color: var(--accent);
  margin-left: 2px;
}
.intake-field .opt {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 12.5px;
}
.intake-field input[type="text"],
.intake-field input[type="email"],
.intake-field input[type="url"],
.intake-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-base);
  border: 1.5px solid rgba(31, 24, 35, 0.12);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

/* Select / Dropdown */
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.2s;
}
.intake-field select {
  width: 100%;
  padding: 13px 44px 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-base);
  border: 1.5px solid rgba(31, 24, 35, 0.12);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.intake-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(56, 43, 63, 0.08);
}
.intake-field select:invalid,
.intake-field select option[disabled] {
  color: var(--text-dim);
}
.intake-field select option {
  color: var(--text);
}
.intake-field.is-error select {
  border-color: #c44545;
  box-shadow: 0 0 0 4px rgba(196, 69, 69, 0.08);
}

/* Conditional Fields (eingeblendet bei "Andere" / "Sonstiges") */
.intake-field-conditional {
  margin-top: -12px;
  animation: condFadeIn 0.35s ease;
}
.intake-field-conditional[hidden] {
  display: none !important;
}
@keyframes condFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stack-Variante: 1 Spalte statt 2 für längere Optionen (höhere Spezifität durch Doppel-Klasse) */
.intake-checkbox-group.intake-checkbox-group-stack {
  grid-template-columns: 1fr;
}
.intake-field input::placeholder,
.intake-field textarea::placeholder {
  color: var(--text-dim);
}
.intake-field input:focus,
.intake-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(56, 43, 63, 0.08);
}
.intake-field textarea {
  resize: vertical;
  min-height: 90px;
}
.intake-field .field-hint {
  display: block;
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.45;
}
.intake-field.is-error input,
.intake-field.is-error textarea {
  border-color: #c44545;
  box-shadow: 0 0 0 4px rgba(196, 69, 69, 0.08);
}
.intake-field.is-error .field-hint {
  color: #c44545;
  font-weight: 500;
}

/* Radio Group */
.intake-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intake-radio {
  display: flex;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-base);
  border: 1.5px solid rgba(31, 24, 35, 0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  column-gap: 16px;
}
.intake-radio:hover {
  border-color: var(--accent-soft);
}
.intake-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(31, 24, 35, 0.3);
  border-radius: 50%;
  background: var(--bg-base);
  cursor: pointer;
  flex-shrink: 0;
  margin: 2px 16px 0 0;
  padding: 0;
  position: relative;
  transition: border-color 0.15s;
}
.intake-radio input[type="radio"]:checked {
  border-color: var(--accent);
  border-width: 1.5px;
}
.intake-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.intake-radio input[type="radio"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.intake-radio:has(input:checked) {
  border-color: var(--accent);
  background: rgba(56, 43, 63, 0.03);
}
.intake-radio .radio-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.intake-radio .radio-label strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.intake-radio .radio-label span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Checkbox Group */
.intake-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.intake-checkbox {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-base);
  border: 1.5px solid rgba(31, 24, 35, 0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  column-gap: 14px;
}
.intake-checkbox:hover {
  border-color: var(--accent-soft);
}
.intake-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(31, 24, 35, 0.3);
  border-radius: 4px;
  background: var(--bg-base);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin: 0 14px 0 0;
  padding: 0;
  transition: background 0.15s, border-color 0.15s;
}
.intake-checkbox input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.intake-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.intake-checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.intake-checkbox:has(input:checked) {
  border-color: var(--accent);
  background: rgba(56, 43, 63, 0.03);
}
.intake-checkbox .check-label {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}

/* Consent */
.intake-consent {
  margin-top: 28px;
  margin-bottom: 24px;
}
.intake-consent .intake-checkbox {
  align-items: flex-start;
  padding: 14px 16px;
}
.intake-consent .check-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
.intake-consent .check-label a {
  color: var(--accent);
  text-decoration: underline;
}

/* Form Navigation */
.intake-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(31, 24, 35, 0.08);
  gap: 12px;
}
.intake-nav .btn-primary,
.intake-nav .btn-ghost {
  white-space: nowrap;
}
.intake-nav .arrow-back {
  display: inline-block;
  margin-right: 4px;
  transition: transform 0.2s;
}
.intake-nav .btn-ghost:hover .arrow-back {
  transform: translateX(-3px);
}

/* Success Screen */
.intake-success {
  text-align: center;
  padding: 40px 0;
}
.intake-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 28px;
}
.intake-success .intake-step-lead {
  margin-bottom: 30px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.success-redirect-info {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-top: 24px;
}
.success-redirect-info a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 700px) {
  .intake-field-row { grid-template-columns: 1fr; }
  .intake-checkbox-group { grid-template-columns: 1fr; }
  .intake-step-title { font-size: 26px; }
  .intake-progress-steps { font-size: 11.5px; }
  .intake-step-label span:not(.step-num) { display: none; }
  .intake-nav { flex-direction: column-reverse; align-items: stretch; }
  .intake-nav .btn-primary, .intake-nav .btn-ghost { width: 100%; justify-content: center; }
}




/* ============================================
   PRODUKTSEITEN (Strategie & Umsetzung, Workshops, Individuelle KI-Lösungen)
   ============================================ */

/* Hero auf Unterseiten - kompakter als die Hauptseite */
.product-hero {
  padding: 80px 0 70px;
  background: var(--bg-base);
}
.product-hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--accent-strong);
  margin: 20px 0 28px;
  max-width: 900px;
}
.product-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.product-hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 36px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb-sep {
  color: var(--text-dim);
  opacity: 0.6;
}
.breadcrumb-current {
  color: var(--text);
  font-weight: 500;
}

/* Problem-Liste (Wofür?) */
.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.problem-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent-soft);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.problem-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

/* Process-Title (für Vorgehen auf Produktseiten) */
.process-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

/* Deliverables-Liste */
.deliverables-list {
  list-style: none;
  margin-top: 40px;
  max-width: 800px;
}
.deliverables-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.deliverables-list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.deliverables-list li strong {
  color: var(--accent-strong);
  font-weight: 600;
}
.deliverables-list li:last-child {
  border-bottom: 1px solid var(--border);
}

/* Investment-Grid */
.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.investment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.investment-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.investment-value {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--accent-strong);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.investment-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* FAQ-Liste auf Produktseiten (gleiche Klassen wie Hauptseite, falls Wrapper anders heißt) */
.faq-list {
  margin-top: 44px;
  max-width: 900px;
}

/* Responsive */
@media (max-width: 900px) {
  .problem-list { grid-template-columns: 1fr; }
  .investment-grid { grid-template-columns: 1fr; }
  .product-hero { padding: 60px 0 50px; }
}


/* Generischer Scroll-Eintritt - opacity + leichter translateY */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Gestaffelter Eintritt für Grids (Cards nacheinander) */
.reveal-grid > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-grid.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-grid.in-view > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-grid.in-view > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-grid.in-view > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-grid.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero-Eintritt beim Page-Load */
.hero-fade {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeIn 0.9s ease forwards;
}
.hero-fade-1 { animation-delay: 0.05s; }
.hero-fade-2 { animation-delay: 0.25s; }
.hero-fade-3 { animation-delay: 0.45s; }
.hero-fade-4 { animation-delay: 0.65s; }
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ: Smooth Toggle via Grid-Trick (rows animieren) */
.faq-item details > .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item details[open] > .faq-content {
  grid-template-rows: 1fr;
}
.faq-item details > .faq-content > div {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
