/* ===================================================================
   CONVERSERIA — Design System
   Farbwelt aus dem Logo abgeleitet. Mobile-first.
   =================================================================== */

/* ---------- Fonts (lokal gehostet, woff2, swap) ---------- */
@font-face { font-family: "Clash Display"; src: url("../assets/fonts/clash-display-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Clash Display"; src: url("../assets/fonts/clash-display-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../assets/fonts/switzer-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../assets/fonts/switzer-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../assets/fonts/switzer-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --bg:           #0A1F44;
  --bg-deep:      #071735;
  --surface:      #0D2550;
  --surface-2:    #102B5C;
  --surface-3:    #16387a;
  --line:         #1E3C6E;
  --accent:       #1AA0E0;
  --accent-hover: #46BEF2;
  --accent-soft:  rgba(26,160,224,0.14);
  --text:         #EAF1F8;
  --muted:        #9FB3CC;
  --muted-2:      #6F86A6;
  --white:        #FFFFFF;
  --success:      #34D399;
  --danger:       #F87171;

  /* Typo */
  --font-display: "Clash Display", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Switzer", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Type-Scale (mobile-first, fluid) */
  --fs-eyebrow: 0.8125rem;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --fs-h3:      clamp(1.25rem, 1.1rem + 0.8vw, 1.6rem);
  --fs-h2:      clamp(1.75rem, 1.3rem + 2.2vw, 2.85rem);
  --fs-h1:      clamp(2.35rem, 1.6rem + 4vw, 5rem);

  /* Spacing-Rhythmus (4/8) */
  --sp-1: 0.5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;
  --sp-4: 2rem;    --sp-6: 3rem;   --sp-8: 4rem;
  --sp-12: 6rem;   --sp-16: 8rem;

  /* Layout */
  --container: 1200px;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Effekte */
  --shadow-1: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-2: 0 18px 50px -12px rgba(0,0,0,0.55);
  --shadow-glow: 0 10px 40px -8px rgba(26,160,224,0.45);
  --ring: 0 0 0 3px rgba(70,190,242,0.55);

  /* z-Index-Skala */
  --z-base: 0; --z-raised: 10; --z-nav: 40; --z-overlay: 100; --z-modal: 1000;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Background: Grid + Funnel-Glow ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(rgba(30,60,110,0.20) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(30,60,110,0.20) 1px, transparent 1px) 0 0 / 56px 56px,
    radial-gradient(120% 80% at 50% -10%, var(--bg) 40%, var(--bg-deep) 100%);
  -webkit-mask-image: radial-gradient(130% 90% at 50% 0%, #000 55%, transparent 100%);
          mask-image: radial-gradient(130% 90% at 50% 0%, #000 55%, transparent 100%);
}
.bg-glow {
  position: fixed; z-index: -1; pointer-events: none;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: min(900px, 95vw); height: 520px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(26,160,224,0.30), transparent 70%);
  filter: blur(20px);
}

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: var(--sp-12); }
.section--tight { padding-block: var(--sp-8); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--sp-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-hover);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.07; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.lead { font-size: var(--fs-lead); color: var(--muted); max-width: 56ch; }
.muted { color: var(--muted); }
.accent { color: var(--accent-hover); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 52px; padding: 0.85rem 1.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  border: 1px solid transparent; border-radius: 8px;
  transition: transform .2s var(--ease-out), background-color .2s, box-shadow .2s, border-color .2s;
  text-align: center; touch-action: manipulation;
}
.btn svg { width: 18px; height: 18px; transition: transform .2s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary { background: var(--accent); color: #04203b; box-shadow: var(--shadow-glow); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); background: var(--accent-soft); }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(10,31,68,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(7,23,53,0.9); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 36px; width: auto; display: block; }
.nav__links { display: none; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative; padding: 0.6rem 0.85rem; border-radius: var(--radius-sm);
  color: var(--muted); font-weight: 500; font-size: 0.98rem;
  transition: color .2s, background-color .2s;
}
.nav__link:hover { color: var(--text); background: var(--surface-2); }
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.35rem;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav__cta { display: none; }

/* Dropdown */
.nav__item { position: relative; }
.nav__item > .nav__link[aria-expanded] { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav__caret { width: 14px; height: 14px; transition: transform .2s; }
.nav__item:hover .nav__caret, .nav__item:focus-within .nav__caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-2); padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav__item:hover .nav__dropdown, .nav__item:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  display: block; padding: 0.7rem 0.85rem; border-radius: var(--radius-sm);
  color: var(--muted); font-weight: 500;
}
.nav__dropdown a:hover { background: var(--surface-2); color: var(--text); }
.nav__dropdown a strong { color: var(--text); display: block; font-weight: 600; }
.nav__dropdown a span { font-size: 0.85rem; color: var(--muted-2); }

/* Burger */
.nav__burger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 48px; height: 48px; padding: 12px; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.nav__burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 72px 0 0; z-index: var(--z-overlay);
  background: var(--bg-deep); padding: 1.5rem 1.25rem 2.5rem;
  transform: translateX(100%); transition: transform .35s var(--ease-out);
  overflow-y: auto; display: flex; flex-direction: column; gap: 0.25rem;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0.5rem; font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--line); color: var(--text);
}
.mobile-menu a svg { width: 16px; height: 16px; flex-shrink: 0; }
.mobile-menu a:hover { color: var(--accent-hover); }
.mobile-menu .mobile-menu__group { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted-2); padding: 1rem 0.5rem 0.25rem; border: 0; font-family: var(--font-body); }
.mobile-menu .btn { margin-top: 1.25rem; }
body.no-scroll { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5.5rem); }
.hero__inner { max-width: 880px; }
.hero h1 { margin-top: 1rem; }
.hero h1 .accent { display: inline; }
.hero__lead { margin-top: 1.5rem; }
.hero__bullets { margin-top: 1.75rem; display: grid; gap: 0.75rem; }
.hero__bullets li { display: flex; align-items: center; gap: 0.7rem; color: var(--text); font-weight: 500; }
.hero__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero__actions .btn { flex: 1 1 auto; }
@media (max-width: 479px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn--primary { width: 100%; flex: none; }
  .hero__actions .btn--ghost { width: auto; flex: none; align-self: center; }
}

/* Check-Icon Pille */
.check {
  flex: none; width: 26px; height: 26px; border-radius: var(--radius-pill);
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-hover);
}
.check svg { width: 15px; height: 15px; }

/* Trust-Bar / Badge */
.trustbar {
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1rem; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--muted);
}
.badge svg { width: 18px; height: 18px; color: var(--accent-hover); }
.badge--placeholder { border-style: dashed; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; transition: transform .25s var(--ease-out), border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--surface-3); box-shadow: var(--shadow-2); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-hover); margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 1rem; }
.card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem; color: var(--accent-hover); font-weight: 600; font-size: 0.95rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card__link:hover svg { transform: translateX(3px); }

/* Angebots-Karte (Festpreis) */
.offer {
  position: relative; background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--surface-3); border-radius: var(--radius); padding: 2rem; overflow: hidden;
  display: flex; flex-direction: column;
}
.offer > .btn { margin-top: auto; }
.offer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 60% at 100% 0%, var(--accent-soft), transparent 60%);
}
.offer__tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-hover);
  background: var(--accent-soft); padding: 0.35rem 0.8rem; border-radius: 6px;
}
.offer__price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; margin: 1rem 0 0.25rem; }
.offer__price small { font-family: var(--font-body); font-size: 0.95rem; font-weight: 400; color: var(--muted); }
.offer ul { margin: 1.25rem 0; display: grid; gap: 0.6rem; }
.offer ul li { display: flex; gap: 0.6rem; color: var(--muted); }
.offer ul li svg { flex: none; width: 18px; height: 18px; color: var(--accent-hover); margin-top: 3px; }
.offer--featured { border-color: var(--accent); box-shadow: var(--shadow-glow); }
.offer__badge {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 1;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #04203b; background: var(--accent); padding: 0.3rem 0.7rem; border-radius: 6px;
}

/* ---------- Landingpage-Mockup ---------- */
.lp-mock {
  border: 1px solid var(--surface-3); border-radius: 14px; overflow: hidden;
  background: var(--bg-deep); box-shadow: var(--shadow-2);
}
.lp-mock__bar {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 0.9rem;
  background: var(--surface); border-bottom: 1px solid var(--line);
}
.lp-mock__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-3); flex: none; }
.lp-mock__url {
  margin-left: 0.6rem; flex: 1; font-size: 0.78rem; color: var(--muted-2);
  background: var(--bg-deep); border: 1px solid var(--line); border-radius: 6px;
  padding: 0.3rem 0.7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lp-mock__body { padding: clamp(1.25rem, 3vw, 2rem); }
.lp-mock__eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-hover); }
.lp-mock__h { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 1rem + 2vw, 2.1rem); line-height: 1.1; margin: 0.5rem 0 0.6rem; }
.lp-mock__sub { color: var(--muted); font-size: 0.95rem; max-width: 42ch; }
.lp-mock__ticks { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; margin: 1rem 0 1.25rem; }
.lp-mock__ticks span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--text); font-weight: 500; }
.lp-mock__ticks svg { width: 14px; height: 14px; color: var(--accent-hover); }
.lp-mock__row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .lp-mock__row { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; } }
.lp-mock__cta { display: inline-flex; width: fit-content; white-space: nowrap; align-items: center; justify-content: center; gap: 0.5rem; background: var(--accent); color: #04203b; font-weight: 600; font-size: 0.9rem; padding: 0.7rem 1.2rem; border-radius: 8px; }
.lp-mock__cta svg { width: 16px; height: 16px; flex: none; }
.lp-mock__form { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 1.25rem; display: grid; gap: 0.5rem; align-content: start; }
.lp-mock__form-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--text); margin-bottom: 0.35rem; }
.lp-mock__label { height: 8px; width: 38%; border-radius: 3px; background: var(--surface-3); margin-top: 0.35rem; }
.lp-mock__field { height: 36px; border-radius: 6px; background: var(--bg-deep); border: 1px solid var(--line); }
.lp-mock__btn { height: 42px; border-radius: 6px; background: var(--accent); margin-top: 0.5rem; display: grid; place-items: center; color: #04203b; font-weight: 600; font-size: 0.9rem; }
.lp-mock__caption { text-align: center; color: var(--muted-2); font-size: 0.85rem; margin-top: 1rem; }

/* ---------- Full-Service-Band (Done-for-you) ---------- */
.fullservice {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--surface-2) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--surface-3); border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid; gap: 2rem;
}
@media (min-width: 860px) { .fullservice { grid-template-columns: 1.25fr 1fr; align-items: center; gap: 3rem; } }
.fullservice::before {
  content: ""; position: absolute; top: -50%; right: -10%; width: 480px; height: 480px;
  background: radial-gradient(50% 50% at 50% 50%, var(--accent-soft), transparent 70%); pointer-events: none;
}
.fullservice > * { position: relative; }
.fullservice__tag {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-hover);
  background: var(--accent-soft); padding: 0.4rem 0.9rem; border-radius: 6px;
}
.fullservice h2 { margin: 1.1rem 0 0.9rem; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); }
.fullservice__lead { color: var(--muted); max-width: 48ch; margin-bottom: 1.5rem; }
.fullservice__price { font-family: var(--font-display); font-weight: 600; color: var(--text); margin-bottom: 1.5rem; }
.fullservice__price span { color: var(--accent-hover); }
.fullservice__panel {
  background: rgba(7,23,53,0.55); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
}
.fullservice__panel h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.1rem; }
.fullservice__panel ul { display: grid; gap: 0.85rem; }
.fullservice__panel li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text); font-weight: 500; }
.fullservice__panel li svg { flex: none; width: 20px; height: 20px; color: var(--accent-hover); margin-top: 2px; }

/* ---------- Section-Header ---------- */
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin: 0.75rem 0 1rem; }

/* ---------- Prozess / Steps ---------- */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
.step {
  position: relative; padding: 1.75rem 1.75rem 1.75rem 4.5rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 1.5rem; top: 1.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--accent-hover);
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 1rem; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-deep));
  border: 1px solid var(--surface-3); border-radius: 24px; padding: clamp(2.5rem, 6vw, 4.5rem);
}
.cta-band::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; background: radial-gradient(50% 50% at 50% 50%, var(--accent-soft), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto 2rem; }
.cta-band .btn { margin-inline: auto; }

/* ---------- Referenzen / Testimonials ---------- */
.testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
}
.testimonial__stars { display: flex; gap: 3px; color: var(--accent-hover); }
.testimonial__stars svg { width: 18px; height: 18px; }
.testimonial__quote { color: var(--text); font-size: 1.02rem; line-height: 1.6; flex: 1; }
.testimonial__author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-hover); font-family: var(--font-display); font-weight: 700;
}
.testimonial__name { font-weight: 600; }
.testimonial__role { font-size: 0.88rem; color: var(--muted-2); }
.testimonial--placeholder {
  border-style: dashed; border-color: var(--surface-3); background: transparent;
}
.testimonial--placeholder .testimonial__stars { color: var(--surface-3); }
.testimonial--placeholder .testimonial__quote { color: var(--muted-2); font-style: italic; }
.testimonial--placeholder .testimonial__avatar { background: var(--surface-2); color: var(--muted-2); }

/* Einzelne ehrliche Referenz-Karte */
.testimonial-single {
  max-width: 640px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding: 2.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.testimonial-single__icon { width: 48px; height: 48px; color: var(--accent-hover); opacity: 0.5; }
.testimonial-single p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 46ch; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.85rem; max-width: 800px; margin-inline: auto; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; background: none; border: 0; color: var(--text);
  font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; text-align: left;
}
.faq__q svg { flex: none; width: 22px; height: 22px; color: var(--accent-hover); transition: transform .25s; }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease-out); }
.faq__a p { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* ---------- Stat / Mini-Feature-Reihe ---------- */
.featurelist { display: grid; gap: 1rem; }
.featurelist li { display: flex; gap: 0.9rem; align-items: flex-start; }
.featurelist li svg { flex: none; width: 22px; height: 22px; color: var(--accent-hover); margin-top: 3px; }
.featurelist li strong { display: block; color: var(--text); font-weight: 600; }
.featurelist li span { color: var(--muted); font-size: 0.98rem; }

/* ---------- Split (Text + Visual) ---------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } .split--rev > :first-child { order: 2; } }
.visual-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--surface-3); border-radius: 20px; padding: 1.5rem; box-shadow: var(--shadow-2);
}

/* ---------- Formular ---------- */
.form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: 0.5rem; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field label .req { color: var(--accent-hover); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.9rem 1rem; min-height: 52px;
  background: var(--bg-deep); border: 1px solid var(--line); border-radius: 8px;
  color: var(--text); font: inherit; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: var(--ring); outline: none; }
.field .error { color: var(--danger); font-size: 0.875rem; min-height: 1.1em; }
.field.invalid input, .field.invalid textarea { border-color: var(--danger); }
.form__note { font-size: 0.875rem; color: var(--muted-2); }
.form__note a { color: var(--accent-hover); text-decoration: underline; }

/* ---------- Kontakt-Karten ---------- */
.contact-info { display: grid; gap: 1rem; }
.contact-info a {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.contact-info a:hover { border-color: var(--accent); transform: translateX(3px); }
.contact-info a .ci-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; flex: none; }
.contact-info a .ci-icon svg { width: 22px; height: 22px; }
.contact-info a span small { display: block; color: var(--muted-2); font-size: 0.82rem; }
.contact-info a span strong { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding-block: var(--sp-8) var(--sp-4); margin-top: var(--sp-12); }
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer__brand img { height: 36px; width: auto; margin-bottom: 1rem; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; max-width: 38ch; }
.footer h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); margin-bottom: 1rem; }
.footer ul { display: grid; gap: 0.6rem; }
.footer a { color: var(--muted); font-size: 0.96rem; }
.footer a:hover { color: var(--text); }
.footer__bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; justify-content: space-between;
}
.footer__bottom p { color: var(--muted-2); font-size: 0.9rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer__legal a { font-size: 0.9rem; }

/* ---------- Breadcrumb ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.9rem; color: var(--muted-2); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--text); }
.crumbs span { color: var(--muted); }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); }
.page-hero .lead { margin-top: 1.25rem; }

/* ---------- Cookie-Banner ---------- */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: var(--z-modal);
  max-width: 560px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--surface-3); border-radius: var(--radius);
  box-shadow: var(--shadow-2); padding: 1.5rem;
  transform: translateY(160%); transition: transform .4s var(--ease-out);
}
.cookie.is-visible { transform: translateY(0); }
.cookie h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.cookie p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.cookie p a { color: var(--accent-hover); text-decoration: underline; }
.cookie__options { display: grid; gap: 0.6rem; margin-bottom: 1.25rem; }
.cookie__opt { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; }
.cookie__opt input { width: 20px; height: 20px; accent-color: var(--accent); }
.cookie__opt input:disabled { opacity: 0.6; }
.cookie__opt label { color: var(--text); }
.cookie__opt label small { display: block; color: var(--muted-2); font-size: 0.82rem; }
.cookie__actions { display: grid; gap: 0.6rem; }
@media (min-width: 480px) { .cookie__actions { grid-template-columns: 1fr 1fr; } .cookie__actions .btn--block-all { grid-column: 1 / -1; } }
.cookie .btn { min-height: 48px; }

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.notfound__code { font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 20vw, 11rem); line-height: 1; color: var(--accent); }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 200%);
  z-index: var(--z-modal); background: var(--surface-2); border: 1px solid var(--surface-3);
  border-radius: var(--radius-pill); padding: 0.85rem 1.5rem; box-shadow: var(--shadow-2);
  display: flex; align-items: center; gap: 0.6rem; font-weight: 500; transition: transform .4s var(--ease-out);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: var(--success); }

/* ---------- Utilities ---------- */
.sr-only { 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: 1rem; top: -60px; z-index: var(--z-modal); background: var(--accent); color: #04203b; padding: 0.75rem 1.25rem; border-radius: var(--radius-sm); font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 1rem; }
.prose p { color: var(--muted); margin-bottom: 1.1rem; max-width: 70ch; }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 1.75rem 0 0.75rem; }
.prose ul.dotted { display: grid; gap: 0.6rem; margin: 0 0 1.1rem; }
.prose ul.dotted li { color: var(--muted); padding-left: 1.5rem; position: relative; max-width: 70ch; }
.prose ul.dotted li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.prose a { color: var(--accent-hover); text-decoration: underline; }

/* ---------- Desktop-Navigation einblenden ---------- */
@media (min-width: 980px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .mobile-menu { display: none; }
  .hero__actions .btn { flex: 0 0 auto; }
}
