/* ==========================================================
   Cyber Lotus – Stylesheet
   Schriften lokal eingebunden (SIL Open Font License, siehe /fonts)
   ========================================================== */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/fonts/atkinson-hyperlegible-next-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/fonts/atkinson-hyperlegible-next-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #142b50;
  --navy-deep: #0d1f3c;
  --ink: #16243d;
  --muted: #475a78;
  --water: #e6eff8;
  --water-soft: #f4f8fc;
  --line: #cbd8e6;
  --amber: #f2a93b;
  --amber-soft: #fde9c8;
  --rose: #ebb7c3;
  --white: #ffffff;
  --green: #2e8b57;
  --yellow: #e9b320;
  --red: #c8423a;

  --font-head: "Bricolage Grotesque", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Atkinson Hyperlegible Next", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: 0.9rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: 1.5rem;
  --step-3: clamp(1.75rem, 1.4rem + 1.6vw, 2.4rem);
  --step-4: clamp(2.2rem, 1.6rem + 3vw, 3.6rem);

  --wrap: 72rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 8vw, 7rem);
}

[hidden] { display: none !important; }

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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-underline-offset: 0.18em; }
a:hover { text-decoration-thickness: 2px; }

h1, h2, h3 {
  text-wrap: balance;
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
}
h1 { font-size: var(--step-4); font-weight: 700; }
h2 { font-size: var(--step-3); font-weight: 700; }
h3 { font-size: var(--step-1); font-weight: 650; letter-spacing: -0.005em; }
p { margin: 0 0 1em; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--navy); color: var(--white);
  padding: 0.7rem 1rem; border-radius: 8px; z-index: 100;
}
.skip-link:focus { top: 1rem; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--water { background: var(--water-soft); }
.section-intro { max-width: 40rem; margin-bottom: 2.75rem; }
.section-intro p { color: var(--muted); font-size: var(--step-1); line-height: 1.5; }

/* Lotus-Trenner als wiederkehrendes Motiv */
.lotus-divider {
  width: 44px; height: 44px; margin: 0 0 1.25rem;
  color: var(--amber);
}
.section-intro--center { margin-inline: auto; text-align: center; }
.section-intro--center .lotus-divider { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.95rem 1.5rem; min-height: 48px;
  border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.btn--primary { background: var(--amber); color: var(--navy-deep); }
.btn--primary:hover { background: #f5b85a; transform: translateY(-1px); box-shadow: 0 6px 18px -8px rgba(20,43,80,.45); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--light:hover { background: var(--white); color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; }
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  color: var(--navy); text-decoration: none; letter-spacing: -0.02em;
}
.brand svg { width: 34px; height: 34px; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: none; border: 2px solid var(--navy); color: var(--navy);
  border-radius: 999px; padding: .5rem .95rem; font: inherit; font-weight: 700; cursor: pointer;
}
.nav-toggle-bars { width: 18px; height: 12px; position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; transition: transform .2s ease, top .2s ease;
}
.nav-toggle-bars::before { top: 2px; }
.nav-toggle-bars::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 5px; transform: rotate(-45deg); }

.site-nav { display: none; }
.site-nav.is-open {
  display: block; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 1rem var(--gutter) 1.5rem;
}
.site-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; }
.site-nav a { display: block; padding: .6rem 0; text-decoration: none; font-weight: 700; color: var(--navy); }
.site-nav .btn { margin-top: .75rem; width: 100%; }

@media (min-width: 62rem) {
  .nav-toggle { display: none; }
  .site-nav, .site-nav.is-open {
    display: flex; position: static; padding: 0; border: 0; background: none;
    align-items: center; gap: 1.75rem;
  }
  .site-nav ul { display: flex; gap: 1.5rem; }
  .site-nav a { padding: .4rem 0; font-size: .98rem; }
  .site-nav a:not(.btn):hover { text-decoration: underline; }
  .site-nav .btn { margin: 0; width: auto; padding: .7rem 1.2rem; min-height: 44px; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3.5rem, 7vw, 6rem); background: linear-gradient(180deg, var(--white) 0%, var(--water-soft) 100%); overflow: hidden; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero-kicker { font-weight: 700; color: var(--muted); margin-bottom: 1rem; }
.hero h1 { max-width: 15ch; }
.hero-sub { font-size: var(--step-1); line-height: 1.5; color: var(--muted); max-width: 34rem; margin-bottom: 1.75rem; }
.hero-motto {
  display: flex; gap: .75rem; align-items: center;
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  color: var(--navy); font-family: var(--font-head); font-size: 1.1rem; max-width: 34rem;
}
.hero-motto svg { flex: none; width: 28px; height: 28px; color: var(--amber); }
.hero-art { position: relative; max-width: 560px; margin-inline: auto; width: 100%; }

@media (min-width: 56rem) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
}

/* Abperl-Animation der Gefahren-Tropfen */
.drop { opacity: 0; }
.drop text { font-family: var(--font-body); font-size: 13px; font-weight: 700; fill: var(--navy); }
.drop--a { animation: drop-left 7.5s ease-in 0.6s infinite; }
.drop--b { animation: drop-right 7.5s ease-in 3.1s infinite; }
.drop--c { animation: drop-left-2 7.5s ease-in 5.6s infinite; }

@keyframes drop-left {
  0%   { transform: translate(262px, -30px); opacity: 0; }
  8%   { opacity: 1; }
  30%  { transform: translate(262px, 44px); }
  34%  { transform: translate(258px, 38px); }
  60%  { transform: translate(98px, 88px); opacity: 1; }
  78%  { transform: translate(60px, 190px); opacity: .9; }
  100% { transform: translate(50px, 300px); opacity: 0; }
}
@keyframes drop-right {
  0%   { transform: translate(258px, -30px); opacity: 0; }
  8%   { opacity: 1; }
  30%  { transform: translate(258px, 44px); }
  34%  { transform: translate(262px, 38px); }
  60%  { transform: translate(422px, 88px); opacity: 1; }
  78%  { transform: translate(460px, 190px); opacity: .9; }
  100% { transform: translate(470px, 300px); opacity: 0; }
}
@keyframes drop-left-2 {
  0%   { transform: translate(240px, -30px); opacity: 0; }
  8%   { opacity: 1; }
  30%  { transform: translate(240px, 48px); }
  60%  { transform: translate(100px, 88px); opacity: 1; }
  78%  { transform: translate(62px, 190px); opacity: .9; }
  100% { transform: translate(52px, 300px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .drop--a { opacity: 1; transform: translate(98px, 88px); }
  .drop--b { opacity: 1; transform: translate(422px, 88px); }
  .drop--c { opacity: 0; }
}

/* ---------- Selbsttest ---------- */
.quiz {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  max-width: 46rem; margin-inline: auto;
  box-shadow: 0 30px 60px -40px rgba(20,43,80,.35);
}
.quiz-progress { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.quiz-progress-label { font-weight: 700; color: var(--muted); font-size: var(--step--1); white-space: nowrap; }
.quiz-bar { flex: 1; height: 8px; background: var(--water); border-radius: 999px; overflow: hidden; }
.quiz-bar-fill { height: 100%; width: 0; background: var(--navy); border-radius: 999px; transition: width .35s ease; }
.quiz-question { font-family: var(--font-head); font-size: var(--step-2); color: var(--navy); line-height: 1.25; margin: 0 0 .5rem; outline: none; }
.quiz-hint { color: var(--muted); margin-bottom: 1.75rem; }
.quiz-answers { display: flex; flex-wrap: wrap; gap: .75rem; }
.quiz-answer {
  flex: 1 1 8rem; min-height: 52px;
  font: inherit; font-weight: 700; color: var(--navy);
  background: var(--water-soft); border: 2px solid var(--line); border-radius: 14px;
  padding: .8rem 1rem; cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}
.quiz-answer:hover { border-color: var(--navy); background: var(--water); }
.quiz-answer--unsure { flex-basis: 100%; font-weight: 400; background: transparent; }
@media (min-width: 36rem) { .quiz-answer--unsure { flex-basis: 10rem; } }
.quiz-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.quiz-back { background: none; border: 0; padding: .4rem 0; font: inherit; color: var(--navy); text-decoration: underline; cursor: pointer; }
.quiz-back[hidden] { display: none; }
.quiz-privacy { display: flex; gap: .5rem; align-items: center; font-size: var(--step--1); color: var(--muted); margin: 0; }
.quiz-privacy svg { width: 18px; height: 18px; flex: none; }

.quiz-result { display: grid; gap: 1.75rem; }
@media (min-width: 40rem) { .quiz-result { grid-template-columns: auto 1fr; align-items: start; } }
.ampel {
  width: 76px; padding: 12px; border-radius: 40px; background: var(--navy);
  display: grid; gap: 10px; justify-items: center;
}
.ampel span { width: 50px; height: 50px; border-radius: 50%; background: #2a4167; transition: background-color .4s ease, box-shadow .4s ease; }
.ampel[data-level="red"] .ampel-red { background: var(--red); box-shadow: 0 0 22px 4px rgba(200,66,58,.65); animation: glow 1.8s ease-in-out 3; }
.ampel[data-level="yellow"] .ampel-yellow { background: var(--yellow); box-shadow: 0 0 22px 4px rgba(233,179,32,.65); animation: glow 1.8s ease-in-out 3; }
.ampel[data-level="green"] .ampel-green { background: var(--green); box-shadow: 0 0 22px 4px rgba(46,139,87,.65); animation: glow 1.8s ease-in-out 3; }
@keyframes glow { 50% { filter: brightness(1.25); } }
.quiz-score { font-weight: 700; color: var(--muted); margin-bottom: .25rem; }
.quiz-result h3 { font-size: var(--step-2); outline: none; }
.quiz-todo { margin: 1rem 0 1.5rem; padding: 0; list-style: none; display: grid; gap: .6rem; }
.quiz-todo li { padding-left: 1.6rem; position: relative; }
.quiz-todo li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: .7rem; height: .7rem;
  border: 2px solid var(--amber); border-radius: 50% 0 50% 0; transform: rotate(45deg);
}

/* ---------- Problem ---------- */
.problem-grid { display: grid; gap: 1.25rem; }
@media (min-width: 48rem) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card { padding: 1.75rem 1.5rem; border-radius: 14px; background: var(--white); border: 1px solid var(--line); }
.problem-card svg { width: 48px; height: 48px; color: var(--navy); margin-bottom: 1.1rem; }
.problem-card p { color: var(--muted); margin: 0; }
.problem-note { margin-top: 2rem; max-width: 42rem; font-size: var(--step-1); color: var(--navy); }

/* ---------- Zeitleiste ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; }
.timeline li { position: relative; padding: 0 0 2.5rem 4.25rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  background: var(--navy); color: var(--white);
}
.timeline li::after {
  content: ""; position: absolute; left: 1.45rem; top: 3.4rem; bottom: .4rem;
  border-left: 2px dashed var(--line);
}
.timeline li:last-child::after { display: none; }
.timeline-meta { display: inline-block; font-weight: 700; font-size: var(--step--1); color: var(--navy); background: var(--amber-soft); padding: .2rem .7rem; border-radius: 999px; margin-bottom: .6rem; }
.timeline p { color: var(--muted); max-width: 30rem; }
@media (min-width: 56rem) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .timeline li { padding: 4.5rem 0 0; }
  .timeline li::after { left: 3.9rem; right: -1.6rem; top: 1.5rem; bottom: auto; border-left: 0; border-top: 2px dashed var(--line); }
}

/* ---------- Leistungen ---------- */
.service-grid { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service {
  display: flex; flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem; border-radius: 14px;
  background: var(--white); border: 1px solid var(--line);
  transition: border-color .2s ease, transform .2s ease;
}
.service:hover { border-color: var(--navy); transform: translateY(-2px); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--water); color: var(--navy); display: grid; place-items: center; margin-bottom: 1.1rem; }
.service-icon svg { width: 32px; height: 32px; }
.service p { color: var(--muted); }
.service-price { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--water); font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.service-price small { font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: var(--step--1); }
.service--start { border: 2px solid var(--amber); }
.service-tag { align-self: flex-start; font-size: var(--step--1); font-weight: 700; color: var(--navy); background: var(--amber-soft); padding: .15rem .65rem; border-radius: 999px; margin-bottom: .75rem; }

/* ---------- Pakete (Herzstück) ---------- */
.plans { background: var(--navy); color: #dfe7f2; position: relative; overflow: hidden; }
.plans h2, .plans h3 { color: var(--white); }
.plans .section-intro p { color: #c4d2e6; }
.plans-bg { position: absolute; right: -120px; top: -80px; width: 460px; opacity: .08; color: var(--white); pointer-events: none; }
.plan-grid { display: grid; gap: 1.5rem; position: relative; }
@media (min-width: 60rem) { .plan-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.plan {
  display: flex; flex-direction: column;
  background: var(--white); color: var(--ink);
  border-radius: 22px; padding: 2rem 1.75rem;
  position: relative;
}
.plan h3 { color: var(--navy); font-size: var(--step-2); margin-bottom: .35rem; }
.plan-for { color: var(--muted); margin-bottom: 1.25rem; }
.plan-price { font-family: var(--font-head); color: var(--navy); margin-bottom: .25rem; }
.plan-price strong { font-size: 2.5rem; font-weight: 750; letter-spacing: -0.03em; }
.plan-price span { font-size: 1.05rem; }
.plan-price-note { font-size: var(--step--1); color: var(--muted); margin-bottom: 1.25rem; }
.plan ul { list-style: none; margin: 0 0 1.75rem; padding: 1.25rem 0 0; border-top: 1px solid var(--water); display: grid; gap: .65rem; }
.plan li { position: relative; padding-left: 1.75rem; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 1.05rem; height: 1.05rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23e6eff8'/%3E%3Cpath d='m5.5 10.2 3 3 6-6.4' fill='none' stroke='%23142b50' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.plan .btn { margin-top: auto; }
.plan--featured { outline: 3px solid var(--amber); outline-offset: -3px; }
@media (min-width: 60rem) { .plan--featured { transform: translateY(-14px); box-shadow: 0 30px 50px -30px rgba(0,0,0,.6); } }
.plan-badge {
  position: absolute; top: -0.9rem; left: 1.75rem;
  background: var(--amber); color: var(--navy-deep); font-weight: 700; font-size: var(--step--1);
  padding: .3rem .9rem; border-radius: 999px;
}
.plans-note { position: relative; margin-top: 2.25rem; font-size: var(--step--1); color: #c4d2e6; max-width: 48rem; }

/* ---------- Branchen ---------- */
.industry-grid { display: grid; gap: 1rem; }
@media (min-width: 48rem) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
.industry { display: flex; gap: 1rem; align-items: flex-start; padding: 1.35rem; border-radius: 10px; background: var(--water-soft); }
.industry svg { width: 40px; height: 40px; flex: none; color: var(--navy); }
.industry h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.industry p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- Über uns ---------- */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 56rem) { .about-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; } }
.about-photo { border-radius: 22px; overflow: hidden; background: var(--water); }
.about-text p { max-width: 36rem; }
.about-facts { display: grid; gap: .6rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.about-facts li { display: flex; gap: .7rem; align-items: flex-start; }
.about-facts svg { width: 22px; height: 22px; color: var(--amber); flex: none; margin-top: .2em; }

/* ---------- Partner ---------- */
.partner { display: grid; gap: 2rem; }
@media (min-width: 56rem) { .partner { grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; } }
.partner-list { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; gap: 1rem; }
.partner-list li { padding: 1.1rem 1.25rem; border-left: 3px solid var(--amber); background: var(--white); border-radius: 0 10px 10px 0; }
.partner-list strong { display: block; color: var(--navy); }
.partner-list span { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 48rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-head); font-weight: 650; font-size: 1.15rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: var(--water) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 4v12M4 10h12' stroke='%23142b50' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 60%;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 0 1.4rem; color: var(--muted); max-width: 42rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 60rem) { .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 4rem; } }
.contact-info { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.contact-info li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-info svg { width: 24px; height: 24px; color: var(--navy); flex: none; margin-top: .15em; }
.contact-info strong { display: block; color: var(--navy); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.5rem, 4vw, 2.5rem); display: grid; gap: 1.1rem; }
@media (min-width: 40rem) { .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; } }
.form-row { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 700; color: var(--navy); }
.field .optional { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  width: 100%; min-height: 48px;
  padding: .7rem .85rem;
  border: 2px solid var(--line); border-radius: 10px; background: var(--white);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); outline: 3px solid var(--amber-soft); outline-offset: 0; }
.checkbox { display: flex; gap: .75rem; align-items: flex-start; font-size: .98rem; }
.checkbox input { width: 22px; height: 22px; margin-top: .15em; flex: none; accent-color: var(--navy); }
.form-note { font-size: var(--step--1); color: var(--muted); margin: 0; }
.honeypot { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #c4d2e6; padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 48rem) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand { color: var(--white); }
.site-footer a { color: #e8eef7; }
.site-footer h2 { color: var(--white); font-size: 1rem; font-family: var(--font-body); letter-spacing: 0; margin-bottom: .75rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: var(--step--1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }

/* ---------- Einblenden beim Scrollen ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- Rechtstexte / Unterseiten ---------- */
.legal { padding-block: 3rem 5rem; }
.legal .wrap { max-width: 46rem; }
.legal h1 { font-size: var(--step-3); }
.legal h2 { font-size: var(--step-1); margin-top: 2.25rem; }
.legal h3 { font-size: 1.05rem; margin-top: 1.5rem; }
.legal ul { padding-left: 1.25rem; }
.legal .todo { background: var(--amber-soft); padding: 0 .25rem; border-radius: 4px; }
.simple-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 4rem var(--gutter); }
.simple-page img { width: 72px; height: 72px; margin: 0 auto 1.5rem; }
.simple-page p { color: var(--muted); max-width: 32rem; margin-inline: auto; }
