/* ==========================================================================
   Belegungsplan – Salespage Stylesheet
   ========================================================================== */

/* === DESIGN TOKENS === */
:root {
  /* Marke */
  --color-orange:  #ED6A53; /* Primärakzent, CTAs, Icons, Hervorhebungen */
  --color-red:     #C42D4E; /* Sekundärakzent, Gradient-Partner von Orange, Hover-States */
  --color-navy:    #1E293B; /* dunkle Kontrastflächen: Hero, Footer, Abschluss-CTA, Headlines auf Hell */

  /* Gradient (Hero-Glow, CTA-Buttons, Section-Dividers) */
  --gradient-brand: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);

  /* Neutrale Flächen – viel Weißraum ist Pflicht */
  --color-bg:       #FFFFFF;
  --color-bg-soft:  #F7F8FA;
  --color-border:   #E6E9EF;
  --color-ink:      #1E293B;
  --color-ink-soft: #5B6472;
  --color-white:    #FFFFFF;

  /* Status/Utility */
  --color-success:  #1F9D63;

  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 8px 30px rgba(30, 41, 59, 0.08);

  /* Layout */
  --max-width: 1200px;
  --section-pad-y: clamp(3.5rem, 7vw, 6.5rem);

  /* Typografie */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.15rem; }

p { color: var(--color-ink-soft); }

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { padding-block: var(--section-pad-y); }
.section-soft { background: var(--color-bg-soft); }
.section-navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--color-white); }
.section-navy p { color: #C7CDD8; }

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

/* === FOCUS STATES (A11y, verbindlich sichtbar) === */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === EYEBROW / BADGE === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: rgba(237, 106, 83, 0.14);
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.section-navy .eyebrow {
  color: var(--color-white);
  background: rgba(237, 106, 83, 0.22);
}

/* === BUTTONS / CTAs === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95em 1.7em;
  border-radius: var(--radius-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(30, 41, 59, 0.45);
  box-shadow: 0 10px 24px rgba(196, 45, 78, 0.28);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(196, 45, 78, 0.38);
}

.btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.section-navy .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.section-navy .btn-secondary:hover, .section-navy .btn-secondary:focus-visible {
  background: var(--color-white);
  color: var(--color-navy);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.site-nav .logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-nav .logo .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  transition: color 0.15s ease;
}
.nav-links a:not(.btn):hover { color: var(--color-orange); }
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  padding: 0.5rem;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    gap: 1rem;
  }
}
@media (min-width: 861px) {
  .nav-cta { display: inline-flex; }
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 7rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  background: radial-gradient(ellipse 60% 55% at 30% 20%, rgba(237, 106, 83, 0.35), transparent 70%),
              radial-gradient(ellipse 50% 45% at 80% 60%, rgba(196, 45, 78, 0.3), transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero .lead {
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero .cta-group { margin-bottom: 1.75rem; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C7CDD8;
}
.trust-row svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-orange); }

.hero-visual {
  position: relative;
}
.browser-mock {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.browser-mock .browser-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  background: #EEF0F4;
}
.browser-mock .browser-bar .b { width: 10px; height: 10px; border-radius: 50%; background: #D7DBE3; }
.placeholder-box {
  aspect-ratio: 16 / 10;
  background: repeating-linear-gradient(135deg, #EEF0F4, #EEF0F4 12px, #E4E7EE 12px, #E4E7EE 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-ink-soft);
  text-align: center;
  padding: 1rem;
}
.placeholder-box .placeholder-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-ink);
}
.placeholder-box code {
  font-size: 0.72rem;
  font-family: "SF Mono", Consolas, "Courier New", monospace;
  color: var(--color-ink-soft);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.2em 0.6em;
  border-radius: 6px;
}

/* === REAL SCREENSHOTS === */
.shot-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: block;
}
.browser-mock .shot-img {
  border-radius: 0;
  border: none;
}

.shot-showcase {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.shot-figure { margin: 0; }
.shot-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  text-align: center;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* === STAT CARDS === */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat-card .stat-num {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.35rem;
}
.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  font-weight: 600;
}

/* === SECTION HEADER === */
.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 0.85rem; }
.section-head .lead { font-size: 1.05rem; }

/* === CARD GRIDS (Features, Problem, Zielgruppen) === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(30, 41, 59, 0.12); }
.card .icon-tile {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(237, 106, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card .icon-tile svg { width: 24px; height: 24px; color: var(--color-orange); }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; }

.section-soft .card { background: var(--color-white); }

#zielgruppen .card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin-inline: auto;
}
@media (max-width: 640px) {
  #zielgruppen .card-grid { grid-template-columns: 1fr; }
}

/* === PROBLEM SECTION === */
.problem-outro {
  text-align: center;
  max-width: 60ch;
  margin: 2.5rem auto 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
}

/* === LÖSUNGSÜBERBLICK: 2 große Karten === */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.solution-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-soft);
}
.solution-card .icon-tile {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(237, 106, 83, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.solution-card .icon-tile svg { width: 28px; height: 28px; color: var(--color-orange); }
.solution-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }

/* === FUNKTIONEN: Accordion === */
.feature-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}
.feature-cluster {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.feature-cluster > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}
.feature-cluster > summary::-webkit-details-marker { display: none; }
.feature-cluster .icon-tile {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(237, 106, 83, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-cluster .icon-tile svg { width: 22px; height: 22px; color: var(--color-orange); }
.cluster-head-text { flex: 1; min-width: 0; }
.cluster-head-text h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.cluster-head-text .sub { font-size: 0.92rem; color: var(--color-ink-soft); font-weight: 500; }
.feature-cluster summary .chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--color-orange);
  transition: transform 0.2s ease;
}
.feature-cluster[open] summary .chevron { transform: rotate(180deg); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
}
.feature-item {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.feature-item strong { color: var(--color-navy); }
.feature-item p { font-size: 0.92rem; margin: 0; }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-cluster > summary { padding: 1.1rem 1.1rem; }
  .feature-grid { padding: 0 1.1rem 1.1rem; }
}

/* === VERGLEICHSTABELLE === */
.compare-wrap { overflow-x: auto; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
table.compare th, table.compare td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
table.compare thead th {
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
}
table.compare thead th:first-child { color: rgba(255,255,255,0.7); font-weight: 600; }
table.compare tbody th {
  font-weight: 700;
  color: var(--color-navy);
  white-space: nowrap;
}
table.compare tbody tr:last-child td, table.compare tbody tr:last-child th { border-bottom: none; }
table.compare td:last-child {
  color: var(--color-navy);
  font-weight: 600;
}
table.compare tbody tr:nth-child(even) { background: var(--color-bg-soft); }

/* === FÖRDERUNG BANNER === */
.funding-banner {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, rgba(237, 106, 83, 0.07), rgba(196, 45, 78, 0.07));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.funding-inner {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.funding-inner .icon-tile {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.funding-inner .icon-tile svg { width: 28px; height: 28px; color: var(--color-orange); }
.funding-text { flex: 1 1 420px; min-width: 0; }
.funding-text .eyebrow { margin-bottom: 0.5rem; }
.funding-text h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin-bottom: 0.5rem; }
.funding-text p { font-size: 0.95rem; max-width: 62ch; margin: 0; }
.funding-inner > .btn { flex-shrink: 0; }

@media (max-width: 720px) {
  .funding-inner { flex-direction: column; align-items: flex-start; }
  .funding-inner > .btn { width: 100%; justify-content: center; }
}

/* === WARUM NEUZIEL === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item .icon-tile {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(237, 106, 83, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item .icon-tile svg { width: 20px; height: 20px; color: var(--color-orange); }
.why-item p { font-size: 0.95rem; margin: 0; }
.why-item strong { color: var(--color-navy); display: block; margin-bottom: 0.2rem; }

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding-top: 0.5rem;
}
.process-step .num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(196, 45, 78, 0.28);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--color-navy); }
.process-step p { font-size: 0.9rem; margin: 0; }
.process-row::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}
@media (max-width: 780px) {
  .process-row { grid-template-columns: 1fr; gap: 2rem; }
  .process-row::before { display: none; }
}

/* === TESTIMONIALS === */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card .stars { color: var(--color-orange); font-size: 0.95rem; letter-spacing: 0.15em; }
.testimonial-card blockquote { font-size: 0.98rem; color: var(--color-ink); font-style: italic; }
.testimonial-card footer { font-size: 0.88rem; color: var(--color-ink-soft); font-weight: 600; }

/* === FAQ ACCORDION === */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--color-orange);
  transition: transform 0.2s ease;
}
.faq-item[open] summary .chevron { transform: rotate(180deg); }
.faq-item .faq-answer {
  padding: 0 1.4rem 1.4rem;
  font-size: 0.95rem;
}

/* === ABSCHLUSS CTA === */
.cta-final { text-align: center; }
.cta-final .section-head { margin-inline: auto; }
.cta-final .cta-group { justify-content: center; margin-top: 1.5rem; }

/* === FOOTER === */
.site-footer {
  background: var(--color-navy);
  color: #C7CDD8;
  padding-block: 3.5rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-brand .logo .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }
.footer-col h3 {
  color: var(--color-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.9rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.social-links svg { width: 17px; height: 17px; }
.social-links a:hover { background: var(--gradient-brand); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* === UTILITIES === */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* === ACCESSIBILITY WIDGET === */
.a11y-widget { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 200; }
.a11y-toggle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(30,41,59,0.35);
}
.a11y-toggle svg { width: 24px; height: 24px; }
.a11y-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 260px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: none;
}
.a11y-panel[data-open="true"] { display: block; }
.a11y-panel h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--color-ink-soft);
}
.a11y-panel button {
  width: 100%;
  text-align: left;
  padding: 0.6rem 0.5rem;
  font-size: 0.88rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.a11y-panel button:hover { background: var(--color-bg-soft); }
.a11y-panel button[aria-pressed="true"] { background: rgba(237,106,83,0.12); color: var(--color-orange); font-weight: 700; }
.a11y-panel svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === A11y RUNTIME MODES (via <html> classes, gesetzt in script.js) === */
html.a11y-font-1 body { font-size: 1.15rem; }
html.a11y-font-2 body { font-size: 1.3rem; }
html.a11y-contrast body {
  --color-ink: #000000;
  --color-ink-soft: #1a1a1a;
  --color-border: #000000;
  background: #ffffff;
}
html.a11y-contrast .section-navy { --color-navy: #000000; background: #000000; }
html.a11y-line-height body, html.a11y-line-height p, html.a11y-line-height li { line-height: 2; }
html.a11y-big-cursor, html.a11y-big-cursor * { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><path d="M4 2 L4 28 L11 21 L15 29 L19 27 L15 19 L24 19 Z" fill="black" stroke="white" stroke-width="1.5"/></svg>') 4 2, auto !important; }
html.a11y-link-highlight a:not(.btn):not(.a11y-panel a) { text-decoration: underline; outline: 1px solid currentColor; outline-offset: 2px; }
html.a11y-reduce-motion *, html.a11y-reduce-motion *::before, html.a11y-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}
