/* ============================================================
   Büroservice Christine Stavrou – Stylesheet
   Helles, modernes Design: große Headlines, runde Karten,
   Pill-Buttons. Logo-Farbwelt: Cyan (#17a3d1) + Creme (#fbfbdc).
   ============================================================ */

:root {
  --bg: #edf5f9;
  --surface: #ffffff;
  --ink: #12252e;
  --muted: #526069;
  --line: #d8e6ee;
  --accent: #17a3d1;
  --accent-deep: #0e7ba3;
  --accent-soft: #def3fb;
  --cream: #fbfbdc;
  --cream-soft: #fdfdea;
  --tint: #e4f4fb;
  --navy: #0a3a4c;
  --navy-2: #147a9e;
  --sun: #ffb84d;
  --dark: #0a3a4c;
  --grad-blue: linear-gradient(135deg, #22b0dd 0%, #0e7ba3 100%);
  --grad-navy: linear-gradient(150deg, #0a3a4c 0%, #147a9e 100%);
  --grad-sky: radial-gradient(60% 70% at 75% 10%, #cfeefb 0%, rgba(207,238,251,0) 70%);
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 14px 40px rgba(10, 58, 76, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 58, 76, 0.18);
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.25rem; }

p { color: var(--muted); }

a { color: inherit; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.section { padding: 5.5rem 0; position: relative; overflow: hidden; }
.section.tint { background: var(--tint); }
.section.tint-soft { background: linear-gradient(180deg, #fff 0%, var(--tint) 100%); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 0.9rem; font-size: 1.05rem; }

/* Dekorative weiche Farbkleckse */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.blob.b1 { width: 380px; height: 380px; background: #b7e6f6; top: -120px; right: -80px; }
.blob.b2 { width: 320px; height: 320px; background: #d3f0fb; bottom: -100px; left: -90px; }
.section > .container { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(20, 30, 24, 0.18); }

.btn-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn .arrow {
  display: inline-flex;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.btn-light .arrow { background: var(--accent-soft); color: var(--accent); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0.9rem;
  z-index: 50;
  margin-top: 0.9rem;
}

.nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0.75rem 0.65rem 1.4rem;
}

.nav-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.brand-logo {
  height: clamp(22px, 4.5vw, 30px);
  width: auto;
  max-width: 62vw;
  object-fit: contain;
  display: block;
}
.brand-logo--footer {
  height: 34px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  transition: background 0.18s ease;
}
.nav-links a:hover { background: var(--accent-soft); }
.nav-links a.active { background: var(--accent-soft); color: var(--accent); }

.nav-links a.nav-cta {
  background: var(--dark);
  color: #fff;
  padding: 0.65rem 1.3rem;
}
.nav-links a.nav-cta:hover { background: #000; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: var(--grad-sky);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,163,209,0.18), rgba(23,163,209,0) 70%);
  top: -160px; left: -120px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 { margin-bottom: 1.4rem; }
.hero-lead { font-size: 1.12rem; max-width: 46ch; margin-bottom: 2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }

.checklist { list-style: none; display: grid; gap: 0.7rem; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  font-size: 1.02rem;
}
.checklist .check {
  flex: none;
  width: 1.45rem; height: 1.45rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Hero-Karten rechts */
.hero-visual { position: relative; }

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.4;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.hero-card.main {
  background: linear-gradient(160deg, #0a3a4c 0%, #17a3d1 100%);
  color: #fff;
  padding: 2.6rem 2.2rem 5.5rem;
}
.hero-card.main h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}
.hero-card.main p { color: rgba(255,255,255,0.82); }

.hero-card.float {
  position: absolute;
  right: -0.8rem;
  bottom: -2.2rem;
  max-width: 270px;
  padding: 1.4rem 1.6rem;
}
.hero-card.float .big {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
}
.hero-card.float p { font-size: 0.9rem; margin-top: 0.2rem; }

.hero-card .tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.6rem; max-width: 70%; }
.hero-card .tags span {
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* ---------- Stats (kräftige blaue Karte) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--grad-navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.stat { padding: 0.5rem 1rem; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.16); }
.stat .num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, var(--cream));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat p { font-weight: 600; color: #fff; margin-top: 0.3rem; }
.stat small { color: rgba(255,255,255,0.7); }

/* ---------- Leistungs-Karten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,30,24,0.1); }

.card-icon {
  width: 3.4rem; height: 3.4rem;
  border-radius: 16px;
  background: var(--grad-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(23,163,209,0.35);
}
.card-icon svg { width: 1.6rem; height: 1.6rem; }

.card ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}
.card ul li {
  padding-left: 1.3rem;
  position: relative;
  font-size: 0.97rem;
}
.card ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.card .card-link {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--accent);
}
.card .card-link:hover { text-decoration: underline; }

/* ---------- Zweispaltiger Abschnitt (Über mich Teaser etc.) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.portrait-card {
  background: linear-gradient(160deg, var(--accent-soft), #fff 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem;
  text-align: center;
}
.portrait-circle {
  width: 7rem; height: 7rem;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-photo {
  width: 9rem; height: 9rem;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.portrait-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.portrait-card h3 { font-size: 1.4rem; }
.portrait-card .role { color: var(--accent); font-weight: 600; font-size: 0.92rem; margin: 0.2rem 0 1.2rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.pill-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--grad-navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,163,209,0.45), rgba(23,163,209,0) 70%);
  top: -120px; right: -60px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 0.9rem; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 54ch; margin: 0 auto 2rem; }
.cta-band .btn-dark { background: #fff; color: var(--navy); }
.cta-band .btn-dark .arrow { background: var(--accent-soft); color: var(--accent); }

/* ---------- Ablauf / Schritte ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
}
.step .step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px rgba(23,163,209,0.35);
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.96rem; }

/* ---------- Foto + Text (Media-Split) ---------- */
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.media-split.flip .media-img { order: 2; }
.media-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  position: relative;
}
.media-img img { width: 100%; height: 100%; object-fit: cover; }
.media-img .badge {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.media-img .badge .dot {
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.media-text .mini-list { list-style: none; display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.media-text .mini-list li {
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 500;
}
.media-text .mini-list .check {
  flex: none; width: 1.45rem; height: 1.45rem;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}

/* ---------- Foto-Band über die ganze Breite ---------- */
.photo-band {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.photo-band img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-band .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,58,76,0.92) 0%, rgba(20,122,158,0.7) 55%, rgba(20,122,158,0.15) 100%);
}
.photo-band .photo-band-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 3rem;
  max-width: 560px;
}
.photo-band h2 { color: #fff; margin-bottom: 0.8rem; }
.photo-band p { color: rgba(255,255,255,0.88); }

/* ---------- Unterseiten-Hero ---------- */
.page-hero {
  padding: 4.5rem 0 3rem;
  max-width: 720px;
}
.page-hero p { font-size: 1.1rem; margin-top: 1.1rem; }

/* ---------- Leistungs-Detailblöcke ---------- */
.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.8rem;
  margin-bottom: 1.6rem;
}
.service-block h2 { font-size: 1.6rem; margin: 1rem 0 0.8rem; }
.service-block ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  align-content: center;
}
.service-block ul li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 450;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.1rem;
}
.service-block ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Werdegang / Timeline ---------- */
.timeline { list-style: none; display: grid; gap: 0; }
.timeline li {
  position: relative;
  padding: 0 0 1.8rem 2.2rem;
  border-left: 2px solid var(--line);
  margin-left: 0.55rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0.35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}
.timeline h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.timeline p { font-size: 0.97rem; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-info a { color: var(--ink); font-weight: 500; text-decoration: none; }
.contact-info a:hover { color: var(--accent); }
.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
}
.contact-row .check { flex: none; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

input, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { min-height: 9rem; resize: vertical; }

.form-note { font-size: 0.85rem; margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer { padding: 4rem 0 0; margin-top: 3rem; }

.footer-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 4rem 3.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.footer-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 36ch; }

.footer-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-card ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-card ul a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.97rem;
}
.footer-card ul a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Einblend-Animation (dezent) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid, .split, .contact-grid, .media-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .media-split.flip .media-img { order: 0; }
  .service-block { grid-template-columns: 1fr; padding: 2rem; }
  .hero-card.float { position: static; max-width: none; margin-top: 1rem; }
  .hero-card.main { padding-bottom: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .photo-band .photo-band-inner { padding: 2.2rem; }
  .photo-band .overlay { background: linear-gradient(160deg, rgba(10,58,76,0.92), rgba(20,122,158,0.72)); }
}

/* Navigation klappt früh aufs Burger-Menü um, damit die Links nie kollidieren */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    gap: 0.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; text-align: center; padding: 0.8rem; }
  .nav-links a.nav-cta { margin-top: 0.2rem; }
  .site-header { position: relative; }
  .nav { position: relative; }
}

@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.4rem 1.5rem; }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.16); padding-top: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .cta-band { padding: 2.8rem 1.6rem; }
  .footer-card { padding: 2.8rem 1.6rem 1.6rem; }
}

/* ---------- Cookie-Hinweis / Einwilligung ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding: 1rem;
  display: flex;
  justify-content: center;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 1080px;
  width: 100%;
  padding: 1.3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.cookie-text { flex: 1 1 300px; font-size: 0.9rem; margin: 0; color: var(--muted); }
.cookie-text a { color: var(--accent); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.cookie-btn:hover { transform: translateY(-1px); opacity: 0.92; }
.cookie-settings {
  flex-basis: 100%;
  display: grid;
  gap: 0.6rem;
  margin-top: 0.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}
.cookie-settings[hidden] { display: none; }
.cookie-settings label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.cookie-settings .cookie-btn { justify-self: start; margin-top: 0.3rem; }

/* Datenschutz-Einwilligung im Formular */
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.consent-check input { width: auto; margin-top: 0.2rem; flex: none; }
.consent-check a { color: var(--accent); }

@media (max-width: 600px) {
  .cookie-actions { width: 100%; }
  .cookie-actions .cookie-btn { flex: 1; text-align: center; }
}
