/* ========================================
   SOUL MARKETING — Cinematic Dark + Feminine
   Schwarz · Gold · Pink · Mint · Lila
   ======================================== */

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

:root {
  --black:        #050508;
  --deep:         #0a0a12;
  --surface:      #0f0f1a;
  --surface2:     #141420;

  /* Feminine Akzente */
  --pink:         #E8648A;
  --pink-light:   #F2A0BC;
  --pink-soft:    #FAD0DC;
  --rose:         #C84870;
  --lilac:        #B088D0;
  --lilac-light:  #D4AEED;
  --mint:         #6BBFAA;
  --mint-light:   #A8DDD0;
  --mint-glow:    rgba(107,191,170,0.35);

  /* Gold */
  --gold:         #C9A96E;
  --gold-light:   #E8C98A;

  /* Text */
  --white:        #F8F4F2;
  --white-dim:    rgba(248,244,242,0.6);
  --white-faint:  rgba(248,244,242,0.08);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  background: linear-gradient(160deg,
    #0d1f1b 0%,
    #123029 18%,
    #1a3d34 38%,
    #2a2230 58%,
    #3a1f2e 78%,
    #2e1320 100%
  );
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

/* ══════════════════════════════════════
   SHIMMER WORDS
══════════════════════════════════════ */
.shimmer-word {
  display: inline;
  background: linear-gradient(90deg,
    var(--pink) 0%,
    var(--pink-light) 25%,
    #ffffff 50%,
    var(--pink-light) 75%,
    var(--pink) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerPink 3s linear infinite;
  filter: drop-shadow(0 0 8px rgba(232,100,138,0.6));
}
.shimmer-word-mint {
  display: inline;
  background: linear-gradient(90deg,
    var(--mint) 0%,
    var(--mint-light) 25%,
    #e0fff8 50%,
    var(--mint-light) 75%,
    var(--mint) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerMint 3.5s linear infinite;
  filter: drop-shadow(0 0 8px rgba(107,191,170,0.55));
}
@keyframes shimmerPink {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes shimmerMint {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ══════════════════════════════════════
   VIDEO PLACEHOLDER
══════════════════════════════════════ */
.video-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.video-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d0818 0%, #160a24 40%, #0a1018 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem;
  border: 2px dashed rgba(232,100,138,0.25);
  position: relative;
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(232,100,138,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(107,191,170,0.06) 0%, transparent 60%);
}
.video-play-icon {
  width: 72px; height: 72px;
  border: 2px solid rgba(232,100,138,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--pink);
  animation: pulsePlay 2s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes pulsePlay {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,100,138,0.4); }
  50% { box-shadow: 0 0 0 18px rgba(232,100,138,0); }
}
.video-placeholder p {
  font-size: 0.85rem; letter-spacing: 0.12em;
  color: rgba(248,244,242,0.4); position: relative; z-index: 1;
}
.video-placeholder span {
  font-size: 0.65rem; letter-spacing: 0.08em;
  color: rgba(248,244,242,0.2); position: relative; z-index: 1;
}
.video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(5,5,8,0.55) 0%,
    rgba(5,5,8,0.4) 40%,
    rgba(5,5,8,0.7) 100%
  );
  pointer-events: none;
}

/* ══════════════════════════════════════
   BUTTERFLY CANVAS
══════════════════════════════════════ */
.butterfly-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 50;
  width: 100%; height: 100%;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease);
  mix-blend-mode: normal;
}
.cursor-follower {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(232,100,138,0.5);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left 0s, top 0s, width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 64px; height: 64px;
  border-color: var(--pink);
  border-width: 1.5px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, blockquote {
  font-family: var(--serif);
  font-weight: 400; line-height: 1.1;
  color: var(--white);
}
h1 { font-size: clamp(3rem, 7.5vw, 7rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
p  { font-size: clamp(0.9rem, 1.1vw, 1.05rem); color: var(--white-dim); line-height: 1.85; }
em { font-style: italic; color: var(--pink-light); }

.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--lilac) 50%, var(--mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text { color: var(--gold); }

.section-label {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1.2rem;
  display: block;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }

/* ── REVEAL ── */
.reveal, .reveal-line {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.reveal.visible, .reveal-line.visible { opacity: 1; transform: translateY(0); }
.reveal-line:nth-child(2) { transition-delay: 0.12s; }
.reveal-line:nth-child(3) { transition-delay: 0.24s; }
.reveal-line:nth-child(4) { transition-delay: 0.36s; }

/* ── NAV ── */
#nav {
  position: fixed; inset: 0 0 auto;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 5vw;
  transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s;
}
#nav.scrolled {
  background: rgba(5,5,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.1rem 5vw;
  border-bottom: 1px solid var(--white-faint);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.15rem;
  letter-spacing: 0.1em; color: var(--white);
  text-decoration: none; transition: color 0.3s;
}
.nav-logo span { color: var(--pink); }
.nav-logo:hover { color: var(--pink-light); }
.nav-links { display: flex; gap: 2.8rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.08em;
  color: var(--white-dim); text-decoration: none;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: var(--pink);
  padding: 0.7rem 1.8rem; text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  background: var(--pink-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,100,138,0.4);
}
.nav-burger { display: none; background: none; border: none; cursor: none; flex-direction: column; gap: 6px; }
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--white); transition: 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--black);
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 6rem 1rem 3rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; width: 100%; }
.mobile-menu li { margin: 0.4rem 0; }
.mobile-link {
  display: block; padding: 0.7rem 0.5rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  color: var(--white); text-decoration: none; transition: color 0.3s;
}
.mobile-link:hover { color: var(--pink); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: var(--black);
}
/* Cinematic gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(ellipse,
    rgba(232,100,138,0.12) 0%,
    rgba(176,136,208,0.08) 35%,
    rgba(107,191,170,0.06) 60%,
    transparent 75%
  );
  border-radius: 50%;
  animation: orbPulse 8s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%,-55%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%,-52%) scale(1.1); opacity: 1; }
}
#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 920px; padding: 0 5vw; }
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '✦'; font-size: 0.5rem; color: var(--pink); opacity: 0.7;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 4.4rem); margin-bottom: 2rem; }
.hero-title .line { display: block; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--white-dim); margin-bottom: 3.5rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* Cinematic scroll indicator */
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.25em;
  color: var(--white-dim); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollAnim 2.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 1.05rem 2.5rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
  color: var(--white);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--lilac) 0%, var(--pink) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(232,100,138,0.45), 0 0 0 1px rgba(232,100,138,0.3);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-block;
  padding: 1.05rem 2.5rem;
  border: 1px solid rgba(248,244,242,0.2);
  color: var(--white-dim);
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(232,100,138,0.15);
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; padding: 1.1rem 0;
  border-top: 1px solid var(--white-faint);
  border-bottom: 1px solid var(--white-faint);
  background: rgba(8,10,14,0.5);
  backdrop-filter: blur(4px);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--white-dim);
}
.marquee-track .dot { color: var(--pink); font-size: 0.55rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════ */
.philosophy {
  padding: clamp(7rem, 13vw, 11rem) 0;
  background: rgba(8,12,14,0.55);
  backdrop-filter: blur(2px);
  position: relative; overflow: hidden;
}
.philosophy::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(176,136,208,0.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.philosophy::after {
  content: '';
  position: absolute; bottom: 0; left: 5vw; right: 5vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--lilac), transparent);
  opacity: 0.3;
}
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8vw; align-items: start;
}
.philosophy-left h2 { margin-top: 0; }
.philosophy-right p { margin-bottom: 1.5rem; }
.stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--white-faint);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4rem);
  display: block; line-height: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lilac) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat > span {
  font-family: var(--serif); font-size: 1.8rem;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat p { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.4rem; }

/* ══════════════════════════════════════
   LEISTUNGEN
══════════════════════════════════════ */
.leistungen {
  padding: clamp(7rem, 13vw, 11rem) 0;
  background: rgba(5,7,9,0.4);
}
.leistungen > .container > h2 { margin-bottom: 4.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.service-card {
  background: rgba(15,15,26,0.7);
  backdrop-filter: blur(6px);
  padding: 3.5rem 3rem;
  position: relative; overflow: hidden;
  transition: background 0.4s, transform 0.4s var(--ease);
}
.service-card:hover { background: rgba(20,20,32,0.85); transform: translateY(-5px); }
.service-number {
  font-family: var(--serif); font-size: 0.75rem;
  letter-spacing: 0.2em; margin-bottom: 2rem;
  color: var(--pink);
}
.service-icon {
  font-size: 1.6rem; margin-bottom: 1.5rem; display: block;
  background: linear-gradient(135deg, var(--mint) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-card h3 { margin-bottom: 1rem; color: var(--white); }
.service-card p  { margin-bottom: 2rem; font-size: 0.92rem; }
.service-card ul { list-style: none; }
.service-card ul li {
  font-size: 0.82rem; color: var(--white-dim);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--white-faint);
  letter-spacing: 0.04em;
}
.service-card ul li:last-child { border-bottom: none; }
.card-hover-line {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--pink), var(--lilac), var(--mint));
  transition: width 0.55s var(--ease);
}
.service-card:hover .card-hover-line { width: 100%; }

/* ── IMAGE GLOW HOVER (für zukünftige Bilder) ── */
.img-frame {
  position: relative; overflow: hidden; display: block;
}
.img-frame img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.img-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  border: 2px solid transparent;
  transition: border-color 0.4s;
}
.img-frame::after {
  content: '';
  position: absolute; inset: -2px; z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--pink), var(--lilac), var(--mint));
  opacity: 0;
  transition: opacity 0.4s, box-shadow 0.4s;
}
.img-frame:hover img { transform: scale(1.04); }
.img-frame:hover::before { border-color: var(--pink); }
.img-frame:hover::after {
  opacity: 1;
  box-shadow:
    0 0 30px rgba(232,100,138,0.5),
    0 0 60px rgba(176,136,208,0.3),
    0 0 100px rgba(107,191,170,0.2);
}

/* ══════════════════════════════════════
   QUOTE
══════════════════════════════════════ */
.quote-section {
  padding: clamp(6rem, 11vw, 9rem) 5vw;
  background: rgba(8,10,14,0.45);
  backdrop-filter: blur(2px);
  text-align: center; position: relative; overflow: hidden;
}
.quote-section::before { content: none; }
.quote-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
blockquote {
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-style: italic; line-height: 1.45;
  color: var(--white); margin-bottom: 2rem;
}
cite { font-size: 0.78rem; letter-spacing: 0.18em; color: var(--mint); font-style: normal; }

/* ══════════════════════════════════════
   ÜBER UNS
══════════════════════════════════════ */
.ueber {
  padding: clamp(7rem, 13vw, 11rem) 0;
  background: rgba(5,7,9,0.4); position: relative; overflow: hidden;
}
.ueber::before {
  content: '';
  position: absolute; bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,191,170,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.ueber-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 8vw; align-items: center;
}
.ueber-image { }
.image-frame {
  position: relative; width: 100%; aspect-ratio: 3/4;
}
.image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0f28 0%, #0f0f1a 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--white-faint);
  position: relative; overflow: hidden;
  transition: border-color 0.4s;
}
/* Glow-Rahmen bei Hover */
.image-placeholder::after {
  content: '';
  position: absolute; inset: -1px;
  border: 1.5px solid transparent;
  background: linear-gradient(var(--black), var(--black)) padding-box,
              linear-gradient(135deg, var(--pink), var(--lilac), var(--mint)) border-box;
  opacity: 0;
  transition: opacity 0.5s;
}
.image-frame:hover .image-placeholder::after { opacity: 1; }
.image-frame:hover .image-placeholder {
  box-shadow:
    0 0 40px rgba(232,100,138,0.35),
    0 0 80px rgba(176,136,208,0.2),
    inset 0 0 40px rgba(232,100,138,0.05);
}
.image-placeholder span {
  font-family: var(--serif); font-size: 5rem;
  color: rgba(248,244,242,0.12); letter-spacing: 0.1em;
}
.image-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.image-deco {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%;
  border: 1px solid rgba(232,100,138,0.15);
  pointer-events: none;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.image-frame:hover .image-deco {
  border-color: rgba(232,100,138,0.4);
  box-shadow: 0 0 20px rgba(232,100,138,0.15);
}
.ueber-text h2 { margin-bottom: 0.5rem; }
.ueber-subtitle {
  font-family: var(--sans); font-size: 0.72rem;
  font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 2.5rem; display: block;
}
.ueber-text p { margin-bottom: 1.5rem; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq {
  padding: clamp(7rem, 13vw, 11rem) 0;
  background: rgba(8,12,14,0.5);
  backdrop-filter: blur(3px);
  position: relative;
}
.faq > .container > h2 { margin-bottom: 3.5rem; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--white-faint);
}
.faq-q {
  width: 100%;
  background: none; border: none;
  text-align: left; cursor: none;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--white);
  padding: 1.6rem 3rem 1.6rem 0;
  position: relative;
  transition: color 0.3s;
}
.faq-q::after {
  content: '+';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem; font-family: var(--sans); font-weight: 300;
  color: var(--pink);
  transition: transform 0.4s var(--ease), color 0.3s;
}
.faq-q:hover { color: var(--pink-light); }
.faq-item.open .faq-q { color: var(--pink-light); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(135deg); color: var(--mint); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.faq-item.open .faq-a { padding-bottom: 1.8rem; }
.faq-a p { font-size: 0.95rem; max-width: 95%; }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: clamp(8rem, 15vw, 14rem) 5vw;
  text-align: center; overflow: hidden;
  background: rgba(8,10,14,0.3);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(232,100,138,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(107,191,170,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 40%, rgba(176,136,208,0.07) 0%, transparent 60%);
  pointer-events: none;
}
#ctaCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 1.5rem; }
.cta-inner > p { margin-bottom: 3rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: rgba(5,7,9,0.7); backdrop-filter: blur(4px); border-top: 1px solid var(--white-faint); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; padding: 5rem 5vw 3rem;
  max-width: 1280px; margin: 0 auto;
}
.footer-logo {
  font-family: var(--serif); font-size: 1.15rem;
  letter-spacing: 0.1em; color: var(--white);
  margin-bottom: 1rem; display: block;
}
.footer-logo span { color: var(--pink); }
.footer-brand p { font-size: 0.85rem; line-height: 1.85; }
.footer-links h4, .footer-social h4 {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1.5rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.8rem; }
.footer-links ul a {
  font-size: 0.85rem; color: var(--white-dim);
  text-decoration: none; transition: color 0.3s;
}
.footer-links ul a:hover { color: var(--white); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 42px; height: 42px;
  border: 1px solid var(--white-faint);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 500;
  color: var(--white-dim); text-decoration: none;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.social-links a:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 16px rgba(232,100,138,0.3);
}
.footer-bottom {
  border-top: 1px solid var(--white-faint);
  padding: 1.5rem 5vw;
  max-width: 1280px; margin: 0 auto;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(248,244,242,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 4rem; }
  .services-grid   { grid-template-columns: 1fr; gap: 2px; }
  .ueber-grid      { grid-template-columns: 1fr; gap: 4rem; }
  .ueber-image     { max-width: 400px; }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .hero-eyebrow { flex-wrap: wrap; letter-spacing: 0.2em; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.15em; }
  .hero-content { padding: 0 6vw; }
}

/* ══════════════════════════════════════
   LEISTUNGEN-SEITE (Service Detail)
══════════════════════════════════════ */
.hero-page { min-height: 88svh; }
.hero-page .hero-content { padding-top: 4rem; }

.service-detail {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: rgba(5,7,9,0.4);
  position: relative;
}
.service-detail.alt { background: rgba(10,16,18,0.5); backdrop-filter: blur(3px); }
.sd-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 5vw; align-items: center;
}
.sd-text .service-number {
  font-family: var(--serif); font-size: 0.8rem;
  letter-spacing: 0.25em; color: var(--pink); margin-bottom: 1rem;
}
.sd-text h2 { margin-bottom: 1.5rem; }
.sd-text > p { margin-bottom: 2rem; max-width: 600px; }
.sd-benefits { list-style: none; }
.sd-benefits li {
  position: relative;
  padding: 0.7rem 0 0.7rem 2rem;
  font-size: 0.92rem; color: var(--white-dim);
  border-bottom: 1px solid var(--white-faint);
}
.sd-benefits li::before {
  content: '✦';
  position: absolute; left: 0; top: 0.7rem;
  color: var(--mint); font-size: 0.8rem;
}
.sd-benefits li:last-child { border-bottom: none; }
.sd-visual {
  display: flex; align-items: center; justify-content: center;
}
.sd-icon {
  width: clamp(140px, 18vw, 220px);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(3rem, 5vw, 4.5rem);
  border: 1px solid var(--white-faint);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,100,138,0.08) 0%, transparent 70%);
  background-clip: padding-box;
  position: relative;
  color: transparent;
  -webkit-background-clip: text;
}
.sd-icon {
  background-image: linear-gradient(135deg, var(--pink), var(--lilac), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: inset 0 0 50px rgba(232,100,138,0.08);
  animation: sdFloat 6s ease-in-out infinite;
}
@keyframes sdFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 1024px) {
  .sd-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail.alt .sd-visual { order: -1; }
}

/* ══════════════════════════════════════
   IDENTITY & BRANDING SEITE
══════════════════════════════════════ */
.sub-head {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--white);
  margin: 2rem 0 0.8rem;
}
.sub-head-sm {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mint); margin: 1.8rem 0 1rem;
}
.color-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 1.5rem;
}
.color-card {
  background: rgba(15,15,26,0.6);
  border: 1px solid var(--white-faint);
  padding: 2rem 1.8rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.color-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.color-dot {
  width: 38px; height: 38px; border-radius: 50%;
  display: block; margin-bottom: 1.2rem;
  box-shadow: 0 0 24px currentColor;
}
.color-card h5 {
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--white); margin-bottom: 0.2rem;
}
.color-card h6 {
  font-family: var(--sans); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 0.8rem;
}
.color-card p { font-size: 0.88rem; }

.process-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 3rem;
}
.process-step {
  border-top: 2px solid var(--white-faint);
  padding-top: 1.5rem; position: relative;
}
.process-step::before {
  content: ''; position: absolute; top: -2px; left: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--mint));
}
.ps-num {
  font-family: var(--serif); font-size: 2.5rem;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 0.5rem; line-height: 1;
}
.process-step h3 {
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--white); margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.9rem; }

@media (max-width: 768px) {
  .color-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ══════════════════════════════════════
   NAV DROPDOWN (Untermenü)
══════════════════════════════════════ */
.nav-links li.has-sub { position: relative; }
.nav-links li.has-sub > a::before {
  content: '▾'; font-size: 0.6rem; margin-left: 0.35rem;
  color: var(--pink); vertical-align: middle;
}
.nav-sub {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(5,5,8,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--white-faint);
  list-style: none; padding: 0.4rem 0;
  min-width: 230px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav-links li.has-sub:hover .nav-sub {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-sub li { margin: 0; }
.nav-sub li a {
  display: block; padding: 0.7rem 1.4rem;
  font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--white-dim); white-space: nowrap;
}
.nav-sub li a::after { display: none; }
.nav-sub li a:hover { color: var(--pink-light); background: rgba(232,100,138,0.08); }

/* Untermenü im Mobile-Menü */
.mobile-menu .mobile-sub { font-size: clamp(1.2rem, 4.5vw, 1.7rem); color: var(--mint); }

/* ── LEISTUNGS-BILDER (statt Kreis-Icon) ── */
.sd-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--white-faint);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.sd-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s var(--ease);
}
.sd-img::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 0.4s, box-shadow 0.5s;
}
.sd-visual:hover .sd-img { transform: translateY(-6px); }
.sd-visual:hover .sd-img img { transform: scale(1.06); }
.sd-visual:hover .sd-img::after {
  border-image: linear-gradient(135deg, var(--pink), var(--lilac), var(--mint)) 1;
  box-shadow:
    0 0 30px rgba(232,100,138,0.45),
    0 0 60px rgba(176,136,208,0.3),
    0 0 90px rgba(107,191,170,0.2);
}
@media (max-width: 1024px) {
  .sd-img { max-width: 100%; }
}

/* ══════════════════════════════════════
   KUNDENPROJEKTE
══════════════════════════════════════ */
.projects {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: rgba(8,12,14,0.5);
  backdrop-filter: blur(3px);
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.project-card { text-align: left; }
.project-img {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 14px; overflow: hidden;
  position: relative; border: 1px solid var(--white-faint);
  margin-bottom: 1.2rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
  transition: transform 0.7s var(--ease);
}
.project-img::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 14px; border: 2px solid transparent;
  pointer-events: none; transition: border-color 0.4s, box-shadow 0.5s;
}
.project-card:hover .project-img { transform: translateY(-6px); }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-card:hover .project-img::after {
  border-image: linear-gradient(135deg, var(--pink), var(--lilac), var(--mint)) 1;
  box-shadow: 0 0 28px rgba(232,100,138,0.4), 0 0 60px rgba(176,136,208,0.25);
}
/* Platzhalter, falls Bild noch fehlt */
.project-img.ph {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #160a24 0%, #0d1f1b 100%);
}
.project-img.ph::before {
  content: 'Projektbild folgt';
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(248,244,242,0.35);
}
.project-card h3 {
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--white); margin-bottom: 0.25rem;
}
.project-card p { font-size: 0.85rem; }
@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Hochformat-Bilder (Premium-Seite Service-Blöcke) ── */
.sd-img.portrait {
  aspect-ratio: 2 / 3;
  max-width: 360px;
  margin: 0 auto;
}
.sd-img.portrait img { object-position: center; }

/* ── MODUL-RASTER (KI Powerkurs) ── */
.module-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.2rem; margin-top: 1.5rem;
}
@media (max-width: 768px) { .module-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   PRODUKT / KAUF (KI Powerkurs)
══════════════════════════════════════ */
.product {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: rgba(8,12,14,0.5);
  backdrop-filter: blur(3px);
}
.product-grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 5vw; align-items: center;
}
.product-img {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--white-faint);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.product-img img { width: 100%; display: block; }
.product-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(232,100,138,0.25), 0 0 50px rgba(176,136,208,0.2);
}
.product-info h2 { margin: 0.3rem 0 1.3rem; }
.product-info > p { margin-bottom: 1.5rem; }
.product-info .sd-benefits { margin-bottom: 2rem; }
.product-info .btn-primary { font-size: 0.85rem; padding: 1.1rem 2.6rem; }
.product-note {
  margin-top: 1rem; font-size: 0.8rem;
  letter-spacing: 0.05em; color: var(--mint);
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-img { max-width: 360px; margin: 0 auto; }
}

/* ── KOMPAKTE PRODUKT-VARIANTE (Startseite) ── */
.product.compact { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.product.compact .product-grid {
  grid-template-columns: 0.5fr 1fr;
  gap: 3vw;
}
.product.compact .product-img { max-width: 240px; }
.product.compact .product-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.3rem 0 1rem;
}
.product.compact .product-info > p { margin-bottom: 1.5rem; max-width: 560px; }
@media (max-width: 900px) {
  .product.compact .product-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product.compact .product-img { max-width: 200px; }
}

/* ══════════════════════════════════════
   SPARKLE-CARD (funkelnde Container)
══════════════════════════════════════ */
.sparkle-card {
  position: relative;
  max-width: 880px; margin: 0 auto;
  padding: clamp(2.2rem, 4.5vw, 3.5rem);
  border-radius: 20px;
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(13,13,22,0.88), rgba(13,13,22,0.88)) padding-box,
    linear-gradient(120deg, #E8648A, #B088D0, #6BBFAA, #C9A96E, #E8648A) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: sparkleBorder 7s linear infinite;
  box-shadow: 0 0 40px rgba(232,100,138,0.12), inset 0 0 30px rgba(176,136,208,0.04);
  overflow: hidden;
}
@keyframes sparkleBorder {
  0%   { background-position: 0 0, 0% 50%; }
  100% { background-position: 0 0, 300% 50%; }
}
/* funkelnde Lichtpunkte im Container */
.sparkle-card::before,
.sparkle-card::after {
  content: '✦';
  position: absolute;
  color: rgba(255,255,255,0.85);
  pointer-events: none;
  text-shadow: 0 0 8px var(--pink);
  animation: cardSparkle 3.5s ease-in-out infinite;
}
.sparkle-card::before { top: 1.2rem; right: 1.6rem; font-size: 0.9rem; }
.sparkle-card::after  { bottom: 1.4rem; right: 2.8rem; font-size: 0.6rem; color: var(--mint); text-shadow: 0 0 8px var(--mint); animation-delay: 1.5s; }
@keyframes cardSparkle {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}
.sparkle-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 2.2rem; line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.8rem;
}
.sparkle-card h3 { margin-bottom: 1rem; color: var(--white); }
.sparkle-card > p { margin-bottom: 1.5rem; max-width: 640px; }
.sparkle-card .sd-benefits { max-width: 640px; }
.service-detail:has(.sparkle-card) { padding: clamp(2rem, 4vw, 3rem) 0; background: transparent; backdrop-filter: none; }

/* ══════════════════════════════════════
   TEAM (Über uns)
══════════════════════════════════════ */
.team-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: rgba(8,12,14,0.5);
  backdrop-filter: blur(3px);
}
.team-section > .container > h2 { margin-bottom: 4rem; }

/* Foto-Platzhalter */
.team-photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 14px; overflow: hidden;
  position: relative;
  border: 1px solid var(--white-faint);
  background: linear-gradient(135deg, #1a0f28 0%, #0f1418 100%);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-photo.ph { display: flex; align-items: center; justify-content: center; }
.team-photo.ph::before {
  content: 'Foto folgt';
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,244,242,0.3);
}

/* Jennifer hervorgehoben */
.team-feature {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 4vw; align-items: center;
  margin-bottom: 4rem;
  padding: clamp(2rem,4vw,3rem);
  border-radius: 20px;
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(13,13,22,0.85), rgba(13,13,22,0.85)) padding-box,
    linear-gradient(120deg, #E8648A, #B088D0, #6BBFAA, #C9A96E, #E8648A) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: sparkleBorder 7s linear infinite;
  box-shadow: 0 0 40px rgba(232,100,138,0.12);
}
.team-feature-img .team-photo { max-width: 320px; }
.team-feature-text h3 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 0.3rem; }
.team-role {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mint);
  margin-bottom: 1.3rem !important;
}
.team-feature-text p:not(.team-role) { margin-bottom: 1rem; }

/* 3er-Grid */
.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.team-card {
  background: rgba(15,15,26,0.6);
  border: 1px solid var(--white-faint);
  border-radius: 16px;
  padding: 1.8rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.3);
}
.team-card .team-photo { margin-bottom: 1.3rem; }
.team-card h4 {
  font-family: var(--serif); font-size: 1.5rem;
  color: var(--white); margin-bottom: 0.2rem;
}
.team-card p:not(.team-role) { font-size: 0.88rem; }

@media (max-width: 900px) {
  .team-feature { grid-template-columns: 1fr; gap: 2rem; }
  .team-feature-img .team-photo { max-width: 280px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ══════════════════════════════════════
   LOGO (Header & Footer)
══════════════════════════════════════ */
.nav-logo { display: inline-flex; align-items: center; gap: 0.6rem; }
.nav-logo-img { height: 38px; width: auto; display: block; }
#nav.scrolled .nav-logo-img { height: 32px; transition: height 0.4s; }
.footer-logo { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer-logo-img { height: 46px; width: auto; display: block; }
@media (max-width: 768px) { .nav-logo-img { height: 32px; } }

/* ══════════════════════════════════════
   KONTAKTFORMULAR
══════════════════════════════════════ */
.contact-section {
  padding: clamp(6rem, 12vw, 9rem) 0;
  background: rgba(8,12,14,0.5);
  backdrop-filter: blur(3px);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5vw; align-items: start;
}
.contact-intro h2 { margin-bottom: 1.3rem; }
.contact-intro > p { margin-bottom: 1.5rem; }
.contact-form {
  background: rgba(15,15,26,0.6);
  border: 1px solid var(--white-faint);
  border-radius: 18px;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label {
  display: block; margin-bottom: 1.1rem;
  font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--white-dim); text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%; margin-top: 0.45rem;
  background: rgba(5,5,8,0.5);
  border: 1px solid var(--white-faint);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--sans); font-size: 0.92rem; font-weight: 300;
  text-transform: none; letter-spacing: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,100,138,0.15);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { width: 100%; border: none; cursor: none; margin-top: 0.5rem; }
.form-note { font-size: 0.72rem; color: rgba(248,244,242,0.4); margin-top: 1rem; text-transform: none; letter-spacing: 0; }
.social-links svg { display: block; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── DANKE-SEITE ── */
.danke-hero { min-height: 92svh; text-align: center; }
.danke-hero .hero-content { text-align: center; }
.danke-hero .hero-actions { justify-content: center; }
.danke-icon {
  font-size: 3rem; line-height: 1; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--pink), var(--lilac), var(--mint));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cardSparkle 3s ease-in-out infinite;
}

/* ── TERMIN BUCHEN (Calendly) ── */
.booking-hero { min-height: 60svh; text-align: center; }
.booking-hero .hero-content { text-align: center; }
.booking-section { padding: clamp(2rem,5vw,4rem) 0 clamp(5rem,10vw,8rem); }
.booking-section .calendly-inline-widget {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--white-faint);
  background: var(--surface);
}
.booking-fallback { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--white-dim); }
.booking-fallback a { color: var(--pink); }

/* ── RECHTSSEITEN (Impressum/Datenschutz) ── */
.legal { padding: clamp(8rem,14vw,11rem) 0 clamp(4rem,8vw,6rem); }
.legal h1 { font-size: clamp(2.4rem,5vw,3.6rem); margin-bottom: 2.5rem; }
.legal h2 {
  font-family: var(--serif); font-size: clamp(1.3rem,2.2vw,1.7rem);
  color: var(--white); margin: 2.2rem 0 0.7rem;
}
.legal p { max-width: 760px; margin-bottom: 1rem; }
.legal a { color: var(--pink); }
.legal .legal-note { font-size: 0.85rem; color: var(--white-dim); margin-top: 1.5rem; }

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog-list { padding: clamp(4rem,8vw,7rem) 0 clamp(5rem,10vw,8rem); }
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.blog-card {
  background: rgba(15,15,26,0.6);
  border: 1px solid var(--white-faint);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.blog-card-link { display: block; text-decoration: none; padding: 0 0 1.8rem; }
.blog-card-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  margin-bottom: 1.5rem;
}
.blog-card-img.mint { background: linear-gradient(135deg, var(--mint), var(--lilac)); }
.blog-meta { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mint); margin: 0 1.8rem 0.6rem; }
.blog-card h2 { font-size: clamp(1.4rem,2.5vw,1.9rem); color: var(--white); margin: 0 1.8rem 0.8rem; }
.blog-card p { font-size: 0.92rem; margin: 0 1.8rem 1.2rem; }
.blog-readmore { margin: 0 1.8rem; color: var(--pink); font-size: 0.85rem; font-weight: 500; }

/* ARTIKEL */
.article { padding: clamp(7rem,13vw,10rem) 0 clamp(4rem,8vw,6rem); }
.article-narrow { max-width: 760px; }
.article-meta { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint); margin-bottom: 1rem; }
.article h1 { font-size: clamp(2.2rem,5vw,3.6rem); margin-bottom: 2rem; }
.article h2 { font-family: var(--serif); font-size: clamp(1.5rem,2.6vw,2.1rem); color: var(--white); margin: 2.2rem 0 0.8rem; }
.article p { margin-bottom: 1.2rem; }
.article .sd-benefits { margin: 0.5rem 0 1.5rem; }
.article a.btn-primary, .article a.btn-ghost { text-decoration: none; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   COOKIE-HINWEIS
══════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 1.2rem; left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 9000;
  width: min(680px, 92vw);
  background: rgba(10,10,18,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--white-faint);
  border-radius: 16px;
  padding: 1.3rem 1.6rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: 0.82rem; line-height: 1.6; flex: 1 1 320px; margin: 0; color: var(--white-dim); }
.cookie-banner a { color: var(--pink); }
.cookie-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-btn {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.06em; padding: 0.65rem 1.2rem;
  border-radius: 8px; cursor: none; border: 1px solid var(--white-faint);
  background: transparent; color: var(--white-dim);
  transition: all 0.3s;
}
.cookie-decline:hover { border-color: var(--white); color: var(--white); }
.cookie-accept {
  background: var(--pink); color: var(--black); border-color: var(--pink);
}
.cookie-accept:hover { background: var(--pink-light); border-color: var(--pink-light); }
@media (max-width: 600px) { .cookie-actions { width: 100%; } .cookie-btn { flex: 1; } }

/* ══════════════════════════════════════
   SO LÄUFT'S AB (Prozess)
══════════════════════════════════════ */
.process { padding: clamp(6rem,12vw,9rem) 0; background: rgba(8,12,14,0.45); backdrop-filter: blur(2px); }
.process-flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.8rem; }
.flow-step { position: relative; padding: 2.2rem 1.6rem; background: rgba(15,15,26,0.6); border: 1px solid var(--white-faint); border-radius: 16px; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.flow-step:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0,0,0,0.3); }
.flow-num {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  font-family: var(--serif); font-size: 1.4rem; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  margin-bottom: 1.2rem;
}
.flow-step h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.flow-step p { font-size: 0.88rem; }
@media (max-width: 900px) { .process-flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-flow { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter { padding: clamp(4rem,8vw,6rem) 0; }
.newsletter-box {
  max-width: 1000px; margin: 0 auto; text-align: center;
  padding: clamp(2rem,4vw,3rem) clamp(2.5rem,6vw,5rem);
  border-radius: 24px;
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(13,13,22,0.9), rgba(13,13,22,0.9)) padding-box,
    linear-gradient(120deg, #E8648A, #B088D0, #6BBFAA, #C9A96E, #E8648A) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: sparkleBorder 8s linear infinite;
}
.newsletter-box h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); margin: 0.3rem 0 1rem; }
.newsletter-box > p { max-width: 520px; margin: 0 auto 2rem; }
.newsletter-form { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; max-width: 560px; margin: 0 auto; }
.newsletter-form input {
  flex: 1 1 180px; background: rgba(5,5,8,0.5);
  border: 1px solid var(--white-faint); border-radius: 10px;
  padding: 0.9rem 1.1rem; color: var(--white);
  font-family: var(--sans); font-size: 0.92rem; font-weight: 300;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.newsletter-form input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,100,138,0.15); }
.newsletter-form .btn-primary { border: none; cursor: none; flex: 0 0 auto; }
.newsletter-note { font-size: 0.72rem; color: rgba(248,244,242,0.4); margin-top: 1.2rem; }
.newsletter-note a { color: var(--pink); }

/* ══════════════════════════════════════
   PREISE / PAKETE
══════════════════════════════════════ */
.pricing { padding: clamp(5rem,10vw,8rem) 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; max-width: 1100px; margin: 0 auto; }
.pricing-grid.two { grid-template-columns: repeat(2,1fr); max-width: 760px; }
.price-card {
  position: relative; background: rgba(15,15,26,0.65);
  border: 1px solid var(--white-faint); border-radius: 18px;
  padding: 2.4rem 2rem; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(15,15,26,0.85), rgba(15,15,26,0.85)) padding-box,
    linear-gradient(135deg, var(--pink), var(--lilac), var(--mint)) border-box;
  box-shadow: 0 0 36px rgba(232,100,138,0.18);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  color: #fff; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 20px; white-space: nowrap;
}
.price-card h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--white); margin-bottom: 0.3rem; }
.price-tag { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--mint); text-transform: uppercase; margin-bottom: 1.5rem; }
.price-list { list-style: none; margin-bottom: 2rem; flex: 1; }
.price-list li { position: relative; padding: 0.55rem 0 0.55rem 1.6rem; font-size: 0.9rem; color: var(--white-dim); border-bottom: 1px solid var(--white-faint); }
.price-list li::before { content: '✦'; position: absolute; left: 0; top: 0.55rem; color: var(--mint); font-size: 0.75rem; }
.price-list li:last-child { border-bottom: none; }
.price-card .btn-primary, .price-card .btn-ghost { text-align: center; }
@media (max-width: 900px) { .pricing-grid, .pricing-grid.two { grid-template-columns: 1fr; max-width: 420px; } }

/* ── Preis-Betrag ── */
.price-amount {
  font-family: var(--serif); font-size: 2.2rem; line-height: 1;
  color: var(--white); margin: -0.6rem 0 1.4rem;
}
.price-amount::first-letter { /* "ab" klein */ }

/* ── Newsletter Meldungen (Brevo) ── */
.newsletter-msg {
  max-width: 560px; margin: 0 auto 1.2rem; padding: 0.9rem 1.2rem;
  border-radius: 10px; font-size: 0.85rem; line-height: 1.5;
}
.newsletter-msg--success { background: rgba(107,191,170,0.15); border: 1px solid var(--mint); color: var(--mint-light); }
.newsletter-msg--error { background: rgba(232,100,138,0.12); border: 1px solid var(--pink); color: var(--pink-light); }
#sib-form-container .input--hidden { display: none; }

/* ══════════════════════════════════════
   VERTRAUEN / WIX BADGE
══════════════════════════════════════ */
.trust { padding: clamp(4rem,9vw,7rem) 0; background: rgba(8,12,14,0.45); backdrop-filter: blur(2px); }
.trust-box { max-width: 880px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.trust-badge {
  flex: 0 0 auto; width: 150px; height: 150px; border-radius: 50%;
  background: #0a0a12; border: 3px solid var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(232,100,138,0.25);
}
.trust-badge-top { font-family: var(--serif); font-size: 2rem; color: #fff; line-height: 1; }
.trust-badge-mid { font-size: 0.7rem; letter-spacing: 0.25em; color: #fff; margin-top: 2px; }
.trust-badge-bot { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--mint); margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 6px; }
.trust-text { flex: 1 1 360px; }
.trust-text h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin: 0.3rem 0 1rem; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { padding: clamp(5rem,10vw,8rem) 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.testi-card {
  background: rgba(15,15,26,0.6); border: 1px solid var(--white-faint);
  border-radius: 16px; padding: 2rem; margin: 0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,0.3); }
.testi-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-card blockquote { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: var(--white); margin: 0 0 1rem; }
.testi-card figcaption { font-size: 0.82rem; color: var(--mint); letter-spacing: 0.04em; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ══════════════════════════════════════
   BEWERTUNG ABGEBEN (Formular + Sterne)
══════════════════════════════════════ */
.review-form-section { padding: 0 0 clamp(5rem,10vw,8rem); }
.review-box {
  max-width: 640px; margin: 0 auto; padding: clamp(2rem,4vw,3rem);
  background: rgba(15,15,26,0.6); border: 1px solid var(--white-faint); border-radius: 20px;
}
.review-form label { display: block; margin-bottom: 1.1rem; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white-dim); }
.review-form input[type=text], .review-form textarea {
  width: 100%; margin-top: 0.45rem; background: rgba(5,5,8,0.5);
  border: 1px solid var(--white-faint); border-radius: 10px; padding: 0.85rem 1rem;
  color: var(--white); font-family: var(--sans); font-size: 0.92rem; font-weight: 300;
  text-transform: none; letter-spacing: 0; transition: border-color 0.3s, box-shadow 0.3s;
}
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,100,138,0.15); }
.review-form .btn-primary { width: 100%; border: none; cursor: none; margin-top: 0.5rem; }
.star-rate { display: flex; gap: 0.4rem; justify-content: center; margin: 0 0 1.6rem; font-size: 2.4rem; }
.star-rate .star { color: rgba(255,255,255,0.2); cursor: none; transition: color 0.2s, transform 0.2s; }
.star-rate .star:hover { transform: scale(1.15); }
.star-rate .star.active { color: var(--gold); }

/* ── TESTIMONIAL-KARUSSELL ── */
.testi-carousel { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 3.2rem; }
.testi-track {
  display: flex; gap: 1.8rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none; padding: 0.5rem 0;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-carousel .testi-card {
  flex: 0 0 calc((100% - 2 * 1.8rem) / 3);
  scroll-snap-align: start;
}
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--white-faint); background: rgba(15,15,26,0.85);
  color: var(--pink); font-size: 1.6rem; line-height: 1; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s; z-index: 2;
}
.testi-arrow:first-child { left: 0; }
.testi-arrow:last-child { right: 0; }
.testi-arrow:hover { border-color: var(--pink); background: var(--pink); color: #fff; }
.testi-empty { text-align: center; color: var(--white-dim); font-size: 0.95rem; margin-top: 1.5rem; }
@media (max-width: 1024px) { .testi-carousel .testi-card { flex-basis: calc((100% - 1.8rem) / 2); } }
@media (max-width: 700px) {
  .testi-carousel { padding: 0 2.6rem; }
  .testi-carousel .testi-card { flex-basis: 100%; }
}

/* ── Footer Rechtslinks unter Social ── */
.footer-legal { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(248,244,242,0.55); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--white); }

/* ══════════════════════════════════════
   SICHTBARKEITS-CHECK (Quiz)
══════════════════════════════════════ */
.checkup { padding: clamp(4rem,8vw,7rem) 0 clamp(5rem,10vw,8rem); }
.quiz-box {
  max-width: 680px; margin: 0 auto; padding: clamp(2rem,4vw,3.2rem);
  border-radius: 20px; border: 2px solid transparent;
  background:
    linear-gradient(rgba(13,13,22,0.9), rgba(13,13,22,0.9)) padding-box,
    linear-gradient(120deg, #E8648A, #B088D0, #6BBFAA, #C9A96E, #E8648A) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: sparkleBorder 8s linear infinite;
  min-height: 380px;
}
.quiz-progress { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.1); overflow: hidden; margin-bottom: 0.8rem; }
.quiz-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--pink), var(--mint)); transition: width 0.4s var(--ease); }
.quiz-count { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint); text-align: center; margin-bottom: 1.5rem; }
.quiz-frage { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.1rem); color: var(--white); text-align: center; margin-bottom: 2rem; line-height: 1.25; }
.quiz-options { display: flex; flex-direction: column; gap: 0.8rem; max-width: 460px; margin: 0 auto; }
.quiz-opt {
  font-family: var(--sans); font-size: 0.95rem; color: var(--white);
  background: rgba(255,255,255,0.04); border: 1px solid var(--white-faint);
  border-radius: 12px; padding: 1rem 1.4rem; cursor: none; text-align: left;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.quiz-opt:hover { background: rgba(232,100,138,0.12); border-color: var(--pink); transform: translateX(4px); }
.score-ring {
  width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: conic-gradient(var(--pink) 0%, rgba(255,255,255,0.1) 0%);
  position: relative;
}
.score-ring::before { content: ''; position: absolute; inset: 12px; border-radius: 50%; background: #0d0d16; }
.score-ring span { position: relative; font-family: var(--serif); font-size: 3rem; color: #fff; line-height: 1; }
.score-ring small { position: relative; font-size: 1.2rem; color: var(--mint); margin-top: 6px; }
.quiz-result-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Check-up Lead-Formular */
.lead-form { max-width: 520px; margin: 0 auto 1.6rem; text-align: left; }
.lead-form .lead-hint {
  text-align: center; font-size: 0.95rem; color: var(--white-dim);
  margin-bottom: 1.4rem; text-transform: none; letter-spacing: 0;
}
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.lead-form input {
  width: 100%; margin-bottom: 0.9rem;
  background: rgba(5,5,8,0.5);
  border: 1px solid var(--white-faint);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--sans); font-size: 0.92rem; font-weight: 300;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.lead-form input:focus {
  outline: none; border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,100,138,0.15);
}
.lead-form .btn-primary { width: 100%; border: none; cursor: none; margin-top: 0.3rem; }
@media (max-width: 560px) { .lead-row { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   ZEIT-CHECK-UP
══════════════════════════════════════ */
.timecheck { padding: 0 0 clamp(5rem,10vw,8rem); }
.time-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; max-width: 760px; margin: 0 auto 2.5rem; }
.time-chip {
  font-family: var(--sans); font-size: 0.9rem; color: var(--white);
  background: rgba(255,255,255,0.04); border: 1px solid var(--white-faint);
  border-radius: 30px; padding: 0.75rem 1.5rem; cursor: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.time-chip:hover { transform: translateY(-2px); border-color: var(--pink); }
.time-chip.active { background: linear-gradient(135deg, var(--pink), var(--lilac)); border-color: transparent; color: #fff; }
.time-result { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; max-width: 720px; margin: 0 auto; }
.time-col { text-align: center; padding: 1.8rem 1rem; border-radius: 16px; background: rgba(15,15,26,0.6); border: 1px solid var(--white-faint); }
.time-col.highlight { border-color: rgba(107,191,170,0.5); }
.time-col.save { border: 2px solid transparent; background: linear-gradient(rgba(15,15,26,0.85),rgba(15,15,26,0.85)) padding-box, linear-gradient(135deg,var(--pink),var(--mint)) border-box; box-shadow: 0 0 30px rgba(232,100,138,0.18); }
.time-num { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.8rem); display: block; line-height: 1; color: var(--white); }
.time-col.save .time-num { background: linear-gradient(135deg,var(--pink),var(--lilac)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.time-col p { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white-dim); margin-top: 0.5rem; }
.time-extra { text-align: center; color: var(--mint-light); font-size: 0.95rem; margin-top: 1.8rem; max-width: 600px; margin-left: auto; margin-right: auto; }
@media (max-width: 600px) { .time-result { grid-template-columns: 1fr; max-width: 320px; } }

/* ── Cookie-Einstellungen (erweitert) ── */
.cookie-banner { flex-direction: column; align-items: stretch; }
.cookie-main { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-main p { flex: 1 1 300px; }
.cookie-settings-toggle { background: transparent; }
.cookie-settings { display: none; width: 100%; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--white-faint); }
.cookie-settings.open { display: block; }
.cookie-opt { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--white-faint); }
.cookie-opt span { font-size: 0.82rem; color: var(--white-dim); }
.cookie-opt small { color: rgba(248,244,242,0.4); font-size: 0.72rem; }
.cookie-opt input { width: 20px; height: 20px; accent-color: var(--pink); flex: 0 0 auto; }
.cookie-save { margin-top: 1rem; background: var(--pink); color: var(--black); border-color: var(--pink); width: 100%; }
.cookie-save:hover { background: var(--pink-light); }

/* ════════════════════════════════════════
   SPEKTAKEL-PAKET — zusätzliche Animationen
   ════════════════════════════════════════ */

/* 1. Magnetische Buttons – sanftes Zurückgleiten */
.btn-primary, .btn-ghost, .nav-cta { transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease; }

/* 2. Gold-Sweep über Überschriften */
.gold-sweep { position: relative; }
.gold-sweep::after {
  content: ''; position: absolute; inset: -0.1em -0.2em; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(201,169,110,0.65) 50%, transparent 65%);
  background-size: 250% 100%; background-position: 150% 0;
  opacity: 0; mix-blend-mode: screen;
}
.gold-swept::after { animation: goldSweep 1.2s ease forwards; }
@keyframes goldSweep {
  0%   { opacity: 0; background-position: 150% 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; background-position: -80% 0; }
}

/* 3. Scroll-Fortschritts-Schmetterling */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 1000; pointer-events: none; }
.scroll-progress-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 100%;
  transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--pink), var(--mint), var(--gold));
  box-shadow: 0 0 8px rgba(232,100,138,0.6);
}
.scroll-progress-bf {
  position: absolute; top: -8px; left: 0; transform: translateX(-50%);
  font-size: 14px; transition: left 0.08s linear; filter: drop-shadow(0 0 4px rgba(232,100,138,0.5));
}

/* 4. Parallax-Tiefe (Glow-Ebenen im Hero) */
.depth-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; pointer-events: none; z-index: 0; will-change: transform; }
.depth-glow-pink { width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,100,138,0.5), transparent 70%); top: -80px; left: -60px; }
.depth-glow-mint { width: 340px; height: 340px; background: radial-gradient(circle, rgba(107,191,170,0.45), transparent 70%); top: 140px; right: -50px; }

/* 5. Wort-für-Wort-Reveal der Hero-Texte */
.hw { display: inline-block; opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.visible .hw { opacity: 1; transform: none; }

/* 6. Sanfte Seiten-Übergänge */
body { transition: opacity 0.45s ease, transform 0.45s ease; }
body.page-leaving { opacity: 0 !important; transform: scale(0.99); }

/* 3D-Tilt: weichere Bewegung + stärkerer Schatten beim Hover */
.tilt-card { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease; }
.tilt-card:hover { box-shadow: 0 24px 60px -20px rgba(232,100,138,0.35), 0 0 30px -10px rgba(107,191,170,0.25); }

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  .depth-glow, .scroll-progress-bf { display: none; }
  .hw { opacity: 1 !important; transform: none !important; transition: none !important; }
  .gold-swept::after { animation: none; }
  body { transition: none; }
}

/* Dunklerer Video-Header (z. B. KI Book Code) */
.video-overlay-dark {
  background: linear-gradient(
    to bottom,
    rgba(5,5,8,0.52) 0%,
    rgba(5,5,8,0.38) 40%,
    rgba(5,5,8,0.70) 100%
  );
}
.hero:has(.video-overlay-dark) .video-bg video { opacity: 0.62; filter: brightness(0.95); }

/* Identity-Branding: Video einen Hauch heller */
.video-bg-bright video { opacity: 0.5; filter: brightness(1.08); }

/* KI-Website-Code: Video deutlich dunkler, aber noch sichtbar */
.video-overlay-darker {
  background: linear-gradient(
    to bottom,
    rgba(5,5,8,0.66) 0%,
    rgba(5,5,8,0.55) 40%,
    rgba(5,5,8,0.80) 100%
  );
}
.video-bg-darker video { opacity: 0.5; filter: brightness(0.72); }

/* KI Powerkurs: einen Tick dunkler als die anderen Video-Header */
.video-overlay-pk {
  background: linear-gradient(
    to bottom,
    rgba(5,5,8,0.64) 0%,
    rgba(5,5,8,0.50) 40%,
    rgba(5,5,8,0.80) 100%
  );
}
.video-bg-pk video { opacity: 0.5 !important; filter: brightness(0.82) !important; }

/* KI Book Code: einen Tick dunkler */
.video-overlay-bc {
  background: linear-gradient(
    to bottom,
    rgba(5,5,8,0.64) 0%,
    rgba(5,5,8,0.50) 40%,
    rgba(5,5,8,0.80) 100%
  );
}
.video-bg-bc video { opacity: 0.5 !important; filter: brightness(0.82) !important; }
