/* ============================================================
   Adoption-X — Shared Design System
   Light scheme, warm off-white base, white cards, navy accents
   ============================================================ */

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

:root {
  /* Farben */
  --bg:           #FAFAF7;
  --bg-soft:      #F5F4EF;
  --card:         #FFFFFF;
  --navy:         #0F172A;
  --navy-soft:    #1E293B;

  --text:         #0F172A;
  --text-soft:    #475569;
  --muted:        #64748B;
  --border:       #E5E7EB;
  --border-soft:  #EEEEE8;

  --accent:       #00D4AA;
  --accent-dark:  #00A885;
  --accent-dim:   rgba(0,212,170,.09);
  --accent-border:rgba(0,212,170,.28);

  /* Schatten */
  --shadow-sm:    0 1px 2px rgba(15,23,42,.04), 0 2px 6px rgba(15,23,42,.04);
  --shadow-md:    0 2px 4px rgba(15,23,42,.04), 0 8px 24px rgba(15,23,42,.06);
  --shadow-lg:    0 4px 10px rgba(15,23,42,.04), 0 20px 48px rgba(15,23,42,.08);

  /* Maße */
  --max:          1100px;
  --transition:   all .25s cubic-bezier(.2,.8,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

section[id] { scroll-margin-top: 80px; }

/* ── NAV ── */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,247,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .92rem; color: var(--text-soft); transition: color .2s; font-weight: 500; }
.nav-links a.btn-primary { color: #FFFFFF !important; }
.nav-links a:hover { color: var(--text); }
.nav-brand {
  display: inline-flex; align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-brand img {
  height: 72px; width: auto;
  display: block;
  transition: filter .4s ease;
}
.nav-brand .brand-sep {
  display: block; width: 1px; height: 32px;
  background: var(--border);
}
.nav-brand .brand-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}
.nav-brand:hover img {
  filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.45));
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 600px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    gap: 16px; position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(250,250,247,.98); padding: 24px;
    border-bottom: 1px solid var(--border); z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { display: inline-flex !important; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; font-weight: 600;
  font-size: .92rem; border: 1px solid transparent; cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: var(--navy); color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(15,23,42,.08);
}
.btn-primary:hover {
  background: var(--navy-soft); transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15,23,42,.16);
}
.btn-secondary {
  background: #FFFFFF; color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: #D1D5DB; transform: translateY(-1px); }
.btn-accent {
  background: var(--accent); color: var(--navy);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,212,170,.24);
}
.btn-accent:hover {
  background: var(--accent-dark); transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,168,133,.32);
}

/* ── TYPOGRAFIE ── */
h1 {
  font-size: clamp(2rem, 3.8vw, 4.5rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: 22px;
  color: var(--text);
}
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; margin-bottom: 16px; color: var(--text); }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; color: var(--text); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .11em; color: var(--accent-dark); margin-bottom: 22px;
  padding: 7px 14px; border-radius: 100px;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(0,212,170,.12);
}

.lead {
  font-size: 1.1rem; color: var(--text-soft);
  max-width: 620px; margin-bottom: 32px;
  line-height: 1.6;
}

/* ── HERO ── */
.hero {
  padding: 88px 0 72px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 85% -10%, rgba(0,212,170,.08), transparent 40%),
    radial-gradient(circle at 15% 110%, rgba(15,23,42,.03), transparent 45%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: stretch;
}
.hero-logo {
  display: block; height: 84px; width: auto;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}
.hero-simple h1 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  margin-bottom: 22px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.micro { font-size: .8rem; color: var(--muted); }
.hero-proof { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.proof-chip {
  font-size: .82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
  background: #FFFFFF; border: 1px solid var(--border);
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}

/* Hero Card (auf Startseite) */
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 36px 32px 32px;
  box-shadow:
    0 24px 60px -20px rgba(15,23,42,.20),
    0 8px 16px -8px rgba(15,23,42,.08);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-card .card-label { flex-shrink: 0; margin-bottom: 0; }
.hero-card .stat-box { flex-shrink: 0; margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.hero-card .stat-box:not(:last-child) { padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}
.card-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted); margin-bottom: 22px;
}
.stat-box { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.stat-box:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--accent-dark); line-height: 1; margin-bottom: 8px; letter-spacing: -.02em; }
.stat-number .unit { color: var(--accent-dark); font-size: .7em; font-weight: 700; }
.stat-text { font-size: .88rem; color: var(--text-soft); line-height: 1.55; }

/* ── SECTION ── */
.section { padding: 88px 0; border-bottom: 1px solid var(--border-soft); position: relative; overflow: hidden; }

/* Motif-System: dezente SVG-Hintergründe in ausgewählten Sektionen */
.section-motif {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.55;
}
.section-motif svg {
  width: 100%; height: 100%;
  display: block;
}
.section > .container { position: relative; z-index: 1; }
.section.alt { background: var(--bg-soft); }
.section-head { max-width: 780px; margin-bottom: 52px; }
.section-kicker {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent-dark); margin-bottom: 14px;
  display: inline-block;
}
.section p { color: var(--text-soft); font-size: 1rem; }
.section p.lead-wide { max-width: 780px; font-size: 1.08rem; }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #D1D5DB;
}
.card.highlight { border-color: var(--accent-border); }
.card-icon {
  margin-bottom: 18px; color: var(--accent-dark);
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  display: inline-flex; align-items: center; justify-content: center;
}
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.card p { font-size: .92rem; color: var(--text-soft); line-height: 1.6; }
.metric {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: .8rem; font-weight: 700;
  color: var(--accent-dark); display: flex; align-items: center; gap: 6px;
}
.card p { margin-bottom: 18px; }
.card p:last-child { margin-bottom: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 26px; position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #FFFFFF;
  font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: .92rem; color: var(--text-soft); line-height: 1.6; }

/* Inline steps (full-width rows instead of grid) */
.steps-inline { display: grid; gap: 0; }
.step-row {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px; align-items: start;
  padding: 28px 0; border-top: 1px solid var(--border);
}
.step-row:last-child { border-bottom: 1px solid var(--border); }
.step-row h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.step-row p { font-size: .98rem; color: var(--text-soft); max-width: 740px; }

/* ── USE CASES (loesungen) ── */
.use-case {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.use-case:hover { border-color: var(--accent-border); box-shadow: var(--shadow-md); }
.use-case > h3 {
  font-size: 1.25rem; font-weight: 700; margin-bottom: 24px;
  color: var(--text);
}
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.uc-block h4 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--accent-dark); margin-bottom: 12px;
}
.uc-block ul { list-style: none; padding: 0; }
.uc-block ul li {
  font-size: .9rem; color: var(--text-soft); padding: 6px 0;
  display: flex; gap: 12px; align-items: flex-start;
}
.uc-block ul li::before {
  flex-shrink: 0; font-weight: 700;
  line-height: 1.5;
}
/* Semantische Bullets pro Spalte: Problem / Aktion / Ergebnis */
.uc-grid .uc-block:nth-child(1) ul li::before {
  content: "•"; color: var(--muted);
  font-size: 1.4em; line-height: 1.1;
}
.uc-grid .uc-block:nth-child(2) ul li::before {
  content: "→"; color: var(--accent-dark);
}
.uc-grid .uc-block:nth-child(3) ul li::before {
  content: "✓"; color: var(--accent-dark);
}

/* ── PERSON ROW (ueber-uns) ── */
.person-row {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 48px; align-items: center; max-width: 840px;
}
.person-photo {
  width: 320px; height: 384px; border-radius: 14px;
  object-fit: cover; border: 1px solid var(--border);
  box-shadow: var(--shadow-md); background: var(--bg-soft);
}
.person-block h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 6px;
}
.person-block .role {
  font-size: .88rem; color: var(--accent-dark); font-weight: 700;
  margin-bottom: 16px; display: block; text-transform: uppercase;
  letter-spacing: .08em;
}
.person-block p {
  font-size: 1rem; color: var(--text-soft); margin: 0;
  max-width: 560px; line-height: 1.7;
}

/* ── BULLET LIST (bereichsübergreifend) ── */
.bullet-list { list-style: none; padding: 0; margin: 16px 0; max-width: 720px; }
.bullet-list li {
  font-size: .98rem; color: var(--text-soft); padding: 12px 0;
  border-top: 1px solid var(--border);
  display: flex; gap: 12px; align-items: flex-start;
}
.bullet-list li:last-child { border-bottom: 1px solid var(--border); }
.bullet-list li::before {
  content: "→"; color: var(--accent-dark); flex-shrink: 0;
  font-weight: 700; margin-top: 2px;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 22px 0;
}
.faq-q {
  font-weight: 700; font-size: 1rem; margin-bottom: 0;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; color: var(--text);
  transition: color .2s;
}
.faq-q:hover { color: var(--accent-dark); }
.faq-q svg { flex-shrink: 0; color: var(--muted); transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  font-size: .95rem; color: var(--text-soft); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, margin-top .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 12px; }

/* ── CTA DARK (der eine dunkle Moment) ── */
.cta-dark {
  background: var(--navy);
  color: #FFFFFF;
  padding: 88px 0;
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ""; position: absolute;
  top: -30%; right: -10%; width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(0,212,170,.14), transparent 60%);
  pointer-events: none;
}
.cta-dark .container { position: relative; z-index: 1; }
.cta-dark .section-kicker { color: var(--accent); }
.cta-dark h2 { color: #FFFFFF; margin-bottom: 18px; }
.cta-dark p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 580px; margin-bottom: 32px; }
.cta-dark-grid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-dark-left { flex: 1; min-width: 300px; }
.cta-dark-meta {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px;
  font-size: .88rem; color: rgba(255,255,255,.6);
}
.cta-dark-meta span { display: inline-flex; align-items: center; gap: 6px; }
.cta-dark-meta svg { color: var(--accent); }

/* ── LONG-FORM PROSE (Impressum, Datenschutz, AGB) ── */
.prose { max-width: 760px; }
.prose h2 {
  font-size: 1.2rem; font-weight: 700;
  margin-top: 44px; margin-bottom: 12px;
  letter-spacing: -.01em;
  color: var(--text);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  color: var(--text-soft); font-size: 1rem;
  margin-bottom: 14px; line-height: 1.75;
}
.prose ul {
  color: var(--text-soft); font-size: 1rem;
  margin: 10px 0 16px 24px; line-height: 1.75;
}
.prose li { margin-bottom: 6px; }
.prose a { color: var(--accent-dark); font-weight: 500; transition: color .2s; }
.prose a:hover { color: var(--accent); }
.prose .stand {
  color: var(--muted); font-size: .88rem;
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ── LEGAL PAGES (Impressum, Datenschutz, AGB) ── */
.legal-wrap {
  max-width: 840px; margin: 0 auto;
  padding: 64px 24px 88px;
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: .9rem; font-weight: 500;
  margin-bottom: 28px; transition: color .2s;
}
.back-link:hover { color: var(--text); }
.back-link svg { width: 18px; height: 18px; }

.legal-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 56px 56px;
  box-shadow: var(--shadow-md);
}
.legal-card h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 8px;
}
.legal-subtitle {
  color: var(--muted); font-size: .95rem; margin-bottom: 36px;
}
.legal-card h2 {
  font-size: 1.15rem; font-weight: 700;
  margin-top: 40px; margin-bottom: 12px;
  color: var(--text); letter-spacing: -.01em;
}
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p {
  color: var(--text-soft); font-size: .98rem;
  margin-bottom: 14px; line-height: 1.75;
}
.legal-card ul {
  color: var(--text-soft); font-size: .98rem;
  margin: 10px 0 16px 24px; line-height: 1.75;
}
.legal-card li { margin-bottom: 6px; }
.legal-card a { color: var(--accent-dark); font-weight: 500; transition: color .2s; }
.legal-card a:hover { color: var(--accent); }
.legal-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 28px 0;
}
.legal-stand {
  color: var(--muted); font-size: .85rem;
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ── FOOTER ── */
.footer { padding: 40px 0; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand {
  display: inline-flex; align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 60px; width: auto;
  display: block;
}
.footer-brand .brand-sep {
  display: block; width: 1px; height: 26px;
  background: var(--border);
}
.footer-brand .brand-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.footer-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-links a { font-size: .88rem; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-links span { font-size: .88rem; color: var(--muted); }
.footer-sep { opacity: .4; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  max-width: 840px; width: calc(100% - 40px);
  background: var(--navy); color: #FFFFFF; padding: 18px 22px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1); display: none; z-index: 9999;
  font-size: 14px; box-shadow: 0 10px 40px rgba(15,23,42,.24);
  align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
#cookie-banner a { color: var(--accent); }
#cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
#accept-cookies { background: var(--accent); color: var(--navy); border: none; padding: 9px 18px; border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 700; }
#accept-cookies:hover { background: var(--accent-dark); }
#decline-cookies { background: transparent; color: #B0BAC8; border: 1px solid rgba(255,255,255,.2); padding: 9px 18px; border-radius: 8px; cursor: pointer; font-size: 14px; }
#decline-cookies:hover { color: #FFFFFF; border-color: rgba(255,255,255,.4); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-brand .brand-sep,
  .nav-brand .brand-tagline { display: none; }
  .nav-inner { height: 68px; }
  .nav-brand img { height: 52px; }
  .footer-brand img { height: 48px; }
  .section-motif { opacity: 0.35; }
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .hero-logo { height: 64px; margin-bottom: 24px; }
  .section { padding: 64px 0; }
  .grid-4, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .uc-grid { grid-template-columns: 1fr; gap: 20px; }
  .cta-dark { padding: 64px 0; }
  .cta-dark-grid { flex-direction: column; align-items: flex-start; }
  .person-row { grid-template-columns: 1fr; gap: 24px; }
  .person-photo { width: 200px; height: 240px; }
  .legal-card { padding: 40px 32px; }
}
@media (max-width: 600px) {
  .grid-4, .steps-grid, .grid-3 { grid-template-columns: 1fr; }
  .nav-links .btn { display: none; }
  .nav-inner { height: 60px; }
  .nav-brand img { height: 44px; }
  .footer-brand img { height: 40px; }
  .section-motif { opacity: 0.22; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-logo { height: 52px; }
  .legal-wrap { padding: 40px 16px 64px; }
  .legal-card { padding: 32px 24px; border-radius: 14px; }
  .step-row { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================================
   ANIMATIONS — dezent, zurückhaltend, Vertrauen-fördernd
   ============================================================ */

/* ── Hero Initial Load — elemente staffelnd einblenden ── */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow,
.hero h1,
.hero .lead,
.hero-actions,
.hero-proof,
.hero-card {
  animation: heroFadeIn 0.7s cubic-bezier(.2,.8,.2,1) both;
}
.hero .eyebrow   { animation-delay: 0.05s; }
.hero h1         { animation-delay: 0.15s; }
.hero .lead      { animation-delay: 0.25s; }
.hero-actions    { animation-delay: 0.35s; }
.hero-proof      { animation-delay: 0.45s; }
.hero-card       { animation-delay: 0.30s; animation-duration: 0.9s; }

/* ── Eyebrow-Dot: sanfter Puls als "alive"-Signal ── */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,212,170,.12); }
  50%      { box-shadow: 0 0 0 9px rgba(0,212,170,.05); }
}
.eyebrow-dot {
  animation: dotPulse 2.6s ease-in-out infinite;
}

/* ── Legal Card: dezenter Fade beim Laden ── */
@keyframes legalFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.legal-card { animation: legalFadeIn 0.6s cubic-bezier(.2,.8,.2,1) both; }
.back-link  { animation: legalFadeIn 0.5s cubic-bezier(.2,.8,.2,1) both; animation-delay: 0.05s; }

/* ── Scroll-Reveal Standardmuster ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(.2,.8,.2,1),
    transform 0.7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Stagger innerhalb des gleichen Eltern-Containers */
.reveal:nth-child(2) { transition-delay: 60ms; }
.reveal:nth-child(3) { transition-delay: 120ms; }
.reveal:nth-child(4) { transition-delay: 180ms; }
.reveal:nth-child(5) { transition-delay: 240ms; }
.reveal:nth-child(6) { transition-delay: 300ms; }

/* ── Reduced-Motion Respekt (Accessibility) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero .eyebrow, .hero h1, .hero .lead,
  .hero-actions, .hero-proof, .hero-card,
  .legal-card, .back-link, .eyebrow-dot {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
