/* =========================================================
   TISO MEDIA – styles.css
   Stil nach Referenzbildern: dunkle Basis (#070608), Pink→Lila-
   Verlauf als Akzent, eine helle Sektion, Vergleichstabelle.
   ========================================================= */

:root {
  /* Dark */
  --bg:        #070608;
  --bg-2:      #0c0a10;
  --surface:   #141019;
  --surface-2: #1a1622;
  --border:    #241f2e;
  --text:      #f4f1f7;   /* hoher Kontrast auf --bg */
  --text-mut:  #b6aec6;   /* ~7:1 auf --bg */

  /* Akzent: Pink → Lila */
  --accent:    #ff4d9d;
  --accent-2:  #b06bff;
  --grad:      linear-gradient(95deg, #ff4d9d 0%, #b06bff 100%);
  --grad-soft: linear-gradient(95deg, rgba(255,77,157,.16), rgba(176,107,255,.16));

  /* Grün – nur für Ergebnis-/Benefit-Karten (Erfolg/Wachstum) */
  --green:      #1fd28a;
  --green-2:    #11b67b;
  --grad-green: linear-gradient(95deg, #34e6a2 0%, #11b67b 100%);

  /* Helle Sektion */
  --light-bg:      #f6f6f8;
  --light-surface: #ffffff;
  --light-text:    #15131c;
  --light-mut:     #56525f;
  --light-border:  #e6e4ec;

  --maxw: 1180px;
  --radius: 16px;
  --gap: clamp(1rem, 2vw, 1.5rem);
  --font-sans: 'General Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Clash Display', 'General Sans', var(--font-sans);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .4em; }
p  { margin: 0 0 1rem; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Verlaufs-Text (Wort „Instagram") – statisch, ruhig (Apple-Stil) */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container--narrow { max-width: 880px; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.center .section-lead, .section-lead.center { margin-left: auto; margin-right: auto; }

.section { padding: clamp(3.25rem, 6vw, 5.25rem) 0; }
.section--alt { background: var(--bg-2); }
/* „Warum jetzt Instagram?" (Revision 2): heller Abschnitt mit Marken-Wash */
.section--warum {
  position: relative; overflow: hidden; color: var(--light-text);
  padding-top: clamp(2.4rem, 4vw, 3.6rem); padding-bottom: clamp(2.6rem, 5vw, 4rem);
  background:
    radial-gradient(38% 52% at 100% 6%, rgba(255,77,157,.18), transparent 62%),
    radial-gradient(34% 46% at 1% 96%, rgba(255,77,157,.14), transparent 64%),
    radial-gradient(42% 52% at 100% 100%, rgba(176,107,255,.18), transparent 64%),
    radial-gradient(52% 40% at 50% 0%, rgba(255,255,255,.9), transparent 70%),
    #fbf7fb;
}
.section--warum > .container { position: relative; z-index: 1; }
.section--warum h2 { color: var(--light-text); }
.section--warum p { color: var(--light-mut); }
.section--warum strong { color: var(--light-text); font-weight: 700; }

/* „Auf Instagram." mit Icon */
.warum-ig { position: relative; display: flex; align-items: center; justify-content: center; gap: .7rem; margin-top: -.35rem; padding-bottom: .85rem; }
.warum-ig::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(330px, 68%); height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 22%, var(--accent-2) 78%, transparent);
}
.warum-ig .grad { font-family: var(--font-display); font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 700; letter-spacing: -.01em; }
.warum-ig-mark { display: inline-flex; color: var(--accent); filter: drop-shadow(0 0 10px rgba(255,77,157,.75)); }
.warum-ig-mark svg { width: clamp(26px, 3.4vw, 34px); height: clamp(26px, 3.4vw, 34px); }
.section-lead { color: var(--text-mut); font-size: 1.14rem; line-height: 1.7; max-width: 60ch; margin-bottom: 3.2rem; }
.section h2 { margin-bottom: .9rem; }

/* ---------- a11y ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--accent); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-family: var(--font-sans); cursor: pointer;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--primary { background-image: var(--grad); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(255,77,157,.5); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
/* Lesbarkeits-Scrim, solange transparent (oben über dem Hero) */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,6,8,.6), transparent);
  transition: opacity .3s ease;
}
/* Beim Scrollen: getöntes Glas mit feiner Verlaufs-Linie statt flachem Schwarz */
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(26,16,38,.82), rgba(13,9,18,.7));
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(255,77,157,.55), rgba(176,107,255,.55), transparent) 1;
  box-shadow: 0 12px 34px -18px rgba(0,0,0,.85);
}
.site-header.scrolled::before { opacity: 0; }
/* Mobiles Menü offen -> Leiste solide */
.site-header.nav-open { background: #0b0a0f; backdrop-filter: none; -webkit-backdrop-filter: none; }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 104px; transition: min-height .3s ease; }
.site-header.scrolled .header-inner { min-height: 84px; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: .02em; display: inline-flex; gap: .35ch; }
.brand-mark--accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
/* Header laeuft breiter als der Inhalt, damit Logo und Navigation weiter links sitzen */
.site-header .container { max-width: 1340px; }
/* margin-right:auto verankert die Navigation am Logo statt am CTA */
/* Navigation mittig zwischen Logo und CTA statt am Logo klebend */
.main-nav { margin-left: auto; margin-right: auto; }
.main-nav ul { display: flex; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.main-nav a { position: relative; color: rgba(244,241,247,.82); font-weight: 500; font-size: .98rem; transition: color .2s ease; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: #fff; }
.header-cta { padding: .55rem 1.2rem; }
.menu-cta { display: none; }

/* Hamburger-Button (nur mobil) */
.nav-toggle { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 8px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }

  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #0b0a0f; border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
    padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: .9rem .2rem; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .main-nav a::after { display: none; }
  .menu-cta { display: block; width: 100%; text-align: center; margin-top: 1.1rem; }

  .site-header.nav-open .main-nav { transform: none; opacity: 1; pointer-events: auto; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero (Vollbild-Hintergrund) ---------- */
.hero {
  position: relative; overflow: hidden; min-height: min(80vh, 720px);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: clamp(2.2rem, 4vw, 3.6rem) 0 clamp(1.2rem, 2.2vw, 1.7rem);
  background: #07060a;
}
/* Hero-Foto: eigene Box im Bild-Seitenverhaeltnis, damit die weiche Kante
   immer exakt auf der Bildkante sitzt (unabhaengig von der Hero-Hoehe). */
.hero-photo {
  position: absolute; inset: auto auto 0 0; z-index: 0; pointer-events: none;
  width: 80%; aspect-ratio: 1568 / 883;
  background: url('/assets/hero-2026.jpg?v=1') center center / cover no-repeat;
  background-image: -webkit-image-set(url('/assets/hero-2026.webp?v=1') type('image/webp'), url('/assets/hero-2026.jpg?v=1') type('image/jpeg'));
  background-image: image-set(url('/assets/hero-2026.webp?v=1') type('image/webp'), url('/assets/hero-2026.jpg?v=1') type('image/jpeg'));
  filter: brightness(1.06) contrast(1.06) saturate(1.08);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 88%, transparent 100%), linear-gradient(90deg, #000 68%, transparent 97%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 88%, transparent 100%), linear-gradient(90deg, #000 68%, transparent 97%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
}
/* Lichtstimmung: Marken-Wash auf der Person, sanftes Abdunkeln Richtung Text */
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 56% at 14% 54%, rgba(176,107,255,.26), transparent 70%),
    linear-gradient(90deg, rgba(7,6,10,.28) 0%, rgba(7,6,10,.04) 26%, rgba(7,6,10,.3) 54%, rgba(7,6,10,.62) 72%, rgba(7,6,10,.8) 88%);
}
/* Tiefe im Gesamt-Hero */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 48% at 78% 8%, rgba(176,107,255,.15), transparent 68%),
    radial-gradient(46% 40% at 96% 92%, rgba(255,77,157,.1), transparent 70%);
}
/* Hero laeuft breiter als der uebrige Inhalt, damit der Text rechts aussen sitzt */
.hero > .container { max-width: 1460px; }
/* Text sitzt oben, die Nutzen-Pills werden ans untere Ende geschoben */
/* (Nutzen-Pills entfernt) */
.hero-inner { position: relative; z-index: 1; width: min(49%, 720px); margin-left: auto; margin-right: 0; text-align: left; }

/* Social-Element im Bildbereich, dezent schwebend */
.hero-ig {
  position: absolute; z-index: 1; left: clamp(1.5rem, 7vw, 6.5rem); bottom: clamp(7rem, 16vh, 10.5rem);
  display: flex; align-items: center; gap: .7rem;
  padding: .6rem .95rem .6rem .6rem; border-radius: 999px;
  background: rgba(16,12,22,.62); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 44px -20px rgba(0,0,0,.9);
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-ig-ring {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; color: #fff; background-image: var(--grad);
  box-shadow: 0 0 18px -3px rgba(255,77,157,.85);
}
.hero-ig-ring svg { width: 19px; height: 19px; }
.hero-ig-body { display: flex; flex-direction: column; line-height: 1.25; }
.hero-ig-body b { font-size: .86rem; font-weight: 600; }
.hero-ig-body i { font-style: normal; font-size: .74rem; color: var(--text-mut); }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.eyebrow { font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .95rem; color: #cfc6de; }
.eyebrow span { background-image: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 { font-size: clamp(1.95rem, 3.5vw, 2.8rem); line-height: 1.15; margin-bottom: 1.5rem; text-shadow: 0 2px 30px rgba(0,0,0,.55); }
.grad-2 { background: linear-gradient(95deg, #8f7bff 0%, #b06bff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 1.08rem; color: #d6d0e2; max-width: 50ch; margin: 0 0 clamp(2.1rem, 3.4vw, 2.8rem); line-height: 1.72; text-shadow: 0 1px 16px rgba(0,0,0,.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: flex-start; }

/* CTA-Buttons mit Glow und Glas-Look */
.btn--glow { box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 12px 28px -16px rgba(255,77,157,.55); }
.btn--glow:hover { box-shadow: 0 0 0 1px rgba(255,255,255,.14) inset, 0 16px 36px -16px rgba(255,77,157,.7); }
.btn-arrow { width: 17px; height: 17px; margin-left: .5rem; transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.btn--glow:hover .btn-arrow { transform: translateX(3px); }
.btn--glass {
  border: 1px solid rgba(255,255,255,.22); color: var(--text);
  background: rgba(255,255,255,.06); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 34px -18px rgba(0,0,0,.9);
}
.btn--glass:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.11); transform: translateY(-2px); }
.btn-play { width: 20px; height: 20px; margin-right: .55rem; color: var(--accent-2); }

/* Trust-Hinweise unter dem CTA */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: center;
  list-style: none; margin: 1.15rem 0 0; padding: 0;
  font-size: .88rem; color: #cec7dc;
}
.hero-trust li { display: inline-flex; align-items: center; gap: .45rem; text-shadow: 0 1px 12px rgba(0,0,0,.55); }
.hero-trust svg { width: 16px; height: 16px; color: var(--accent-2); flex: 0 0 auto; }

/* Nutzenvorteile als Pills unten im Hero */
.hero-pills {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center;
  gap: .55rem; list-style: none; margin: clamp(1.5rem, 3vw, 2.2rem) 0 0; padding: 0;
}
.hero-pills li {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1rem; border-radius: 999px; font-size: .84rem; font-weight: 500; color: #ded7ea;
  background: rgba(18,14,24,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 14px 34px -22px rgba(0,0,0,.95);
  transition: border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1), color .25s ease;
}
.hero-pills li:hover { border-color: rgba(176,107,255,.55); color: #fff; transform: translateY(-3px); }
.hero-pills svg { width: 16px; height: 16px; color: var(--accent-2); flex: 0 0 auto; }

@media (max-width: 1180px) {
  .hero-inner { width: min(60%, 620px); }
  .hero h1 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
}
@media (max-width: 1000px) {
  /* padding-bottom grosszuegig, damit die dritte Trust-Zeile auf keinem
     Geraet vom overflow:hidden des Hero abgeschnitten wird */
  .hero { min-height: 0; padding-top: 0; padding-bottom: clamp(2.6rem, 8vw, 3.4rem); margin-top: clamp(20px, 6vw, 40px); }
  /* Foto grossflaechig, laeuft weich aus; Text liegt darueber (wie am Desktop) */
  .hero-photo {
    inset: 0 auto auto 0; width: 100%; aspect-ratio: auto;
    height: clamp(360px, 78vw, 520px);
    background-position: 30% 32%; background-size: cover;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, rgba(0,0,0,.55) 74%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 52%, rgba(0,0,0,.55) 74%, transparent 100%);
    -webkit-mask-composite: source-over; mask-composite: add;
  }
  .hero-photo::after {
    background:
      radial-gradient(70% 58% at 32% 34%, rgba(176,107,255,.3), transparent 74%),
      linear-gradient(180deg, rgba(7,6,10,.28) 0%, rgba(7,6,10,.12) 30%, rgba(7,6,10,.55) 68%, rgba(7,6,10,.88) 100%);
  }
  .hero-inner {
    width: 100%; margin-left: 0;
    padding-top: clamp(290px, 62vw, 410px);
  }
  .hero-ig { left: 50%; transform: translateX(-50%); top: clamp(215px, 47vw, 320px); bottom: auto; }
  @keyframes heroFloat { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-7px); } }
  .hero h1 { font-size: clamp(1.8rem, 7.4vw, 2.3rem); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: .45rem 1.1rem; font-size: .84rem; }
  .hero-pills { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) { .hero-ig { animation: none; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.7rem; transition: border-color .2s ease, transform .2s ease; }
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card p { color: var(--text-mut); margin: 0; }
.card--list h3 { color: var(--text); }

/* ---------- Steps ---------- */
/* Ablauf-Schritte (Revision 2): Icon-Badge ueber der Karte, Pfeile dazwischen */
.steps {
  --badge: clamp(74px, 7.2vw, 104px);
  --badge-overlap: 22px;
  --step-gap: clamp(1rem, 2.4vw, 2.1rem);
  list-style: none; padding: 0;
  margin: calc(var(--badge) - var(--badge-overlap) + clamp(2.2rem, 4vw, 3.4rem)) 0 0;
  display: grid; gap: var(--step-gap); grid-template-columns: repeat(4, 1fr);
}
.step {
  position: relative;
  padding: calc(var(--badge-overlap) + 1.9rem) clamp(1rem, 1.7vw, 1.5rem) clamp(1.5rem, 2.2vw, 1.9rem);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.09);
  transition: border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(255,77,157,.4); box-shadow: 0 26px 56px -32px rgba(255,77,157,.75); }

/* Icon-Badge, ragt oben aus der Karte heraus */
.step-badge {
  position: absolute; left: 50%; top: calc(-1 * (var(--badge) - var(--badge-overlap)));
  transform: translateX(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--badge); height: var(--badge); border-radius: 24px;
  color: var(--accent);
  background: linear-gradient(160deg, rgba(30,16,32,.96), rgba(14,9,18,.98));
  border: 1px solid rgba(255,77,157,.55);
  box-shadow: 0 0 26px -4px rgba(255,77,157,.75), inset 0 0 20px -8px rgba(255,77,157,.9);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.step-badge svg { width: 48%; height: 48%; filter: drop-shadow(0 0 7px rgba(255,77,157,.6)); }
.step:hover .step-badge { transform: translateX(-50%) translateY(-4px); }
/* Farbverlauf ueber die Reihe: pink -> lila */
.step:nth-child(3) .step-badge { color: #cf7bff; border-color: rgba(176,107,255,.55); box-shadow: 0 0 26px -4px rgba(176,107,255,.75), inset 0 0 20px -8px rgba(176,107,255,.9); }
.step:nth-child(3) .step-badge svg { filter: drop-shadow(0 0 7px rgba(176,107,255,.6)); }
.step:nth-child(4) .step-badge { color: #b06bff; border-color: rgba(150,90,255,.6); box-shadow: 0 0 26px -4px rgba(150,90,255,.8), inset 0 0 20px -8px rgba(150,90,255,.9); }
.step:nth-child(4) .step-badge svg { filter: drop-shadow(0 0 7px rgba(150,90,255,.65)); }

/* Verbindungspfeil zwischen den Badges */
.step:not(:last-child)::after {
  content: ""; position: absolute; z-index: 1;
  top: calc(var(--badge-overlap) - var(--badge) / 2);
  left: calc(50% + var(--badge) / 2); width: calc(100% + var(--step-gap) - var(--badge));
  height: 14px; transform: translateY(-50%);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath d='M3 2l6 5-6 5' fill='none' stroke='%23ff4d9d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px 13px no-repeat,
    linear-gradient(90deg, rgba(255,77,157,.55), rgba(255,77,157,.55)) center / 100% 1px no-repeat;
}
.step:nth-child(3)::after {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath d='M3 2l6 5-6 5' fill='none' stroke='%23b06bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px 13px no-repeat,
    linear-gradient(90deg, rgba(176,107,255,.55), rgba(176,107,255,.55)) center / 100% 1px no-repeat;
}

.step-num { font-family: var(--font-display); font-size: clamp(1.9rem, 2.6vw, 2.3rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; line-height: 1; margin-bottom: .7rem; }
.step h3 { font-size: 1.08rem; line-height: 1.32; margin-bottom: .9rem; }
.step p { color: var(--text-mut); font-size: .92rem; line-height: 1.62; margin: 0; }

@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: calc(var(--badge) - var(--badge-overlap) + 1.6rem); }
  .step:nth-child(2)::after { display: none; }
}
@media (max-width: 620px) {
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
}



/* ---------- Helle Benefit-Sektion ---------- */
/* Helle Sektion (Revision 2): weicher Marken-Wash, weisse Karten, CTA darunter */
.section--light {
  position: relative; overflow: hidden; color: var(--light-text);
  background:
    radial-gradient(44% 58% at 1% 24%, rgba(255,77,157,.16), transparent 62%),
    radial-gradient(40% 54% at 99% 80%, rgba(176,107,255,.16), transparent 64%),
    radial-gradient(52% 46% at 50% 2%, rgba(255,255,255,.85), transparent 66%),
    #fbf7fb;
}
.section--light h2 { color: var(--light-text); }
.section--light > .container { position: relative; z-index: 1; }

/* Zierteiler mit Funkeln unter der Ueberschrift */
.benefit-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1.4rem 0 0; }
.benefit-divider::before, .benefit-divider::after {
  content: ""; width: clamp(70px, 12vw, 130px); height: 1px;
}
.benefit-divider::before { background: linear-gradient(90deg, transparent, rgba(255,77,157,.55)); }
.benefit-divider::after  { background: linear-gradient(90deg, rgba(176,107,255,.55), transparent); }
.benefit-divider svg { width: 17px; height: 17px; color: var(--accent); flex: 0 0 auto; }

.benefits { margin-top: clamp(2.2rem, 4vw, 3rem); }
.benefit {
  text-align: center; padding: clamp(1.5rem, 2.4vw, 2rem) clamp(1rem, 1.8vw, 1.5rem) clamp(1.6rem, 2.6vw, 2.1rem);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fdfbfe);
  border: 1px solid rgba(176,107,255,.13);
  box-shadow: 0 18px 40px -30px rgba(70,40,95,.45);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
}
.benefit:hover {
  transform: translateY(-5px); border-color: rgba(255,77,157,.3);
  box-shadow: 0 26px 54px -30px rgba(255,77,157,.55);
}
.benefit-icon { display: inline-flex; margin-bottom: 1.15rem; }
.benefit-icon svg { width: 52px; height: 52px; }
.benefit h3 { color: var(--light-text); font-weight: 700; font-size: 1.06rem; margin: 0 0 .75rem; }
/* kurzer Verlaufsstrich unter dem Titel */
.benefit h3::after {
  content: ""; display: block; width: 34px; height: 2px; border-radius: 2px;
  margin: .7rem auto 0; background-image: var(--grad); opacity: .55;
}
.benefit p { color: var(--light-mut); font-size: .92rem; line-height: 1.65; margin: 0; }

/* CTA unter den Karten */
.benefit-cta { text-align: center; margin-top: clamp(2.2rem, 4vw, 3.2rem); }
.benefit-cta .btn { color: #fff; }
.benefit-cta-sub { color: var(--light-mut); font-size: .88rem; margin: .9rem 0 0; }

/* ---------- Vergleich: Andere vs. TISO MEDIA (Revision 2) ---------- */
/* Marken-Glow oben rechts */
.section--vs { position: relative; overflow: hidden; }
.section--vs::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(26% 46% at 100% 8%, rgba(255,77,157,.16), transparent 66%),
    radial-gradient(22% 40% at 99% 30%, rgba(176,107,255,.14), transparent 70%);
}
.section--vs > .container { position: relative; z-index: 1; }
.eyebrow--vs { color: var(--accent); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .8rem; }
.eyebrow--vs { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Vergleich als ZWEI getrennte Karten, Pfeile schweben im Zwischenraum */
.vs-table { margin-top: 2.8rem; border: 0; background: none; overflow: visible; }

.vs-head, .vs-row { display: grid; grid-template-columns: minmax(0,1fr) clamp(30px, 7vw, 96px) minmax(0,1fr); align-items: stretch; }
.vs-rows { list-style: none; margin: 0; padding: 0; }

/* gemeinsame Kartenkanten links + rechts */
/* beide Karten gleich praesent, damit der Zwischenraum klar erkennbar ist */
.vs-col--other, .vs-cell--other { border-left: 1px solid rgba(255,255,255,.16); border-right: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.055); }
.vs-col--tiso,  .vs-cell--tiso  { border-left: 1px solid rgba(176,107,255,.34); border-right: 1px solid rgba(176,107,255,.34); background: rgba(176,107,255,.075); }

/* Kopfzeile = Oberkante der jeweiligen Karte */
.vs-col { padding: 1.05rem clamp(1rem, 3vw, 1.6rem); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.vs-col--other { color: var(--text-mut); border-top: 1px solid rgba(255,255,255,.16); border-radius: 14px 14px 0 0; }
.vs-col--tiso  { color: #fff; border-top: 1px solid rgba(176,107,255,.3); border-radius: 14px 14px 0 0; background: linear-gradient(180deg, rgba(176,107,255,.16), rgba(176,107,255,.06)); }
.vs-col--mid { background: none; border: 0; }

/* Zeilen */
.vs-cell { display: flex; align-items: center; gap: .7rem; padding: 1rem clamp(1rem, 3vw, 1.6rem); font-size: 1rem; line-height: 1.35; }
.vs-row .vs-cell { border-top: 1px solid rgba(176,107,255,.14); }
.vs-row:last-child .vs-cell--other { border-bottom: 1px solid rgba(255,255,255,.16); border-radius: 0 0 14px 14px; }
.vs-row:last-child .vs-cell--tiso  { border-bottom: 1px solid rgba(176,107,255,.3);  border-radius: 0 0 14px 14px; }
.vs-ico { flex: 0 0 auto; width: 22px; height: 22px; }
.vs-cell--other { color: var(--text-mut); opacity: .62; }            /* Konkurrenz verblasst */
.vs-cell--other .vs-ico { color: #ff5a5a; }
.vs-cell--tiso { color: var(--text); font-weight: 600; }
.vs-cell--tiso .vs-ico { color: #3ed598; }

/* Pfeil frei im Zwischenraum, ohne Rahmen/Hintergrund */
.vs-arrow { display: inline-flex; align-items: center; justify-content: center; color: var(--accent-2); background: none; border: 0; }
.vs-arrow svg { width: clamp(26px, 3vw, 36px); height: auto; filter: drop-shadow(0 0 6px rgba(176,107,255,.6)); }

/* Fazit-Leiste unten */
.vs-outcome {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: clamp(.6rem, 2vw, 1.4rem);
  margin-top: clamp(.9rem, 2vw, 1.3rem);
  padding: clamp(1.1rem, 2.4vw, 1.7rem) clamp(1rem, 3vw, 1.8rem);
  border: 1px solid rgba(176,107,255,.32); border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,77,157,.12) 0%, rgba(176,107,255,.05) 50%, rgba(176,107,255,.14) 100%);
}
.vs-outcome-side { font-family: var(--font-display); font-weight: 700; font-size: clamp(.98rem, 1.7vw, 1.18rem); line-height: 1.3; margin: 0; }
.vs-outcome-side--other { text-align: left; color: #ff7a9c; }
.vs-outcome-side--tiso { text-align: right; color: #c79bff; }
.vs-outcome-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; color: #fff;
  border: 1px solid rgba(176,107,255,.5);
  background: linear-gradient(120deg, rgba(255,77,157,.25), rgba(176,107,255,.25));
  box-shadow: 0 0 22px -6px rgba(176,107,255,.8);
}
.vs-outcome-arrow svg { width: 22px; height: 22px; }

@media (max-width: 560px) {
  .vs-col, .vs-cell { padding-inline: .8rem; font-size: .9rem; }
  .vs-ico { width: 18px; height: 18px; }
  /* Pfeile in der Mitte weglassen, Platz fuer Text */
  .vs-head, .vs-row { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  /* lange Woerter: saubere deutsche Silbentrennung statt harter Umbruch */
  .vs-cell { min-width: 0; -webkit-hyphens: auto; hyphens: auto; overflow-wrap: break-word; }
  .vs-col, .vs-cell { font-size: .86rem; padding-inline: .7rem; }
  .vs-arrow, .vs-col--mid { display: none; }
  .vs-outcome-side { font-size: .9rem; }
  .vs-outcome-arrow { width: 38px; height: 38px; }
  .vs-outcome-arrow svg { width: 18px; height: 18px; }
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); margin: 2.4rem 0 0; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; text-align: center; display: flex; flex-direction: column; }
.stat dt { color: var(--text-mut); font-size: .92rem; order: 2; }
.stat dd { margin: 0 0 .3rem; order: 1; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }

/* ---------- Checklist ---------- */
/* Zwei Spalten, als Block zentriert, Text linksbuendig und Haken direkt davor */
.checklist {
  list-style: none; padding: 0;
  margin: clamp(2rem, 3.4vw, 2.7rem) auto 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: center; width: fit-content;
  gap: 1.05rem clamp(1.8rem, 5vw, 4.5rem);
  text-align: left;
}
@media (max-width: 620px) { .checklist { grid-template-columns: minmax(0, max-content); gap: .95rem; } }
.checklist li { display: flex; align-items: flex-start; gap: .8rem; font-size: 1.05rem; line-height: 1.5; }
.checklist li::before {
  content: "✓"; flex: 0 0 auto; color: var(--accent); font-weight: 700;
  font-size: 1.05em; line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2.4rem; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); margin-bottom: .8rem; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; display: flex; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font-size: 1.08rem; flex: 1; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform .2s ease; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > p { padding: 0 1.4rem 1.3rem; margin: 0; color: var(--text-mut); }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(180deg, var(--bg-2), var(--bg)); text-align: center; }
.cta-inner h2 { margin-bottom: .8rem; }
.cta-inner p { color: var(--text-mut); max-width: 54ch; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 3rem 0 2rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 32ch; }
.footer-brand p { color: var(--text-mut); margin: .8rem 0 0; font-size: .95rem; }
.footer-nav, .footer-social { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a, .footer-social a { color: var(--text-mut); font-size: .95rem; }
.footer-nav a:hover, .footer-social a:hover { color: var(--text); }
.footer-legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-legal p { color: var(--text-mut); font-size: .88rem; margin: 0; }

/* ---------- Reveal (Apple-Feel: weiches Fade + Scale + Blur) ---------- */
.reveal {
  opacity: 0; transform: translateY(42px) scale(.965); filter: blur(8px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1), filter 1s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* =========================================================
   EFFEKTE (Logo, Aurora, Cursor-Glow, Karten-Spotlight,
   Button-Sheen, Scroll-Progress). Alle bewegungsbasierten
   Effekte werden via prefers-reduced-motion abgeschaltet.
   ========================================================= */

/* ---------- Logo-Marke ---------- */
.brand { align-items: center; gap: .6rem; }
.brand-text { display: inline-flex; gap: .35ch; }
.logo-mark { display: block; flex: 0 0 auto; transition: transform .5s cubic-bezier(.2,.8,.2,1); filter: drop-shadow(0 0 10px rgba(255,77,157,.35)); }
.brand:hover .logo-mark { transform: rotate(-8deg) scale(1.08); }
.logo-mark .logo-dot { transform-box: fill-box; transform-origin: center; animation: dotPulse 2.6s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .65; } }
.footer-brand .brand { align-items: center; }

/* ---------- Scroll-Fortschrittsbalken ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 200; box-shadow: 0 0 12px rgba(255,77,157,.6); will-change: width; }

/* ---------- Cursor-Spotlight ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%;
  margin: -230px 0 0 -230px; pointer-events: none; z-index: 60; opacity: 0;
  background: radial-gradient(circle, rgba(255,77,157,.12), rgba(176,107,255,.07) 42%, transparent 70%);
  mix-blend-mode: screen; transition: opacity .35s ease; will-change: transform;
}
.cursor-glow.on { opacity: 1; }

/* ---------- Hero-Aurora (bewegte Glows) ---------- */
.hero-aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-aurora::before, .hero-aurora::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.hero-aurora::before { width: 540px; height: 540px; top: -12%; left: 52%; background: radial-gradient(circle, #ff4d9d, transparent 60%); animation: drift1 16s ease-in-out infinite; }
.hero-aurora::after { width: 500px; height: 500px; bottom: -18%; left: 30%; background: radial-gradient(circle, #6a5cff, transparent 60%); animation: drift2 20s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px,46px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,-34px) scale(1.07); } }

/* ---------- Karten-Spotlight (folgt der Maus) ---------- */
.card { position: relative; overflow: hidden; }
/* .step darf NICHT overflow:hidden bekommen, sonst wird das ueberstehende
   Icon-Badge abgeschnitten. Der Spotlight bleibt durch inset:0 trotzdem drin. */
.step { position: relative; }
.card > *, .step > * { position: relative; z-index: 1; }
.card::before, .step::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx,50%) var(--my,50%), rgba(255,77,157,.18), rgba(176,107,255,.10) 42%, transparent 66%);
  transition: opacity .35s ease;
}
.card:hover::before, .step:hover::before { opacity: 1; }
/* Badge muss absolut bleiben (steht nach .step > * und gewinnt dadurch) */
.step > .step-badge { position: absolute; z-index: 2; }

/* ---------- Button-Sheen ---------- */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); transition: left .65s ease; pointer-events: none;
}
.btn--primary:hover::after { left: 150%; }
.magnetic { will-change: transform; transition: transform .2s cubic-bezier(.2,.8,.2,1); }

/* ---------- Benefit-Icon Hover ---------- */
.benefit-icon { transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.benefit:hover .benefit-icon { transform: translateY(-5px) scale(1.1); }

/* ---------- Tabelle: Hover-Zeile ---------- */
.compare-table tbody tr { transition: background .25s ease; }
.compare-table tbody tr:hover { background: rgba(255,77,157,.10); }

/* ---------- Stat-Karten Glow ---------- */
.stat { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.stat:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 16px 40px -18px rgba(255,77,157,.5); }

/* ---------- FAQ Hover ---------- */
.faq-item { transition: border-color .25s ease; }
.faq-item:hover { border-color: rgba(255,77,157,.5); }

/* ---------- Reduced motion: alle Effekte ruhigstellen ---------- */
@media (prefers-reduced-motion: reduce) {
  .grad, .logo-mark .logo-dot, .hero-aurora::before, .hero-aurora::after { animation: none !important; }
  .cursor-glow { display: none !important; }
  .grad { background-position: 0 center; }
}

/* =========================================================
   LOGO v2 (Gradient-Badge mit DM-Send-Glyph)
   ========================================================= */
.logo-badge {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 11px;
  background-image: var(--grad); display: inline-flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 6px 20px -6px rgba(255,77,157,.65), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.logo-bars { position: relative; z-index: 1; filter: drop-shadow(0 1px 2px rgba(0,0,0,.22)); }
.logo-bars rect { transform-box: fill-box; transform-origin: bottom; }
.brand:hover .logo-bars rect { animation: barGrow .5s ease; }
.brand:hover .logo-bars rect:nth-child(2) { animation-delay: .06s; }
.brand:hover .logo-bars rect:nth-child(3) { animation-delay: .12s; }
@keyframes barGrow { 0% { transform: scaleY(.55); } 60% { transform: scaleY(1.08); } 100% { transform: scaleY(1); } }
.logo-badge::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.5) 50%, transparent 62%);
  transform: translateX(-130%);
}
.brand:hover .logo-badge { transform: rotate(-6deg) scale(1.07); }
.brand:hover .logo-badge::after { transform: translateX(130%); transition: transform .75s ease; }
.footer-brand .logo-badge { width: 32px; height: 32px; border-radius: 9px; }

/* =========================================================
   HERO: thematischer Hintergrund (Punkte-Grid) + Glass-Cards
   ========================================================= */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .7;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 45% 42%, #000 28%, transparent 76%);
          mask-image: radial-gradient(ellipse 78% 62% at 45% 42%, #000 28%, transparent 76%);
  animation: gridPan 38s linear infinite;
}
@keyframes gridPan { to { background-position: 34px 34px; } }

/* Schwebende System-Karten im zentrierten Hero ausgeblendet (würden Text überlappen) */
.hero-visual { display: none; }
.hero-card {
  position: absolute; display: flex; gap: .8rem; align-items: center;
  background: rgba(18,15,24,.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: .9rem 1.05rem;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.8); color: #fff;
}
.hero-card .hc-body strong { font-size: .92rem; font-weight: 600; display: block; }
.hero-card .hc-body p { margin: .15rem 0 0; font-size: .8rem; line-height: 1.4; color: var(--text-mut); }
.hc-avatar, .hc-check {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #fff; background-image: var(--grad);
}
.hc-check { font-size: 1.1rem; }
.hero-card--dm   { top: 4%;  left: -4%;  width: 290px; animation: floatA 6.5s ease-in-out infinite; }
.hero-card--book { top: 42%; right: -6%; width: 255px; animation: floatB 7.5s ease-in-out infinite; }
.hero-card--stat { bottom: 4%; left: 6%; width: 180px; flex-direction: column; align-items: flex-start; gap: .15rem; animation: floatA 8.5s ease-in-out infinite; }
.hero-card--stat .hc-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; background-image: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-card--stat p { margin: 0; font-size: .82rem; color: var(--text-mut); }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(13px); } }

/* Reduced motion: Hero-Visual-Bewegung & Grid ruhigstellen */
@media (prefers-reduced-motion: reduce) {
  .hero-card { animation: none !important; }
  .hero-grid { animation: none !important; }
  .logo-badge, .logo-badge::after { transition: none !important; }
  .logo-bars rect { animation: none !important; }
}

/* =========================================================
   MEHR EFFEKTE: Marquee, 3D-Tilt, CTA-Glow, Ambient-Glow
   ========================================================= */

/* ---------- Laufband / Marquee ---------- */
.marquee {
  overflow: hidden; background: var(--bg-2); border-block: 1px solid var(--border);
  padding: 1.05rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 1.4rem; padding-right: 1.4rem; margin: 0; list-style: none; }
.marquee-group li {
  white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--text-mut); border: 1px solid var(--border); border-radius: 999px;
  padding: .5rem 1.15rem; background: var(--surface); transition: color .2s ease, border-color .2s ease;
}
.marquee-group li:hover { color: #fff; border-color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 3D-Tilt: weiche Transition beim Verlassen ---------- */
.card, .step { transition: border-color .2s ease, transform .35s cubic-bezier(.2,.8,.2,1); will-change: transform; }

/* ---------- Ambient-Glow in dunklen Sektionen ---------- */
#bausteine, #ergebnisse { position: relative; overflow: hidden; }
#bausteine > .container, #ergebnisse > .container { position: relative; z-index: 1; }
#bausteine::before, #ergebnisse::before {
  content: ""; position: absolute; z-index: 0; width: 520px; height: 520px; border-radius: 50%;
  filter: blur(90px); opacity: .16; pointer-events: none;
  background: radial-gradient(circle, var(--accent-2), transparent 60%);
  top: -12%; right: -6%; animation: drift2 24s ease-in-out infinite;
}
#ergebnisse::before { background: radial-gradient(circle, var(--accent), transparent 60%); left: -8%; right: auto; top: auto; bottom: -14%; animation: drift1 26s ease-in-out infinite; }

/* ---------- CTA: animierter Verlaufs-Rahmen + Glow ---------- */
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.cta-inner {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 26px; padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.4rem, 4vw, 3rem);
  box-shadow: 0 30px 80px -40px rgba(255,77,157,.6);
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.6px;
  background: conic-gradient(from var(--angle), rgba(255,77,157,.05), #ff4d9d, #b06bff, #6a5cff, rgba(255,77,157,.05));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: borderSpin 8s linear infinite; pointer-events: none;
}
@keyframes borderSpin { to { --angle: 360deg; } }
.cta .btn--primary { animation: ctaPulse 2.8s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(255,77,157,.45); }
  50%      { box-shadow: 0 16px 46px -6px rgba(255,77,157,.8); }
}

/* ---------- Reduced motion: alle neuen Effekte ruhigstellen ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .cta-inner::before, .cta .btn--primary,
  #bausteine::before, #ergebnisse::before { animation: none !important; }
  .card, .step { transition: border-color .2s ease !important; }
}

/* =========================================================
   CONVERSION: Mikro-Trust, CTA-Band, CTA-Punkte
   ========================================================= */
.hero-microtrust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .35rem 1rem; margin: 1.5rem 0 0; padding: 0; color: #e7e3f0; font-size: .92rem; font-weight: 500; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.hero-microtrust span { position: relative; padding-left: 1.4rem; }
.hero-microtrust span::before { content: "·"; position: absolute; left: .55rem; color: var(--accent-2); font-weight: 700; }
.hero-microtrust span:first-child { padding-left: 0; }
.hero-microtrust span:first-child::before { content: none; }
/* Mobil: sauber gestapelt, jede Zeile mit eigenem Punkt – kein danebenhängender Trenner */
@media (max-width: 600px) {
  .hero-microtrust { flex-direction: column; align-items: center; gap: .5rem; }
  .hero-microtrust span, .hero-microtrust span:first-child { padding-left: 1.2rem; }
  .hero-microtrust span::before, .hero-microtrust span:first-child::before { content: "•"; left: 0; color: var(--accent); }
}

/* ---------- „Nächster Schritt"-CTA-Karte ---------- */
.next-step {
  position: relative; text-align: center;
  background: linear-gradient(180deg, rgba(26,16,38,.9), rgba(12,9,18,.85));
  border: 1px solid rgba(176,107,255,.3); border-radius: 26px;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.4rem, 4vw, 3rem);
  box-shadow: 0 30px 80px -40px rgba(255,77,157,.55);
}
.next-step-eyebrow { display: inline-block; color: var(--accent-2); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .9rem; }
.next-step-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 auto .9rem; max-width: 22ch; }
.next-step-text { color: var(--text-mut); max-width: 62ch; margin: 0 auto clamp(1.8rem, 3.5vw, 2.4rem); }
.next-step-cta { box-shadow: 0 14px 40px -10px rgba(255,77,157,.7); }
.next-step-trust {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: .8rem clamp(1rem, 3vw, 2.4rem); padding: 0; margin: clamp(1.8rem, 3.5vw, 2.4rem) 0 0;
}
.next-step-trust li {
  display: flex; flex-direction: column; gap: .1rem; min-width: 140px;
  border: 1px solid var(--border); border-radius: 14px; padding: .7rem 1rem; background: rgba(255,255,255,.03);
}
.next-step-trust strong { font-size: .95rem; color: var(--text); }
.next-step-trust span { font-size: .84rem; color: var(--text-mut); }
.next-step-proof { margin: 1.4rem 0 0; color: var(--text-mut); font-size: .92rem; }
.next-step-proof strong { color: var(--green); }

.cta-band-section { padding: clamp(1rem, 3vw, 2.2rem) 0; }
.cta-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.3rem 2rem;
  background: var(--grad-soft); border: 1px solid rgba(255,77,157,.32); border-radius: 22px;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.4rem);
}
.cta-band-text { margin: 0; font-size: 1.12rem; max-width: 64ch; flex: 1 1 340px; }
.cta-band .btn { flex: 0 0 auto; }

.section-cta-text { margin: 2.4rem auto 1.3rem; color: var(--text-mut); font-size: 1.08rem; max-width: 50ch; }

.cta-points { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.7rem; padding: 0; margin: 0 0 clamp(2.4rem, 5vw, 3.4rem); }
.cta-points li { position: relative; padding-left: 1.5rem; color: var(--text); font-size: .98rem; }
.cta-points li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-2); font-weight: 700; }
.cta-inner .cta-sub { margin: clamp(1.8rem, 3.5vw, 2.6rem) auto 0; color: var(--text-mut); font-size: .9rem; }

/* =========================================================
   RESPONSIVE-FEINSCHLIFF (Mobil)
   ========================================================= */
.btn { max-width: 100%; }

@media (max-width: 560px) {
  /* Lange CTA-Buttons dürfen umbrechen & werden full-width (bessere Tap-Fläche) */
  .btn--lg { white-space: normal; text-align: center; line-height: 1.25; }
  .hero-actions .btn--lg,
  .cta-inner .btn--lg,
  .cta-band .btn--lg,
  #fuer-wen .btn--lg { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }

  /* Tabellen-Scrollhinweis sichtbar lassen */
  .table-hint { display: block; }
}

/* =========================================================
   UNSERE LEISTUNGEN (4 Spalten, Problem -> Lösung)
   ========================================================= */
/* Label-Pill über Sektions-Überschriften */
/* Dezente Kennzeichnung, KEIN Button-Look (clasht sonst mit dem echten CTA) */
.section-pill {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .05em; text-transform: uppercase;
  color: #ff7ab8; background: transparent;
  border: 1px solid rgba(255,77,157,.45);
  padding: .42rem .95rem; border-radius: 999px; margin-bottom: 1.1rem;
}

/* Leistungs-Kacheln im 2×2-Karten-Grid (Icon · Titel · Text · Button) */
.leistungen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.1rem, 2vw, 1.4rem); margin-top: clamp(2.4rem, 4vw, 3.2rem); }
@media (max-width: 760px) { .leistungen-grid { grid-template-columns: 1fr; } }

/* Karte: grosses Glow-Icon links, Inhalt rechts (Revision 2) */
.leistung {
  position: relative; display: grid; grid-template-columns: auto minmax(0,1fr);
  gap: clamp(1rem, 2.1vw, 1.75rem); align-items: start;
  padding: clamp(1.5rem, 2.6vw, 2.15rem); border-radius: 20px;
  cursor: pointer; text-align: left; overflow: hidden;
  background: linear-gradient(158deg, rgba(255,77,157,.05), rgba(176,107,255,.03) 55%, rgba(255,255,255,.012));
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.leistung::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(150deg, rgba(255,77,157,.65), rgba(176,107,255,.45) 52%, rgba(255,255,255,.07));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: background .25s ease;
}
.leistung > * { position: relative; }
.leistung:hover, .leistung:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -30px rgba(255,77,157,.75);
}
.leistung:hover::before, .leistung:focus-visible::before {
  background: linear-gradient(150deg, rgba(255,77,157,.95), rgba(176,107,255,.7) 52%, rgba(255,255,255,.12));
}

/* Icon im Glow-Kreis */
.leistung-icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: clamp(74px, 7.6vw, 108px); height: clamp(74px, 7.6vw, 108px);
  border-radius: 50%; margin: 0; color: var(--accent);
  background: radial-gradient(circle at 50% 50%, rgba(255,77,157,.14), rgba(176,107,255,.06) 62%, transparent 74%);
  border: 1px solid rgba(255,77,157,.42);
  box-shadow: 0 0 26px -6px rgba(255,77,157,.75), inset 0 0 22px -8px rgba(176,107,255,.8);
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.leistung-icon svg { width: 42%; height: 42%; filter: drop-shadow(0 0 8px rgba(255,77,157,.65)); }
.leistung:hover .leistung-icon {
  transform: scale(1.05); border-color: rgba(255,77,157,.7);
  box-shadow: 0 0 34px -4px rgba(255,77,157,.95), inset 0 0 26px -8px rgba(176,107,255,.95);
}

.leistung-body { display: flex; flex-direction: column; min-width: 0; }
.leistung h3 { font-family: var(--font-display); font-size: clamp(1.1rem, 1.5vw, 1.28rem); font-weight: 700; line-height: 1.25; margin: 0 0 .55rem; }
.leistung-teaser { color: var(--text-mut); font-size: .95rem; line-height: 1.62; margin: 0 0 1.15rem; }

/* Pill-Button mit Icon, Text und Chevron */
.leistung-btn {
  align-self: flex-start; margin-top: auto;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .58rem 1rem .58rem .95rem; border-radius: 999px;
  border: 1px solid rgba(255,77,157,.5); background: rgba(255,77,157,.05);
  color: var(--accent); font-weight: 500; font-size: .9rem; line-height: 1.2;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.leistung-btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
.leistung-btn .lb-text { white-space: nowrap; }
.leistung-btn .lb-chev { color: #efe9f5; margin-left: .15rem; transition: transform .2s ease; }
.leistung:hover .leistung-btn, .leistung:focus-visible .leistung-btn {
  border-color: var(--accent); background: rgba(255,77,157,.14); color: #ff9ec8;
}
.leistung:hover .leistung-btn .lb-chev, .leistung:focus-visible .leistung-btn .lb-chev { transform: translateX(3px); }

@media (max-width: 520px) {
  .leistung { grid-template-columns: 1fr; gap: 1.1rem; }
  .leistung-btn { font-size: .85rem; padding: .55rem .85rem; }
  .leistung-btn .lb-text { white-space: normal; }
}

/* Hinweiszeile unter den Kennzahlen */
.stats-note { text-align: center; color: var(--text-mut); font-size: .82rem; margin: 1.4rem 0 0; }

/* =========================================================
   PROBLEM-SEKTION (3 Pain Points mit Gradient-Kugeln)
   ========================================================= */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 4rem); margin-top: 3.4rem; }
@media (max-width: 820px) { .problems-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

.problem { text-align: center; }
.problem-icon {
  position: relative; isolation: isolate;
  display: flex; align-items: center; justify-content: center;
  width: clamp(78px, 9vw, 94px); aspect-ratio: 1; margin: 0 auto 1.7rem; border-radius: 50%;
  background: var(--surface); color: #fff;
  box-shadow: 0 18px 42px -18px rgba(176,107,255,.55);
  animation: floatA 6s ease-in-out infinite;
}
/* rotierender Verlaufs-Ring */
.problem-icon::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%; z-index: -1;
  background: conic-gradient(#ff4d9d, #b06bff, #6a5cff, #ff4d9d);
  animation: ringSpin 6.5s linear infinite;
}
.problem-icon svg { width: 42%; height: 42%; transition: transform .3s ease; }
.problem:nth-child(2) .problem-icon { animation-delay: .7s; }
.problem:nth-child(3) .problem-icon { animation-delay: 1.4s; }
.problem:hover .problem-icon { box-shadow: 0 24px 54px -16px rgba(255,77,157,.6); }
.problem:hover .problem-icon svg { transform: scale(1.1); }
@keyframes ringSpin { to { transform: rotate(360deg); } }
.problem h3 { font-size: 1.22rem; margin-bottom: 1.1rem; }
.problem p { color: var(--text-mut); max-width: 34ch; margin-inline: auto; }

/* ---------- Problembereich (Revision 2): nummerierte Karten + Ansatz ---------- */
.eyebrow--danger { color: var(--accent); margin-bottom: .7rem; letter-spacing: .16em; }
.problem-sub { color: var(--text-mut); font-size: 1.02rem; max-width: 66ch; margin: 0 auto; }
.problem-sub-mark { color: var(--accent); font-weight: 600; }

/* Karten mit Nummernbadge auf der Oberkante, verbunden durch eine Linie */
.section--problem .problems-grid {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4.85vw, 4.4rem);
  margin: clamp(3rem, 5vw, 4rem) 0 0;
}
.section--problem .problem {
  position: relative; text-align: center;
  padding: clamp(2.6rem, 3.7vw, 3.3rem) clamp(1rem, 1.9vw, 1.5rem) clamp(1.5rem, 2.2vw, 2rem);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,77,157,.055), rgba(255,77,157,.012));
  border: 1px solid rgba(255,77,157,.26);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.section--problem .problem:hover {
  border-color: rgba(255,77,157,.55);
  box-shadow: 0 26px 56px -30px rgba(255,77,157,.7);
  transform: translateY(-4px);
}
/* Verbindungslinie zwischen den Karten, auf Hoehe der Nummern */
.section--problem .problem:not(:last-child)::after {
  content: ""; position: absolute; top: 0; left: 100%; width: clamp(1.6rem, 4.85vw, 4.4rem); height: 1px;
  background: linear-gradient(90deg, rgba(255,77,157,.6), rgba(255,77,157,.6));
}
.problem-num {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: #ffd0e4;
  background: #120a12; border: 1px solid rgba(255,77,157,.55);
  box-shadow: 0 0 18px -4px rgba(255,77,157,.8);
}
.section--problem .problem-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 66px; height: 66px; margin: 0 0 1.4rem; border-radius: 0;
  background: none; box-shadow: none; animation: none; color: var(--accent);
}
.section--problem .problem-icon::before { display: none; }
.section--problem .problem-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(255,77,157,.5)); }
.section--problem .problem:hover .problem-icon svg { transform: scale(1.06); }
.section--problem .problem h3 { font-size: 1.15rem; line-height: 1.34; margin-bottom: .8rem; letter-spacing: -.015em; }
.section--problem .problem p { color: var(--text-mut); font-size: .86rem; line-height: 1.72; max-width: none; margin-inline: auto; }

@media (max-width: 820px) {
  .section--problem .problems-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; gap: 2.3rem; }
  .section--problem .problem:not(:last-child)::after {
    top: 100%; left: 50%; width: 1px; height: 2.3rem;
    background: linear-gradient(180deg, rgba(255,77,157,.45), rgba(255,77,157,.45));
  }
}

/* „Unser Ansatz" */
.approach {
  position: relative; display: flex; align-items: center; gap: clamp(1.2rem, 3.5vw, 3.2rem);
  margin-top: clamp(1.8rem, 3.4vw, 2.8rem);
  padding: clamp(1.5rem, 2.8vw, 2.2rem) clamp(1.6rem, 4.6vw, 4.2rem);
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(120deg, rgba(255,77,157,.12), rgba(176,107,255,.07) 55%, rgba(255,255,255,.015));
  border: 1px solid rgba(255,77,157,.4);
  box-shadow: 0 30px 70px -46px rgba(255,77,157,.9);
}
.approach-icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: clamp(78px, 8.2vw, 116px); height: clamp(78px, 8.2vw, 116px); border-radius: 50%; color: var(--accent);
  border: 1px solid rgba(255,77,157,.4); background: rgba(255,77,157,.1);
  box-shadow: 0 0 28px -8px rgba(255,77,157,.85);
}
.approach-icon svg { width: 48%; height: 48%; }
.approach-eyebrow { font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 .35rem; }
.approach h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 1.85rem); font-weight: 700; margin: 0 0 .5rem; }
.approach-text { color: var(--text-mut); font-size: 1rem; line-height: 1.6; margin: 0; max-width: 62ch; }
.mark-pink { color: var(--accent); font-weight: 600; }
.mark-purple { color: var(--accent-2); font-weight: 600; }
@media (max-width: 640px) { .approach { flex-direction: column; align-items: flex-start; text-align: left; } }

/* Social Proof unter dem Ansatz */
.proof-row { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: clamp(1.4rem, 2.6vw, 2rem); flex-wrap: wrap; }
.proof-avatars { display: inline-flex; align-items: center; }
.proof-avatar, .proof-count {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid #0c0810;
  display: inline-flex; align-items: center; justify-content: center;
}
.proof-avatar + .proof-avatar, .proof-count { margin-left: -13px; }
.proof-avatar { background: linear-gradient(150deg, #3a2b46, #241a2e); position: relative; }
.proof-avatar::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,.4) 0 17%, transparent 18%),
    radial-gradient(ellipse 46% 30% at 50% 82%, rgba(255,255,255,.4) 0 60%, transparent 61%);
}
.proof-count { width: auto; min-width: 48px; padding: 0 .5rem; margin-left: -9px; background-image: var(--grad); color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .01em; box-shadow: 0 0 18px -5px rgba(176,107,255,.9); }
.proof-text { color: var(--text-mut); font-size: .92rem; line-height: 1.5; margin: 0; text-align: left; }

/* =========================================================
   LEISTUNGS-UNTERSEITEN (eigene Seite je Leistung)
   ========================================================= */
.lp-hero {
  position: relative; overflow: hidden;
  padding: clamp(6.5rem, 12vw, 9rem) 0 clamp(2.6rem, 6vw, 4rem);
  background: radial-gradient(ellipse 80% 70% at 20% 0%, rgba(176,107,255,.16), transparent 60%), var(--bg);
}
.lp-back { display: inline-flex; align-items: center; gap: .45rem; color: var(--text-mut); font-size: .92rem; font-weight: 500; margin-bottom: 1.3rem; transition: color .2s ease; }
.lp-back svg { width: 16px; height: 16px; }
.lp-back:hover { color: #fff; }
.lp-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin: .5rem 0 1rem; }
.lp-lead { color: var(--text-mut); font-size: 1.18rem; line-height: 1.65; max-width: 62ch; margin: 0; }
.lp-hero-actions { margin-top: clamp(1.6rem, 3vw, 2.2rem); }

/* Auffällige Benefit-Säulen (klarer Vorteil) */
.lp-pillar {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(31,210,138,.10), rgba(31,210,138,.03));
  border: 1px solid rgba(31,210,138,.30); border-radius: var(--radius);
  padding: clamp(1.7rem, 2.6vw, 2.2rem);
  transition: border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.lp-pillar:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: 0 24px 50px -24px rgba(31,210,138,.5); }
.lp-pillar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 1.3rem;
  background-image: var(--grad-green); color: #fff;
  box-shadow: 0 12px 28px -10px rgba(31,210,138,.6);
}
.lp-pillar-icon svg { width: 30px; height: 30px; }
.lp-pillar h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: 0 0 .55rem; }
.lp-pillar p { color: var(--text-mut); margin: 0; font-size: 1.02rem; }

/* Cross-Links zu den anderen Leistungen */
.lp-cross-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 2.6rem; }
@media (max-width: 760px) { .lp-cross-grid { grid-template-columns: 1fr; } }
.lp-cross { display: flex; flex-direction: column; gap: .4rem; }
.lp-cross h3 { margin: 0; font-size: 1.05rem; }
.lp-cross .lp-cross-arrow { margin-top: .6rem; color: var(--accent-2); font-weight: 600; font-size: .9rem; }
.lp-cross:hover .lp-cross-arrow { color: #fff; }

/* =========================================================
   DASHBOARD-PANELS (Unterseiten, Revision 2)
   Linke Spalte: Eyebrow, Überschrift, Langtext, 3 Mini-Karten.
   Rechte Spalte: Glas-Dashboard mit Ring, Charts, Status.
   ========================================================= */

.dash-section { padding: clamp(3.4rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5.5rem); position: relative; overflow: hidden; }
.dash-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(58% 46% at 88% 8%, rgba(176,107,255,.16), transparent 70%),
    radial-gradient(48% 40% at 4% 96%, rgba(255,77,157,.12), transparent 70%);
}
.dash-section > .container { position: relative; z-index: 1; }

.dash-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.06fr); gap: clamp(1.6rem, 3.4vw, 3rem); align-items: center; }
.dash-grid--wide { grid-template-columns: minmax(0,.86fr) minmax(0,1.28fr); }
@media (max-width: 960px) { .dash-grid, .dash-grid--wide { grid-template-columns: 1fr; } }

/* ---------- Linke Spalte ---------- */
.dash-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: #ff8ec1; margin-bottom: 1.15rem;
}
.dash-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px 2px rgba(255,77,157,.75); }
.dash-copy h1, .dash-copy h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.12; margin: 0 0 1rem; }
.dash-copy .dash-lead { color: var(--text-mut); font-size: 1.09rem; line-height: 1.72; max-width: 46ch; margin: 0; }

.dash-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: clamp(1.6rem, 3vw, 2.3rem); }
@media (max-width: 600px) { .dash-mini { grid-template-columns: 1fr; } }
.dash-mini-card {
  border: 1px solid var(--border); border-radius: 15px; padding: 1.05rem 1rem 1.15rem;
  background: linear-gradient(165deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  transition: border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.dash-mini-card:hover { transform: translateY(-4px); border-color: rgba(176,107,255,.55); box-shadow: 0 22px 44px -26px rgba(176,107,255,.75); }
.dash-mini-card--pink:hover { border-color: rgba(255,77,157,.6); box-shadow: 0 22px 44px -26px rgba(255,77,157,.75); }
.dash-mini-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; margin-bottom: .85rem;
  border: 1px solid rgba(176,107,255,.45); color: #c79bff;
  background: radial-gradient(circle at 50% 50%, rgba(176,107,255,.2), transparent 72%);
  box-shadow: 0 0 20px -4px rgba(176,107,255,.55);
}
.dash-mini-card--pink .dash-mini-icon { border-color: rgba(255,77,157,.5); color: #ff8ec1; background: radial-gradient(circle at 50% 50%, rgba(255,77,157,.2), transparent 72%); box-shadow: 0 0 20px -4px rgba(255,77,157,.55); }
.dash-mini-icon svg { width: 21px; height: 21px; }
.dash-mini-card h3 { font-family: var(--font-sans); font-size: .98rem; font-weight: 600; margin: 0 0 .35rem; line-height: 1.3; }
.dash-mini-card p { color: var(--text-mut); font-size: .87rem; line-height: 1.55; margin: 0; }

/* ---------- Dashboard-Karte ---------- */
.dash-panel {
  position: relative; border-radius: 24px; padding: clamp(1.3rem, 2.4vw, 1.9rem);
  background: linear-gradient(158deg, rgba(24,18,32,.94), rgba(9,7,13,.97));
  box-shadow: 0 40px 90px -50px rgba(176,107,255,.8), inset 0 1px 0 rgba(255,255,255,.06);
}
.dash-panel::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(150deg, rgba(255,77,157,.75), rgba(176,107,255,.55) 45%, rgba(255,255,255,.08) 75%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.dash-panel > * { position: relative; }
.dash-panel-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin: 0 0 .9rem; letter-spacing: -.02em; }

.dash-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent); margin: 1.15rem 0; border: 0; }

/* Statuspille */
.dash-status {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1.15rem .55rem .9rem; border-radius: 999px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  background: linear-gradient(95deg, rgba(255,77,157,.18), rgba(176,107,255,.18));
  border: 1px solid rgba(176,107,255,.4);
}
.dash-status::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 12px 2px rgba(31,210,138,.8); animation: dashPulse 2.4s ease-in-out infinite;
}
@keyframes dashPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.78); } }

/* Ring-Anzeige */
.dash-ring-row { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 1.75rem); }
.dash-ring { position: relative; flex: 0 0 auto; width: 132px; height: 132px; }
.dash-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.dash-ring-track { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 7; }
.dash-ring-arc { fill: none; stroke: url(#dashRingGrad); stroke-width: 7; stroke-linecap: round; filter: drop-shadow(0 0 7px rgba(255,77,157,.65)); }
.dash-ring-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: .1rem;
}
.dash-ring-inner svg { width: 34px; height: 34px; transform: none; }
.dash-ring-label { font-size: .84rem; color: var(--text-mut); }
.dash-ring-value { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; line-height: 1; }
.dash-ring--lg { width: 168px; height: 168px; }
.dash-ring--lg .dash-ring-value { font-size: 2.1rem; }
.dash-metric-label { font-size: 1.12rem; color: var(--text-mut); margin: 0 0 .1rem; }
.dash-metric-value { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.05; margin: 0; }

/* Vergleichszeilen mit Segmentbalken */
.dash-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: .75rem 1rem; align-items: center; padding: .85rem 0; }
.dash-row + .dash-row { border-top: 1px solid rgba(255,255,255,.07); }
.dash-row-name { font-size: 1.02rem; font-weight: 600; margin: 0 0 .15rem; }
.dash-row-name span { font-weight: 400; font-size: .8rem; color: var(--text-mut); white-space: nowrap; }
.dash-row-name span::before { content: "|"; color: rgba(255,255,255,.22); margin: 0 .5rem; }
.dash-row-sub { font-size: .85rem; color: var(--text-mut); margin: 0; }
.dash-row-meter { display: flex; align-items: center; gap: .8rem; }
.dash-bar { display: flex; gap: 2.5px; }
.dash-bar i { display: block; width: 4px; height: 20px; border-radius: 2px; background: rgba(255,255,255,.09); }
.dash-bar i.on { background: var(--accent); box-shadow: 0 0 8px rgba(255,77,157,.7); }
.dash-bar--purple i.on { background: var(--accent-2); box-shadow: 0 0 8px rgba(176,107,255,.7); }
.dash-row-pct { font-size: .95rem; font-weight: 600; min-width: 3.4rem; text-align: right; color: var(--text-mut); }
@media (max-width: 520px) { .dash-row { grid-template-columns: 1fr; } .dash-row-meter { justify-content: space-between; } .dash-bar i { width: 4px; } }

/* Chart-Kacheln */
.dash-tile { border: 1px solid rgba(255,255,255,.1); border-radius: 17px; padding: 1rem 1.1rem 1.05rem; background: rgba(255,255,255,.025); }
.dash-tile + .dash-tile { margin-top: .8rem; }
.dash-tile h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: 0 0 .3rem; }
.dash-tile p { font-size: .87rem; color: var(--text-mut); margin: 0; line-height: 1.5; }
.dash-tile--pink h4 { color: var(--accent); }
.dash-tile--purple h4 { color: var(--accent-2); }
.dash-tile-row { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.4fr); gap: 1rem; align-items: center; }
@media (max-width: 520px) { .dash-tile-row { grid-template-columns: 1fr; } }
.dash-chart { width: 100%; height: 74px; overflow: visible; }
.dash-chart path { fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.dash-chart .line-pink { stroke: var(--accent); filter: drop-shadow(0 0 6px rgba(255,77,157,.7)); }
.dash-chart .line-purple { stroke: var(--accent-2); filter: drop-shadow(0 0 6px rgba(176,107,255,.7)); }
.dash-chart .line-grey { stroke: #6b6577; }
.dash-chart .line-dashed { stroke-dasharray: 3 6; opacity: .75; }
.dash-chart .line-draw { stroke-dasharray: 620; stroke-dashoffset: 620; }
.is-visible .dash-chart .line-draw { animation: dashDraw 1.9s cubic-bezier(.4,.1,.2,1) forwards; }
@keyframes dashDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .dash-chart .line-draw { stroke-dashoffset: 0; animation: none; }
  .dash-status::before { animation: none; }
}

/* Zwei-Spalten-Vergleich (Ohne / Mit System) */
.dash-compare { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 520px) { .dash-compare { grid-template-columns: 1fr; } }
.dash-compare-card { border: 1px solid rgba(255,255,255,.1); border-radius: 17px; padding: 1.05rem 1.1rem 1.15rem; background: rgba(255,255,255,.02); }
.dash-compare-card--on {
  border-color: rgba(255,77,157,.55);
  background: linear-gradient(165deg, rgba(255,77,157,.11), rgba(176,107,255,.07));
  box-shadow: 0 0 34px -14px rgba(255,77,157,.85);
}
.dash-compare-tag { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mut); margin: 0 0 .5rem; }
.dash-compare-card--on .dash-compare-tag { color: #ff8ec1; }
.dash-compare-head { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; line-height: 1.25; margin: 0 0 .85rem; }
.dash-compare-card--on .dash-compare-head { color: #fff; }
.dash-icon-chain { display: flex; align-items: center; gap: .5rem; color: #8f88a0; margin-bottom: .9rem; }
.dash-icon-chain svg { width: 24px; height: 24px; flex: 0 0 auto; }
.dash-icon-chain .chain-sep { flex: 0 0 auto; letter-spacing: .1em; opacity: .55; font-size: .8rem; }
.dash-compare-card--on .dash-icon-chain { color: var(--accent-2); }
.dash-compare-card--on .dash-icon-chain svg:last-of-type { color: var(--accent); }

/* Prozesskette */
.dash-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; text-align: center; }
@media (max-width: 520px) { .dash-flow { grid-template-columns: repeat(2, 1fr); gap: 1rem .5rem; } }
.dash-flow-step { position: relative; }
.dash-flow-step .dash-flow-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: .55rem;
  border: 1px solid rgba(176,107,255,.5); color: #c79bff;
  background: radial-gradient(circle at 50% 50%, rgba(176,107,255,.22), transparent 72%);
  box-shadow: 0 0 22px -6px rgba(176,107,255,.7);
}
.dash-flow-step:nth-child(3) .dash-flow-dot { border-color: rgba(255,77,157,.5); color: #ff8ec1; box-shadow: 0 0 22px -6px rgba(255,77,157,.7); }
.dash-flow-dot svg { width: 24px; height: 24px; }
.dash-flow-step span { display: block; font-size: .82rem; color: var(--text-mut); line-height: 1.4; }
.dash-flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; right: -.25rem; width: .5rem; height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.3) 0 2px, transparent 2px 5px);
}
@media (max-width: 520px) { .dash-flow-step::after { display: none; } }

/* Fußnote */
.dash-note { display: flex; align-items: flex-start; gap: .8rem; font-size: .95rem; line-height: 1.55; color: var(--text); margin: 0; }
.dash-note-icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; color: #c79bff;
  border: 1px solid rgba(176,107,255,.4); background: rgba(176,107,255,.1);
}
.dash-note-icon svg { width: 17px; height: 17px; }
.dash-note b { font-weight: 600; }
.dash-note-text { display: block; padding-top: .35rem; }
.btn-cal { width: 16px; height: 16px; margin-right: .5rem; flex: 0 0 auto; }

/* =========================================================
   VOM SCROLLEN ZUM TERMIN (Block unter „Warum jetzt Instagram?")
   ========================================================= */
/* Randloses Band, buendig an „Warum jetzt Instagram?" */
.scroll-band {
  position: relative; overflow: hidden;
  padding: clamp(2.4rem, 5vw, 4.2rem) 0 clamp(2.2rem, 4.5vw, 3.8rem);
  background: linear-gradient(150deg, #0a0710 0%, #040207 52%, #090511 100%);
}
.scroll-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 46% at 86% 58%, rgba(176,107,255,.22), transparent 70%),
    radial-gradient(34% 40% at 3% 8%, rgba(255,77,157,.12), transparent 72%);
}
.scroll-band > .container { position: relative; z-index: 1; }
.scroll-panel {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.86fr);
  gap: clamp(1.5rem, 3.5vw, 3rem); align-items: center;
}
@media (max-width: 900px) { .scroll-panel { grid-template-columns: 1fr; text-align: left; } }

.scroll-eyebrow {
  display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1.15rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #d7cfe4;
}
.scroll-eyebrow-ring {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; color: var(--accent);
  border: 1px solid rgba(255,77,157,.5); background: rgba(255,77,157,.09);
  box-shadow: 0 0 18px -5px rgba(255,77,157,.8);
}
.scroll-eyebrow-ring svg { width: 18px; height: 18px; }

.scroll-title { font-family: var(--font-display); font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin: 0 0 .85rem; }
.scroll-rule { display: block; width: 58px; height: 4px; border-radius: 2px; background-image: var(--grad); margin-bottom: 1.2rem; }
.scroll-lead { color: var(--text-mut); font-size: 1.02rem; line-height: 1.65; max-width: 46ch; margin: 0; }

/* Trennlabel */
.scroll-chain-label { display: flex; align-items: center; gap: .9rem; margin: clamp(1.6rem, 3vw, 2.2rem) 0 1rem; }
.scroll-chain-label span { font-size: .95rem; color: #ded7ea; white-space: nowrap; }
.scroll-chain-label::before, .scroll-chain-label::after {
  content: ""; flex: 1; height: 1px; max-width: 70px;
  background: linear-gradient(90deg, transparent, rgba(255,77,157,.55));
}
.scroll-chain-label::after { background: linear-gradient(90deg, rgba(255,77,157,.55), transparent); }

/* Reel -> DM -> Termin */
.scroll-chain { display: flex; align-items: center; gap: .7rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.scroll-chain-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  width: 106px; padding: 1.05rem .6rem 1rem; border-radius: 16px;
  font-size: .92rem; font-weight: 500; color: #ece7f4;
  border: 1px solid rgba(255,77,157,.28);
  background: linear-gradient(165deg, rgba(255,77,157,.09), rgba(255,255,255,.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 40px -26px rgba(255,77,157,.85);
  transition: border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.scroll-chain li:hover .scroll-chain-card { border-color: rgba(255,77,157,.6); transform: translateY(-4px); }
.scroll-chain-card svg { width: 27px; height: 27px; color: var(--accent); filter: drop-shadow(0 0 8px rgba(255,77,157,.6)); }
.scroll-chain-arrow { display: inline-flex; color: var(--accent); }
.scroll-chain-arrow svg { width: 22px; height: 22px; }
@media (max-width: 520px) {
  /* Kette darf nicht umbrechen: drei gleiche Spalten, Pfeile entfallen */
  .scroll-chain { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .scroll-chain-arrow { display: none; }
  .scroll-chain-card { width: 100%; font-size: .85rem; padding: .9rem .4rem .85rem; }
  .scroll-chain-card svg { width: 23px; height: 23px; }
}

/* Handy-Visual: Kanten weich ausblenden, damit das Bildrechteck unsichtbar bleibt */
.scroll-visual { margin: 0; }
/* Bildkanten weich ausblenden: das Foto hat einen fast schwarzen Rand (1,1,1),
   der auf dem etwas helleren Blockhintergrund sonst als Rechteck sichtbar waere */
.scroll-visual img {
  width: 100%; height: auto; display: block;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image:
    linear-gradient(to right,  transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
@media (max-width: 900px) {
  .scroll-visual { max-width: 420px; margin: .5rem auto 0; }
}

/* =========================================================
   #problem: heller „Klassischer Weg" mit Schritt-Kette (Revision 2)
   ========================================================= */
.section--classic {
  position: relative; overflow: hidden; color: var(--light-text);
  background:
    radial-gradient(38% 52% at 100% 4%, rgba(255,77,157,.14), transparent 62%),
    radial-gradient(34% 46% at 0% 98%, rgba(176,107,255,.12), transparent 64%),
    radial-gradient(56% 42% at 50% 0%, rgba(255,255,255,.9), transparent 70%),
    #f7f4f9;
}
.section--classic > .container { position: relative; z-index: 1; }
.eyebrow--classic { font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .8rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section--classic h2 { color: var(--light-text); }
.classic-sub { color: var(--light-mut); font-size: 1.02rem; max-width: 60ch; margin: 0 auto; }
.classic-mark { color: var(--accent); font-weight: 600; }

.classic-card {
  margin-top: clamp(2.2rem, 4vw, 3.2rem); padding: clamp(1.6rem, 3.2vw, 2.8rem);
  border-radius: 22px; text-align: center;
  background: linear-gradient(180deg, #ffffff, #fdfbff);
  border: 1px solid rgba(176,107,255,.16);
  box-shadow: 0 30px 70px -46px rgba(70,40,95,.5);
}
.classic-card-label { font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 .5rem; }
.classic-card-title { font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 1.9rem); font-weight: 700; color: var(--light-text); margin: 0 0 clamp(1.6rem, 3vw, 2.4rem); }

.classic-flow { list-style: none; margin: 0; padding: 0; display: flex; align-items: flex-start; justify-content: center; gap: clamp(.3rem, 1vw, .8rem); }
.classic-step { display: flex; flex-direction: column; align-items: center; flex: 1 1 0; min-width: 0; max-width: 150px; }
.classic-step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(48px, 6vw, 62px); height: clamp(48px, 6vw, 62px); border-radius: 50%; margin-bottom: .8rem;
  color: var(--accent); border: 1px solid rgba(255,77,157,.28);
  background: radial-gradient(circle at 50% 40%, rgba(255,77,157,.12), rgba(255,255,255,.6) 72%);
  box-shadow: 0 10px 24px -14px rgba(255,77,157,.6);
}
.classic-step-icon svg { width: 46%; height: 46%; }
.classic-step--end .classic-step-icon { color: #e0446a; border-color: rgba(224,68,106,.4); background: radial-gradient(circle at 50% 40%, rgba(224,68,106,.14), rgba(255,255,255,.6) 72%); }
.classic-step-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--light-text); margin-bottom: .3rem; }
.classic-step-desc { font-size: .82rem; line-height: 1.45; color: var(--light-mut); }
.classic-arrow { display: inline-flex; align-items: center; justify-content: center; color: rgba(255,77,157,.6); padding-top: clamp(14px, 2.4vw, 22px); flex: 0 0 auto; }
.classic-arrow svg { width: clamp(18px, 2.4vw, 24px); height: auto; }

.classic-card-foot { margin: clamp(1.6rem, 3vw, 2.4rem) 0 0; font-size: 1rem; color: var(--light-mut); }

@media (max-width: 760px) {
  .classic-flow { flex-direction: column; align-items: stretch; gap: 0; max-width: 340px; margin-inline: auto; }
  .classic-step { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 1rem; row-gap: .15rem; align-items: center; text-align: left; max-width: none; }
  .classic-step-icon { grid-row: 1 / 3; margin-bottom: 0; }
  .classic-step-name { grid-column: 2; align-self: end; margin-bottom: 0; }
  .classic-step-desc { grid-column: 2; align-self: start; }
  .classic-arrow { padding: .5rem 0; transform: rotate(90deg); align-self: center; }
}

/* =========================================================
   #leistungen: radiales System-Diagramm (Revision 2)
   ========================================================= */
.section--sys { position: relative; overflow: hidden; background: var(--bg-2); }
.eyebrow--sys { font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .8rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.sys-radial {
  position: relative; margin-top: clamp(2.4rem, 5vw, 4rem);
  display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  grid-template-rows: auto auto; align-items: center;
  gap: clamp(1.5rem, 3vw, 2.6rem) clamp(2rem, 8vw, 6.5rem);
}
/* Verbindungslinien */
.sys-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.sys-lines { overflow: visible; }
.sys-lines path { stroke: #c88bff; fill: none; stroke-width: 2; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-dasharray: 1.5 5; filter: drop-shadow(0 0 4px rgba(176,107,255,.9)); opacity: .9; }

.sys-card {
  position: relative; z-index: 1; display: flex; gap: .9rem; align-items: flex-start;
  padding: clamp(1.1rem, 2vw, 1.5rem); border-radius: 18px; text-align: left;
  background: linear-gradient(160deg, rgba(255,77,157,.06), rgba(176,107,255,.03) 60%, rgba(255,255,255,.012));
  border: 1px solid rgba(176,107,255,.22);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s ease, box-shadow .25s ease;
}
.sys-card:hover, .sys-card:focus-visible { transform: translateY(-4px); border-color: rgba(255,77,157,.5); box-shadow: 0 26px 54px -30px rgba(255,77,157,.7); }
.sys-card--tl { grid-column: 1; grid-row: 1; }
.sys-card--tr { grid-column: 3; grid-row: 1; }
.sys-card--bl { grid-column: 1; grid-row: 2; }
.sys-card--br { grid-column: 3; grid-row: 2; }
.sys-card-icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; color: var(--accent-2);
  border: 1px solid rgba(176,107,255,.4); background: radial-gradient(circle at 50% 40%, rgba(176,107,255,.2), transparent 72%);
  box-shadow: 0 0 20px -6px rgba(176,107,255,.7);
}
.sys-card-icon svg { width: 24px; height: 24px; }
.sys-card-body { display: flex; flex-direction: column; min-width: 0; }
.sys-card-eyebrow { font-size: .68rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: #b98fe6; margin-bottom: .3rem; }
.sys-card-title { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--text); line-height: 1.25; margin-bottom: .4rem; }
.sys-card-desc { font-size: .86rem; line-height: 1.55; color: var(--text-mut); }

/* Zentrum */
.sys-center { position: relative; z-index: 1; grid-column: 2; grid-row: 1 / 3; justify-self: center; align-self: center;
  display: flex; align-items: center; justify-content: center; text-align: center;
  width: clamp(150px, 15vw, 200px); aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(160deg, rgba(30,18,40,.9), rgba(12,9,18,.95));
  border: 1px solid rgba(255,77,157,.5);
  box-shadow: 0 0 40px -8px rgba(255,77,157,.7), inset 0 0 30px -10px rgba(176,107,255,.8);
}
.sys-center-glow { position: absolute; inset: -3px; border-radius: 50%; pointer-events: none;
  background: conic-gradient(from 0deg, rgba(255,77,157,.6), rgba(176,107,255,.6), rgba(255,77,157,.6));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  opacity: .7;
}
.sys-center-text { position: relative; font-family: var(--font-display); font-weight: 700; font-size: clamp(.95rem, 1.5vw, 1.12rem); line-height: 1.3; color: #fff; padding: 0 1rem; }

@media (max-width: 860px) {
  .sys-radial { grid-template-columns: 1fr; grid-template-rows: none; gap: 2.5rem; }
  .sys-lines { display: none; }
  .sys-center { grid-column: 1; grid-row: auto; order: -1; margin: 0 auto; }
  .sys-card--tl, .sys-card--tr, .sys-card--bl, .sys-card--br { grid-column: 1; grid-row: auto; }
  /* senkrechte Verbindungslinie: verbindet Kreis und Karten wie am Desktop */
  .sys-card { position: relative; }
  .sys-card::after {
    content: ""; position: absolute; left: 50%; top: calc(-2.5rem - 1px); transform: translateX(-50%);
    width: 2px; height: 2.5rem; z-index: 0;
    background: repeating-linear-gradient(180deg, #c88bff 0 2px, transparent 2px 7px);
    filter: drop-shadow(0 0 3px rgba(176,107,255,.85));
  }
}

/* =========================================================
   #ergebnisse „Dein System auf einen Blick": heller Abschnitt (Revision 2)
   ========================================================= */
.section--statslight {
  position: relative; overflow: hidden; color: var(--light-text);
  background:
    radial-gradient(36% 50% at 100% 6%, rgba(176,107,255,.16), transparent 62%),
    radial-gradient(34% 46% at 0% 98%, rgba(255,77,157,.14), transparent 64%),
    radial-gradient(56% 42% at 50% 0%, rgba(255,255,255,.9), transparent 70%),
    #f7f4f9;
}
.section--statslight > .container { position: relative; z-index: 1; }
.section--statslight h2 { color: var(--light-text); }
.section--statslight .stat {
  background: linear-gradient(180deg, #ffffff, #fdfbff);
  border: 1px solid rgba(176,107,255,.16);
  box-shadow: 0 20px 44px -30px rgba(70,40,95,.45);
}
.section--statslight .stat:hover {
  border-color: rgba(255,77,157,.35);
  box-shadow: 0 26px 54px -28px rgba(255,77,157,.5);
}
.section--statslight .stat dt { color: var(--light-mut); }
.section--statslight .stats-note { color: var(--light-mut); }

/* Marken-Logo (SVG) im Header */
.brand-logo { height: 72px; width: auto; display: block; transition: height .3s ease; }
.site-header.scrolled .brand-logo { height: 58px; }
@media (max-width: 520px) { .brand-logo { height: 50px; } }

/* Sektions-Übergänge: harte, saubere Kante (kein Verlauf) */


/* =========================================================
   ÜBER UNS (zwischen Vergleich und Abschluss-CTA)
   Nutzt die gleichen Bausteine wie die uebrigen Sektionen:
   Verlaufs-Eyebrow, zentrierte Ueberschrift, dunkle Karte.
   ========================================================= */
.section--about { position: relative; overflow: hidden; }
.section--about::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 44% at 88% 6%, rgba(176,107,255,.14), transparent 68%),
    radial-gradient(40% 40% at 6% 94%, rgba(255,77,157,.1), transparent 70%);
}
.section--about > .container { position: relative; z-index: 1; }

.eyebrow--about {
  font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: .8rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.about-card {
  margin-top: clamp(2rem, 4vw, 2.8rem);
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.4rem, 3.6vw, 2.8rem);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(26,16,38,.72), rgba(12,9,18,.68));
  border: 1px solid rgba(176,107,255,.24);
  box-shadow: 0 30px 80px -46px rgba(176,107,255,.75);
}
.about-card p { color: var(--text-mut); font-size: 1.02rem; line-height: 1.75; margin: 0 0 1.15rem; }
.about-card p:last-child { margin-bottom: 0; }

/* Kernaussage hervorgehoben, mittig gesetzt mit Verlaufsstrich (wie im Rest der Seite) */
.about-lead-in { text-align: center; margin-bottom: .55rem !important; }
.about-quote {
  position: relative; text-align: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.3;
  color: var(--text) !important;
  margin: 0 auto 1.6rem !important; padding: 0 0 .2rem;
  max-width: 42ch;   /* eine Zeile auf Desktop, bricht erst auf schmalen Screens */
}

/* Logo statt Wortmarke in der Vergleichs-Kopfzeile */
.vs-logo { height: 32px; width: auto; display: block; }
@media (max-width: 560px) { .vs-logo { height: 24px; } }
