/* ============================================================
   dewald. mediendesign — zentrales Stylesheet
   Struktur:
   01 Fonts & Reset          08 Prozess (Sticky)
   02 Design-Tokens          09 Stats-Band
   03 Basis & Utilities      10 Preise
   04 Navigation             11 Über mich
   05 Hero                   12 FAQ
   06 Marquee & Statement    13 Kontakt & Formulare
   07 Leistungen & Konzepte  14 Footer
   15 Terminbuchung   16 Rechtsseiten   17 Responsive   18 Motion
   ============================================================ */

/* ---- 01 Fonts & Reset ---- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

/* ---- 02 Design-Tokens ---- */
:root {
  color-scheme: light;
  /* Markenpalette
     Weiß #ffffff · Schwarz #000000 · Dunkelblau #1800ad
     Indigo #4530ff · Flieder #a89bff */
  --white: #ffffff;
  --black: #000000;
  --blue: #1800ad;          /* Dunkelblau */
  --blue-deep: #110080;
  --blue-bright: #4530ff;   /* Indigo */
  --indigo: #4530ff;
  --lilac: #a89bff;         /* Flieder */
  --blue-glow: rgba(69, 48, 255, .38);
  --ink: #0b0b12;
  --paper: #ffffff;
  --gray: #f5f6fa;
  --line: #e6e6ef;
  --muted: #55555f;
  --radius: 24px;
  --radius-s: 14px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 72px;
}

/* ---- 03 Basis & Utilities ---- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
::selection { background: var(--blue); color: #fff; }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }
.section.alt { background: var(--gray); }
.section.dark { background: var(--ink); color: #fff; }
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 1.1rem;
}
.kicker::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: var(--blue-bright); }
.dark .kicker { color: #8f80ff; }
.dark .kicker::before { background: #8f80ff; }

h1, h2, h3 { font-weight: 700; letter-spacing: -.035em; line-height: 1.08; text-wrap: balance; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.35rem; letter-spacing: -.02em; line-height: 1.25; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 620px; }
.dark .lead { color: rgba(255,255,255,.65); }
.grad {
  background: linear-gradient(92deg, var(--blue) 10%, var(--blue-bright) 90%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-head { max-width: 720px; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--blue); color: #fff; text-decoration: none; border: none; cursor: pointer;
  font-size: .98rem; font-weight: 600; letter-spacing: -.01em;
  padding: .95rem 1.9rem; border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 14px 34px -12px var(--blue-glow); }
.btn:active { transform: translateY(0); }
.btn .btn-arrow { transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { background: #f0f0ff; box-shadow: 0 14px 34px -12px rgba(255,255,255,.25); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: transparent; border-color: var(--ink); box-shadow: none; }
.dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.dark .btn-ghost:hover { border-color: #fff; }

.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: rgba(24, 0, 173, .07);
  border: 1px solid rgba(24, 0, 173, .14);
  padding: .38rem .85rem; border-radius: 999px;
}

/* ---- 04 Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s;
}
.nav.scrolled { background: rgba(255, 255, 255, .88); border-bottom-color: var(--line); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; flex-direction: column; gap: 3px; line-height: 1; text-decoration: none; flex-shrink: 0; }
.logo-mark { font-size: 1.4rem; font-weight: 800; letter-spacing: -.04em; color: var(--ink); }
.logo-mark i { font-style: normal; color: var(--blue-bright); }
.logo-sub { font-size: .58rem; font-weight: 600; letter-spacing: .4em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: .92rem; font-weight: 500; color: var(--ink);
  opacity: .75; transition: opacity .25s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { flex-shrink: 0; padding: .62rem 1.35rem; font-size: .88rem; }

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-burger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 90; background: rgba(255,255,255,.98);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; padding: 6rem 2rem 3rem;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.menu.open { opacity: 1; visibility: visible; }
.menu ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.menu a {
  display: inline-block; text-decoration: none; color: var(--ink);
  font-size: clamp(2rem, 8vw, 3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.25;
  transform: translateY(24px); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease), color .25s;
  transition-delay: calc(var(--i, 0) * 55ms);
}
.menu.open a { transform: none; opacity: 1; }
.menu a:hover { color: var(--blue); }
.menu a.menu-cta { color: var(--blue-bright); }
.menu a.menu-cta::after { content: ' \2192'; }
.menu-foot { margin-top: 3rem; display: flex; flex-direction: column; gap: .4rem; font-size: .95rem; color: var(--muted); }
.menu-foot a { font-size: .95rem; font-weight: 500; color: var(--muted); transform: none; opacity: 1; transition: color .25s; }
.menu-foot a:hover { color: var(--blue); }

/* ---- 05 Hero ---- */
.hero {
  position: relative; min-height: 100svh; overflow: clip;
  display: grid; place-items: center; text-align: center;
  padding: calc(var(--nav-h) + 4.5rem) 24px 6.5rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: -2px;
  background:
    linear-gradient(to right, rgba(11,11,18,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,11,18,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 38%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 38%, #000 30%, transparent 75%);
}
/* Weiche Farbflächen ohne teuren blur()-Filter — Radial-Gradients sind von Haus aus weich */
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-1 {
  width: 900px; height: 900px; top: -320px; left: -280px; opacity: .3;
  background: radial-gradient(circle at 50% 50%, var(--blue-bright) 0%, rgba(69, 48, 255, .35) 32%, transparent 62%);
}
.blob-2 {
  width: 760px; height: 760px; bottom: -320px; right: -240px; opacity: .22;
  background: radial-gradient(circle at 50% 50%, var(--blue) 0%, rgba(24, 0, 173, .35) 32%, transparent 62%);
}
.hero-inner { position: relative; max-width: 900px; }
.hero .kicker { justify-content: center; }
.hero h1 { font-size: clamp(2.7rem, 7.2vw, 5.4rem); font-weight: 800; letter-spacing: -.045em; margin-bottom: 1.5rem; }
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--muted); max-width: 560px; margin: 0 auto 2.6rem; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1.1rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.4rem; font-size: .85rem; color: var(--muted); }

.hero-up { opacity: 0; transform: translateY(30px); animation: hero-up .9s var(--ease) forwards; animation-delay: calc(var(--hero-base, 0s) + var(--d, 0) * 120ms); }
@keyframes hero-up { to { opacity: 1; transform: none; } }
body.has-curtain { --hero-base: .95s; }

.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(11,11,18,.22); border-radius: 999px;
}
.scroll-cue::before {
  content: ''; position: absolute; top: 7px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 4px; background: var(--blue-bright);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---- 06 Marquee & Statement ---- */
.marquee { overflow: clip; border-block: 1px solid var(--line); padding: 1.05rem 0; background: var(--paper); }
.marquee-track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: 3.2rem; flex-shrink: 0; font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.marquee-track i { font-style: normal; color: var(--blue-bright); }
@keyframes marquee { to { transform: translateX(calc(-50% - 1.6rem)); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

.statement { padding: clamp(6rem, 12vw, 10rem) 0; }
.statement p {
  font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.28;
  max-width: 980px;
}
.statement .w { opacity: .25; transition: opacity .35s linear; }
.statement .w.on { opacity: 1; }
.statement .hl { color: var(--blue-bright); font-style: normal; }

/* ---- 07 Leistungen & Konzepte ---- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(24,0,173,.22); box-shadow: 0 28px 60px -30px rgba(11,11,18,.22); }
.card-icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(24, 0, 173, .07); color: var(--blue); margin-bottom: 1.4rem;
  transition: transform .35s var(--ease);
}
.card:hover .card-icon { transform: translateY(-4px) rotate(-5deg); }
.card h3 { font-size: 1.12rem; margin-bottom: .6rem; }
.card p { font-size: .92rem; color: var(--muted); line-height: 1.6; }

.concept { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.concept + .concept { margin-top: clamp(4.5rem, 8vw, 7rem); }
.concept:nth-child(even) .concept-visual { order: 2; }
.concept-info h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 1.1rem 0 .9rem; }
.concept-info p { color: var(--muted); max-width: 440px; }
.concept-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.concept-tags span {
  font-size: .78rem; font-weight: 500; color: var(--muted);
  border: 1px solid var(--line); background: var(--paper);
  padding: .32rem .8rem; border-radius: 999px;
}

.browser {
  border-radius: 18px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 48px 90px -42px rgba(11, 11, 18, .4);
  overflow: hidden;
}
.browser-bar {
  height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 15px;
  background: #f1f1f4; border-bottom: 1px solid var(--line);
}
.b-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.b-dot:nth-child(1) { background: #ff5f57; }
.b-dot:nth-child(2) { background: #febc2e; }
.b-dot:nth-child(3) { background: #28c840; }
.b-url {
  margin: 0 auto; height: 23px; min-width: 46%; border-radius: 999px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .66rem; color: var(--muted); padding: 0 14px;
}
.browser-view { aspect-ratio: 16 / 10.5; position: relative; overflow: hidden; }

/* Demo A — Handwerk */
.demo-hw { position: absolute; inset: 0; background: #17140f; color: #f4eee3; display: flex; flex-direction: column; }
.demo-hw-nav { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; font-size: 9px; letter-spacing: .08em; }
.demo-hw-nav b { font-size: 10.5px; letter-spacing: .18em; }
.demo-hw-nav u { text-decoration: none; opacity: .65; margin-left: 12px; }
.demo-hw-hero { padding: 22px 20px 16px; }
.demo-hw-hero small { display: block; font-size: 8px; letter-spacing: .28em; text-transform: uppercase; color: #e8a33d; margin-bottom: 8px; }
.demo-hw-hero h4 { font-size: clamp(17px, 2.1vw, 24px); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; max-width: 320px; }
.demo-hw-hero p { font-size: 9.5px; opacity: .6; margin-top: 7px; max-width: 250px; line-height: 1.5; }
.demo-hw-cta { display: inline-block; margin-top: 11px; background: #e8a33d; color: #17140f; font-size: 9px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.demo-hw-grid { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.demo-hw-grid div {
  height: clamp(52px, 7vw, 78px); position: relative;
  background:
    repeating-linear-gradient(98deg, rgba(255, 235, 200, .06) 0 2px, transparent 2px 9px, rgba(0, 0, 0, .12) 9px 11px, transparent 11px 18px),
    linear-gradient(145deg, #4a3a22, #241d12);
}
.demo-hw-grid div:nth-child(2) {
  background:
    repeating-linear-gradient(94deg, rgba(255, 235, 200, .07) 0 2px, transparent 2px 8px, rgba(0, 0, 0, .14) 8px 10px, transparent 10px 16px),
    linear-gradient(145deg, #59452a, #2b2114);
}
.demo-hw-grid div:nth-child(3) {
  background:
    repeating-linear-gradient(102deg, rgba(255, 235, 200, .06) 0 2px, transparent 2px 10px, rgba(0, 0, 0, .12) 10px 12px, transparent 12px 19px),
    linear-gradient(145deg, #66502a, #332816);
}
.demo-hw-grid div::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0, 0, 0, .45)); }
.demo-hw-grid span { position: absolute; left: 10px; bottom: 8px; font-size: 9.5px; font-weight: 600; letter-spacing: .06em; z-index: 1; }

/* Demo B — Café */
.demo-cafe { position: absolute; inset: 0; background: #f7efe3; color: #33261a; display: flex; flex-direction: column; }
.demo-cafe-nav { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; font-size: 9px; }
.demo-cafe-nav b { font-family: Georgia, 'Times New Roman', serif; font-size: 12px; font-style: italic; }
.demo-cafe-nav u { text-decoration: none; opacity: .6; margin-left: 12px; }
.demo-cafe-body { display: grid; grid-template-columns: 1.25fr 1fr; gap: 14px; padding: 16px 20px; align-items: center; flex: 1; }
.demo-cafe-body h4 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(16px, 2vw, 23px); font-weight: 400; line-height: 1.15; letter-spacing: -.01em; }
.demo-cafe-body p { font-size: 9.5px; opacity: .65; margin-top: 7px; line-height: 1.5; max-width: 230px; }
.demo-cafe-cta { display: inline-block; margin-top: 11px; background: #b4643c; color: #fff; font-size: 9px; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.demo-cafe-img {
  aspect-ratio: 1; border-radius: 50%;
  /* Cappuccino von oben: Crema-Wirbel + Highlight + Tassenrand */
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 245, 225, .5), transparent 42%),
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(0, 0, 0, .18) 66%, transparent 70%),
    conic-gradient(from 220deg, #8a4a2b, #c98d54 22%, #8a4a2b 45%, #a86a38 68%, #8a4a2b);
  box-shadow: inset 0 0 0 6px #fff, 0 10px 24px -12px rgba(51, 38, 26, .5);
}
.demo-cafe-menu { display: flex; gap: 6px; padding: 0 20px 16px; }
.demo-cafe-menu div { flex: 1; background: #fff; border-radius: 9px; padding: 8px 10px; font-size: 8.5px; line-height: 1.45; }
.demo-cafe-menu b { display: block; font-size: 9px; }
.demo-cafe-menu span { color: #b4643c; font-weight: 700; }

/* Demo C — Physiotherapie */
.demo-physio { position: absolute; inset: 0; background: #fff; color: #14211f; display: flex; flex-direction: column; }
.demo-physio-nav { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; font-size: 9px; }
.demo-physio-nav b { font-size: 10.5px; font-weight: 800; color: #0f8a80; }
.demo-physio-nav u { text-decoration: none; opacity: .6; margin-left: 12px; }
.demo-physio-hero { padding: 20px 20px 14px; }
.demo-physio-hero h4 { font-size: clamp(16px, 2vw, 23px); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; max-width: 300px; }
.demo-physio-hero h4 em { font-style: normal; color: #0f8a80; }
.demo-physio-hero p { font-size: 9.5px; color: #5a6b68; margin-top: 7px; max-width: 250px; line-height: 1.5; }
.demo-physio-cta { display: inline-block; margin-top: 11px; background: #0f8a80; color: #fff; font-size: 9px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.demo-physio-rows { margin-top: auto; padding: 0 20px 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.demo-physio-rows div { background: #eef5f4; border-radius: 9px; padding: 9px 10px; font-size: 8.5px; line-height: 1.4; color: #37504c; }
.demo-physio-rows b { display: block; color: #14211f; font-size: 9px; margin-bottom: 2px; }

/* ---- 08 Prozess (Sticky) ---- */
.process { display: grid; grid-template-columns: minmax(300px, 400px) 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.process-rail { position: sticky; top: calc(var(--nav-h) + 3rem); }
.process-rail .lead { margin-bottom: 2.2rem; }
.process-progress { width: 100%; max-width: 260px; height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; margin-bottom: 2.2rem; }
.process-progress i { display: block; height: 100%; width: 0; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); transition: width .45s var(--ease); }
.steps { display: flex; flex-direction: column; gap: 1.2rem; counter-reset: step; }
.step {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 2.1rem 2.1rem 2rem;
  background: var(--paper);
  opacity: .45; transform: scale(.985);
  transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.step.active { opacity: 1; transform: none; border-color: rgba(24, 0, 173, .28); box-shadow: 0 24px 55px -32px rgba(24, 0, 173, .35); }
.step-num { font-size: .82rem; font-weight: 700; letter-spacing: .14em; color: var(--blue-bright); margin-bottom: .8rem; }
.step h3 { margin-bottom: .55rem; }
.step p { font-size: .95rem; color: var(--muted); }
.step-meta { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .45rem; }
.step-meta span { font-size: .76rem; font-weight: 500; color: var(--muted); background: var(--gray); border-radius: 999px; padding: .3rem .75rem; }

/* ---- 09 Stats-Band ---- */
.stats-band { background: linear-gradient(120deg, var(--blue-deep), var(--blue) 45%, var(--blue-bright)); color: #fff; padding: clamp(3.5rem, 7vw, 5.5rem) 0; position: relative; overflow: clip; }
.stats-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 120% at 80% -20%, rgba(255,255,255,.16), transparent 60%); pointer-events: none; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; position: relative; z-index: 1; }
.stat-n { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.stat-l { margin-top: .6rem; font-size: .86rem; font-weight: 500; color: rgba(255, 255, 255, .88); }

/* ---- 10 Preise ---- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2.1rem; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 65px -35px rgba(11, 11, 18, .25); }
.price-card.featured {
  background: linear-gradient(165deg, var(--blue-deep) 0%, var(--blue) 55%, #2d18d6 100%);
  color: #fff; border: none; position: relative;
  box-shadow: 0 34px 80px -34px var(--blue-glow);
}
.price-card.featured:hover { box-shadow: 0 40px 90px -34px var(--blue-glow); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--blue); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .34rem .95rem; border-radius: 999px; box-shadow: 0 8px 22px -8px rgba(11,11,18,.3);
  white-space: nowrap;
}
.price-name { font-size: 1.08rem; font-weight: 700; margin-bottom: .3rem; }
.price-for { font-size: .86rem; color: var(--muted); margin-bottom: 1.5rem; }
.featured .price-for { color: rgba(255, 255, 255, .65); }
.price-tag { display: flex; align-items: baseline; gap: .45rem; margin-bottom: 1.6rem; }
.price-ab { font-size: .9rem; font-weight: 500; color: var(--muted); }
.featured .price-ab { color: rgba(255, 255, 255, .65); }
.price-val { font-size: 2.7rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: .68rem; margin-bottom: 2rem; }
.price-feats li { display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; line-height: 1.5; }
.price-feats svg { flex-shrink: 0; margin-top: .22rem; color: var(--blue-bright); }
.featured .price-feats svg { color: #a89bff; }
.price-card .btn { margin-top: auto; width: 100%; }
.pricing-note { margin-top: 2.2rem; text-align: center; font-size: .88rem; color: var(--muted); max-width: 640px; margin-inline: auto; }

/* ---- 11 Über mich ---- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.about-card {
  aspect-ratio: 4 / 4.6; border-radius: calc(var(--radius) + 6px); position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--blue-deep), var(--blue) 50%, #2d18d6);
  display: grid; place-items: center;
  box-shadow: 0 44px 90px -44px var(--blue-glow);
}
.about-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(255,255,255,.2), transparent 42%),
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}
.about-mark { font-size: clamp(6rem, 12vw, 9.5rem); font-weight: 800; letter-spacing: -.06em; color: #fff; line-height: 1; position: relative; }
.about-mark i { font-style: normal; color: #a89bff; }
.about-caption {
  position: absolute; left: 1.6rem; bottom: 1.5rem; right: 1.6rem;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem;
  color: rgba(255,255,255,.85); font-size: .84rem; font-weight: 500;
}
.about-text p { color: var(--muted); margin-bottom: 1.1rem; }
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-facts { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.8rem; }
.about-facts span {
  font-size: .82rem; font-weight: 500; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line);
  padding: .42rem .95rem; border-radius: 999px;
}

/* ---- 11b Kundenstimmen ---- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.t-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.9rem; display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.t-card:hover { transform: translateY(-6px); border-color: rgba(24, 0, 173, .22); box-shadow: 0 28px 60px -30px rgba(11, 11, 18, .22); }
.t-stars { display: flex; gap: .2rem; color: var(--blue-bright); }
.t-quote { font-size: .95rem; line-height: 1.75; color: var(--ink); flex: 1; }
.t-author { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.t-name { font-weight: 600; font-size: .92rem; }
.t-role { font-size: .8rem; color: var(--muted); margin-top: .15rem; }
@media (max-width: 960px) { .t-grid { grid-template-columns: 1fr; } }

/* ---- 12 FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.45rem 0; font-size: 1.05rem; font-weight: 600; color: var(--ink);
  letter-spacing: -.01em; transition: color .25s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: transform .4s var(--ease), border-color .3s, background .3s; }
.faq-icon svg { transition: transform .4s var(--ease); }
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 3.4rem 1.6rem 0; color: var(--muted); font-size: .98rem; }

/* ---- 13 Kontakt & Formulare ---- */
.contact-section { position: relative; overflow: clip; }
.contact-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 72% 0%, rgba(69, 48, 255, .22), transparent 65%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(3rem, 6vw, 5.5rem); position: relative; }
.contact-side h2 { margin-bottom: 1rem; }
.contact-side .lead { margin-bottom: 2.4rem; }
.contact-rows { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 2.6rem; }
.contact-row {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
  padding: .85rem 1rem; margin: 0 -1rem; border-radius: var(--radius-s);
  transition: background .3s;
}
.contact-row:hover { background: rgba(255, 255, 255, .06); }
.contact-row .card-icon { margin: 0; width: 42px; height: 42px; background: rgba(255,255,255,.08); color: #a89bff; }
.contact-row-label { font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.5); }
.contact-row-val { font-size: .98rem; font-weight: 600; color: #fff; }
.termin-teaser {
  border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius);
  padding: 1.7rem 1.8rem; background: rgba(255, 255, 255, .04);
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap;
}
.termin-teaser h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.termin-teaser p { font-size: .86rem; color: rgba(255, 255, 255, .6); }

.form-card {
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: calc(var(--radius) + 4px); padding: clamp(1.8rem, 3.5vw, 2.6rem);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .45rem; color: rgba(255, 255, 255, .78); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1.05rem;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px; color: #fff; font-family: inherit; font-size: .95rem;
  outline: none; transition: border-color .25s, box-shadow .25s, background .25s;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255, 255, 255, .35); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue-bright); box-shadow: 0 0 0 4px rgba(69, 48, 255, .25); background: rgba(255, 255, 255, .09);
}
.form-group textarea { resize: vertical; min-height: 120px; }
/* Meldungen werden per JS mit Text befüllt; leere Meldungen sind unsichtbar.
   So bleiben die Live-Regionen im DOM und Screenreader kündigen Änderungen an. */
.form-msg { display: block; border-radius: var(--radius-s); padding: .9rem 1.15rem; font-size: .9rem; margin-bottom: 1.1rem; }
.form-msg:empty { display: none; }
.form-msg.ok { background: rgba(40, 200, 100, .14); border: 1px solid rgba(40, 200, 100, .38); color: #7dedaa; }
.form-msg.err { background: rgba(255, 80, 80, .12); border: 1px solid rgba(255, 80, 80, .35); color: #ff9d9d; }
.form-hint { font-size: .78rem; color: rgba(255, 255, 255, .45); margin-top: .9rem; }
.form-hint a { color: rgba(255, 255, 255, .65); }
.hidden { display: none !important; }

/* ---- 14 Footer ---- */
footer { background: var(--ink); color: rgba(255, 255, 255, .55); border-top: 1px solid rgba(255, 255, 255, .08); padding: 3rem 0 2.6rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; }
.footer-logo { display: flex; flex-direction: column; gap: 3px; line-height: 1; text-decoration: none; }
.footer-logo .logo-mark { color: #fff; }
.footer-logo .logo-sub { color: rgba(255, 255, 255, .5); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; list-style: none; }
.footer-nav a { text-decoration: none; font-size: .86rem; color: rgba(255, 255, 255, .55); transition: color .25s; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: .8rem; width: 100%; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .08); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---- 15 Terminbuchung ---- */
.page-hero { padding: calc(var(--nav-h) + clamp(3.5rem, 7vw, 5.5rem)) 24px clamp(2.5rem, 5vw, 4rem); text-align: center; position: relative; overflow: clip; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 1rem; }
.page-hero .lead { margin: 0 auto; }
.page-hero .kicker { justify-content: center; }

.booking-wrap { max-width: 1020px; margin: 0 auto 0; padding: 0 24px clamp(5rem, 9vw, 7rem); }
.booking-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 40px 90px -50px rgba(11, 11, 18, .35);
  display: grid; grid-template-columns: 1.05fr 1fr; overflow: hidden;
}
.booking-left { padding: clamp(1.6rem, 3.5vw, 2.6rem); border-right: 1px solid var(--line); }
.booking-right { padding: clamp(1.6rem, 3.5vw, 2.6rem); display: flex; flex-direction: column; min-height: 480px; }

.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.cal-title { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
.cal-nav { display: flex; gap: .5rem; }
.cal-nav button {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line); background: none;
  cursor: pointer; display: grid; place-items: center; color: var(--muted);
  transition: border-color .25s, color .25s, background .25s;
}
.cal-nav button:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.cal-nav button:disabled { opacity: .35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-lbl { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); text-align: center; padding: .5rem 0; }
.cal-day {
  aspect-ratio: 1; border: none; background: none; border-radius: 50%;
  display: grid; place-items: center; font-family: inherit; font-size: .92rem; color: var(--ink);
  position: relative; cursor: default;
}
.cal-day.free { cursor: pointer; transition: background .2s, color .2s, box-shadow .2s; }
.cal-day.free:hover { box-shadow: inset 0 0 0 1.5px var(--blue); color: var(--blue); }
.cal-day.off { color: #c3c3ca; }
.cal-day.today::after { content: ''; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--blue-bright); }
.cal-day.sel { background: var(--blue); color: #fff; font-weight: 600; }
.cal-day.sel.today::after { background: #fff; }
.cal-note { margin-top: 1.3rem; font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.cal-note svg { flex-shrink: 0; color: var(--blue-bright); }

.slots-empty { flex: 1; display: grid; place-items: center; color: var(--muted); font-size: .92rem; text-align: center; padding: 2rem; }
.slots-date { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 1rem; }
.slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-bottom: 1.4rem; }
.slot {
  padding: .72rem .5rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper);
  font-family: inherit; font-size: .92rem; font-weight: 500; color: var(--ink); cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.slot:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.slot.sel { background: var(--blue); border-color: var(--blue); color: #fff; }
.slot:disabled { background: var(--gray); color: #b9b9c0; cursor: not-allowed; text-decoration: line-through; }
.slot-loading { color: var(--muted); font-size: .9rem; padding: 2rem 0; text-align: center; }

.booking-summary {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue)); color: #fff;
  border-radius: var(--radius-s); padding: 1rem 1.2rem; margin-bottom: 1.2rem;
  font-size: .95rem; font-weight: 600; display: flex; align-items: center; gap: .7rem;
}
.booking-summary svg { flex-shrink: 0; opacity: .8; }
.booking-form .form-group label { color: var(--muted); }
.booking-form .form-group input, .booking-form .form-group select, .booking-form .form-group textarea {
  background: var(--paper); border-color: var(--line); color: var(--ink);
}
.booking-form .form-group input::placeholder, .booking-form .form-group textarea::placeholder { color: #b3b3ba; }
.booking-form .form-group input:focus, .booking-form .form-group select:focus, .booking-form .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(24, 0, 173, .12); background: var(--paper);
}
.booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2360606a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; cursor: pointer;
}
.booking-form .form-msg.err { background: rgba(220, 40, 40, .07); border-color: rgba(220, 40, 40, .25); color: #c22525; }

.booking-success { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.5rem; }
.booking-success.show { display: flex; }
.booking-success-icon {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; margin-bottom: 1.4rem;
  box-shadow: 0 18px 44px -14px var(--blue-glow);
}
.booking-success h2 { font-size: 1.35rem; letter-spacing: -.02em; margin-bottom: .6rem; }
.booking-success p { color: var(--muted); font-size: .95rem; max-width: 320px; }

.booking-meta { max-width: 1020px; margin: 0 auto; padding: 0 24px 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.booking-meta .card { text-align: center; padding: 1.6rem 1.2rem; }
.booking-meta .card-icon { margin-inline: auto; }
.booking-meta h2 { font-size: 1rem; letter-spacing: -.02em; line-height: 1.25; margin-bottom: .6rem; }
.booking-meta p { font-size: .86rem; }

/* ---- 16 Rechtsseiten & Utility-Seiten ---- */
.legal { max-width: 780px; margin: 0 auto; padding: calc(var(--nav-h) + 4.5rem) 24px 6rem; }
.legal h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; margin-bottom: .8rem; }
.legal .legal-updated { color: var(--muted); font-size: .88rem; margin-bottom: 3rem; }
.legal h2 { font-size: 1.35rem; margin: 2.6rem 0 .8rem; }
.legal h3 { font-size: 1.05rem; margin: 1.8rem 0 .5rem; }
.legal p, .legal li { color: var(--muted); font-size: .97rem; margin-bottom: .8rem; }
.legal ul { padding-left: 1.3rem; }
.legal a { color: var(--blue); }
.legal strong { color: var(--ink); }

.util-hero { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: calc(var(--nav-h) + 3rem) 24px 4rem; position: relative; overflow: clip; }
.util-hero .kicker { justify-content: center; }
.util-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; margin-bottom: 1.1rem; }
.util-hero p { color: var(--muted); max-width: 460px; margin: 0 auto 2.4rem; }
.util-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- 17 Responsive ---- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .process { grid-template-columns: 1fr; }
  .process-rail { position: static; }
  .concept, .concept:nth-child(even) { grid-template-columns: 1fr; gap: 2rem; }
  .concept:nth-child(even) .concept-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card { max-width: 480px; aspect-ratio: 16/11; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .booking-card { grid-template-columns: 1fr; }
  .booking-left { border-right: none; border-bottom: 1px solid var(--line); }
  .booking-right { min-height: 380px; }
  .booking-meta { grid-template-columns: 1fr; max-width: 460px; }
}
@media (min-width: 821px) {
  .menu { display: none; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { gap: .75rem; }
  /* Wichtigster Conversion-Pfad bleibt auch mobil sichtbar — nur kompakter */
  .nav-cta { padding: .5rem 1rem; font-size: .8rem; margin-left: auto; }
  .stats { grid-template-columns: 1fr; gap: 2.4rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .faq-a p { padding-right: 0; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  /* Kalender-Touchziele auf >= 42px bringen */
  .booking-wrap { padding-left: 12px; padding-right: 12px; }
  .booking-left, .booking-right { padding: 1.1rem; }
  .cal-grid { gap: 3px; }
}

/* ---- 18 Motion: Reveals, Parallax & Reduced Motion ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: translateY(40px) scale(.96); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.reveal-scale.in { opacity: 1; transform: translateY(0) scale(1); }
[data-px] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-scale, .hero-up { opacity: 1 !important; transform: none !important; }
  .statement .w { opacity: 1 !important; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  .marquee-track span + span { display: none; }
  .step { opacity: 1; transform: none; }
  .curtain { display: none !important; }
  .hero-chips { display: none !important; }
}

/* ============================================================
   19 Effekte: Cursor, Curtain, Chips, Tilt, Glow, Grain
   ============================================================ */

/* Intro-Curtain (nur Startseite, einmal pro Seitenaufruf) */
.curtain {
  position: fixed; inset: 0; z-index: 10000; background: var(--ink);
  display: grid; place-items: center; pointer-events: none;
  animation: curtain-out .7s cubic-bezier(.7, 0, .18, 1) 1.05s forwards;
}
.curtain-brand { text-align: center; opacity: 0; transform: translateY(16px); animation: curtain-logo .55s var(--ease) .12s forwards; }
.curtain-brand .logo-mark { color: #fff; font-size: 2.4rem; }
.curtain-brand .logo-sub { color: rgba(255, 255, 255, .55); display: block; margin-top: 6px; }
@keyframes curtain-out { to { transform: translateY(-101%); visibility: hidden; } }
@keyframes curtain-logo { to { opacity: 1; transform: none; } }

/* Scroll-Fortschrittsbalken in der Navigation */
.scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; overflow: hidden; pointer-events: none; }
.scroll-progress i { display: block; height: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); }

/* Custom Cursor (nur Desktop-Zeiger) */
html.has-cursor body { cursor: none; }
html.has-cursor a, html.has-cursor button, html.has-cursor [role="button"] { cursor: none; }
html.has-cursor input, html.has-cursor textarea, html.has-cursor select { cursor: auto; }
.cursor-dot {
  position: fixed; top: -4px; left: -4px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-bright); pointer-events: none; z-index: 10001; transition: opacity .3s;
}
.cursor-ring {
  position: fixed; top: -19px; left: -19px; width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(69, 48, 255, .5); pointer-events: none; z-index: 10001;
  transition: width .25s var(--ease), height .25s var(--ease), top .25s var(--ease), left .25s var(--ease), background .25s, border-color .25s, opacity .3s;
}
.cursor-ring.hovering {
  width: 58px; height: 58px; top: -29px; left: -29px;
  background: rgba(69, 48, 255, .08); border-color: rgba(69, 48, 255, .85);
}

/* Maus-Spotlight im Hero */
@media (pointer: fine) {
  .hero::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 42%), rgba(69, 48, 255, .09), transparent 65%);
  }
}

/* Schwebende Glas-Chips im Hero */
.hero-chips { position: absolute; inset: 0; pointer-events: none; }
.chip-card { position: absolute; will-change: transform; }
.chip-card:nth-child(1) { left: 7%; top: 32%; }
.chip-card:nth-child(2) { right: 6%; top: 27%; }
.chip-card:nth-child(3) { right: 12%; bottom: 24%; }
.chip-inner {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .72); border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: 0 18px 45px -18px rgba(11, 11, 18, .28);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 14px; padding: .7rem 1.05rem;
  font-size: .85rem; font-weight: 600; color: var(--ink); white-space: nowrap;
  animation: chip-float 6s ease-in-out infinite alternate;
  animation-delay: calc(var(--cd, 0) * -1.7s);
}
.chip-inner i { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); flex-shrink: 0; }
@keyframes chip-float { from { transform: translateY(-7px); } to { transform: translateY(9px); } }
@media (max-width: 1080px) { .hero-chips { display: none; } }

/* Hero-Headline: Wörter steigen aus Masken auf (Spans erzeugt main.js) */
.hw-mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .1em; margin-bottom: -.1em; }
.hw { display: inline-block; transform: translateY(115%); animation: hw-up .85s var(--ease) forwards; animation-delay: calc(var(--hero-base, .1s) + var(--i, 0) * 55ms); }
@keyframes hw-up { to { transform: translateY(0); } }

/* Riesiges Outline-Laufband (scrollgetrieben, JS verschiebt [data-shift]) */
.giant-word { overflow: clip; padding: clamp(2.5rem, 6vw, 4.5rem) 0 0; }
.giant-word span {
  display: inline-block; white-space: nowrap; will-change: transform;
  font-size: clamp(4.5rem, 11vw, 10rem); font-weight: 800; letter-spacing: -.02em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(24, 0, 173, .22);
}

/* Rotierender Glow um das hervorgehobene Preispaket */
@property --spin {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.price-card.featured::before {
  content: ''; position: absolute; inset: -2px; border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(from var(--spin), transparent 0deg, rgba(140, 120, 255, .9) 40deg, transparent 110deg);
  z-index: -1; filter: blur(14px); opacity: .6;
  animation: spin-glow 5.5s linear infinite;
}
@keyframes spin-glow { to { --spin: 360deg; } }

/* Lichtstreifen über Browser-Mockups beim Hover */
.browser { position: relative; }
.browser::after {
  content: ''; position: absolute; top: 40px; left: 0; right: 0; bottom: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .17) 50%, transparent 58%);
  transform: translateX(-130%);
}
.concept-visual:hover .browser::after { transition: transform .9s ease; transform: translateX(130%); }

/* Cursor-Glow auf der Formular-Karte */
@media (pointer: fine) {
  .form-card { position: relative; overflow: hidden; }
  .form-card::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s;
    background: radial-gradient(320px circle at var(--gx, 50%) var(--gy, 50%), rgba(69, 48, 255, .16), transparent 70%);
  }
  .form-card:hover::before { opacity: 1; }
}

/* Sanfter Schimmer im Stats-Band */
.stats-band { background-size: 180% 180%; animation: band-pan 9s ease-in-out infinite alternate; }
@keyframes band-pan { from { background-position: 0% 40%; } to { background-position: 100% 60%; } }

/* Feines Film-Korn über der ganzen Seite (etwas dezenter für den Corporate-Look) */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9990; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ============================================================
   20 Sprachumschalter (DE / EN) & Corporate-Feinschliff
   ============================================================ */

/* Segmentierter Umschalter in der Navigation */
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px; flex-shrink: 0;
  background: var(--gray); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px;
}
.lang-switch button {
  border: none; background: none; cursor: pointer; font-family: inherit;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; color: var(--muted);
  padding: .3rem .55rem; border-radius: 999px; line-height: 1;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 12px -6px var(--blue-glow);
}
.lang-switch button:focus-visible { outline-offset: 1px; }

/* Corporate-Akzent: Kicker-Balken als Blau→Flieder-Verlauf */
.kicker::before { background: linear-gradient(90deg, var(--blue-bright), var(--lilac)); }
.dark .kicker::before { background: linear-gradient(90deg, #8f80ff, var(--lilac)); }

/* Flieder-Häkchen im hervorgehobenen Preispaket an die Marken-Variable binden */
.featured .price-feats svg { color: var(--lilac); }

/* Café-Mockup: Beschreibungszeile darf nicht die Preis-Formatierung erben */
.demo-cafe-menu .d-sub { color: inherit; font-weight: 400; }

/* Hinweis auf Rechtsseiten (nur im Englisch-Modus mit Inhalt sichtbar) */
.legal-lang-note {
  margin: 0 0 2.4rem; padding: .95rem 1.15rem;
  border: 1px solid var(--line); border-left: 3px solid var(--blue-bright);
  border-radius: var(--radius-s); background: var(--gray);
  color: var(--muted); font-size: .9rem;
}
.legal-lang-note:empty { display: none; }

/* Sprachumschalter im mobilen Vollbildmenü (größere Touch-Ziele) */
.menu-lang { margin-top: 2.2rem; }
.menu .lang-switch { padding: 4px; }
.menu .lang-switch button { padding: .5rem 1.1rem; font-size: .95rem; }

/* Auf schmalen Screens: Umschalter aus der Nav-Zeile nehmen (er sitzt dort im
   mobilen Menü), damit CTA und Menü-Button garantiert Platz haben. */
@media (max-width: 820px) {
  .nav-inner { gap: .6rem; }
  .nav .lang-switch { display: none; }
}
/* Auf Utility-Seiten (Danke/404) gibt es kein Menü — dort bleibt der
   kompakte Umschalter in der Nav-Zeile sichtbar. */
@media (max-width: 820px) {
  .nav-util .lang-switch { display: inline-flex; }
  .nav-util .lang-switch button { padding: .28rem .5rem; font-size: .72rem; }
}

/* Reduzierte Bewegung: nach Sprachwechsel keine Wort-Animation erzwingen */
@media (prefers-reduced-motion: reduce) {
  .hw { transform: none !important; }
}

/* ============================================================
   21 Dark Mode  (global — greift jetzt auf allen Seiten)
   Ausgelagert aus der Startseite, damit jede Seite denselben
   Dunkelmodus nutzt und der Umschalter überall funktioniert.
   ============================================================ */

/* Umschalt-Button in der Navigation */
.nav-theme {
  background: none; border: none; cursor: pointer; color: inherit;
  display: flex; align-items: center; padding: 6px; border-radius: 10px;
  line-height: 1; flex-shrink: 0; transition: background .25s, color .25s;
}
.nav-theme:hover { color: var(--blue); }
.nav-theme .icon-sun  { display: none;  }
.nav-theme .icon-moon { display: block; }
html.dark .nav-theme:hover { color: var(--lilac); }
html.dark .nav-theme .icon-sun  { display: block; }
html.dark .nav-theme .icon-moon { display: none;  }

/* Hintergründe */
html.dark body               { background-color: #0e0e12; color: #c8c8d4; }
html.dark .nav               { background-color: rgba(14,14,18,.72); border-color: #222228; }
html.dark .nav.scrolled      { background-color: rgba(14,14,18,.9); border-bottom-color: #222228; }
html.dark .section           { background-color: #0e0e12; }
html.dark .section.alt       { background-color: #141418; }
html.dark .statement         { background-color: #0e0e12; }
html.dark .marquee           { background-color: #06060a; border-color: #222228; }
html.dark .marquee-track span{ color: #7c7c92; }
html.dark .menu              { background-color: rgba(12,12,16,.98); }
html.dark footer             { background-color: #141418; border-color: #222228; }
html.dark .contact-section   { background-color: #0a0a0e !important; }
html.dark .cta-final         { background-color: #0e0e12; }

/* Schrift allgemein */
html.dark h1, html.dark h2, html.dark h3, html.dark h4 { color: #ededf4; }
html.dark p                  { color: #9898aa; }
html.dark .lead              { color: #9898aa; }
html.dark .hero-sub          { color: #9898aa; }
html.dark .hero-note         { color: #666678; }
html.dark .kicker            { color: #8f80ff; }

/* Nav & Footer */
html.dark .nav-links a       { color: #c8c8d4; }
html.dark .logo-mark         { color: #ededf4; }
html.dark .logo-sub          { color: #55556a; }
html.dark .footer-nav a      { color: #9898aa; }
html.dark .footer-copy       { color: #55556a; }
html.dark .nav-burger span   { background-color: #ededf4; }

/* ── DER FIX: Vollbild-Menü (Seitenauswahl) im Dark Mode lesbar ──
   Zuvor blieb die Schrift schwarz auf dunklem Grund. */
html.dark .menu a            { color: #ededf4; }
html.dark .menu a:hover      { color: var(--lilac); }
html.dark .menu a.menu-cta   { color: #8f80ff; }
html.dark .menu-sub a        { color: #9898aa; }
html.dark .menu-sub a:hover  { color: var(--lilac); }
html.dark .menu-foot         { color: #666678; }
html.dark .menu-foot a       { color: #9898aa; }
html.dark .menu-foot a:hover { color: var(--lilac); }

/* Karten */
html.dark .card              { background-color: #1a1a1f; border-color: #252530; }
html.dark .card h3           { color: #ededf4; }
html.dark .card p            { color: #9898aa; }
html.dark .card-icon         { background-color: rgba(120,105,255,.12); color: #a89bff; }
html.dark .price-card        { background-color: #1a1a1f; border-color: #252530; }
html.dark .price-name        { color: #ededf4; }
html.dark .price-for         { color: #9898aa; }
html.dark .price-val         { color: #ededf4; }
html.dark .price-ab          { color: #9898aa; }
html.dark .price-feats li    { color: #c8c8d4; }
html.dark .pricing-note      { color: #9898aa; }
html.dark .t-card            { background-color: #1a1a1f; border-color: #252530; }
html.dark .t-quote           { color: #c8c8d4; }
html.dark .t-name            { color: #ededf4; }
html.dark .t-role            { color: #666678; }
html.dark .t-author          { border-color: #252530; }

/* Featured-Preiskarte bleibt farbig — nur Kontrast leicht anheben */
html.dark .price-card.featured { border: none; }

/* Ablauf-Steps */
html.dark .step              { background-color: #1a1a1f; border-color: #252530; }
html.dark .step h3           { color: #ededf4; }
html.dark .step p            { color: #9898aa; }
html.dark .step-num          { color: #8f80ff; }
html.dark .step-meta span    { background-color: #222228; color: #9898aa; }
html.dark .process-progress  { background-color: #222228; }

/* FAQ */
html.dark .faq-list          { border-color: #222228; }
html.dark .faq-item          { border-color: #222228; }
html.dark .faq-q             { color: #ededf4; background: transparent; }
html.dark .faq-icon          { border-color: #2c2c38; }
html.dark .faq-a p           { color: #9898aa; }

/* Browser-Mockups */
html.dark .browser           { background-color: #1a1a1f; border-color: #252530; }
html.dark .browser-bar       { background-color: #222228; border-color: #252530; }

/* Chips & Tags */
html.dark .chip              { background-color: #222228; color: #b6adff; border-color: #2c2c38; }
html.dark .concept-tags span { background-color: #222228; color: #9898aa; border-color: #252530; }
html.dark .about-facts span  { background-color: #1a1a1f; color: #c8c8d4; border-color: #252530; }
html.dark .concept-info p    { color: #9898aa; }

/* Über mich */
html.dark .about-text p         { color: #9898aa; }
html.dark .about-text p strong  { color: #ededf4; }

/* Kontakt */
html.dark .form-card         { background-color: #16161b; border-color: #252530; }
html.dark label              { color: #9898aa; }
html.dark input,
html.dark textarea,
html.dark select             { background-color: #222228; border-color: #2e2e3a; color: #ededf4; }
html.dark input::placeholder,
html.dark textarea::placeholder { color: #55556a; }
html.dark .form-hint         { color: #666678; }
html.dark .form-hint a       { color: #9898aa; }
html.dark .contact-row       { border-color: #222228; }
html.dark .contact-row-label { color: #666678; }
html.dark .contact-row-val   { color: #ededf4; }
html.dark .termin-teaser     { background-color: #1a1a1f; border-color: #252530; }
html.dark .termin-teaser h3  { color: #ededf4; }
html.dark .termin-teaser p   { color: #9898aa; }

/* Buchungsseite im Dark Mode */
html.dark .booking-card      { background-color: #1a1a1f; border-color: #252530; }
html.dark .booking-left      { border-color: #252530; }
html.dark .cal-title         { color: #ededf4; }
html.dark .cal-day           { color: #c8c8d4; }
html.dark .cal-day.off       { color: #45454f; }
html.dark .cal-nav button    { border-color: #2c2c38; color: #9898aa; }
html.dark .slot              { background-color: #222228; border-color: #2e2e3a; color: #ededf4; }
html.dark .slot:disabled     { background-color: #16161b; color: #45454f; }
html.dark .booking-form .form-group label { color: #9898aa; }
html.dark .booking-form input,
html.dark .booking-form select,
html.dark .booking-form textarea { background-color: #222228; border-color: #2e2e3a; color: #ededf4; }
html.dark .booking-success p { color: #9898aa; }

/* Rechts-/Utility-Seiten */
html.dark .legal p, html.dark .legal li { color: #9898aa; }
html.dark .legal strong      { color: #ededf4; }
html.dark .legal a           { color: #a89bff; }
html.dark .legal-lang-note   { background-color: #1a1a1f; border-color: #252530; border-left-color: var(--blue-bright); color: #9898aa; }
html.dark .util-hero p       { color: #9898aa; }

/* Giant Word & Linien */
html.dark .giant-word span   { -webkit-text-stroke-color: #2a2a3a; }
html.dark hr                 { border-color: #222228; }
html.dark .scroll-progress   { background-color: #222228; }

/* Sprachumschalter */
html.dark .lang-switch        { background: #1a1a1f; border-color: #252530; }
html.dark .lang-switch button { color: #9898aa; }
html.dark .lang-switch button:hover { color: #ededf4; }
html.dark .lang-switch button.active { background: #2a2740; color: #cabfff; }

/* Hero-Raster & Scroll-Cue dezenter im Dunkeln */
html.dark .hero-grid {
  background:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
html.dark .scroll-cue { border-color: rgba(255,255,255,.2); }
html.dark .chip-inner {
  background: rgba(26,26,33,.82); border-color: rgba(255,255,255,.1); color: #ededf4;
}
html.dark body::after { opacity: .05; }

/* ============================================================
   22 Navigation: Leistungen-Dropdown (Desktop)
   ============================================================ */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a { display: inline-flex; align-items: center; gap: .34rem; }
.nav-caret { width: 9px; height: 9px; opacity: .7; transition: transform .28s var(--ease); }
.has-sub:hover .nav-caret,
.has-sub:focus-within .nav-caret { transform: rotate(180deg); }

.nav-sub {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translate(-50%, 8px);
  min-width: 300px; padding: .5rem;
  background: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 26px 64px -28px rgba(11,11,18,.4);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  z-index: 120;
}
/* unsichtbare Brücke, damit die Maus die Lücke überqueren kann */
.nav-sub::before { content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.has-sub:hover .nav-sub,
.has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav-sub a {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .72rem .8rem; border-radius: 12px; text-decoration: none;
  color: var(--ink); opacity: 1; transition: background .2s;
}
.nav-sub a:hover { background: var(--gray); }
.nav-sub .ns-ico {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(24,0,173,.08); color: var(--blue);
}
.nav-sub b { display: block; font-size: .92rem; font-weight: 600; letter-spacing: -.01em; line-height: 1.3; }
.nav-sub small { display: block; font-size: .76rem; color: var(--muted); font-weight: 400; line-height: 1.4; }
html.dark .nav-sub { background: rgba(20,20,26,.94); border-color: #2a2a34; }
html.dark .nav-sub a { color: #ededf4; }
html.dark .nav-sub a:hover { background: #24242c; }
html.dark .nav-sub small { color: #9898aa; }
html.dark .nav-sub .ns-ico { background: rgba(120,105,255,.14); color: #a89bff; }

/* Untermenü im mobilen Vollbildmenü */
.menu-sub {
  list-style: none; margin: .2rem 0 .3rem; padding: 0 0 0 .1rem;
  display: flex; flex-direction: column; gap: .1rem;
}
.menu-sub a {
  font-size: clamp(1.05rem, 4.5vw, 1.35rem); font-weight: 500;
  color: var(--muted); letter-spacing: -.01em;
  transform: none; opacity: 1;
  display: inline-flex; align-items: center; gap: .6rem;
}
.menu-sub a::before {
  content: ''; width: 16px; height: 1.5px; border-radius: 2px;
  background: var(--blue-bright); flex-shrink: 0; opacity: .8;
}
.menu-sub a:hover { color: var(--blue); }

/* ============================================================
   23 Drei Disziplinen (Pillars) — Kernstück der Startseite
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.pillar {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.3rem 2rem 2.1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(24,0,173,.22); box-shadow: 0 32px 66px -34px rgba(11,11,18,.26); }
.pillar::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--lilac));
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .5s var(--ease);
}
.pillar:hover::after { transform: scaleX(1); }
.pillar-idx {
  position: absolute; top: 1.5rem; right: 1.7rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; color: var(--lilac);
}
.pillar-ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(24,0,173,.07); color: var(--blue); margin-bottom: 1.4rem;
  transition: transform .35s var(--ease);
}
.pillar:hover .pillar-ico { transform: translateY(-4px) rotate(-5deg); }
.pillar h3 { font-size: 1.32rem; margin-bottom: .6rem; letter-spacing: -.025em; }
.pillar-lead { color: var(--muted); font-size: .95rem; line-height: 1.6; margin-bottom: 1.4rem; }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.8rem; }
.pillar-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; line-height: 1.5; color: var(--ink); }
.pillar-list svg { flex-shrink: 0; margin-top: .18rem; color: var(--blue-bright); }
.pillar-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: .5rem;
  font-size: .92rem; font-weight: 600; color: var(--blue); text-decoration: none;
}
.pillar-link .btn-arrow { transition: transform .3s var(--ease); }
.pillar:hover .pillar-link .btn-arrow { transform: translateX(4px); }
html.dark .pillar { background: #1a1a1f; border-color: #252530; }
html.dark .pillar h3 { color: #ededf4; }
html.dark .pillar-lead { color: #9898aa; }
html.dark .pillar-list li { color: #c8c8d4; }
html.dark .pillar-ico { background: rgba(120,105,255,.12); color: #a89bff; }
html.dark .pillar-link { color: #a89bff; }
@media (max-width: 940px) { .pillars { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ============================================================
   24 Service-Unterseiten (Social & Logo): geteilter Hero
   ============================================================ */
.svc-hero { position: relative; overflow: clip; padding: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem)) 0 clamp(3rem, 6vw, 5rem); }
.svc-hero .container { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.svc-hero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.05; margin: .3rem 0 1.3rem; }
.svc-hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); margin-bottom: 2rem; }
.svc-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.svc-hero-note { margin-top: 1.3rem; font-size: .85rem; color: var(--muted); }
@media (max-width: 900px) {
  .svc-hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-hero-visual { order: 2; }
}

/* Abschnitts-Zwischenüberschrift für Reuse */
.svc-split { display: grid; grid-template-columns: minmax(300px, 400px) 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
@media (max-width: 900px) { .svc-split { grid-template-columns: 1fr; gap: 2rem; } }

/* Scope-/Klartext-Callout ("nur Strategie", "was du bekommst") */
.callout {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start;
  border: 1px solid var(--line); border-left: 3px solid var(--blue-bright);
  border-radius: var(--radius); background: var(--gray);
  padding: 1.6rem 1.8rem;
}
.callout-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(24,0,173,.08); color: var(--blue); }
.callout h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.callout p { color: var(--muted); font-size: .95rem; margin: 0; }
.callout p + p { margin-top: .6rem; }
html.dark .callout { background: #16161b; border-color: #252530; border-left-color: var(--blue-bright); }
html.dark .callout p { color: #9898aa; }
html.dark .callout-ico { background: rgba(120,105,255,.14); color: #a89bff; }

/* Zweispaltige Vorteils-/Umfangsliste */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 2rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; line-height: 1.5; list-style: none; }
.checklist svg { flex-shrink: 0; margin-top: .22rem; color: var(--blue-bright); }
html.dark .checklist li { color: #c8c8d4; }
@media (max-width: 680px) { .checklist { grid-template-columns: 1fr; } }

/* ============================================================
   25 Visual: Social-Media-Board (maßgeschneidert, kein Stock)
   ============================================================ */
.sm-board {
  position: relative; width: 100%; max-width: 420px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 48px 96px -48px rgba(11,11,18,.42);
  padding: 1.5rem 1.5rem 1.6rem;
}
.sm-board-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.sm-ava {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--blue-deep), var(--blue-bright));
  color: #fff; font-weight: 800; font-size: 17px; letter-spacing: -.04em;
}
.sm-ava i { font-style: normal; color: var(--lilac); }
.sm-hname { font-size: .92rem; font-weight: 700; letter-spacing: -.01em; }
.sm-hsub { font-size: .76rem; color: var(--muted); }
.sm-hfollow { margin-left: auto; font-size: .72rem; font-weight: 700; color: #fff; background: var(--blue); padding: .34rem .8rem; border-radius: 999px; }
.feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.feed span { aspect-ratio: 1; border-radius: 9px; position: relative; overflow: hidden; }
.feed span:nth-child(1) { background: linear-gradient(150deg, var(--blue-deep), var(--blue)); }
.feed span:nth-child(2) { background: var(--gray); }
.feed span:nth-child(3) { background: linear-gradient(150deg, var(--blue-bright), var(--lilac)); }
.feed span:nth-child(4) { background: linear-gradient(150deg, #efeaff, #d9cfff); }
.feed span:nth-child(5) { background: linear-gradient(150deg, var(--blue), var(--blue-bright)); }
.feed span:nth-child(6) { background: var(--gray); }
.feed span:nth-child(7) { background: linear-gradient(150deg, var(--lilac), #d9cfff); }
.feed span:nth-child(8) { background: linear-gradient(150deg, var(--blue-deep), #2d18d6); }
.feed span:nth-child(9) { background: linear-gradient(150deg, #efeaff, #cdbfff); }
/* Markenzeichen als wiederkehrendes Element im Raster */
.feed span.brand::after {
  content: 'd.'; position: absolute; inset: 0; display: grid; place-items: center;
  font-weight: 800; font-size: 1.4rem; letter-spacing: -.05em; color: rgba(255,255,255,.9);
}
.feed span:nth-child(2).brand::after,
.feed span:nth-child(6).brand::after { color: var(--blue); }
.sm-pillars { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1.1rem 0 1rem; }
.sm-pillars span {
  font-size: .72rem; font-weight: 600; letter-spacing: .02em;
  color: var(--blue); background: rgba(24,0,173,.07); border: 1px solid rgba(24,0,173,.14);
  padding: .34rem .7rem; border-radius: 999px;
}
.sm-cal { border-top: 1px solid var(--line); padding-top: 1rem; }
.sm-cal-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.sm-cal-h b { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-bright); }
.sm-cal-h span { font-size: .72rem; color: var(--muted); }
.sm-week { display: flex; gap: 5px; }
.sm-week i {
  flex: 1; height: 30px; border-radius: 7px; background: var(--gray);
  position: relative; display: grid; place-items: end center;
}
.sm-week i::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #cdcddb; margin-bottom: 5px; }
.sm-week i.on { background: linear-gradient(165deg, var(--blue), var(--blue-bright)); }
.sm-week i.on::before { background: #fff; }
html.dark .sm-board { background: #1a1a1f; border-color: #252530; }
html.dark .sm-hname { color: #ededf4; }
html.dark .sm-hsub, html.dark .sm-cal-h span { color: #9898aa; }
html.dark .feed span:nth-child(2), html.dark .feed span:nth-child(6),
html.dark .sm-week i { background: #222228; }
html.dark .sm-week i::before { background: #3a3a48; }
html.dark .sm-pillars span { background: rgba(120,105,255,.12); color: #b6adff; border-color: #2c2c38; }
html.dark .sm-cal { border-color: #252530; }
html.dark .feed span:nth-child(2).brand::after,
html.dark .feed span:nth-child(6).brand::after { color: #a89bff; }

/* ============================================================
   26 Visual: Logo-Labor (Konstruktion, Varianten, System)
   ============================================================ */
.logo-lab {
  width: 100%; max-width: 460px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 48px 96px -48px rgba(11,11,18,.42);
  padding: 1.5rem;
}
.logo-stage {
  position: relative; aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden;
  background: var(--gray); display: grid; place-items: center;
}
/* Konstruktions-Raster + Hilfslinien */
.logo-stage::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(24,0,173,.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(24,0,173,.09) 1px, transparent 1px);
  background-size: 30px 30px;
}
.logo-guide {
  position: absolute; width: 128px; height: 128px; border-radius: 50%;
  border: 1.5px dashed rgba(24,0,173,.32);
}
.logo-guide::after {
  content: ''; position: absolute; left: 50%; top: -22px; bottom: -22px; width: 1.5px;
  background: rgba(24,0,173,.28); transform: translateX(-50%);
}
.logo-mono {
  position: relative; font-size: clamp(3.4rem, 9vw, 5rem); font-weight: 800;
  letter-spacing: -.06em; color: var(--ink); line-height: 1;
}
.logo-mono i { font-style: normal; color: var(--blue-bright); }
.logo-tag { position: absolute; top: 12px; left: 14px; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); opacity: .55; }
.logo-row { display: flex; gap: .6rem; margin-top: 1.1rem; }
.logo-chip {
  flex: 1; border: 1px solid var(--line); border-radius: 12px; padding: .8rem;
  display: grid; place-items: center; min-height: 58px; background: var(--paper);
  font-weight: 800; letter-spacing: -.03em; color: var(--ink);
}
.logo-chip small { display: block; font-weight: 600; font-size: .5rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); text-align: center; margin-top: 3px; }
.logo-chip.invert { background: var(--ink); color: #fff; border-color: var(--ink); }
.logo-chip.invert i, .logo-chip i { font-style: normal; color: var(--blue-bright); }
.logo-chip.invert i { color: var(--lilac); }
.logo-sys { display: flex; align-items: center; gap: .8rem; margin-top: .8rem; }
.logo-swatches { display: flex; gap: 6px; }
.logo-swatches span { width: 26px; height: 26px; border-radius: 8px; border: 1px solid rgba(11,11,18,.08); }
.sw-1 { background: var(--blue-deep); } .sw-2 { background: var(--blue); }
.sw-3 { background: var(--blue-bright); } .sw-4 { background: var(--lilac); }
.sw-5 { background: var(--ink); }
.logo-type { margin-left: auto; text-align: right; }
.logo-type b { font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.logo-type small { display: block; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
html.dark .logo-lab { background: #1a1a1f; border-color: #252530; }
html.dark .logo-stage { background: #141418; }
html.dark .logo-stage::before {
  background:
    linear-gradient(to right, rgba(140,125,255,.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140,125,255,.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
html.dark .logo-guide { border-color: rgba(140,125,255,.4); }
html.dark .logo-guide::after { background: rgba(140,125,255,.35); }
html.dark .logo-mono { color: #ededf4; }
html.dark .logo-chip { background: #222228; border-color: #2c2c38; color: #ededf4; }
html.dark .logo-chip small { color: #9898aa; }
html.dark .logo-chip.invert { background: #ededf4; color: #0e0e12; border-color: #ededf4; }
html.dark .logo-chip.invert i { color: var(--blue); }
html.dark .logo-type b { color: #ededf4; }
html.dark .logo-swatches span { border-color: rgba(255,255,255,.1); }

/* ============================================================
   27 Footer: kompakte Spalten für den Studio-Auftritt
   ============================================================ */
.footer-nav .footer-svc { color: var(--muted); }
html.dark .footer-nav .footer-svc { color: #9898aa; }

/* Reduzierte Bewegung für neue Elemente */
@media (prefers-reduced-motion: reduce) {
  .pillar::after { transition: none; }
}

/* ============================================================
   28 v2 — Performance, Logo-Lockup, 4er-Preise, Corporate
   ============================================================ */

/* Perf: Vollflächiges Film-Korn entfernt (sparte einen teuren
   Repaint der ganzen Seite ohne echten optischen Mehrwert). */
body::after { display: none !important; }

/* ---- Marken-Lockup: Monogramm + Wortmarke ---- */
.nav-logo, .footer-logo { flex-direction: row; align-items: center; gap: .62rem; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; display: block; }
.footer-logo .brand-mark { width: 32px; height: 32px; }
.brand-word { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
@media (max-width: 400px) { .brand-mark { width: 30px; height: 30px; } }

/* ---- 4-spaltiges Preisraster (Standard/Business/Erweitert/Individuell) ---- */
.pricing.four { grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: stretch; }
.pricing.four .price-card { padding: 2.1rem 1.55rem; }
.pricing.four .price-name { font-size: 1.02rem; }
.pricing.four .price-val { font-size: 2.1rem; }
.pricing.four .price-feats { gap: .55rem; margin-bottom: 1.6rem; }
.pricing.four .price-feats li { font-size: .88rem; }
.price-val.on-request { font-size: 1.35rem; letter-spacing: -.01em; }
@media (max-width: 1080px) { .pricing.four { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; } }
@media (max-width: 600px) { .pricing.four { grid-template-columns: 1fr; max-width: 440px; } }

/* ---- Corporate: Prinzipien (nummerierte Karten) ---- */
.card-num {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(24,0,173,.07); color: var(--blue);
  font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 1.4rem;
}
html.dark .card-num { background: rgba(120,105,255,.13); color: #a89bff; }

/* ---- Corporate: Segmente (drei Zielgruppen) ---- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.seg {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.9rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.seg:hover { transform: translateY(-5px); border-color: rgba(24,0,173,.2); box-shadow: 0 28px 60px -32px rgba(11,11,18,.2); }
.seg-tag { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-bright); }
.seg h3 { font-size: 1.18rem; margin: .7rem 0 .6rem; }
.seg p { color: var(--muted); font-size: .93rem; line-height: 1.6; }
html.dark .seg { background: #1a1a1f; border-color: #252530; }
html.dark .seg h3 { color: #ededf4; }
html.dark .seg p { color: #9898aa; }
html.dark .seg .seg-tag { color: #a89bff; }
@media (max-width: 860px) { .trio { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* ---- Logo-Labor: Bugfixes (Chip-Ausrichtung, Punkt, Kontrast) ---- */
.logo-hero { position: relative; z-index: 1; width: clamp(96px, 26%, 128px); height: auto; border-radius: 22px; filter: drop-shadow(0 22px 40px rgba(24,0,173,.32)); }
/* Chips: Flex-Spalte statt Grid, damit „d." zusammenbleibt und die
   Beschriftung immer sauber darunter sitzt (vorher stapelte das Grid
   die Textknoten und der Punkt rutschte unter das d). */
.logo-chip { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .45rem; }
.logo-chip .lc-mark { display: inline-flex; align-items: baseline; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.logo-chip .lc-mark i { font-style: normal; color: var(--blue-bright); }
.logo-chip small { font-weight: 600; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.logo-chip.invert { background: var(--ink); color: #fff; border-color: var(--ink); }
.logo-chip.invert .lc-mark { color: #fff; }
.logo-chip.invert .lc-mark i { color: var(--lilac); }
.logo-chip.invert small { color: rgba(255,255,255,.72); }
html.dark .logo-chip .lc-mark { color: #ededf4; }
html.dark .logo-chip small { color: #9898aa; }
html.dark .logo-chip.invert { background: #ededf4; border-color: #ededf4; }
html.dark .logo-chip.invert .lc-mark { color: #14141a; }
html.dark .logo-chip.invert .lc-mark i { color: var(--blue); }
html.dark .logo-chip.invert small { color: rgba(20,20,26,.62); }

/* ---- Kontrast-Feinschliff Light + Dark ---- */
.demo-cafe-menu .d-sub { color: #8a7a6a; }
html.dark .price-badge { background: #cabfff; color: #14141a; }
html.dark .pillar-idx { color: #a89bff; }
html.dark .logo-tag { color: #a89bff; }
html.dark .sm-hfollow { background: #4530ff; }
html.dark .about-mark { color: #fff; }
/* Stats-Band bleibt im Dark Mode blau — Text muss weiß bleiben (nicht grau) */
html.dark .stat-n { color: #fff; }
html.dark .stat-l { color: rgba(255,255,255,.85); }

/* ---- Monatspreis-Suffix für Abo-Pakete ---- */
.price-per { font-size: 1rem; font-weight: 500; color: var(--muted); }
.featured .price-per { color: rgba(255,255,255,.72); }
html.dark .price-per { color: #9898aa; }
/* CTA-final-Fläche im Dark Mode leicht abheben */
html.dark .cta-final { background-color: #121218; }

/* ---- Webdesign-Hero-Mock: schlichter Corporate-Auftritt ---- */
.demo-corp { position: absolute; inset: 0; background: #fff; color: #0f1830; display: flex; flex-direction: column; }
.demo-corp .dc-nav { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; font-size: 9px; border-bottom: 1px solid #eef0f5; }
.demo-corp .dc-nav b { font-size: 11px; letter-spacing: .22em; }
.demo-corp .dc-nav u { text-decoration: none; color: #6b7590; margin-left: 12px; }
.demo-corp .dc-hero { padding: 26px 22px 18px; }
.demo-corp .dc-hero small { display: block; font-size: 8px; letter-spacing: .28em; text-transform: uppercase; color: #1800ad; margin-bottom: 9px; }
.demo-corp .dc-hero h4 { font-size: clamp(18px, 2.3vw, 26px); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; color: #0f1830; max-width: 280px; }
.demo-corp .dc-hero p { font-size: 9.5px; color: #6b7590; margin-top: 7px; max-width: 240px; line-height: 1.5; }
.demo-corp .dc-cta { display: inline-block; margin-top: 13px; background: #1800ad; color: #fff; font-size: 9px; font-weight: 700; padding: 7px 15px; border-radius: 6px; }
.demo-corp .dc-stats { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #eef0f5; }
.demo-corp .dc-stats div { padding: 13px 16px; border-right: 1px solid #eef0f5; }
.demo-corp .dc-stats div:last-child { border-right: none; }
.demo-corp .dc-stats b { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.03em; color: #1800ad; }
.demo-corp .dc-stats span { font-size: 8px; color: #6b7590; letter-spacing: .05em; }
