/* ==========================================================================
   TLM Advisory – Website
   Umsetzung von "TLM Advisory Website.dc.html" (Claude Design)
   ========================================================================== */

/* Schriften lokal gehostet (keine Verbindung zu Google-Servern, DSGVO).
   Beide Dateien sind variable Fonts – eine Datei deckt alle Schnitte ab. */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("../fonts/ibm-plex-sans-latin.woff2") format("woff2");
}

:root {
  --ink: #14101C;
  --muted: #5A5468;
  --muted-2: #6E6880;
  --placeholder: #9B94AB;

  --violet: #6B2FD6;
  --violet-mid: #8E5AE6;
  --violet-deep: #2E1160;
  --lavender: #C9B6FF;
  --violet-soft: #F1EBFE;
  --violet-wash: #F4F1FB;

  --teal: #2FD6C4;
  --teal-dark: #0FA294;
  --teal-light: #7BEFE2;
  --teal-ink: #0E2A27;
  --teal-soft: #E4FAF7;
  --teal-wash: #E8FAF7;

  --night: #1B0B3A;
  --night-2: #2A1160;
  --on-night: #CFC7E4;
  --on-night-muted: #9B90BC;

  --bg: #FBFAFD;
  --line: #EAE6F2;
  --line-strong: #DFD9EC;
  --white: #FFFFFF;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;

  --shadow-card: 0 14px 34px -32px rgba(46, 17, 96, 0.6);
  --shadow-panel: 0 40px 90px -60px rgba(46, 17, 96, 0.5);

  --grad-primary: linear-gradient(120deg, #6B2FD6 0%, #8E5AE6 60%, #2FD6C4 160%);
  --grad-logo: linear-gradient(135deg, #6B2FD6 0%, #2FD6C4 140%);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(60% 40% at 12% 18%, rgba(107, 47, 214, 0.07) 0%, rgba(251, 250, 253, 0) 100%),
    radial-gradient(50% 40% at 92% 62%, rgba(47, 214, 196, 0.10) 0%, rgba(251, 250, 253, 0) 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, p, li, label, a, span { overflow-wrap: break-word; hyphens: auto; }
h1, h2, h3 { font-family: var(--font-display); }
a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--violet-deep); }
input, textarea, button, select { font: inherit; }
input::placeholder, textarea::placeholder { color: var(--placeholder); }
::selection { background: var(--teal); color: var(--teal-ink); }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

/* Klassen wie .form { display: grid } würden sonst das hidden-Attribut aushebeln. */
[hidden] { display: none !important; }

.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;
}

@keyframes tlmPulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }
@keyframes tlmFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Layout-Bausteine ---------- */
.container { max-width: 1120px; margin: 0 auto; padding-inline: 24px; }
.section { padding-top: 96px; }

.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(var(--min, 290px), 100%), 1fr)); }
.split { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); align-items: start; }
.stack { display: grid; gap: 14px; }
.mt-40 { margin-top: 40px; }

.eyebrow { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--violet); font-weight: 600; }
.eyebrow--teal { color: var(--teal-dark); }

.h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; letter-spacing: -0.02em; margin: 14px 0 12px; text-wrap: pretty; }
.lead { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 0; }
.section-head { max-width: 680px; }

.panel {
  border: 1px solid #E6E0F3;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-panel);
}

/* ---------- Karten ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}
.card h3 { font-size: 20px; margin: 12px 0 10px; }
.card p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 14px; }
.card p:last-child { margin-bottom: 0; }
.card .outcome { color: var(--ink); font-weight: 500; }
.card--lift { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.card--lift:hover { transform: translateY(-5px); box-shadow: 0 28px 54px -32px rgba(107, 47, 214, 0.45); }

.tile { border-radius: 18px; padding: 26px; }
.tile h3 { font-size: 18px; margin: 0 0 8px; }
.tile p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
.tile--violet { background: var(--violet-wash); }
.tile--teal { background: var(--teal-wash); }
.tile--white { background: var(--white); border: 1px solid var(--line); }

.kicker { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.1em; font-weight: 700; color: var(--violet); }

/* ---------- Listen ---------- */
.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 15px; color: var(--ink); }
.list li { display: flex; gap: 10px; }
.list li::before { font-weight: 700; flex: none; }
.list--check li::before { content: "✓"; color: var(--violet); }
.list--arrow li::before { content: "→"; color: var(--teal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn--primary { background: var(--grad-primary); color: var(--white); padding: 14px 22px; font-size: 15px; box-shadow: 0 16px 34px -16px rgba(107, 47, 214, 0.8); }
.btn--primary:hover { filter: brightness(1.1); color: var(--white); }
.btn--teal { background: linear-gradient(120deg, var(--teal) 0%, var(--teal-light) 100%); color: var(--teal-ink); padding: 16px 28px; font-size: 16px; box-shadow: 0 18px 40px -18px rgba(47, 214, 196, 0.7); }
.btn--teal:hover { background: var(--teal-light); color: var(--teal-ink); }
.btn--ghost-light { border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); padding: 15px 26px; font-size: 16px; font-weight: 500; }
.btn--ghost-light:hover { border-color: var(--white); color: var(--white); }
.btn--outline { background: transparent; border: 1px solid var(--line-strong); color: var(--muted); padding: 14px 20px; font-size: 15px; font-weight: 400; }
.btn--outline:hover { border-color: var(--violet); color: var(--violet); }

/* ---------- Logo ---------- */
.logo-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-logo); display: grid; place-items: center; flex: none; }
.logo-mark::after { content: ""; width: 11px; height: 11px; background: var(--white); transform: rotate(45deg); border-radius: 2px; }
.logo-mark--sm { width: 28px; height: 28px; border-radius: 9px; }
.logo-mark--sm::after { width: 9px; height: 9px; }

/* ==========================================================================
   Sektionen
   ========================================================================== */

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 253, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(107, 47, 214, 0.05), 0 10px 30px -28px rgba(46, 17, 96, 0.55);
}
.site-header__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.brand__name span { color: var(--violet); }
.main-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 24px; font-size: 15px; }
.main-nav a:not(.btn) { color: var(--muted); }
.main-nav a:not(.btn):hover { color: var(--ink); }
.main-nav .btn { padding: 11px 20px; font-size: 14px; box-shadow: 0 10px 24px -14px rgba(107, 47, 214, 0.85); }
.main-nav .btn:hover { filter: brightness(1.12); }

/* ---------- Sprachumschalter ---------- */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; border: 1px solid var(--line); border-radius: 999px; padding: 4px; background: var(--white); }
.lang-switch > * { padding: 4px 9px; border-radius: 999px; line-height: 1; }
.lang-switch__current { background: var(--violet-soft); color: var(--violet); }
.main-nav .lang-switch a { color: var(--muted); }
.main-nav .lang-switch a:hover { color: var(--ink); background: var(--bg); }

/* Burger-Menü: nur mit JavaScript (Klasse .js am <html>) und nur auf schmalen Screens.
   Ohne JS bricht die Navigation wie im Design einfach um. */
.nav-toggle { display: none; }
@media (max-width: 1060px) {
  .js .site-header--collapsible .nav-toggle {
    /* place-content: center hält die Balken exakt 7 px auseinander – darauf basiert das X (translateY ±7px). */
    display: inline-grid; place-items: center; place-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0 11px;
    background: var(--white); border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  }
  .nav-toggle__bar { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
  .site-header.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
  .site-header.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .js .site-header--collapsible .main-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding-bottom: 10px; }
  .js .site-header--collapsible.is-open .main-nav { display: flex; }
  .js .site-header--collapsible .main-nav a:not(.btn) { padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .js .site-header--collapsible .main-nav .btn { margin-top: 14px; padding: 14px 20px; font-size: 15px; text-align: center; }
  .js .site-header--collapsible .main-nav .lang-switch { margin-top: 14px; align-self: flex-start; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--night); color: var(--white); overflow: hidden; }
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow--violet { top: -160px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(107, 47, 214, 0.85) 0%, rgba(27, 11, 58, 0) 70%); }
.hero__glow--teal { bottom: -220px; left: -140px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(47, 214, 196, 0.5) 0%, rgba(27, 11, 58, 0) 70%); }
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 75%);
}
.hero__inner { position: relative; padding-block: 104px 112px; display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr)); align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(47, 214, 196, 0.45); color: var(--teal-light); padding: 7px 14px; border-radius: 999px; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: tlmPulse 2.6s ease-in-out infinite; }
.hero h1 { font-size: clamp(36px, 5.2vw, 60px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 700; margin: 22px 0 0; text-wrap: pretty; }
.hero h1 em { font-style: normal; background: linear-gradient(100deg, #2FD6C4 0%, #7BEFE2 55%, #C9B6FF 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 19px; line-height: 1.6; color: var(--on-night); margin: 22px 0 0; max-width: 520px; text-wrap: pretty; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__note { font-size: 14px; color: var(--on-night-muted); margin: 18px 0 0; }
.hero__stats { display: grid; gap: 14px; animation: tlmFloat 9s ease-in-out infinite; margin: 0; }
.stat { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 20px; padding: 24px 26px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.9); }
.stat dt { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--white); }
.stat--accent dt { color: var(--teal); }
.stat dd { font-size: 15px; color: var(--on-night); margin: 4px 0 0; }

/* ---------- Trust-Leiste ---------- */
.trust-bar { background: linear-gradient(90deg, #2E1160 0%, #6B2FD6 45%, #0FA294 100%); }
.trust-bar ul { list-style: none; margin: 0 auto; padding-block: 18px; display: flex; flex-wrap: wrap; gap: 12px 36px; justify-content: center; align-items: center; color: rgba(255, 255, 255, 0.95); font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.trust-bar li + li::before { content: "/"; opacity: 0.5; margin-right: 36px; }

/* ---------- Nutzen ---------- */
.benefit { padding: 32px 28px; }
.benefit h3 { margin: 12px 0; }
.kicker--violet-mid { color: var(--violet-mid); }
.kicker--teal { color: var(--teal-dark); }

/* ---------- Quiz (KI-Check) ---------- */
.quiz-panel { background: linear-gradient(150deg, #F7F4FE 0%, #FFFFFF 55%, #EDFAF8 100%); }
.quiz-panel .split { gap: 44px; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }
.quiz-panel .h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.12; margin-bottom: 14px; }
.quiz-panel .lead { font-size: 16px; margin-bottom: 18px; }
.quiz { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: 0 26px 60px -44px rgba(46, 17, 96, 0.7); }
.quiz__meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; color: var(--muted-2); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.quiz__bar { height: 6px; border-radius: 999px; background: #EFEBF9; margin: 10px 0 24px; overflow: hidden; }
.quiz__bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #6B2FD6 0%, #2FD6C4 100%); transition: width 0.3s ease; }
.quiz h3 { font-size: 20px; margin: 0 0 18px; line-height: 1.25; }
.quiz h3:focus { outline: none; }
.quiz__options { display: grid; gap: 10px; }
.quiz__option { text-align: left; width: 100%; background: var(--bg); border: 1px solid #E4DEF2; border-radius: 14px; padding: 15px 18px; font-size: 15px; color: var(--ink); cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease; }
.quiz__option:hover { border-color: var(--violet); background: #F6F1FE; transform: translateX(3px); }
.quiz__back { margin-top: 18px; background: transparent; border: 0; padding: 0; color: var(--violet); font-size: 14px; cursor: pointer; }
.quiz__tag { display: inline-block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--teal-dark); background: var(--teal-soft); padding: 6px 12px; border-radius: 999px; }
.quiz .quiz__result-title { font-size: 22px; margin: 16px 0 10px; }
.quiz__text { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 16px; }
.quiz__steps { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.quiz__steps-title { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); font-weight: 700; margin-bottom: 10px; }
.quiz__steps .list { gap: 9px; }
.quiz__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* ---------- Leistungen ---------- */
.services-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.services-head .h2 { margin-bottom: 0; max-width: 620px; }
.services-head p { font-size: 16px; color: var(--muted); max-width: 320px; margin: 0; }
.service { background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%); padding: 32px 28px 34px; box-shadow: 0 14px 34px -30px rgba(46, 17, 96, 0.6); }
.service:hover { border-color: var(--lavender); transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(107, 47, 214, 0.5); }
.service h3 { font-size: 21px; margin: 20px 0 0; letter-spacing: -0.01em; }
.service > p { font-size: 16px; line-height: 1.6; margin: 12px 0 20px; }
.service-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--violet-soft); display: grid; place-items: center; }
.service-icon::after { content: ""; }
.service-icon--dot::after { width: 14px; height: 14px; border-radius: 50%; background: var(--violet); }
.service-icon--diamond { background: var(--teal-soft); }
.service-icon--diamond::after { width: 13px; height: 13px; background: var(--teal-dark); transform: rotate(45deg); border-radius: 2px; }
.service-icon--square::after { width: 15px; height: 15px; border-radius: 5px; border: 3px solid var(--violet); }

/* ---------- Use Cases ---------- */
.use-case h3 { font-size: 19px; margin: 0 0 10px; }
.use-case p { line-height: 1.6; }
.use-case strong { color: var(--ink); }
.use-case strong.after { color: var(--teal-dark); }
.use-case.card--lift:hover { box-shadow: 0 28px 54px -32px rgba(15, 162, 148, 0.45); }
.section-foot { font-size: 15px; color: var(--muted-2); margin: 24px 0 0; }

/* ---------- Für wen ---------- */
.audience .h2 { margin-bottom: 16px; }
.audience .lead { margin-bottom: 18px; }
.audience .list { gap: 12px; font-size: 16px; }
.audience .list li { gap: 12px; }

/* ---------- Vorgehen ---------- */
.process-panel { background: linear-gradient(150deg, #FFFFFF 0%, #F7F4FE 60%, #EDFAF8 100%); padding: clamp(28px, 4vw, 56px); box-shadow: 0 40px 90px -60px rgba(46, 17, 96, 0.55); }
.process-panel .h2 { margin-bottom: 10px; max-width: 620px; }
.process-panel .lead { max-width: 620px; margin-bottom: 42px; }
.steps { list-style: none; padding: 0; margin: 0; gap: 24px; }
.step { border-top: 2px solid var(--step-color, var(--violet)); padding-top: 20px; }
.step .kicker { font-size: 14px; letter-spacing: 0.08em; color: var(--step-kicker, var(--step-color, var(--violet))); }
.step h3 { font-size: 19px; margin: 12px 0 8px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 12px; }
.step .outcome { font-size: 14px; line-height: 1.55; color: var(--ink); margin: 0; font-weight: 500; }

/* ---------- Referenzen ---------- */
.reference .tag { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--tag-color, var(--violet)); }
.reference .tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--dot-color, var(--tag-color, var(--violet))); }
.reference h3 { margin: 14px 0 10px; }
.reference .outcome { font-size: 14px; line-height: 1.55; }

/* ---------- Zusammenarbeit ---------- */
.format { padding: 30px 26px; }
.format .label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--violet); }
.format p { line-height: 1.6; }
.format .meta { font-size: 14px; color: var(--ink); font-weight: 500; }
.format--dark { background: linear-gradient(160deg, #1B0B3A 0%, #2A1160 100%); color: var(--white); border: 0; box-shadow: 0 30px 60px -40px rgba(46, 17, 96, 0.8); }
.format--dark .label { color: var(--teal); }
.format--dark p { color: var(--on-night); }
.format--dark .meta { color: var(--white); }
.format--featured { border-color: var(--lavender); box-shadow: 0 24px 50px -34px rgba(107, 47, 214, 0.5); }
.format--featured .label { color: var(--teal-dark); }

/* ---------- Technologie ---------- */
.tech .split { gap: 44px; }
.tech .h2 { margin-bottom: 16px; }
.tech .lead { margin-bottom: 18px; }
.principle { display: flex; gap: 14px; align-items: flex-start; }
.principle::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--bullet, var(--violet)); margin-top: 7px; flex: none; }
.principle p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
.principle strong { color: var(--ink); }
.tech .tile { border-radius: 20px; }
.tech .tile h3 { font-size: 17px; margin-bottom: 10px; }

/* ---------- Über uns ---------- */
.about-panel { background: linear-gradient(145deg, #FFFFFF 0%, #F7F4FE 100%); display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); align-items: center; box-shadow: 0 40px 90px -64px rgba(46, 17, 96, 0.5); }
.about-panel .h2 { font-size: clamp(26px, 3.2vw, 36px); line-height: 1.12; margin-bottom: 16px; }
.about-panel .lead { font-size: 16px; line-height: 1.7; }
.about-panel .lead + .lead { margin-top: 14px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 32px 30px; margin: 0; box-shadow: 0 26px 60px -46px rgba(46, 17, 96, 0.7); }
.quote blockquote { font-family: var(--font-display); font-size: 20px; line-height: 1.45; color: var(--ink); margin: 0 0 20px; letter-spacing: -0.01em; }
.quote blockquote p { margin: 0; }
.quote figcaption { display: flex; align-items: center; gap: 14px; border-top: 1px solid #EFEBF9; padding-top: 18px; font-size: 15px; color: var(--muted); }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-logo); color: var(--white); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; flex: none; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.faq-item:hover { border-color: var(--lavender); box-shadow: 0 18px 40px -34px rgba(46, 17, 96, 0.7); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--violet-soft); color: var(--violet); display: grid; place-items: center; font-size: 17px; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0; padding: 0 56px 22px 22px; font-size: 16px; line-height: 1.65; color: var(--muted); }

/* ---------- Kontakt ---------- */
.contact { margin-top: 96px; }
.contact-panel { position: relative; overflow: hidden; background: linear-gradient(145deg, #1B0B3A 0%, #2A1160 55%, #123A46 140%); color: var(--white); border: 0; padding: clamp(28px, 4vw, 56px); box-shadow: 0 60px 120px -70px rgba(46, 17, 96, 0.9); }
.contact-panel::before { content: ""; position: absolute; bottom: -180px; right: -100px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(47, 214, 196, 0.35) 0%, rgba(27, 11, 58, 0) 70%); pointer-events: none; }
.contact-panel > .split > * { position: relative; }
.contact-panel .eyebrow { color: var(--teal); }
.contact-panel .h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.contact-panel .lead { color: var(--on-night); line-height: 1.6; margin-bottom: 26px; }
.contact-details { font-style: normal; display: grid; gap: 14px; font-size: 16px; color: #EDE9F7; }
.contact-details > * { display: flex; gap: 12px; align-items: center; }
.contact-details > *::before { content: ""; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex: none; }
.contact-details a { color: #EDE9F7; }
.contact-details a:hover { color: var(--teal-light); }

.form-card { background: var(--white); border-radius: 22px; padding: 30px; box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.8); color: var(--ink); }
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; font-size: 14px; font-weight: 500; color: var(--ink); }
.field input, .field textarea { border: 1px solid var(--line-strong); border-radius: 11px; padding: 13px 14px; font-size: 15px; color: var(--ink); background: var(--bg); width: 100%; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--violet); background: var(--white); }
.form .btn--primary { padding: 16px 22px; font-size: 16px; }
.form .btn--primary[disabled] { opacity: 0.7; cursor: progress; }
.form__legal { font-size: 13px; color: var(--muted-2); margin: 0; line-height: 1.5; }
.form__error { font-size: 14px; color: #B42318; background: #FEF3F2; border-radius: 10px; padding: 10px 12px; margin: 0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { display: grid; gap: 12px; padding: 28px 8px; text-align: center; }
.form-success__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center; margin: 0 auto; font-size: 22px; }
.form-success h3 { font-size: 20px; margin: 0; }
.form-success h3:focus { outline: none; }
.form-success p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { padding-block: 64px 48px; }
.footer-cols { gap: 32px; --min: 220px; padding-bottom: 40px; }
.footer-cols h3 { font-size: 15px; margin: 0 0 12px; color: var(--ink); }
.footer-cols p, .footer-cols address { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; font-style: normal; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 28px; }
.footer-bottom__brand { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--muted); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: 15px; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--violet); }

/* ==========================================================================
   Rechtsseiten (Impressum, Datenschutz)
   ========================================================================== */
.container--narrow { max-width: 900px; }
.page-legal { background-image: radial-gradient(60% 40% at 10% 12%, rgba(107, 47, 214, 0.07) 0%, rgba(251, 250, 253, 0) 100%); }
.page-legal--teal { background-image: radial-gradient(60% 40% at 90% 10%, rgba(47, 214, 196, 0.10) 0%, rgba(251, 250, 253, 0) 100%); }
.legal { padding-block: 72px 24px; }
.legal h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.1; letter-spacing: -0.025em; margin: 14px 0 8px; }
.legal .legal__meta { font-size: 16px; color: var(--muted-2); margin: 0 0 20px; }
.legal__rule { height: 2px; margin-bottom: 48px; background: linear-gradient(90deg, #6B2FD6 0%, #2FD6C4 55%, rgba(47, 214, 196, 0) 100%); }
.legal__rule--teal { background: linear-gradient(90deg, #2FD6C4 0%, #6B2FD6 55%, rgba(107, 47, 214, 0) 100%); }
.legal__grid { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); align-items: start; }
.legal__col { display: grid; gap: 28px; }
.legal h2 { font-size: 17px; margin: 0 0 10px; }
.legal p { font-size: 15px; line-height: 1.75; color: var(--muted); margin: 0; }

/* ---------- Bewegung reduzieren ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
