/* =============================================================================
   FACHKRAFT-JETZT — Design-System CSS (Neuaufbau 11.04.2026)
   Phase 1: Hero + Trust-Bar + Pricing als Design-Prototyp.
   Brand-Farben: Gold #F2CD5C, Teal #6FBFB1, Petrol #2C5B70, BG Dark #081520.
   ============================================================================= */

/* =============================================================================
   1. DESIGN TOKENS
   ============================================================================= */
:root {
  /* Brand */
  --color-gold:         #F2CD5C;
  --color-gold-light:   #F6D979;
  --color-gold-soft:    rgba(242, 205, 92, 0.20);
  --color-gold-border:  rgba(242, 205, 92, 0.45);
  --color-gold-glow:    rgba(242, 205, 92, 0.28);

  --color-teal:         #6FBFB1;
  --color-teal-light:   #8BCFC3;
  --color-teal-soft:    rgba(111, 191, 177, 0.18);
  --color-teal-border:  rgba(111, 191, 177, 0.45);
  --color-teal-glow:    rgba(111, 191, 177, 0.22);

  --color-petrol:       #2C5B70;

  /* Surfaces */
  --bg:                 #081520;
  --bg-deeper:          #050E16;
  --bg-card:            rgba(255, 255, 255, 0.035);
  --bg-card-hover:      rgba(255, 255, 255, 0.06);
  --bg-card-featured:   rgba(242, 205, 92, 0.04);
  --bg-nav:             rgba(8, 21, 32, 0.35);
  --bg-nav-scrolled:    rgba(8, 21, 32, 0.65);

  /* Text */
  --text:               #FFFFFF;
  --text-bright:        rgba(255, 255, 255, 0.96);
  --text-muted:         rgba(255, 255, 255, 0.72);
  --text-dim:           rgba(255, 255, 255, 0.50);
  --text-faint:         rgba(255, 255, 255, 0.30);

  /* Borders */
  --border:             rgba(255, 255, 255, 0.08);
  --border-bright:      rgba(255, 255, 255, 0.14);
  --border-hover:       rgba(111, 191, 177, 0.45);

  /* Warning (für Pain-Section) */
  --warning:            #EF7850;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Fluid Scale */
  --fs-h1:   clamp(42px, 5.6vw, 84px);
  --fs-h2:   clamp(30px, 4.0vw, 54px);
  --fs-h3:   clamp(22px, 2.2vw, 28px);
  --fs-lead: clamp(17px, 1.3vw, 20px);
  --fs-body: 16.5px;
  --fs-small: 14px;
  --fs-micro: 12px;

  /* Spacing Scale */
  --s-1: 4px;  --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px; --s-6: 24px;  --s-7: 32px;  --s-8: 40px;
  --s-9: 48px; --s-10: 64px; --s-11: 80px; --s-12: 96px;
  --s-13: 120px; --s-14: 160px;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card:     0 4px 30px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-card-lg:  0 12px 60px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  --shadow-gold:     0 8px 40px rgba(242, 205, 92, 0.25), 0 0 100px rgba(242, 205, 92, 0.10);
  --shadow-teal:     0 8px 40px rgba(111, 191, 177, 0.20);
  --shadow-btn:      0 6px 24px rgba(242, 205, 92, 0.32);

  /* Transitions */
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:  180ms var(--ease);
  --t-base:  320ms var(--ease);
  --t-slow:  560ms var(--ease-out);

  /* Layout */
  --container-max: 1200px;
  --container-pad: 24px;
  --nav-h: 72px;
}

/* =============================================================================
   2. RESET
   ============================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-bright);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100vh;
  position: relative;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "ss01";
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

blockquote {
  margin: 0;
  font-style: normal;
}

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

::selection {
  background: var(--color-gold);
  color: var(--bg);
}

/* =============================================================================
   3. CONTAINER + LAYOUT
   ============================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  position: relative;
  z-index: 2;
}

section {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
  z-index: 1;
}

.section--dark {
  background: transparent;
}

/* Erste Sektion: mehr Luft wegen Nav */
#hero {
  padding-top: 126px;
  padding-bottom: 12px;
}

/* Sektions-Labels */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  margin-bottom: var(--s-2);
}

.section-h2 {
  font-size: var(--fs-h2);
  max-width: 880px;
  margin-top: 0;
  margin-bottom: var(--s-5);
  color: var(--text);
}

.section-sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: var(--s-11);
  line-height: 1.55;
}

/* =============================================================================
   4. AMBIENT BLOBS (fixed, hinter allem)
   ============================================================================= */
.blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
  animation: blob-float 22s ease-in-out infinite alternate;
}

.blob--gold {
  width: 58vmin;
  height: 58vmin;
  top: -10vmin;
  right: -14vmin;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 65%);
  opacity: 0.25;
  animation-duration: 24s;
}

.blob--petrol {
  width: 78vmin;
  height: 78vmin;
  top: 30vh;
  left: -22vmin;
  background: radial-gradient(circle, var(--color-petrol) 0%, transparent 68%);
  opacity: 0.55;
  animation-duration: 30s;
  animation-delay: -8s;
}

.blob--teal {
  width: 60vmin;
  height: 60vmin;
  bottom: -14vmin;
  right: 12vmin;
  background: radial-gradient(circle, var(--color-teal) 0%, transparent 65%);
  opacity: 0.25;
  animation-duration: 28s;
  animation-delay: -14s;
}

@keyframes blob-float {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(3%, -4%, 0) scale(1.04); }
  100% { transform: translate3d(-3%, 3%, 0) scale(0.98); }
}

/* Globaler Gradient-Glow (Gold oben, Teal unten) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(242, 205, 92, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(111, 191, 177, 0.10), transparent 50%),
    linear-gradient(180deg,
      rgba(242, 205, 92, 0.05) 0%,
      transparent 30%,
      rgba(111, 191, 177, 0.06) 70%,
      rgba(111, 191, 177, 0.04) 100%
    );
}

/* =============================================================================
   5. NAVIGATION — Floating Glass-Pill
   ============================================================================= */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 var(--container-pad);
  pointer-events: none;
  transition: top var(--t-base);
}

.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding: 10px 10px 10px 22px;
  background: var(--bg-nav);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  max-width: calc(var(--container-max) - 16px);
  width: 100%;
}

.nav.is-scrolled .nav__pill {
  background: var(--bg-nav-scrolled);
  border-color: var(--border-bright);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.nav__logo-icon {
  height: 32px;
  width: 32px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo .logo-main {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-gold);
}

.nav__logo .logo-sub {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #0B1D2A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast);
  box-shadow: none;
}

.nav__cta-pill:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 20px rgba(242, 205, 92, 0.4),
    0 0 50px rgba(242, 205, 92, 0.2),
    0 0 80px rgba(111, 191, 177, 0.15);
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-pill);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay */
.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 21, 32, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  padding: var(--s-10);
}

.nav__mobile-overlay.is-open {
  display: flex;
}

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 32px;
  color: var(--text);
}

.nav-mobile-link {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
}

/* =============================================================================
   6. BUTTONS
   ============================================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #0B1D2A;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow:
    0 4px 20px rgba(242, 205, 92, 0.4),
    0 0 50px rgba(242, 205, 92, 0.2),
    0 0 80px rgba(111, 191, 177, 0.15),
    0 0 120px rgba(242, 205, 92, 0.08);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(242, 205, 92, 0.5),
    0 0 70px rgba(242, 205, 92, 0.3),
    0 0 100px rgba(111, 191, 177, 0.2),
    0 0 140px rgba(242, 205, 92, 0.1);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary::after,
.nav__cta-pill::after,
.sticky-cta__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.btn-primary svg {
  transition: transform var(--t-fast);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 28px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* =============================================================================
   7. HERO
   ============================================================================= */
#hero {
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -20%;
  width: 75vmin;
  height: 75vmin;
  background: radial-gradient(circle, rgba(111, 191, 177, 0.22) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

#hero::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -15%;
  width: 55vmin;
  height: 55vmin;
  background: radial-gradient(circle, rgba(242, 205, 92, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Hero-Container: Standard 1200px wie alle anderen Sektionen. */

.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 3vw, 48px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__text {
  max-width: 640px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-bright);
  margin-bottom: var(--s-6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(111, 191, 177, 0.25), 0 0 12px var(--color-teal);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.15); }
}

#hero .section-label {
  margin-bottom: var(--s-2);
}

.hero__h1 {
  /* H1 muss groesser sein als H2 max 54px. */
  font-size: clamp(36px, 4.2vw, 66px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: var(--s-6);
  text-wrap: balance;
  max-width: 820px;
}

/* Garantie-Kachel: einzelner Hero-USP */
.hero__guarantee {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: var(--s-6) 0;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 480px;
  position: relative;
  overflow: hidden;
}

.hero__guarantee::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(242, 205, 92, 0.12) 50%, transparent 100%);
  animation: shine 5s ease-in-out infinite;
  pointer-events: none;
}

.hero__guarantee-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin: -6px 0 0 -4px;
  filter: drop-shadow(0 0 10px rgba(111, 191, 177, 0.5)) drop-shadow(0 0 20px rgba(242, 205, 92, 0.3));
}

.hero__guarantee-text strong {
  display: block;
  color: var(--color-teal);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.hero__guarantee-text span {
  display: block;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Text-Link mit Pfeil (sekundaerer CTA) */
.hero__text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14.5px;
  text-decoration: none;
  transition: color var(--t-fast);
}

.hero__text-link:hover {
  color: var(--text);
}

.hero__usp {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
}

.hero__usp-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  filter: drop-shadow(0 0 6px rgba(242, 205, 92, 0.5));
}

.hero__usp-text strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-bottom: 4px;
}

.hero__usp-text span {
  display: block;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.hero__usp-text span {
  display: block;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.hero__usp-text span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Animierter Gradient-Text für "Fachkraft-System" */
.gradient-text {
  background: linear-gradient(
    110deg,
    var(--color-gold) 0%,
    var(--color-gold-light) 25%,
    var(--color-teal-light) 55%,
    var(--color-teal) 75%,
    var(--color-gold) 100%
  );
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: gradient-shift 9s linear infinite;
  padding-bottom: 0.08em;
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 280% 50%; }
}

.hero__sub {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: min(620px, 100%);
  margin-bottom: var(--s-8);
}

.hero__sub strong {
  color: var(--color-teal);
  font-weight: 700;
}

.hero__ctas {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}

/* Trust-Zeile unter CTA */
/* Reviews-Bar (eigenes Element unter Trust-Bar) */
.reviews-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: var(--s-4) 0;
}

.reviews-bar__sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
}

.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  transition: color var(--t-fast);
}


.hero__trust-badge:hover {
  color: var(--color-gold);
}

.hero__trust-badge strong {
  color: #fff;
  font-weight: 700;
}

.hero__trust-stars {
  display: flex;
  gap: 1px;
}


/* Google-Reviews Pill */
.g-reviews-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 20px 11px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: var(--s-9);
  transition: all var(--t-fast);
}

.g-reviews-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.g-reviews-pill__logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.g-reviews-pill__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.g-reviews-pill__stars {
  display: flex;
  gap: 2px;
}

.g-reviews-pill__star {
  width: 13px;
  height: 13px;
}

.g-reviews-pill__meta {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.g-reviews-pill__meta strong {
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: var(--s-5);
  margin-top: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--s-6);
  max-width: 480px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.stat-item__value {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(242, 205, 92, 0.4);
}

.stat-item__label {
  font-size: 13.5px;
  color: var(--color-teal);
  line-height: 1.35;
  font-weight: 600;
}

.stat-item__source {
  font-size: 11px;
  color: var(--text);
  font-weight: 400;
  margin-top: 2px;
  opacity: 0.6;
}

.stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin: 0 2px;
}

/* Hero Visual (Portrait) */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 0;
}

@keyframes glow-pulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.08); }
}

/* Hero Portrait */
.hero__portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero__hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: var(--r-lg);
  border: 2px solid var(--color-gold-border);
  box-shadow: 0 0 80px rgba(242, 205, 92, 0.28),
              0 20px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  z-index: 2;
}

.hero__portrait-ring {
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--r-lg) + 10px);
  border: 1px dashed var(--color-teal-border);
  animation: pulse-ring 4s ease-in-out infinite;
  pointer-events: none;
}

.hero__book-badge {
  position: absolute;
  bottom: -16px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-lg);
  text-decoration: none;
  z-index: 3;
  box-shadow: 0 0 40px rgba(242, 205, 92, 0.3),
              0 0 16px rgba(242, 205, 92, 0.15),
              0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all var(--t-fast);
}

.hero__book-badge:hover {
  background: rgba(8, 21, 32, 0.85);
  border-color: var(--color-gold);
  box-shadow: 0 0 50px rgba(242, 205, 92, 0.45),
              0 0 20px rgba(242, 205, 92, 0.25),
              0 4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.hero__book-cover {
  width: 52px;
  height: auto;
  border-radius: var(--r-sm, 8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.hero__book-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

a.hero__book-badge .hero__book-name {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.hero__book-text strong {
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
}

.cta-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 0;
  line-height: 1.2;
  letter-spacing: 0;
}

.nav__cta-pill {
  flex-direction: column;
  line-height: 1.2;
  text-align: center;
}

.nav__cta-pill .cta-sub {
  font-size: 9.5px;
  color: rgba(0, 0, 0, 0.6);
}

.hero__book-text span {
  color: var(--color-gold);
  font-size: 11.5px;
  font-weight: 500;
}

.hero__pills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 32px;
  max-width: 520px;
}


.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.hero__pill svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

.hero__badge {
  position: absolute;
  bottom: 18px;
  left: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(8, 21, 32, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  z-index: 3;
  max-width: 280px;
}

.hero__badge-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-soft);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-sm);
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero__badge-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hero__badge-text span {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* =============================================================================
   8. TRUST-BAR
   ============================================================================= */
#trust-bar {
  padding: var(--s-5) 0;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.trust-bar__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.5;
}

.trust-bar__sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transform: rotate(15deg);
}

.trust-track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: trust-scroll 18s linear infinite;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.trust-track img {
  height: 32px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity var(--t-base);
  flex-shrink: 0;
}

.trust-track img:hover {
  opacity: 1;
}

@keyframes trust-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* =============================================================================
   ADS SHOWCASE — Gegenlaeufiges Karussell
   ============================================================================= */
#ads-showcase {
  padding-top: clamp(64px, 9vw, 128px);
  padding-bottom: clamp(64px, 9vw, 128px);
}

.ads-marquee {
  margin-top: var(--s-9);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.ads-marquee__track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.ads-marquee__track {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ads-marquee__track img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: block;
}

.ads-marquee__track--left {
  animation: ads-scroll-left 70s linear infinite;
}

.ads-marquee__track--right {
  animation: ads-scroll-right 70s linear infinite;
}

@keyframes ads-scroll-left {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes ads-scroll-right {
  0%   { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@media (max-width: 768px) {
  .ads-marquee__track img {
    width: 200px;
    height: 200px;
  }
  .ads-marquee__track--left,
  .ads-marquee__track--right {
    animation-duration: 50s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ads-marquee__track--left,
  .ads-marquee__track--right {
    animation: none;
  }
}

/* Entry-Offer CTA — Light-Version unter Ads-Showcase */
.entry-offer-cta {
  margin-top: var(--s-9);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  background:
    radial-gradient(ellipse at top left, rgba(111, 191, 177, 0.08), transparent 60%),
    rgba(13, 31, 44, 0.5);
  border: 1px dashed rgba(111, 191, 177, 0.4);
  border-radius: var(--r-lg);
}

.entry-offer-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.entry-offer-cta__pill {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(111, 191, 177, 0.15);
  border: 1px solid rgba(111, 191, 177, 0.4);
  border-radius: 999px;
  color: var(--color-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.entry-offer-cta__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.entry-offer-cta__h {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-bright);
  margin: 0;
  letter-spacing: -0.01em;
}

.entry-offer-cta__sub {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.entry-offer-cta__note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 4px 0 0;
  font-style: italic;
}

.entry-offer-cta__btn {
  white-space: normal;
  text-align: center;
}

@media (max-width: 768px) {
  .entry-offer-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .entry-offer-cta__btn {
    justify-self: center;
  }
}

/* ===========================================================================
   Entry CTA Light — Pricing-Card-Style mit Decoy-Vergleich
   =========================================================================== */
.entry-cta-light {
  position: relative;
  margin-top: var(--s-7);
  padding: clamp(20px, 2.6vw, 32px) clamp(20px, 3vw, 40px);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  background:
    radial-gradient(ellipse at top right, rgba(111, 191, 177, 0.08), transparent 65%),
    linear-gradient(180deg, rgba(13, 31, 44, 0.55) 0%, rgba(13, 31, 44, 0.3) 100%);
  border: 1px solid rgba(111, 191, 177, 0.28);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.entry-cta-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-teal) 30%, var(--color-teal) 70%, transparent);
  opacity: 0.7;
}

.entry-cta-light__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  background: rgba(111, 191, 177, 0.14);
  border: 1px solid rgba(111, 191, 177, 0.4);
  border-radius: 999px;
  color: var(--color-teal);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.entry-cta-light__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 8px rgba(111, 191, 177, 0.7);
}

.entry-cta-light__top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--s-4);
}

.entry-cta-light__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.entry-cta-light__price-num {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.entry-cta-light__price-sub {
  font-size: 10.5px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.entry-cta-light__hook {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

.entry-cta-light__hook strong {
  color: var(--color-gold);
  font-weight: 700;
}

.entry-cta-light__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: var(--s-4);
}

.entry-cta-light__col-h {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--s-3);
}

.entry-cta-light__col-h--in {
  color: var(--color-teal);
}

.entry-cta-light__col-h--out {
  color: var(--text-dim);
}

.entry-cta-light__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.entry-cta-light__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.45;
}

.entry-cta-light__list--in li {
  color: var(--text);
}

.entry-cta-light__list--in li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 700;
}

.entry-cta-light__list--out li {
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.18);
}

.entry-cta-light__list--out li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.entry-cta-light__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.entry-cta-light__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  background: linear-gradient(135deg, rgba(111, 191, 177, 0.95) 0%, rgba(111, 191, 177, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  color: #0B1D2A;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow:
    0 4px 18px rgba(111, 191, 177, 0.35),
    0 0 40px rgba(111, 191, 177, 0.15);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.entry-cta-light__btn:hover,
.entry-cta-light__btn:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 8px 26px rgba(111, 191, 177, 0.45),
    0 0 60px rgba(111, 191, 177, 0.25);
}

.entry-cta-light__alt {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
  text-align: center;
  line-height: 1.5;
}

.entry-cta-light__alt strong {
  color: var(--color-gold);
  font-weight: 700;
}

.entry-cta-light__alt:hover,
.entry-cta-light__alt:focus-visible {
  color: var(--text-bright);
}

@media (max-width: 768px) {
  .entry-cta-light__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .entry-cta-light__price {
    align-items: center;
  }
  .entry-cta-light__columns {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .entry-cta-light__btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================================================
   9. PRICING
   ============================================================================= */
#pricing .section-sub {
  margin-bottom: var(--s-11);
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  align-items: stretch;
  margin-bottom: var(--s-11);
}

.p-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--t-base), border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.p-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.p-card--featured {
  background: var(--bg-card-featured);
  border: 1px solid var(--color-gold-border);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
  z-index: 2;
}

.p-card--featured:hover {
  border-color: var(--color-gold);
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 16px 60px rgba(242, 205, 92, 0.32), 0 0 120px rgba(242, 205, 92, 0.14);
}

.p-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  background: var(--color-gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 20px rgba(242, 205, 92, 0.5);
  white-space: nowrap;
}

.p-card__when {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: var(--s-5);
}

.p-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--s-3);
}

.p-card__amount {
  font-size: clamp(44px, 4.6vw, 60px);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.035em;
  line-height: 1;
}

.p-card__unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.p-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}

.p-card__note {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: var(--s-6);
}

.p-card__divider {
  height: 1px;
  background: var(--border);
  margin: var(--s-5) 0 var(--s-6);
}

.p-card__feat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: var(--s-4);
}

/* Feature List */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-bright);
}

.feat-item .chk {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Cost-per-Hire Tabelle */
.cph-wrap {
  margin-top: var(--s-9);
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.cph-intro {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: var(--s-6);
}

.cph-table-scroll {
  overflow-x: auto;
  margin: 0 -8px;
  padding: 0 8px;
}

.cph-table {
  width: 100%;
  min-width: 560px;
}

.cph-table th {
  text-align: left;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--border);
}

.cph-table td {
  padding: 16px;
  font-size: 15px;
  color: var(--text-bright);
  border-bottom: 1px solid var(--border);
}

.cph-table tr:last-child td {
  border-bottom: none;
}

.cph-table .cph-gold {
  color: var(--color-gold);
  font-weight: 700;
}

.cph-featured td {
  background: rgba(242, 205, 92, 0.04);
}

.cph-featured td:first-child {
  border-top-left-radius: var(--r-sm);
  border-bottom-left-radius: var(--r-sm);
}

.cph-featured td:last-child {
  border-top-right-radius: var(--r-sm);
  border-bottom-right-radius: var(--r-sm);
}

.cph-callout {
  margin-top: var(--s-6);
  padding: var(--s-5) var(--s-6);
  background: rgba(111, 191, 177, 0.08);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--r-sm);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-bright);
}

/* =============================================================================
   10. FOUNDATION FÜR PHASE 2 (Minimal, nur um nicht kaputt auszusehen)
   Diese Sektionen werden in Phase 2 detailliert ausgebaut.
   ============================================================================= */

/* Pain Amplifier */
.amplifier__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.amplifier__text {
  max-width: 680px;
}

.amplifier__img {
  width: 100%;
  height: auto;
}

.schmerz__breakdown {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.schmerz__breakdown li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}

.schmerz__breakdown li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warning);
}

.schmerz__second-line {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-top: var(--s-3);
  margin-bottom: var(--s-5);
}

/* Pain / Cost-of-Vacancy */
.schmerz__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}

.schmerz__quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  padding: var(--s-6) 0 var(--s-6) var(--s-6);
  border-left: 3px solid var(--warning);
  margin: var(--s-6) 0;
}

.schmerz__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

.cost-box {
  padding: var(--s-6);
  background: rgba(239, 120, 80, 0.04);
  border: 1px solid rgba(239, 120, 80, 0.25);
  border-radius: var(--r-lg);
  box-shadow: 0 0 40px rgba(239, 120, 80, 0.12),
              0 4px 20px rgba(0, 0, 0, 0.3);
}

.cost-box__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-5);
}

.cost-table td {
  padding: 12px 0;
  font-size: 14.5px;
  color: var(--text-bright);
  border-bottom: 1px solid var(--border);
}

.cost-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--warning);
}

.cost-note {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-dim);
}

.cost-note strong {
  color: var(--text-bright);
}

.cost-note--summary {
  text-align: right;
  border-top: 2px solid var(--warning);
  padding-top: var(--s-4);
}

.cost-note__val {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--warning);
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(239, 120, 80, 0.3);
}

.cost-note__sub {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: var(--s-1);
}

.cost-note__source {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  margin-top: var(--s-5);
}

/* USPs / Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.pillar {
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}

.pillar:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.pillar__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--s-4);
}

.pillar__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
}

.pillar__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-4);
  line-height: 1.3;
}

.pillar__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--s-5);
}

.pillar__badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-teal);
  text-transform: uppercase;
}

/* Methodik (Sticky) — minimal */
.methodology__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-11);
  align-items: start;
}

.methodology__cards {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.m-card {
  position: relative;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.m-card__bg-num {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 140px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
}

.m-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-4);
  position: relative;
}

.m-card__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.12em;
}

.m-card__time {
  font-size: 11.5px;
  color: var(--text-dim);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-pill);
}

.m-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-3);
  position: relative;
}

.m-card__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  position: relative;
}

.methodology__sticky {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  align-self: start;
}

.methodology__sticky h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin: var(--s-4) 0 var(--s-5);
}

.m-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--s-6);
}

.m-note {
  display: block;
  margin-top: var(--s-4);
  font-size: 12.5px;
  color: var(--text-dim);
}

/* Cases */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.case-card {
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}

.case-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.case-card__client {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-3);
}

.case-card__kpi {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.case-card__kpi-label {
  font-size: 12.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-4);
}

.case-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.case-card--quote .case-card__kpi {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  font-style: italic;
}

/* Case Studies (Video-Platzhalter + Body) */
.cases__studies + .cases__grid {
  margin-top: var(--s-10);
}

/* Testimonials CTA: "Auf Google bewerten" (sekundärer Ghost-Button) */
.testimonials__cta {
  margin-top: var(--s-9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.testimonials__cta p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.01em;
}
.testimonials__cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid rgba(111, 191, 177, 0.35);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.testimonials__cta a:hover {
  background: rgba(111, 191, 177, 0.08);
  border-color: rgba(111, 191, 177, 0.6);
  transform: translateY(-2px);
}
.testimonials__cta a svg {
  color: var(--color-teal);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.testimonials__cta a:hover svg {
  transform: scale(1.08) rotate(-3deg);
}

/* Sekundärer CTA unter Case Studies zum VSL-Funnel */
.methodology__demo-cta {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.methodology__demo-cta .cases__cta-btn {
  font-size: 13px;
  padding: 10px 18px;
}

.methodology__demo-cta .cases__studies-cta-sub {
  font-size: 11.5px;
  color: var(--text-dim);
  margin: 0;
}

.cases__studies-cta {
  margin-top: var(--s-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cases__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid rgba(111, 191, 177, 0.35);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.cases__cta-btn:hover {
  background: rgba(111, 191, 177, 0.08);
  border-color: rgba(111, 191, 177, 0.6);
  transform: translateY(-2px);
}
.cases__cta-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(111, 191, 177, 0.15);
  color: var(--color-teal);
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.cases__cta-btn:hover .cases__cta-play {
  background: var(--color-teal);
  color: #081520;
}
.cases__cta-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-teal);
  transition: transform var(--t-fast);
}
.cases__cta-btn:hover .cases__cta-arrow {
  transform: translateX(4px);
}
.cases__studies-cta-sub {
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.cases__studies-title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: var(--s-7);
  letter-spacing: -0.01em;
}

.cases__studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}

.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.case-study-card__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at center, rgba(111,191,177,0.10), transparent 65%),
    linear-gradient(135deg, #0d1f2c 0%, #14334a 100%);
  border-bottom: 1px solid rgba(111,191,177,0.18);
  overflow: hidden;
}

.case-study-card__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.case-study-card__video-meta {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(8,21,32,0.55);
  border: 1px solid rgba(242,205,92,0.35);
  border-radius: 999px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-study-card__video-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 8px rgba(242,205,92,0.7);
}

.case-study-card__video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
  text-align: center;
}

.case-study-card__video-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  background: var(--color-gold);
  color: #081520;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(242,205,92,0.28);
  transition: transform var(--t-base), box-shadow var(--t-base);
  margin-bottom: var(--s-4);
}

.case-study-card__video-play:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 40px rgba(242,205,92,0.4);
}

.case-study-card__video-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.case-study-card__video-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}

.case-study-card__body {
  padding: var(--s-6) var(--s-7) var(--s-7);
  flex: 1;
}

.case-study-card__client {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-3);
}

.case-study-card__kpi {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.case-study-card__kpi-label {
  font-size: 12.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-4);
}

.case-study-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.case-study-card__logo {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: var(--s-3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.case-study-card__logo img {
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.case-study-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  margin-bottom: var(--s-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.case-study-card__stats--four {
  grid-template-columns: 1fr 1fr;
  row-gap: var(--s-4);
}

.case-study-card__logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border: 1px dashed rgba(242, 205, 92, 0.4);
  border-radius: 8px;
  color: rgba(242, 205, 92, 0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.case-study-card__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-study-card__stat-value {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.case-study-card__stat-label {
  font-size: 11.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .cases__studies-grid {
    grid-template-columns: 1fr;
  }
  .case-study-card__video-play {
    width: 56px;
    height: 56px;
  }
  .case-study-card__logo img {
    height: 26px;
  }
}

/* Testimonials Video-Platzhalter (groß, zwischen Claim und Review-Grid) */
.testimonials__rating-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: var(--s-4) auto 0;
}

.testimonials__rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(242, 205, 92, 0.08);
  border: 1px solid rgba(242, 205, 92, 0.28);
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.testimonials__rating-pill:hover,
.testimonials__rating-pill:focus-visible {
  background: rgba(242, 205, 92, 0.14);
  border-color: rgba(242, 205, 92, 0.5);
  transform: translateY(-1px);
}

.testimonials__rating-google {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.testimonials__rating-pe {
  height: 26px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.testimonials__rating-stars {
  display: inline-flex;
  gap: 3px;
}

.testimonials__rating-stars .star-svg {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 4px rgba(242, 205, 92, 0.35));
}

.testimonials__rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 0.01em;
}

.testimonials__rating-text strong {
  color: var(--color-gold);
  font-weight: 800;
}

.testimonials__video {
  position: relative;
  max-width: 880px;
  margin: 0 auto var(--s-9);
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  background: #0d1f2c;
  border: 1px solid rgba(242,205,92,0.22);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45);
}

.testimonials__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.testimonials__video-meta {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(8,21,32,0.55);
  border: 1px solid rgba(242,205,92,0.35);
  border-radius: 999px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonials__video-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 8px rgba(242,205,92,0.7);
}

.testimonials__video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-8);
  text-align: center;
}

.testimonials__video-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: none;
  background: var(--color-gold);
  color: #081520;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(242,205,92,0.3);
  transition: transform var(--t-base), box-shadow var(--t-base);
  margin-bottom: var(--s-5);
}
.testimonials__video-play:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 48px rgba(242,205,92,0.45);
}

.testimonials__video-label {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}

.testimonials__video-note {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .testimonials__video-play {
    width: 64px;
    height: 64px;
  }
}

/* Differenzierung (Tabelle) */
.diff-wrap {
  overflow-x: auto;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: var(--s-9);
}

.diff-table th,
.diff-table td {
  padding: 16px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.diff-table th {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 14px;
}

.diff-table .diff-bad {
  color: var(--text-dim);
}

.diff-table .diff-good {
  color: var(--text-bright);
}

.diff-table .diff-good strong {
  color: var(--color-gold);
}

.gegen-agenturen {
  padding: var(--s-8);
  background: var(--bg-card);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--r-md);
}

.gegen-agenturen blockquote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-bright);
  font-style: italic;
}

.gegen-agenturen cite {
  display: block;
  margin-top: var(--s-4);
  font-size: 13px;
  color: var(--color-teal);
  font-style: normal;
  font-weight: 600;
}

/* Value-Stack */
.value-grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-10);
}

.value-box {
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.value-box__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-2);
}

.value-box__sub {
  font-size: 13px;
  color: var(--color-teal);
  margin-bottom: var(--s-6);
}

.v-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.v-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-bright);
}

.v-item .chk {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-6);
  text-align: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.bonus-card {
  padding: var(--s-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.bonus-card__value {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-3);
}

.bonus-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-3);
}

.bonus-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Video-Upsell */
.video-upsell__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-8);
  align-items: center;
  padding: var(--s-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.video-upsell__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-teal-soft);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-3);
}

.video-upsell__title {
  font-size: 22px;
  margin-bottom: var(--s-3);
  color: var(--text);
}

.video-upsell__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
}

.video-upsell__price {
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

/* Garantien */
.garantien__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.g-card {
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}

.g-card:hover {
  border-color: var(--border-hover);
}

.g-card--scarcity {
  border-color: var(--color-gold-border);
  background: rgba(242, 205, 92, 0.04);
}

.g-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal-soft);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
}

.g-card--scarcity .g-card__icon {
  background: var(--color-gold-soft);
}

.g-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-4);
}

.g-card__quote {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-gold);
  padding: var(--s-4) var(--s-5);
  background: rgba(242, 205, 92, 0.06);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--r-xs);
  margin-bottom: var(--s-5);
  font-style: italic;
}

.g-card__fine {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.t-card {
  padding: var(--s-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.t-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-card__google-logo {
  width: 20px;
  height: 20px;
}

.t-card__stars {
  display: flex;
  gap: 2px;
}

.t-card__stars .star-svg {
  width: 14px;
  height: 14px;
}

.t-card__quote {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-bright);
  flex: 1;
}

.t-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.t-card__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}

.t-card__date {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 2px;
}

.t-card__google-link {
  font-size: 12px;
  color: var(--color-teal);
  font-weight: 600;
}

.t-card__google-link:hover {
  color: var(--color-teal-light);
}

/* FAQ */
#faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

#faq details[open] {
  border-color: var(--border-hover);
}

#faq summary {
  padding: var(--s-5) var(--s-6);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#faq summary::-webkit-details-marker { display: none; }

#faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--color-teal);
  transition: transform var(--t-base);
  font-weight: 300;
}

#faq details[open] summary::after {
  transform: rotate(45deg);
}

#faq details > p,
#faq details > div {
  padding: 0 var(--s-6) var(--s-5);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Über mich + CTA-Final */
.ueber__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-10);
  align-items: center;
}

#cta-final {
  text-align: center;
}

#cta-final .container {
  max-width: 760px;
}

/* Footer */
footer {
  padding: var(--s-11) 0 var(--s-8);
  border-top: 1px solid var(--border);
  margin-top: var(--s-11);
  font-size: 14px;
  color: var(--text-muted);
}

footer a:hover { color: var(--color-teal); }

/* =============================================================================
   11. REVEAL ANIMATION
   ============================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .blob, .gradient-text, .hero__portrait-glow, .hero__tag-dot, .trust-track {
    animation: none !important;
  }
}

/* =============================================================================
   12. COOKIE BANNER
   ============================================================================= */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  max-width: 420px;
  padding: var(--s-6);
  background: rgba(8, 21, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card-lg);
  z-index: 200;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner h4 {
  font-size: 15px;
  margin-bottom: var(--s-3);
  color: var(--text);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-5);
  flex-wrap: wrap;
}

.cookie-banner button {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--t-fast);
}

.cookie-banner .btn-accept {
  background: var(--color-gold);
  color: var(--bg);
}

.cookie-banner .btn-accept:hover {
  background: var(--color-gold-light);
}

.cookie-banner .btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-bright);
}

.cookie-banner .btn-decline:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

/* =============================================================================
   PHASE 2 — Detail-Polish und Sektions-Spezifika (11.04.2026)
   Überschreibt/ergänzt Foundation-Styles aus Phase 1 mit den echten HTML-Klassen.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Section-Header Layout (wiederverwendbar, zentriert-links)
   ----------------------------------------------------------------------------- */
#pricing .section-label,
#system .section-label,
#cases .section-label,
#differenzierung .section-label,
#value-stack .section-label,
#garantien .section-label,
#kundenstimmen .section-label,
#faq .section-label {
  margin-bottom: var(--s-2);
}

#pricing .section-h2,
#system .section-h2,
#cases .section-h2,
#differenzierung .section-h2,
#value-stack .section-h2,
#garantien .section-h2,
#kundenstimmen .section-h2,
#faq .section-h2 {
  margin-bottom: var(--s-5);
}

/* -----------------------------------------------------------------------------
   SCHMERZ / PAIN — Polish
   ----------------------------------------------------------------------------- */
#schmerz {
  position: relative;
  /* Gleicht Hero-bottom (12px) aus, damit Übergang Hero→Pain
     dem normalen Sektions-Abstand (2 × Default) entspricht */
  padding-top: calc(clamp(64px, 9vw, 128px) * 2 - 12px);
}

#vergleich,
#pain-amplifier {
  /* Default section padding aus section{} (clamp(64px, 9vw, 128px) 0) */
}

#schmerz::before {
  content: "";
  position: absolute;
  top: 15%;
  right: -10%;
  width: 45vmin;
  height: 45vmin;
  background: radial-gradient(circle, rgba(239, 120, 80, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.schmerz__text .section-label {
  background: rgba(239, 120, 80, 0.10);
  border-color: rgba(239, 120, 80, 0.35);
  color: var(--warning);
}

.schmerz__quote {
  position: relative;
  padding: var(--s-6) var(--s-7);
  background: rgba(239, 120, 80, 0.06);
  border: 1px solid rgba(239, 120, 80, 0.20);
  border-left: 3px solid var(--warning);
  border-radius: var(--r-md);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  margin: var(--s-6) 0;
}

.schmerz__quote::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 60px;
  color: var(--warning);
  opacity: 0.35;
  line-height: 1;
  font-family: Georgia, serif;
}

.cost-box {
  position: relative;
  padding: var(--s-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.cost-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(239, 120, 80, 0.08), transparent 60%);
  pointer-events: none;
  border-radius: var(--r-lg);
}

.cost-box__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-5);
  position: relative;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border);
}

.cost-box__title--glow {
  font-size: 17px;
  color: var(--warning);
  text-shadow: 0 0 20px rgba(239, 120, 80, 0.4), 0 0 40px rgba(239, 120, 80, 0.15);
}

.cost-table {
  position: relative;
}

.cost-table thead th {
  padding-bottom: 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim) !important;
  border-bottom: 1px solid var(--border) !important;
}

.cost-table tbody td {
  padding: 14px 0 !important;
  font-size: 15px !important;
  color: var(--text-bright) !important;
  border-bottom: 1px solid var(--border) !important;
}

.cost-table tbody tr:last-child td {
  border-bottom: none !important;
}

.cost-table tbody td:last-child {
  text-align: right;
  color: var(--warning) !important;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* -----------------------------------------------------------------------------
   #system Personal-Brand-Authority-Header
   Verknüpft Niklaas als Person mit den USP-Cards. NLP-Framing.
   ----------------------------------------------------------------------------- */
#system {
  position: relative;
}

#system::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -8%;
  width: 55vmin;
  height: 55vmin;
  background: radial-gradient(circle, rgba(111, 191, 177, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.system__intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(56px, 7vw, 96px);
  position: relative;
  z-index: 1;
}

.system__intro-visual {
  position: relative;
  width: clamp(140px, 14vw, 180px);
  height: clamp(140px, 14vw, 180px);
  flex-shrink: 0;
}

.system__intro-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 2px solid var(--border-bright);
  box-shadow: var(--shadow-card-lg), 0 0 80px rgba(111, 191, 177, 0.18);
  z-index: 2;
}

.system__intro-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--color-teal-border);
  background: radial-gradient(circle, rgba(111, 191, 177, 0.18), transparent 70%);
  z-index: 1;
  animation: ring-pulse 5s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%      { transform: scale(1.06); opacity: 1; }
}

.system__intro-text {
  min-width: 0;
}

.system__intro-text .section-label {
  margin-bottom: var(--s-4);
}

.system__intro-h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin-bottom: var(--s-5);
}

.system__intro-h2 br {
  display: block;
}

.system__intro-sub {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 760px;
}

.system__intro-sub em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 500;
}

.system__intro-sub strong {
  color: var(--text-bright);
  font-weight: 600;
}

/* -----------------------------------------------------------------------------
   USPs / PILLARS — Polish
   ----------------------------------------------------------------------------- */
.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pillar::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(111, 191, 177, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base);
}

.pillar:hover::before { opacity: 1; }

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lg);
}

.pillar__num {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border);
}

.pillar__icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  box-shadow: 0 0 30px rgba(111, 191, 177, 0.15);
}

.pillar__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: radial-gradient(circle, rgba(111, 191, 177, 0.25), transparent 70%);
  filter: blur(12px);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t-base);
}

.pillar:hover .pillar__icon::after { opacity: 1; }

.pillar__title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-4);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.pillar__desc {
  position: relative;
  flex: 1;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--s-6);
}

.pillar__badge {
  position: relative;
  align-self: flex-start;
}

/* -----------------------------------------------------------------------------
   METHODIK (Sticky Sidebar Scroll) — Polish
   ----------------------------------------------------------------------------- */
#methodik {
  padding-top: clamp(64px, 9vw, 128px);
  padding-bottom: clamp(64px, 9vw, 128px);
}

.methodology__cards {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.m-card {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: visible;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--t-base);
  box-shadow: var(--shadow-card);
}
.m-card__bg-num { overflow: hidden; }

.m-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.m-card__bg-num {
  position: absolute;
  top: -30px;
  right: -20px;
  font-size: clamp(120px, 14vw, 180px);
  font-weight: 900;
  color: rgba(111, 191, 177, 0.035);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  z-index: 0;
}

.m-card__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border);
}

.m-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.m-card__time {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-bright);
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
}

.m-card__title {
  position: relative;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.m-card__body {
  position: relative;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

.methodology__sticky {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
  align-self: start;
}

.methodology__sticky .section-label {
  margin-bottom: var(--s-2);
}

.methodology__sticky h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-top: 0;
  margin-bottom: var(--s-4);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.m-lead {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--s-6);
}

/* Farbige Kategorie-Wörter im Lead-Text */
.m-lead__teal { color: #9EE0D2; font-weight: 600; }
.m-lead__gold { color: var(--color-gold); font-weight: 600; }
.m-lead__gradient {
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA in Sticky-Sidebar: mehrzeilig */
.methodology__sticky .btn-primary {
  flex-direction: column;
  text-align: center;
  gap: 2px;
}

/* 3-Säulen Visualisierung */
.m-pillars {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  margin-bottom: var(--s-5);
}
.m-pillars-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-4);
}
.m-pillars-eyebrow__text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.m-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m-pillar__bar {
  width: 42px;
  border-radius: var(--r-sm, 6px);
}
.m-pillar--teal .m-pillar__bar {
  height: 72px;
  background: linear-gradient(180deg, rgba(111, 191, 177, 0.4), rgba(111, 191, 177, 0.08));
  border: 1px solid var(--color-teal-border);
  box-shadow: 0 4px 20px rgba(111, 191, 177, 0.15);
}
.m-pillar--gold .m-pillar__bar {
  height: 64px;
  background: linear-gradient(180deg, rgba(242, 205, 92, 0.35), rgba(242, 205, 92, 0.06));
  border: 1px solid var(--color-gold-border);
  box-shadow: 0 4px 20px rgba(242, 205, 92, 0.12);
}
.m-pillar--gradient .m-pillar__bar {
  height: 80px;
  background: linear-gradient(180deg, rgba(242, 205, 92, 0.25), rgba(111, 191, 177, 0.25), rgba(111, 191, 177, 0.06));
  border: 1px solid rgba(111, 191, 177, 0.2);
  box-shadow: 0 4px 20px rgba(242, 205, 92, 0.08), 0 4px 20px rgba(111, 191, 177, 0.08);
}
.m-pillar__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.35;
}
.m-pillar--teal .m-pillar__label { color: #9EE0D2; }
.m-pillar--gold .m-pillar__label { color: var(--color-gold); }
.m-pillar--gradient .m-pillar__label {
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-note {
  display: block;
  margin-top: var(--s-4);
  font-size: 12.5px;
  color: var(--text-dim);
  font-style: italic;
}

/* --- Gruppen-Labels im Methodik-Scroll --- */
.m-group-label {
  padding: var(--s-5) 0 var(--s-2);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s-2);
}
.m-group-label:first-child {
  padding-top: 0;
}
.m-group-label__num {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
}

.m-group-label__num::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(111, 191, 177, 0.25), transparent);
  animation: pill-shine 3s ease-in-out infinite;
}

.m-group-label--gold .m-group-label__num::after {
  background: linear-gradient(90deg, transparent, rgba(242, 205, 92, 0.25), transparent);
}

.m-group-label--gradient .m-group-label__num::after {
  background: linear-gradient(90deg, transparent, rgba(242, 205, 92, 0.3), transparent);
}

@keyframes pill-shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.m-group-label__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
  color: #9EE0D2;
  text-shadow: 0 0 30px rgba(111, 191, 177, 0.3), 0 0 60px rgba(111, 191, 177, 0.15);
}
}
.m-group-label__sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Gruppen-Farbhierarchie: Teal (G1, Default), Gold (G2), Gradient (G3) */
.m-group-label--gold .m-group-label__num {
  color: var(--color-gold);
  background: var(--color-gold-soft);
  border-color: var(--color-gold-border);
}
.m-group-label--gold .m-group-label__title {
  color: var(--color-gold-light);
  text-shadow: 0 0 30px rgba(242, 205, 92, 0.3), 0 0 60px rgba(242, 205, 92, 0.15);
}
.m-group-label--gold {
  border-bottom-color: var(--color-gold-border);
}
.m-group-label--gradient .m-group-label__num {
  background: linear-gradient(135deg, var(--color-gold-soft), var(--color-teal-soft));
  border-color: var(--color-gold-border);
  color: var(--color-gold);
}
.m-group-label--gradient .m-group-label__title {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(242, 205, 92, 0.2)) drop-shadow(0 0 40px rgba(111, 191, 177, 0.15));
}
.m-group-label--gradient {
  border-image: linear-gradient(90deg, var(--color-gold-border), var(--color-teal-border)) 1;
}

/* Card-Borders + Glow pro Säule */
.m-card--s1 {
  border-color: var(--color-teal-border);
  box-shadow: 0 4px 30px rgba(111, 191, 177, 0.12), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.m-card--s1:hover {
  border-color: var(--color-teal);
  box-shadow: 0 8px 40px rgba(111, 191, 177, 0.25), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.m-card--s2 {
  border-color: var(--color-gold-border);
  box-shadow: 0 4px 30px rgba(242, 205, 92, 0.12), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.m-card--s2:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 40px rgba(242, 205, 92, 0.25), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.m-card--s3 {
  border-color: transparent !important;
  box-shadow: 0 4px 20px rgba(242, 205, 92, 0.1), 0 4px 20px rgba(111, 191, 177, 0.1);
}
.m-card--s3::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}
.m-card--s3:hover {
  box-shadow: 0 8px 40px rgba(242, 205, 92, 0.18), 0 8px 40px rgba(111, 191, 177, 0.18);
}
.m-card--s3:hover::after {
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  padding: 1.5px;
}

/* Addon-Card: gestrichelte Border, sonst gleich */
.m-card--addon {
  border: 2px dashed rgba(242, 205, 92, 0.3) !important;
  opacity: 0.9;
}

.m-card--addon::after {
  display: none;
}

/* Buch-Cover mit Aquarell-Splash */
.m-card__book-splash {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.m-card__book-splash::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 205, 92, 0.15) 0%, rgba(111, 191, 177, 0.1) 50%, transparent 70%);
  filter: blur(12px);
}

.m-card__book-cover {
  position: relative;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  max-height: 140px;
  max-width: 140px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Footnote */
.m-card__footnote {
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  margin-top: var(--s-2);
}

/* Badge Gradient-Variante */
.m-card__badge--gradient {
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal)) !important;
  color: #0a1a15 !important;
  box-shadow: 0 4px 16px rgba(111, 191, 177, 0.3),
              0 4px 16px rgba(242, 205, 92, 0.2) !important;
}

/* --- Featured m-card (Gold-Akzent) --- */
.m-card--featured {
  background:
    radial-gradient(ellipse at top left, rgba(242, 205, 92, 0.06), transparent 60%),
    var(--bg-card);
  border-color: var(--color-gold-border);
  box-shadow: var(--shadow-gold);
}
.m-card--featured:hover {
  border-color: var(--color-gold-border);
  box-shadow: var(--shadow-gold), var(--shadow-card-lg);
}
.m-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: var(--color-gold);
  color: #1a1205;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 16px var(--color-gold-glow);
  z-index: 2;
}
.m-card__num--gold {
  color: var(--color-gold);
}
.m-card__num--gradient {
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.m-card__body strong { color: var(--text-bright); font-weight: 600; }
.m-card__body em { color: var(--color-gold); font-style: italic; }

/* --- Visual Card Layout: Bild links, Text rechts --- */
.m-card--visual {
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
}
.m-card__img {
  flex-shrink: 0;
  width: 140px;
  position: relative;
  z-index: 1;
}
.m-card__content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.m-card__placeholder {
  width: 140px;
  height: 140px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.m-card__placeholder--teal {
  background: rgba(111, 191, 177, 0.08);
  border: 1px dashed rgba(111, 191, 177, 0.25);
}
.m-card__placeholder--gold {
  background: rgba(242, 205, 92, 0.06);
  border: 1px dashed rgba(242, 205, 92, 0.25);
}
.m-card__placeholder--portrait {
  background: rgba(111, 191, 177, 0.08);
  border: 1px dashed rgba(111, 191, 177, 0.25);
  height: 140px;
}
.m-card__placeholder--gradient {
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.06), rgba(111, 191, 177, 0.06));
  border: 1px dashed rgba(111, 191, 177, 0.2);
  border-image: linear-gradient(135deg, rgba(242, 205, 92, 0.3), rgba(111, 191, 177, 0.3)) 1;
}
.m-card__portrait-label {
  font-size: 9px;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
}
/* Mockup-Frame: Einheitlicher Dokument-Stil (konsistent zu SVG-Mockups, einfacher Rand) */
.m-card__mockup-frame {
  width: 140px;
  height: 140px;
  border-radius: 5px;
  background: rgba(8, 21, 32, 0.55);
  border: 1px solid rgba(158, 224, 210, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
  position: relative;
}
.m-card__mockup-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.m-card__mockup-img--portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  max-width: none;
  max-height: none;
}

/* App-Preview (UI-Screenshots wie Matching-Tool) */
.m-card__app-preview {
  width: 140px;
  height: 140px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #F7F8FA;
}
/* Custom Flow-Visualisierung (Lernender Algorithmus etc.) — kein Placeholder-Look */
.m-card__flow-viz {
  width: 140px;
  height: 140px;
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at 50% 50%, rgba(111, 191, 177, 0.06) 0%, rgba(8, 21, 32, 0) 70%),
    rgba(8, 21, 32, 0.4);
  border: 1px solid rgba(111, 191, 177, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.25),
    0 0 24px rgba(111, 191, 177, 0.06) inset;
  overflow: hidden;
}
.m-card__flow-viz svg { width: 100%; height: 100%; display: block; }
.m-card__flow-viz--teal { border-color: rgba(111, 191, 177, 0.3); }
.m-card__flow-viz--gold {
  border-color: rgba(242, 205, 92, 0.3);
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 205, 92, 0.06) 0%, rgba(8, 21, 32, 0) 70%),
    rgba(8, 21, 32, 0.4);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.25),
    0 0 24px rgba(242, 205, 92, 0.06) inset;
}
.m-card__flow-viz--gradient {
  border-color: rgba(158, 224, 210, 0.35);
  background:
    linear-gradient(135deg, rgba(242, 205, 92, 0.05), rgba(111, 191, 177, 0.05)),
    radial-gradient(circle at 50% 50%, rgba(158, 224, 210, 0.05) 0%, rgba(8, 21, 32, 0) 70%),
    rgba(8, 21, 32, 0.4);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.25),
    0 0 24px rgba(158, 224, 210, 0.08) inset;
}

/* Video-Still-Foto fuer Addon-Karte (Video-Recruiting) */
.m-card__video-still {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--r-md);
  border: 1px solid rgba(242, 205, 92, 0.4);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(158, 224, 210, 0.15) inset,
    0 0 24px rgba(242, 205, 92, 0.08);
  display: block;
}

/* Vor-Ort-Foto (Hauptbild in Ueber-mich-Sektion, sitzt im scene-wrap) */
.ueber-mich__scene {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.ueber-mich__scene-caption {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-dim, rgba(255, 255, 255, 0.55));
  font-style: italic;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .m-card__flow-viz { width: 100%; height: 180px; }
}

/* Echtes Portrait-Foto (Michael Zander etc.) */
.m-card__portrait {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-md);
  border: 1px solid rgba(111, 191, 177, 0.35);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(111, 191, 177, 0.12) inset,
    0 0 24px rgba(111, 191, 177, 0.08);
  display: block;
}
.m-card__portrait-caption {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(158, 224, 210, 0.75);
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .m-card__portrait { width: 100%; height: 200px; }
}
/* 3 Creative-Platzhalter nebeneinander */
.m-card__creatives {
  display: flex;
  gap: 6px;
  width: 140px;
}
.m-card__creative-ph {
  flex: 1;
  height: 160px;
  border-radius: 6px;
  background: rgba(111, 191, 177, 0.08);
  border: 1px dashed rgba(111, 191, 177, 0.2);
}

/* --- Badge zentriert auf oberer Kartenkante --- */
.m-card--visual .m-card__badge {
  top: 0;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}
/* Teal-Badge für nicht-featured Cards */
.m-card__badge--teal {
  background: var(--color-teal) !important;
  color: #0a2520 !important;
  box-shadow: 0 4px 16px rgba(111, 191, 177, 0.35) !important;
}

/* --- Add-on Teaser (kompakt, gestrichelt, optional) --- */
.m-card--addon-teaser {
  position: relative;
  padding: var(--s-5) var(--s-6);
  border: 1px dashed rgba(242, 205, 92, 0.35) !important;
  border-radius: var(--r-lg);
  background: rgba(242, 205, 92, 0.02);
  box-shadow: none;
  margin-top: var(--s-4);
  overflow: visible;
}
.m-card--addon-teaser:hover {
  border-color: rgba(242, 205, 92, 0.55) !important;
  background: rgba(242, 205, 92, 0.04);
  box-shadow: 0 4px 20px rgba(242, 205, 92, 0.08);
}
.m-card--addon-teaser .m-card__badge {
  top: 0;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  background: rgba(242, 205, 92, 0.85);
  font-size: 9px;
}
.m-card__addon-inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.m-card__addon-img {
  flex-shrink: 0;
  width: 80px;
  position: relative;
}
.m-card__addon-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--color-gold-border);
}
.m-card__placeholder--sm {
  width: 80px !important;
  height: 80px !important;
}
.m-card__addon-img img + .m-card__placeholder { display: none; }
.m-card__addon-left {
  flex: 1;
  min-width: 0;
}
.m-card__addon-label {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 3px 10px;
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-2);
  opacity: 0.7;
}
.m-card--addon-teaser .m-card__title {
  font-size: 16px;
  color: var(--color-gold-light);
  margin-bottom: 0;
}
.m-card--addon-teaser .m-card__body {
  font-size: 13.5px;
  margin: 0;
}
@media (max-width: 680px) {
  .m-card__addon-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .m-card--visual { flex-direction: column; }
  .m-card__img { width: 100%; }
  .m-card__placeholder { width: 100%; height: 120px; }
  .m-card__creatives { width: 100%; }
  .m-card__creative-ph { height: 120px; }
}

/* -----------------------------------------------------------------------------
   CASES — Polish
   ----------------------------------------------------------------------------- */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.case-card {
  position: relative;
  padding: var(--s-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(242, 205, 92, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}

.case-card:hover::before { opacity: 1; }

.case-card:hover {
  border-color: var(--color-gold-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(242, 205, 92, 0.10), var(--shadow-card);
}

.case-card__client {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-5);
  border-bottom: 1px solid var(--border);
}

.case-card__kpi {
  position: relative;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.case-card__kpi-label {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-5);
}

.case-card__desc {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.case-card--quote {
  background: linear-gradient(135deg, rgba(111, 191, 177, 0.08), rgba(242, 205, 92, 0.04));
  border-color: var(--color-teal-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-card--quote .case-card__kpi {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  font-style: italic;
  letter-spacing: -0.005em;
  margin-bottom: var(--s-5);
}

.case-card--quote .case-card__desc {
  color: var(--color-gold) !important;
  font-weight: 600;
  font-style: normal;
}

/* -----------------------------------------------------------------------------
   DIFFERENZIERUNG — Polish
   ----------------------------------------------------------------------------- */
.diff-wrap {
  padding: clamp(20px, 2.4vw, 32px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--s-9);
}

.diff-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
}

.diff-table thead th {
  padding: 16px 20px 18px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim) !important;
  border-bottom: 1px solid var(--border) !important;
  text-align: left;
}

.diff-table thead th:nth-child(3) {
  color: var(--color-gold) !important;
}

.diff-table tbody td {
  padding: 18px 20px !important;
  font-size: 14.5px !important;
  line-height: 1.5;
  border-bottom: 1px solid var(--border) !important;
  vertical-align: top;
}

.diff-table tbody td:first-child {
  font-weight: 700;
  color: var(--text);
  width: 20%;
  font-size: 13.5px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.diff-table .diff-bad {
  color: var(--text-dim) !important;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 120, 80, 0.4);
  text-decoration-thickness: 1px;
}

.diff-table .diff-good {
  color: var(--text-bright) !important;
}

.diff-table .diff-good strong {
  color: var(--color-gold) !important;
  font-weight: 700;
}

.diff-table tbody tr:last-child td {
  border-bottom: none !important;
}

.diff-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.gegen-agenturen {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(111, 191, 177, 0.08), rgba(8, 21, 32, 0.2));
  border: 1px solid var(--color-teal-border);
  border-left: 4px solid var(--color-teal);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gegen-agenturen::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 24px;
  font-size: 96px;
  color: var(--color-teal);
  opacity: 0.22;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.gegen-agenturen blockquote {
  position: relative;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--text-bright);
  font-style: italic;
  font-weight: 400;
  padding-left: var(--s-4);
}

.gegen-agenturen cite {
  display: block;
  margin-top: var(--s-5);
  padding-left: var(--s-4);
  font-size: 13px;
  color: var(--color-teal);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* -----------------------------------------------------------------------------
   VALUE-STACK + BONUS-GRID — Polish
   ----------------------------------------------------------------------------- */
.value-box {
  position: relative;
  padding: clamp(32px, 3.5vw, 44px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-base), transform var(--t-base);
}

.value-box:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.value-box__title {
  position: relative;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-2);
  letter-spacing: -0.015em;
}

.value-box__sub {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: var(--s-6);
  margin-bottom: var(--s-6);
  border-bottom: 1px solid var(--border);
}

.v-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.v-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-bright);
}

.v-item .chk {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bonus-section-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--text);
  margin: var(--s-11) 0 var(--s-7);
  text-align: center;
  letter-spacing: -0.015em;
}

.bonus-section-title::before,
.bonus-section-title::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  vertical-align: middle;
  margin: 0 var(--s-4);
  opacity: 0.5;
}

.bonus-card {
  position: relative;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--t-base);
  overflow: hidden;
}

.bonus-card:hover {
  border-color: var(--color-gold-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(242, 205, 92, 0.12);
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(242, 205, 92, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}

.bonus-card:hover::before { opacity: 1; }

.bonus-card__value {
  position: relative;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  background: var(--color-gold-soft);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-5);
}

.bonus-card__title {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-3);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.bonus-card__desc {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   VIDEO-UPSELL — Polish
   ----------------------------------------------------------------------------- */
.video-upsell__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-10);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.06), rgba(111, 191, 177, 0.04));
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card-lg);
}

.video-upsell__tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-4);
}

.video-upsell__title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}

.video-upsell__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 600px;
}

.video-upsell__price {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* -----------------------------------------------------------------------------
   GARANTIEN — Polish
   ----------------------------------------------------------------------------- */
.garantien__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.g-card {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--t-base);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.g-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-lg);
}

.g-card--scarcity {
  border-color: var(--color-gold-border);
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.06), rgba(8, 21, 32, 0.2));
  box-shadow: 0 8px 40px rgba(242, 205, 92, 0.12);
}

.g-card--scarcity:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 50px rgba(242, 205, 92, 0.20);
}

.g-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-6);
  box-shadow: 0 0 30px rgba(111, 191, 177, 0.18);
}

.g-card--scarcity .g-card__icon {
  background: var(--color-gold-soft);
  border-color: var(--color-gold-border);
  box-shadow: 0 0 30px rgba(242, 205, 92, 0.25);
}

.g-card__title {
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-5);
  letter-spacing: -0.015em;
}

.g-card__quote {
  position: relative;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-gold);
  padding: var(--s-5) var(--s-6);
  background: rgba(242, 205, 92, 0.06);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: var(--s-5);
  font-style: italic;
}

.g-card__fine {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

/* -----------------------------------------------------------------------------
   TESTIMONIALS (Google-Reviews) — Polish
   ----------------------------------------------------------------------------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.t-card {
  position: relative;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  box-shadow: var(--shadow-card);
  min-height: 260px;
}

.t-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-lg);
}

.t-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border);
}

.t-card__google-logo {
  width: 22px;
  height: 22px;
}

.t-card__stars {
  display: flex;
  gap: 3px;
}

.t-card__stars .star-svg {
  width: 15px;
  height: 15px;
  filter: drop-shadow(0 0 4px rgba(242, 205, 92, 0.3));
}

.t-card__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-bright);
  flex: 1;
  position: relative;
  overflow: hidden;
  max-height: calc(15px * 1.65 * 5); /* ~5 Zeilen */
  transition: max-height 0.4s ease;
}

.t-card.has-overflow .t-card__quote::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(13, 27, 42, 0) 0%, var(--bg-card) 92%);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.t-card.is-expanded .t-card__quote {
  max-height: 1500px;
}

.t-card.is-expanded .t-card__quote::after {
  opacity: 0;
}

.t-card__toggle {
  background: none;
  border: none;
  color: var(--color-teal);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: -6px;
  align-self: flex-start;
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
}

.t-card__toggle:hover,
.t-card__toggle:focus-visible {
  color: var(--color-teal-light);
  text-decoration: underline;
}

.t-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.t-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}

.t-card__date {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 2px;
}

.t-card__google-link {
  font-size: 12px;
  color: var(--color-teal);
  font-weight: 700;
  padding: 6px 12px;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
}

.t-card__google-link:hover {
  background: rgba(111, 191, 177, 0.25);
  color: var(--color-teal-light);
}

/* -----------------------------------------------------------------------------
   FAQ — echte Klassen (.faq-item, nicht details)
   ----------------------------------------------------------------------------- */
#faq .container {
  max-width: 820px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.faq-item:hover {
  border-color: var(--border-bright);
}

.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-6);
  background: transparent;
  color: var(--text);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.faq-item__ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-pill);
  color: var(--color-teal);
  transition: transform var(--t-base), background var(--t-base);
}

.faq-item__q[aria-expanded="true"] .faq-item__ico {
  transform: rotate(45deg);
  background: var(--color-gold-soft);
  border-color: var(--color-gold-border);
  color: var(--color-gold);
}

.faq-item[data-open="true"],
.faq-item:has(.faq-item__q[aria-expanded="true"]) {
  background: rgba(111, 191, 177, 0.04);
  border-color: var(--border-hover);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-base);
}

.faq-item__q[aria-expanded="true"] + .faq-item__a {
  max-height: 400px;
  padding: 0 var(--s-6) var(--s-6);
}

.faq-item__a p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
}

/* -----------------------------------------------------------------------------
   ÜBER MICH — echte Klassen (.ueber-mich__inner etc.)
   ----------------------------------------------------------------------------- */
#ueber-mich {
  position: relative;
}

#ueber-mich::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 50vmin;
  height: 50vmin;
  background: radial-gradient(circle, rgba(111, 191, 177, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.ueber-mich__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left Column: Sticky Authority-Stack (Foto + Buch-Badge + Pills) */
.ueber-mich__media {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  align-self: start;
}
.ueber-mich__media .ueber-mich__pills {
  margin: 0;
}

/* Bewerber-Code Book-Badge (clickable Amazon-Link) */
.ueber-mich__book-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background:
    linear-gradient(135deg, rgba(242,205,92,0.08) 0%, rgba(111,191,177,0.04) 100%),
    var(--bg-card);
  border: 1px solid rgba(242,205,92,0.28);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.ueber-mich__book-badge:hover {
  border-color: rgba(242,205,92,0.5);
  background:
    linear-gradient(135deg, rgba(242,205,92,0.14) 0%, rgba(111,191,177,0.06) 100%),
    var(--bg-card);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(242,205,92,0.2);
}
.ueber-mich__book-icon {
  flex-shrink: 0;
}
.ueber-mich__book-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.ueber-mich__book-label {
  font-size: 10.5px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.ueber-mich__book-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ueber-mich__book-sub {
  font-size: 12.5px;
  color: var(--text-dim);
}
.ueber-mich__book-cta {
  color: var(--color-gold);
  flex-shrink: 0;
  display: inline-flex;
  transition: transform var(--t-base);
}
.ueber-mich__book-badge:hover .ueber-mich__book-cta {
  transform: translateX(4px);
}

/* Scene-Wrap mit Overlay-Badge (Google-Rating) */
.ueber-mich__scene-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(242, 205, 92, 0.22);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    0 0 48px -12px rgba(242, 205, 92, 0.18);
}
.ueber-mich__scene-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(8,21,32,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(242,205,92,0.3);
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.ueber-mich__scene-overlay-stars {
  display: inline-flex;
  gap: 1px;
  align-items: center;
}
.ueber-mich__scene-overlay-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.ueber-mich__scene-overlay-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.01em;
}
.ueber-mich__scene-overlay-text span {
  font-size: 10px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.ueber-mich__content {
  min-width: 0;
}

.ueber-mich__position {
  position: relative;
  padding: var(--s-6) var(--s-7);
  background: rgba(111, 191, 177, 0.06);
  border-left: 3px solid var(--color-teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  margin: var(--s-7) 0 var(--s-7);
}

.ueber-mich__position::before {
  content: "\201C";
  position: absolute;
  top: -4px;
  left: 12px;
  font-size: 60px;
  color: var(--color-teal);
  opacity: 0.35;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.ueber-mich__text {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--s-8);
}

.ueber-mich__text p { font-size: inherit; line-height: inherit; color: inherit; }

.ueber-mich__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

/* Authority-Pills in Ueber-mich (ersetzt Hero-Default max-width) */
.ueber-mich__pills {
  max-width: none;
  margin-top: var(--s-7);
}
.ueber-mich__pills .hero__pill {
  padding: 8px 14px;
  font-size: 12.5px;
  white-space: normal;
}

.fact-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--s-5) var(--s-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: left;
  transition: border-color var(--t-fast);
}

.fact-box:hover {
  border-color: var(--border-hover);
}

.fact-box strong {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.fact-box span {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* -----------------------------------------------------------------------------
   CTA-FINAL
   ----------------------------------------------------------------------------- */
#cta-final {
  position: relative;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
}

#cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 40%, rgba(242, 205, 92, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(111, 191, 177, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#cta-final .container {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-5);
}

.cta-final__inner .section-label {
  display: inline-flex;
  margin-bottom: 0;
}

.cta-final__h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 720px;
}

.cta-final__sub {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
}

.cta-final__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-4);
  justify-content: center;
}

.cta-final__btns .btn-primary {
  flex-direction: column;
  text-align: center;
  white-space: normal;
  gap: 2px;
}

.cta-final__fine {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: var(--s-5);
  padding: var(--s-4) var(--s-6);
  background: rgba(242, 205, 92, 0.05);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-pill);
  display: inline-block;
}

/* -----------------------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------------------- */
footer {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0 var(--s-8);
  border-top: 1px solid var(--border);
  margin-top: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 14, 22, 0.4));
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-11);
  margin-bottom: var(--s-10);
}

.footer__brand img {
  height: 32px;
  width: auto;
  margin-bottom: var(--s-5);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: var(--s-6);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer__contact a:hover {
  color: var(--color-teal);
}

.footer__contact svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-5);
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer__nav-links a:hover {
  color: var(--color-teal);
}

.footer__vsbg {
  padding: var(--s-6) var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: var(--s-7);
}

.footer__vsbg strong {
  color: var(--text-muted);
  font-weight: 700;
}

.footer__vsbg a {
  color: var(--color-teal);
  text-decoration: underline;
  text-decoration-color: rgba(111, 191, 177, 0.35);
  text-underline-offset: 2px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: var(--s-6);
}

.footer__legal a {
  color: var(--text-dim);
  transition: color var(--t-fast);
}

.footer__legal a:hover {
  color: var(--color-teal);
}

/* -----------------------------------------------------------------------------
   COOKIE BANNER — echte Klassen (.cookie-banner__inner, .cookie-btn)
   ----------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  max-width: 420px;
  padding: var(--s-6);
  background: rgba(8, 21, 32, 0.96);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card-lg);
  z-index: 200;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: cookie-slide-in 0.5s var(--ease-out);
}

@keyframes cookie-slide-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.cookie-banner__text a {
  color: var(--color-teal);
  text-decoration: underline;
  text-decoration-color: rgba(111, 191, 177, 0.35);
  text-underline-offset: 2px;
}

.cookie-banner__btns {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 11px 20px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--t-fast);
  border: 1px solid transparent;
  cursor: pointer;
}

.cookie-btn--accept {
  background: var(--color-gold);
  color: var(--bg);
}

.cookie-btn--accept:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-bright);
}

.cookie-btn--reject:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

/* -----------------------------------------------------------------------------
   STICKY CTA (erscheint nach 800px Scroll)
   ----------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-base), transform var(--t-base);
  pointer-events: none;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #0B1D2A;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(242, 205, 92, 0.4),
    0 0 50px rgba(242, 205, 92, 0.2),
    0 0 80px rgba(111, 191, 177, 0.15);
  transition: all var(--t-fast);
}

.sticky-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(242, 205, 92, 0.5),
    0 0 70px rgba(242, 205, 92, 0.3),
    0 0 100px rgba(111, 191, 177, 0.2);
}

/* =============================================================================
   13. RESPONSIVE
   ============================================================================= */
@media (max-width: 1100px) {
  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-card--featured {
    transform: none;
    order: -1;
  }
  .p-card--featured:hover {
    transform: translateY(-4px);
  }

  .pillars,
  .cases__grid,
  .garantien__grid,
  .testimonials__grid,
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grids {
    grid-template-columns: 1fr;
  }

  .methodology__grid,
  .schmerz__grid,
  .ueber__grid,
  .ueber-mich__inner {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  .ueber-mich__media {
    position: static;
    top: auto;
  }

  .system__intro {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-6);
  }

  .system__intro-visual {
    margin: 0 auto;
  }

  .system__intro-text .section-label {
    display: inline-flex;
  }

  .system__intro-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .methodology__sticky {
    position: static;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .ueber-mich__facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .hero__visual {
    order: -1;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .hero__portrait-wrap {
    max-width: 100%;
  }

  .hero__hero-img {
    aspect-ratio: 16 / 9;
    object-position: center 15%;
  }

  .nav__links,
  .nav__cta-pill {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__pill {
    padding: 10px 10px 10px 20px;
  }
}

@media (max-width: 680px) {
  .pillars,
  .cases__grid,
  .garantien__grid,
  .testimonials__grid,
  .bonus-grid,
  .hero__usps {
    grid-template-columns: 1fr;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero__stats {
    gap: var(--s-4);
  }

  .stat-divider {
    display: none;
  }

  .video-upsell__box {
    grid-template-columns: 1fr;
    gap: var(--s-6);
    text-align: left;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .sticky-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .hero__badge {
    left: 0;
    right: 0;
    bottom: -10px;
    max-width: none;
  }

  .ueber-mich__facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-3);
  }

  .cta-final__btns {
    flex-direction: column;
    width: 100%;
  }

  section {
    padding: 72px 0;
  }
}


/* =============================================================================
   NEW COMPONENTS (v2 Copy-Refine Integration, Stand 11.04.2026)
   ============================================================================= */

/* ------- HERO: Lead-Text + Authority-Bar ------- */
.hero__lead {
  margin-top: var(--s-5);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
}
.hero__lead strong {
  color: var(--text-bright);
  font-weight: 600;
}
.hero__lead em {
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
}

.hero__authority {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3) var(--s-5);
  max-width: 640px;
}
.hero__authority-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
.hero__authority-item svg { flex-shrink: 0; margin-top: 2px; }
.hero__authority-item strong {
  color: var(--text-bright);
  font-weight: 600;
}
.hero__authority-item em {
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 860px) {
  .hero__authority { grid-template-columns: 1fr; }
}

/* ------- PAIN: Weekly-Rechnung + Try-List ------- */
.schmerz__weekly {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: rgba(239, 120, 80, 0.06);
  border: 1px solid rgba(239, 120, 80, 0.22);
  border-left: 3px solid var(--warning);
  border-radius: var(--r-md);
}
.schmerz__weekly-intro {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--s-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.schmerz__weekly-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.schmerz__weekly-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s-4);
  align-items: baseline;
  padding-bottom: var(--s-3);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.schmerz__weekly-list li:last-child { border-bottom: none; padding-bottom: 0; }
.schmerz__weekly-list strong {
  font-size: 18px;
  color: rgba(239, 120, 80, 0.92);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.schmerz__weekly-list li span {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.schmerz__weekly-sum {
  margin-top: var(--s-2);
  padding-top: var(--s-4) !important;
  border-top: 1.5px solid rgba(239, 120, 80, 0.3) !important;
  border-bottom: none !important;
}
.schmerz__weekly-sum strong { font-size: 22px !important; color: var(--warning) !important; }
.schmerz__weekly-note {
  margin-top: var(--s-4);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
  font-style: italic;
}

.schmerz__try-intro {
  margin-top: var(--s-7);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--s-4);
}
.schmerz__try-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.schmerz__try-list li {
  position: relative;
  padding-left: var(--s-6);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}
.schmerz__try-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 8px;
  height: 2px;
  background: var(--warning);
  border-radius: 2px;
}
.schmerz__try-list strong { color: var(--text-bright); font-weight: 600; }

.schmerz__desc--accent {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-bright);
  padding: var(--s-4) var(--s-5);
  background: rgba(111, 191, 177, 0.06);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--r-xs);
}

/* ------- SYSTEM: Lead + Future-Pacing ------- */
.system__lead {
  margin: var(--s-8) auto 0;
  max-width: 760px;
  font-size: var(--fs-lead);
  line-height: 1.75;
  color: var(--text-muted);
  text-align: center;
}
.system__lead p { margin: 0; }
.system__lead strong { color: var(--text-bright); font-weight: 600; }

.system__future {
  margin: var(--s-7) auto 0;
  max-width: 780px;
  padding: var(--s-7);
  background:
    radial-gradient(ellipse at top left, rgba(242, 205, 92, 0.05), transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.system__future-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-4);
}
.system__future-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}
.system__future-text strong { color: var(--text-bright); font-weight: 600; }

/* ------- FEATURES: KI-Features Grid + Prose + Mechanik ------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-9);
}
.feature-card {
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--color-teal-soft), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-teal-border);
}
.feature-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-5);
  position: relative;
  z-index: 1;
}
.feature-card__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.feature-card__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--color-teal-soft);
  color: var(--color-teal);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.feature-card__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  box-shadow: 0 0 40px var(--color-teal-glow);
  position: relative;
  z-index: 1;
}
.feature-card__title {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: var(--s-4);
  color: var(--text-bright);
  position: relative;
  z-index: 1;
}
.feature-card__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.feature-card__desc strong { color: var(--text-bright); font-weight: 600; }
.feature-card__list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  position: relative;
  z-index: 1;
}
.feature-card__list li {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--color-teal-border);
  border-radius: var(--r-xs);
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
}

.features__prose {
  margin-top: var(--s-11);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.features__prose-title {
  font-size: 24px;
  margin-bottom: var(--s-5);
  color: var(--text-bright);
}
.features__prose p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--s-4);
}
.features__prose p:last-child { margin-bottom: 0; }
.features__prose strong { color: var(--text-bright); font-weight: 600; }

.features__mechanik {
  margin-top: var(--s-9);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
}
.features__mechanik-title {
  font-size: 20px;
  margin-bottom: var(--s-5);
  color: var(--text-bright);
}
.features__mechanik-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.features__mechanik-list li {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  padding-left: var(--s-6);
  position: relative;
}
.features__mechanik-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}
.features__mechanik-list strong { color: var(--text-bright); font-weight: 600; }

@media (max-width: 1100px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* ------- METHODIK: Timeline-Table ------- */
.timeline-wrap {
  margin-top: var(--s-9);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.timeline__intro {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--s-4);
  text-align: center;
}
.timeline__scroll { overflow-x: auto; }
.timeline-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.timeline-table th,
.timeline-table td {
  padding: var(--s-4) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.timeline-table th {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
}
.timeline-table th:first-child { width: 140px; }
.timeline-table td:first-child {
  font-weight: 600;
  color: var(--text-bright);
  font-variant-numeric: tabular-nums;
}
.timeline-table td { color: var(--text-muted); }
.timeline-table tbody tr:last-child th,
.timeline-table tbody tr:last-child td { border-bottom: none; }
.timeline-highlight td {
  background: rgba(242, 205, 92, 0.06) !important;
}
.timeline-highlight td:first-child { color: var(--color-gold) !important; }
.timeline-highlight td strong { color: var(--text-bright); }

/* ------- EFFORT: 2-Spalten Was Sie tun vs Was ich tue ------- */
.effort-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-9);
}
.effort-col {
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.effort-col--me {
  background: rgba(111, 191, 177, 0.04);
  border-color: var(--color-teal-border);
}
.effort-col__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-5);
  border-bottom: 1px solid var(--border-bright);
}
.effort-col__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.effort-col--you .effort-col__tag {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border-bright);
}
.effort-col--me .effort-col__tag {
  background: var(--color-teal-soft);
  color: var(--color-teal);
  border: 1px solid var(--color-teal-border);
}
.effort-col__time {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
}
.effort-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.effort-list li {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  padding-left: var(--s-5);
  position: relative;
}
.effort-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
}
.effort-col--me .effort-list li::before { background: var(--color-teal); }
.effort-list strong { color: var(--text-bright); font-weight: 600; }

.effort-note {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: rgba(242, 205, 92, 0.04);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-md);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
}
.effort-note strong { color: var(--color-gold); font-weight: 700; }

@media (max-width: 860px) {
  .effort-wrap { grid-template-columns: 1fr; }
}

/* ------- CASES: Cite + Common-Block ------- */
.case-card__cite {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-gold);
  font-style: italic;
  font-weight: 600;
}

.cases__common {
  margin-top: var(--s-9);
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.cases__common-title {
  font-size: 20px;
  margin-bottom: var(--s-5);
  color: var(--text-bright);
}
.cases__common-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-6);
}
.cases__common-list li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  padding-left: var(--s-5);
  position: relative;
}
.cases__common-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 700;
}
.cases__common-list strong { color: var(--text-bright); font-weight: 600; }
@media (max-width: 680px) {
  .cases__common-list { grid-template-columns: 1fr; }
}

/* Prognose-CTA am Ende der Cases-Sektion */
.cases__prognose-cta {
  margin-top: var(--s-9);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
  background:
    radial-gradient(ellipse at top right, rgba(242, 205, 92, 0.10), transparent 60%),
    linear-gradient(135deg, rgba(13, 31, 44, 0.7) 0%, rgba(20, 51, 74, 0.7) 100%);
  border: 1px solid rgba(242, 205, 92, 0.32);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.45);
}

.cases__prognose-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.cases__prognose-cta__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cases__prognose-cta__text .section-label {
  margin-bottom: 4px;
}

.cases__prognose-cta__h {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-bright);
  margin: 0;
  letter-spacing: -0.01em;
}

.cases__prognose-cta__sub {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.cases__prognose-cta__btn {
  white-space: normal;
  text-align: center;
}

@media (max-width: 768px) {
  .cases__prognose-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cases__prognose-cta__btn {
    justify-self: center;
  }
}

/* ------- PRICING: Alt-Table + Honest-Calc ------- */
.alt-wrap {
  margin-top: var(--s-9);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.alt__title {
  font-size: 22px;
  margin-bottom: var(--s-5);
  color: var(--text-bright);
  text-align: center;
}
.alt__scroll { overflow-x: auto; }
.alt-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-width: 680px;
}
.alt-table th,
.alt-table td {
  padding: var(--s-4) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.alt-table th {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
}
.alt-table tbody tr:last-child td { border-bottom: none; }
.alt-table td { color: var(--text-muted); }
.alt-no { color: rgba(239, 120, 80, 0.82) !important; font-weight: 600; }
.alt-partial { color: var(--color-gold) !important; font-weight: 600; }
.alt-yes { color: var(--color-teal) !important; font-weight: 700; }
.alt-featured td { background: rgba(242, 205, 92, 0.06); }
.alt-featured td:first-child { color: var(--text-bright) !important; }
.alt-featured td:nth-child(2) { color: var(--color-gold) !important; }

.honest-calc {
  margin-top: var(--s-9);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.honest-calc__title {
  font-size: 22px;
  margin-bottom: var(--s-6);
  color: var(--text-bright);
  text-align: center;
}
.honest-calc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.honest-calc__item {
  padding: var(--s-6);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.honest-calc__item--featured {
  background: rgba(242, 205, 92, 0.06);
  border-color: var(--color-gold-border);
  box-shadow: var(--shadow-gold);
}
.honest-calc__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: var(--s-3);
  line-height: 1.4;
}
.honest-calc__item--featured .honest-calc__label { color: var(--color-gold); }
.honest-calc__value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-bright);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--s-3);
}
.honest-calc__item--featured .honest-calc__value { color: var(--color-gold); }
.honest-calc__note {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.honest-calc__note strong { color: var(--text-bright); }
@media (max-width: 1100px) {
  .honest-calc__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .honest-calc__grid { grid-template-columns: 1fr; }
}

/* ------- TRANSPARENZ: 5 Warum-Items ------- */
.transparenz__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-top: var(--s-9);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.trans-item {
  padding: var(--s-6);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.trans-item--wide { grid-column: span 2; }
.trans-item__q {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.trans-item__q h3 {
  font-size: 17px;
  color: var(--text-bright);
  line-height: 1.3;
}
.trans-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.trans-item strong { color: var(--text-bright); font-weight: 600; }
@media (max-width: 860px) {
  .transparenz__grid { grid-template-columns: 1fr; }
  .trans-item--wide { grid-column: span 1; }
}

/* ------- BONI: Einwand-Auflöser ------- */
.bonus-card__objection {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px dashed var(--border);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-dim);
}
.bonus-card__objection em {
  color: var(--text-muted);
  font-style: italic;
}

/* ------- GARANTIEN: Scarcity + No-Moneyback ------- */
.g-card__scarcity {
  margin-top: var(--s-4);
  padding: 10px 14px;
  background: var(--color-gold-soft);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-xs);
  font-size: 13px;
  color: var(--text-bright);
  text-align: center;
}
.g-card__scarcity strong { color: var(--color-gold); }

.no-moneyback {
  margin-top: var(--s-9);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  display: flex;
  gap: var(--s-6);
  align-items: flex-start;
}
.no-moneyback__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-moneyback__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--s-4);
  line-height: 1.3;
}
.no-moneyback__body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--s-3);
}
.no-moneyback__body p:last-child { margin-bottom: 0; }
.no-moneyback__body strong { color: var(--text-bright); font-weight: 600; }
@media (max-width: 680px) {
  .no-moneyback { flex-direction: column; gap: var(--s-4); }
}

/* ------- ÜBER-MICH: 5-Schlüssel-Methode + NLP-Disclaimer + Unterschiede ------- */
.keys-wrap {
  margin-top: var(--s-11);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.keys-header {
  text-align: center;
  margin-bottom: var(--s-7);
}
.keys-h3 {
  font-size: 28px;
  color: var(--text-bright);
  margin: var(--s-3) 0 var(--s-4);
  line-height: 1.2;
}
.keys-h3 em { color: var(--color-gold); font-style: italic; }
.keys-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.keys-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.key-item {
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
  padding: var(--s-5);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}
.key-item:hover {
  border-color: var(--color-teal-border);
  background: var(--bg-card-hover);
}
.key-item__num {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-gold);
  font-variant-numeric: tabular-nums;
  width: 40px;
  padding-top: 2px;
}
.key-item h4 {
  font-size: 17px;
  color: var(--text-bright);
  margin-bottom: var(--s-2);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.key-item__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--color-teal-soft);
  color: var(--color-teal);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-pill);
  text-transform: none;
  letter-spacing: 0;
}
.key-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

.nlp-disclaimer {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: rgba(111, 191, 177, 0.04);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-lg);
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
}
.nlp-disclaimer__icon {
  flex-shrink: 0;
  padding-top: 2px;
}
.nlp-disclaimer__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--s-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nlp-disclaimer p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.nlp-disclaimer strong { color: var(--text-bright); font-weight: 600; }
.nlp-disclaimer em { color: var(--color-gold); font-style: italic; }

.unterschiede-wrap {
  margin-top: var(--s-11);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
}
.unterschiede-h3 {
  font-size: 22px;
  color: var(--text-bright);
  margin-bottom: var(--s-6);
  text-align: center;
}
.unterschiede-list {
  list-style: none;
  counter-reset: unterschiede;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.unterschiede-list li {
  counter-increment: unterschiede;
  padding-left: var(--s-8);
  position: relative;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.unterschiede-list li::before {
  content: counter(unterschiede, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-gold);
  font-variant-numeric: tabular-nums;
}
.unterschiede-list strong { color: var(--text-bright); font-weight: 600; }
.unterschiede-list em { color: var(--color-gold); font-style: italic; }

/* ------- CALL-PREVIEW (Pre-Suasion) ------- */
.call-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-8);
}
.call-step {
  padding: var(--s-6);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
}
.call-step__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-3);
}
.call-step h3 {
  font-size: 17px;
  color: var(--text-bright);
  margin-bottom: var(--s-3);
  line-height: 1.3;
}
.call-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.call-preview__close {
  margin-top: var(--s-8);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  padding: var(--s-5);
  background: rgba(111, 191, 177, 0.04);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-lg);
}
.call-preview__close strong { color: var(--text-bright); font-weight: 600; }
@media (max-width: 1100px) {
  .call-preview__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .call-preview__grid { grid-template-columns: 1fr; }
}

/* ------- ENTRY-OFFER (Downsell) ------- */
#entry-offer { padding-top: var(--s-9); padding-bottom: var(--s-12); }
.entry-offer__box {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--s-7) var(--s-8);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-7);
}
.entry-offer__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--s-3);
  display: block;
}
.entry-offer__title {
  font-size: 24px;
  color: var(--text-bright);
  margin-bottom: var(--s-3);
  line-height: 1.3;
}
.entry-offer__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
}
.entry-offer__desc strong { color: var(--text-bright); font-weight: 600; }
.entry-offer__btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.entry-offer__btn svg { margin-left: 6px; }
@media (max-width: 860px) {
  .entry-offer__box { flex-direction: column; align-items: flex-start; gap: var(--s-5); }
}


/* =============================================================================
   SEKTION #anders — Das mache ich anders als Recruiting-Agenturen
   Header + Prozess-Timeline + 3 USP-Gruppen × 3 Cards
   ============================================================================= */

/* #anders: Default section padding aus section{} */

/* ------- Header mit Portrait + Statement ------- */
.anders__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-8);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto var(--s-11);
  padding: var(--s-8) var(--s-9);
  background:
    radial-gradient(ellipse at top left, rgba(242, 205, 92, 0.08), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card-lg);
  position: relative;
  overflow: hidden;
}
.anders__header-visual {
  position: relative;
  width: 260px;
  height: 340px;
  flex-shrink: 0;
}
.anders__header-avatar {
  width: 260px;
  height: 340px;
  border-radius: var(--r-lg);
  object-fit: cover;
  object-position: center center;
  border: 2px solid var(--color-gold-border);
  box-shadow: 0 0 80px rgba(242, 205, 92, 0.28),
              0 20px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  z-index: 2;
}
.anders__header-ring {
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--r-lg) + 10px);
  border: 1px dashed var(--color-teal-border);
  animation: pulse-ring 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}
.anders__header-text .section-label {
  margin-bottom: var(--s-4);
}
.anders__h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.08;
  margin-bottom: var(--s-3);
  color: var(--text-bright);
  letter-spacing: -0.02em;
}
.anders__tagline {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 var(--s-5);
  max-width: 640px;
}
.anders__tagline strong {
  color: var(--color-gold);
  font-weight: 700;
}
.anders__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
}
.anders__sub strong { color: var(--text-bright); font-weight: 600; }

@media (max-width: 860px) {
  .anders__header {
    grid-template-columns: 1fr;
    padding: var(--s-7);
    text-align: center;
  }
  .anders__header-visual { margin: 0 auto; }
}

/* ------- Prozess-Timeline ------- */
.process-timeline {
  max-width: 1200px;
  margin: 0 auto;
}
.process-timeline__intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--s-8);
}
.process-timeline__intro strong {
  color: var(--color-gold);
  font-weight: 700;
}

.ptl {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
}

.ptl-step {
  flex: 0 0 auto;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 36px;
}
.ptl-step__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.ptl-step__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-bright);
  background: var(--bg-deeper);
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 2;
}
.ptl-step__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.ptl-step__sub {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-dim);
}

/* Agency-Steps: dezent */
.ptl-step--agency .ptl-step__dot {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-bright);
}
.ptl-step--agency .ptl-step__label { color: var(--text-muted); }

/* Me-Steps: Gold-Glow */
.ptl-step--me .ptl-step__num { color: var(--color-gold); }
.ptl-step--me .ptl-step__dot {
  background: var(--color-gold);
  border-color: var(--color-gold-light);
  box-shadow: 0 0 20px var(--color-gold-glow), 0 0 40px rgba(242, 205, 92, 0.15);
}
.ptl-step--me .ptl-step__label { color: var(--color-gold-light); }

/* Verbinder */
.ptl-connector {
  flex: 1 1 auto;
  height: 2px;
  min-width: 16px;
  border-top: 2px dashed var(--border-bright);
  margin-top: 15px; /* Mitte des Dots */
  align-self: flex-start;
  position: relative;
  top: 48px;
}
.ptl-connector--me {
  border-top-style: solid;
  border-top-color: var(--color-gold-border);
}

/* Cut-Marker */
.ptl-cut {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--s-4);
  position: relative;
  top: -12px;
}
.ptl-cut__line {
  width: 2px;
  height: 96px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(239, 120, 80, 0.8) 0,
    rgba(239, 120, 80, 0.8) 6px,
    transparent 6px,
    transparent 12px
  );
}
.ptl-cut__label {
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(239, 120, 80, 0.92);
  white-space: nowrap;
  padding: 3px 10px;
  background: rgba(239, 120, 80, 0.1);
  border: 1px solid rgba(239, 120, 80, 0.35);
  border-radius: var(--r-pill);
}

.ptl-legend {
  display: flex;
  justify-content: center;
  gap: var(--s-8);
  margin-top: var(--s-8);
  font-size: 12.5px;
  color: var(--text-muted);
}
.ptl-legend__item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.ptl-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.ptl-legend__item--agency .ptl-legend__dot {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--border-bright);
}
.ptl-legend__item--me .ptl-legend__dot {
  background: var(--color-gold);
  box-shadow: 0 0 12px var(--color-gold-glow);
}

/* Timeline Mobile: vertikal */
@media (max-width: 1100px) {
  .ptl {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-5);
    padding-left: 30px;
    position: relative;
  }
  .ptl::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--border-bright);
  }
  .ptl-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
    padding-top: 0;
    padding-left: 30px;
    position: relative;
  }
  .ptl-step__num {
    position: static;
    transform: none;
    margin-right: var(--s-3);
    order: -1;
  }
  .ptl-step__dot {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
  .ptl-step__label { margin-bottom: 0; margin-right: var(--s-3); }
  .ptl-connector { display: none; }
  .ptl-cut {
    width: 100%;
    padding-left: 0;
    top: 0;
    margin: var(--s-2) 0;
  }
  .ptl-cut__line {
    width: 100px;
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      rgba(239, 120, 80, 0.8) 0,
      rgba(239, 120, 80, 0.8) 6px,
      transparent 6px,
      transparent 12px
    );
  }
}

/* =============================================================================
   2-Lane Timeline (Before/After Vergleich Agentur vs Fachkraft Jetzt)
   8-Spalten-Grid mit 1:1 Alignment zwischen beiden Lanes
   ============================================================================= */

/* Partner-Claim Subheader über der Timeline */
.process-timeline__claim {
  text-align: center;
  max-width: 880px;
  margin: 0 auto var(--s-9);
}
.process-timeline__claim .section-label {
  margin-bottom: var(--s-3);
}
.claim__headline {
  font-size: clamp(30px, 4.0vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text-bright);
  margin: 0 0 var(--s-3);
}
.claim__sub {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
.claim__sub strong {
  color: var(--color-gold);
  font-weight: 700;
}

/* Einheitliche Karte (statt zwei separaten Lane-Boxen) */
.ptl-card {
  margin: 0 auto;
  max-width: 1180px;
  padding: var(--s-6) var(--s-7) var(--s-7);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-gold-border);
  background:
    radial-gradient(ellipse at top left, rgba(242, 205, 92, 0.05), transparent 60%),
    var(--bg-card);
  box-shadow: var(--shadow-gold);
  position: relative;
}

/* Kompakte Agentur-Zeile innerhalb der Card (unten, als Vergleichsblock) */
.ptl-compare {
  position: relative;
  padding: 0;
  margin-top: var(--s-5);
  opacity: 0.82;
}
.ptl-compare__header {
  text-align: left;
  padding-left: 6%;
  margin-bottom: var(--s-3);
}

/* Innen-Divider zwischen FKJ-Zeile (oben) und Agentur-Vergleichszeile (unten) */
.ptl-card__divider {
  position: relative;
  margin: var(--s-7) auto var(--s-6);
  height: 1px;
  max-width: 92%;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-gold-border) 20%,
    var(--color-gold-border) 80%,
    transparent 100%);
}
.ptl-card__divider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 var(--s-4);
  background: var(--bg-card);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}

/* FKJ-Hauptzeile innerhalb der Card */
.ptl-main {
  position: relative;
}
.ptl-main__header {
  text-align: left;
  padding-left: 6%;
  margin-bottom: var(--s-4);
}

/* Label-Styles (aus alter .ptl-lane__* Struktur, weiter verwendet im FKJ-Header) */
.ptl-lane__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}
.ptl-lane__tag--gold {
  background: var(--color-gold-soft);
  color: var(--color-gold);
  border-color: var(--color-gold-border);
}
.ptl-lane__title {
  font-size: 16.5px;
  color: var(--text-bright);
  margin: 0;
  font-weight: 600;
}

/* 8-Spalten-Grid für beide Lanes (1:1 Alignment) */
.ptl--agency,
.ptl--me {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--s-2);
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  align-items: start;
}

/* Horizontale Verbindungslinie (Agentur: gestrichelt, endet bei Slot 4 = ~44%) */
.ptl--agency::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 6%;
  right: 6%;
  height: 0;
  border-top: 1px dashed var(--border-bright);
  /* Cut bei ~44% = Ende von Slot 4 (Sackgasse über KI-Matching) */
  -webkit-mask: linear-gradient(90deg, black 0%, black 44%, transparent 44%);
          mask: linear-gradient(90deg, black 0%, black 44%, transparent 44%);
}
.ptl--me::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 6%;
  right: 6%;
  height: 0;
  border-top: 2px solid var(--color-gold-border);
}

/* Generische Step-Cell im Grid (überschreibt Flex-Defaults) */
.ptl--agency .ptl-step,
.ptl--me .ptl-step {
  flex: initial;
  width: auto;
  max-width: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px;
  position: relative;
}

/* --- Agentur-Lane Steps (KOMPAKT, innerhalb der Card) --- */
.ptl--agency .ptl-step {
  padding-top: 0;
  min-height: 48px;
  justify-content: flex-start;
}
.ptl--agency .ptl-step__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid var(--border-bright);
  margin-bottom: 6px;
  margin-top: 7px;
  position: relative;
  z-index: 2;
}
.ptl--agency .ptl-step__label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Leerer Slot in Agentur-Lane: unsichtbar (nur Platzhalter im 8-Spalten-Grid) */
.ptl--agency .ptl-step--empty {
  min-height: 48px;
}

/* Sackgasse (Slot 4: Bewerber übergeben. ENDE) */
.ptl--agency .ptl-step--deadend .ptl-step__dot {
  width: 14px;
  height: 14px;
  background: rgba(239, 120, 80, 0.22);
  border: 1.5px solid rgba(239, 120, 80, 0.75);
  margin-top: 5px;
  margin-bottom: 5px;
}
.ptl--agency .ptl-step--deadend .ptl-step__label {
  color: rgba(239, 120, 80, 0.98);
  font-weight: 600;
}
.ptl-step__endmark {
  display: inline-block;
  margin-top: 5px;
  font-size: 9.5px;
  font-weight: 800;
  color: rgba(239, 120, 80, 0.98);
  background: rgba(239, 120, 80, 0.14);
  border: 1px solid rgba(239, 120, 80, 0.5);
  border-radius: var(--r-pill);
  padding: 2px 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- FKJ-Lane Steps (Gold bleibt voll) --- */
.ptl--me .ptl-step {
  padding-top: 28px;
  min-height: 138px;
}
.ptl--me .ptl-step__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.ptl--me .ptl-step__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--color-gold-light);
  box-shadow: 0 0 20px var(--color-gold-glow),
              0 0 40px rgba(242, 205, 92, 0.18);
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 2;
}
.ptl--me .ptl-step__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-light);
  margin-bottom: 4px;
}
.ptl--me .ptl-step__sub {
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-dim);
}

/* Meilenstein Einstellung (Slot 6, Teal, Ruhepunkt, hebt sich ab) */
.ptl--me .ptl-step--milestone {
  padding-top: 28px;
}
.ptl-step__milestone-star {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #9EE0D2;
  text-shadow: 0 0 10px rgba(111, 191, 177, 0.7);
  z-index: 3;
}
.ptl--me .ptl-step--milestone .ptl-step__dot {
  width: 28px;
  height: 28px;
  background: #6FBFB1;
  border: 2px solid #9EE0D2;
  box-shadow: 0 0 24px rgba(111, 191, 177, 0.55),
              0 0 48px rgba(111, 191, 177, 0.22);
  margin-bottom: var(--s-3);
}
.ptl--me .ptl-step--milestone .ptl-step__label {
  color: #C4EDE3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.ptl--me .ptl-step--milestone .ptl-step__sub {
  color: var(--text-bright);
  font-weight: 600;
}

/* Einstellung: Hero-Milestone (extra hervorgehoben) */
/* Einstellung Dot: animierter Gradient + Shine */
.ptl-dot--gradient {
  width: 42px !important;
  height: 42px !important;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal), var(--color-gold)) !important;
  background-size: 300% 100% !important;
  animation: gradient-shift 9s linear infinite !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 0 28px rgba(242, 205, 92, 0.5),
              0 0 52px rgba(111, 191, 177, 0.28) !important;
}

/* Einstellung Stern: animierter Gradient-Text */
.ptl-step--hero-milestone .ptl-step__milestone-star {
  font-size: 26px !important;
  top: -21px !important;
  background: linear-gradient(110deg, var(--color-gold) 0%, var(--color-gold-light) 25%, var(--color-teal-light) 55%, var(--color-teal) 75%, var(--color-gold) 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-shift 9s linear infinite;
  filter: drop-shadow(0 0 8px rgba(242, 205, 92, 0.5));
}
.ptl-step--hero-milestone .ptl-step__dot {
  margin-top: -9px;
}

.ptl-step--hero-milestone .ptl-step__label {
  font-size: 15px !important;
  font-weight: 800 !important;
  filter: drop-shadow(0 0 6px rgba(111, 191, 177, 0.4));
}

/* Shine-Animation auf dem Einstellungs-Dot (nicht Stern/Label, das bricht Layout) */
.ptl-dot--gradient {
  overflow: hidden;
}
.ptl-dot--gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: 50%;
}

/* Extra-Meile: zwei Liniensegmente mit Text-Lücke in der Mitte */
.ptl-extra-mile {
  position: absolute;
  bottom: -24px;
  left: 44%;
  right: 4%;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 4;
}
/* Linkes Liniensegment mit Pfeil */
.ptl-extra-mile::before {
  content: '';
  flex: 1;
  height: 0;
  border-top: 1.5px dashed rgba(111, 191, 177, 0.45);
  border-left: 6px solid rgba(111, 191, 177, 0.55);
}
/* Rechtes Liniensegment mit Pfeil */
.ptl-extra-mile::after {
  content: '';
  flex: 1;
  height: 0;
  border-top: 1.5px dashed rgba(111, 191, 177, 0.45);
  border-right: 6px solid rgba(111, 191, 177, 0.55);
}
.ptl-extra-mile__text {
  flex-shrink: 0;
  padding: 0 10px;
  font-size: 10px;
  font-style: italic;
  color: #9EE0D2;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* VS Divider zwischen Lanes */
.ptl-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  max-width: 820px;
  margin: var(--s-6) auto;
  color: var(--color-gold);
}
.ptl-vs__line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-border), transparent);
}
.ptl-vs__text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* 2-Lane Timeline Mobile: beide Lanes vertikal, aligned via 2-Spalten-Layout */
@media (max-width: 1100px) {
  .ptl-lane { padding: var(--s-5) var(--s-4); }
  .ptl--agency,
  .ptl--me {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    padding-left: 30px;
  }
  .ptl--agency::before,
  .ptl--me::before {
    top: 10px;
    bottom: 10px;
    left: 7px;
    right: auto;
    width: 0;
    height: auto;
    border-top: none;
    -webkit-mask: none;
            mask: none;
  }
  .ptl--agency::before { border-left: 1px dashed var(--border-bright); }
  .ptl--me::before { border-left: 2px solid var(--color-gold-border); }

  .ptl--agency .ptl-step,
  .ptl--me .ptl-step {
    width: 100%;
    max-width: none;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0 0 0 30px;
    position: relative;
  }
  .ptl--agency .ptl-step__dot,
  .ptl--me .ptl-step__dot {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
  .ptl--me .ptl-step__num {
    position: static;
    transform: none;
    margin-right: var(--s-3);
    order: -1;
  }
  .ptl--me .ptl-step__label { margin-bottom: 0; margin-right: var(--s-3); }

  /* Leere Slots auf Mobile verstecken (Platzverschwendung) */
  .ptl--agency .ptl-step--empty { display: none; }
  .ptl--agency .ptl-step--empty::before { display: none; }

  /* Meilenstein auf Mobile */
  .ptl--me .ptl-step--milestone { padding-top: 0; padding-left: 44px; }
  .ptl--me .ptl-step--milestone .ptl-step__dot { left: -44px; }
  .ptl-step__milestone-star { position: absolute; top: 50%; left: -48px; transform: translate(-50%, -50%); }

  /* Sackgasse Endmark auf Mobile */
  .ptl-step__endmark { margin-top: 0; margin-left: var(--s-2); }
}

/* ------- USP-Gruppen ------- */
.usp-groups {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  max-width: 1200px;
  margin: 0 auto;
}
.usp-group {
  /* Unit */
}
.usp-group__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--s-8);
}
.usp-group__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  background: var(--color-gold-soft);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-4);
}
.usp-group__title {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: var(--text-bright);
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
}
.usp-group__sub {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.usp-group__sub strong { color: var(--text-bright); font-weight: 600; }

.usp-group__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-6);
}

.usp-card {
  position: relative;
  padding: var(--s-7);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
  overflow: hidden;
}
.usp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--color-teal-soft), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.usp-card:hover::before { opacity: 0.7; }
.usp-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-teal-border);
  box-shadow: var(--shadow-card-lg);
}

.usp-card--featured {
  background:
    radial-gradient(ellipse at top left, rgba(242, 205, 92, 0.08), transparent 60%),
    var(--bg-card-featured);
  border-color: var(--color-gold-border);
  box-shadow: var(--shadow-gold);
}
.usp-card--featured:hover {
  border-color: var(--color-gold-border);
  box-shadow: var(--shadow-gold), var(--shadow-card-lg);
}

.usp-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: var(--color-gold);
  color: #1a1205;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 16px var(--color-gold-glow);
  z-index: 2;
}
.usp-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 1;
}
.usp-card--featured .usp-card__icon {
  background: var(--color-gold-soft);
  border-color: var(--color-gold-border);
  box-shadow: 0 0 30px var(--color-gold-glow);
}
.usp-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 1;
}
.usp-card__tag--gold {
  color: var(--color-gold);
}
.usp-card__title {
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-bright);
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 1;
}
.usp-card__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.usp-card__desc strong { color: var(--text-bright); font-weight: 600; }
.usp-card__desc em { color: var(--color-gold); font-style: italic; }

@media (max-width: 1100px) {
  .usp-group__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .usp-group__cards { grid-template-columns: 1fr; }
}


.section-h2--compact {
  font-size: clamp(26px, 3.2vw, 38px);
}

/* Methodology Sticky: CTA + Trust */
.methodology__sticky .btn-primary {
  width: 100%;
  justify-content: center;
}
.methodology__trust {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.methodology__trust .hero__pills-grid {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 6px;
}
.methodology__trust .reviews-bar {
  justify-content: center;
  gap: var(--s-3);
}

/* =============================================================================
   SCREEN-READER ONLY (SEO + Accessibility)
   ============================================================================= */
.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;
}

/* =============================================================================
   PROJEKTVERLAUF (SVG Timeline)
   ============================================================================= */
.projektverlauf-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: var(--s-8);
}
.projektverlauf-wrap.prognose-card {
  max-width: none;
  overflow: hidden;
  background: rgba(6, 14, 22, 0.65);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(242, 205, 92, 0.30);
  box-shadow:
    0 0 20px rgba(242, 205, 92, 0.12),
    0 0 50px rgba(242, 205, 92, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.projektverlauf-img {
  display: block;
  width: 100%;
  max-width: 1520px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .projektverlauf-img {
    min-width: 900px;
  }
}


/* =============================================================================
   INVEST-BRIDGE (CTA auf Hauptseite → /investition)
   ============================================================================= */
.invest-bridge {
  /* Default section padding aus section{} */
}
.invest-bridge__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.invest-bridge__headline {
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.35;
  color: var(--text-bright);
  margin-bottom: var(--s-6);
  font-weight: 700;
}
.invest-bridge__keyword {
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: filter 0.3s ease;
}
.invest-bridge__keyword:hover {
  filter: brightness(1.2);
}
.invest-bridge__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--s-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.invest-bridge__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =============================================================================
   INVEST-HERO + INVEST-CTA (Investitions-Unterseite)
   ============================================================================= */
.invest-hero {
  padding-top: calc(80px + var(--s-12));
  padding-bottom: var(--s-6);
  text-align: center;
}
.invest-cta {
  padding: var(--s-12) 0;
}
.invest-cta__box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: var(--s-10);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl, 16px);
  background: var(--bg-card);
}
.invest-cta__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.invest-cta__fine {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: var(--s-4);
}

/* =============================================================================
   MITARBEITERPROGNOSE — KI-Tool + Lead-Capture
   ============================================================================= */

/* Prognose-Sektion: knackiger Gold/Teal Gradient wie der CTA-Button */
.section--prognose {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Gradient-Sektion: doppeltes Padding oben/unten, damit der optische
     Übergang zwischen dunkel → gradient → dunkel visuell konsistent
     mit den normalen Sektions-Abständen wirkt. */
  padding-top: clamp(128px, 18vw, 256px);
  padding-bottom: clamp(128px, 18vw, 256px);
  background:
    linear-gradient(135deg,
      rgba(242, 205, 92, 0.12) 0%,
      rgba(111, 191, 177, 0.10) 50%,
      rgba(242, 205, 92, 0.08) 100%
    );
  border-top: 1px solid rgba(242, 205, 92, 0.25);
  border-bottom: 1px solid rgba(111, 191, 177, 0.20);
  box-shadow:
    0 0 120px rgba(242, 205, 92, 0.10),
    0 0 240px rgba(111, 191, 177, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section--prognose::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 30% 0%, rgba(242, 205, 92, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 100%, rgba(111, 191, 177, 0.12), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(242, 205, 92, 0.04), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.section--prognose::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 205, 92, 0.5), rgba(111, 191, 177, 0.4), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Wizard Container */
.prognose-wizard {
  max-width: 720px;
  margin: 0 auto;
}

/* Progress Steps */
.prognose-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--s-7);
}

.prognose-progress__step {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  opacity: 0.35;
  transition: opacity var(--t-base);
}

.prognose-progress__step.is-active {
  opacity: 1;
}

.prognose-progress__step.is-done {
  opacity: 0.7;
}

.prognose-progress__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  border: 1.5px solid var(--border-bright);
  background: var(--bg-card);
  transition: all var(--t-base);
}

.prognose-progress__step.is-active .prognose-progress__num {
  color: var(--bg);
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal), var(--color-gold));
  background-size: 300% 100%;
  animation: gradient-shift 9s linear infinite;
  border-color: transparent;
  box-shadow:
    0 0 20px rgba(242, 205, 92, 0.3),
    0 0 40px rgba(111, 191, 177, 0.1);
}

.prognose-progress__step.is-done .prognose-progress__num {
  color: var(--bg);
  background: var(--color-teal);
  border-color: var(--color-teal);
}

.prognose-progress__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.prognose-progress__step.is-active .prognose-progress__label {
  color: var(--text-bright);
}

.prognose-progress__line {
  width: clamp(32px, 5vw, 64px);
  height: 1.5px;
  background: var(--border-bright);
  margin: 0 var(--s-3);
  transition: background var(--t-base);
}

.prognose-progress__step.is-done + .prognose-progress__line {
  background: var(--color-teal);
}

#mitarbeiterprognose {
  overflow: visible;
}

/* 50/50 Layout: Text links, Tool rechts */
.prognose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  align-items: start;
}

.prognose-layout__text {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
  align-self: start;
}

.prognose-layout__text .section-label {
  margin-bottom: var(--s-2);
}

.prognose-layout__text .section-h2 {
  text-align: left;
  margin-left: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  margin-top: 0;
  margin-bottom: var(--s-4);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.prognose-layout__text .section-sub {
  text-align: left;
  margin-left: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .prognose-layout {
    grid-template-columns: 1fr;
  }
  .prognose-layout__text {
    position: static;
    text-align: center;
  }
  .prognose-layout__text .section-h2,
  .prognose-layout__text .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Steps */
.prognose-step {
  display: none;
}

.prognose-step.is-active {
  display: block;
  animation: prognose-fadein 0.4s var(--ease-out) both;
}

@keyframes prognose-fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card (Glassmorphism, dunkel für Kontrast) */
.prognose-card {
  background: linear-gradient(180deg, rgba(18, 36, 46, 0.72) 0%, rgba(14, 30, 40, 0.68) 100%);
  border: none;
  border-radius: var(--r-lg);
  padding: var(--s-7);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  isolation: isolate;
}

.prognose-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal), var(--color-gold));
  background-size: 300% 100%;
  animation: gradient-shift 9s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.prognose-card::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--r-lg) + 6px);
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal), var(--color-gold));
  background-size: 300% 100%;
  animation: gradient-shift 9s linear infinite;
  filter: blur(22px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

.prognose-card__title {
  font-size: var(--fs-h3);
  color: var(--text-bright);
  margin-bottom: var(--s-3);
}

.prognose-card__sub {
  font-size: 15px;
  color: rgba(226, 234, 240, 0.85);
  line-height: 1.55;
  margin-bottom: var(--s-8);
}

/* Form Fields */
.prognose-field {
  margin-bottom: var(--s-4);
}

.prognose-field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(226, 234, 240, 0.9);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.prognose-field__input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(8, 18, 26, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  color: #ffffff;
  font-size: 16px;
  font-family: var(--font-sans);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

.prognose-field__input::placeholder {
  color: rgba(226, 234, 240, 0.55);
}

.prognose-field__input:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px var(--color-teal-soft);
}

/* Custom Autocomplete Dropdown */
.prognose-field--ac {
  position: relative;
}

.prognose-ac {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 260px;
  overflow-y: auto;
  background: #0E1E2E;
  border: 1px solid var(--border-bright);
  border-top: none;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.prognose-ac.is-open {
  display: block;
}

.prognose-ac__item {
  padding: 11px 18px;
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  border-bottom: 1px solid var(--border);
}

.prognose-ac__item:last-child {
  border-bottom: none;
}

.prognose-ac__item:hover,
.prognose-ac__item.is-active {
  background: var(--color-teal-soft);
  color: var(--text-bright);
}

.prognose-ac__item.is-active {
  border-left: 3px solid var(--color-teal);
  padding-left: 15px;
}

/* Button Group (Anzahl) */
.prognose-btn-group {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}

.prognose-btn-group__btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-bright);
  border-radius: var(--r-sm);
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}

.prognose-btn-group__btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--text-bright);
}

.prognose-btn-group__btn.is-active {
  background: var(--color-gold-soft);
  border-color: var(--color-gold-border);
  color: var(--color-gold);
  box-shadow: 0 0 16px rgba(242, 205, 92, 0.15);
}

/* Next/Back Buttons */
.prognose-next {
  width: 100%;
  justify-content: center;
  margin-top: var(--s-4);
  flex-direction: column;
  text-align: center;
  white-space: normal;
  gap: 2px;
}

/* Button immer aktiv, Validation beim Klick */

/* USP-Pills unter dem CTA */
.prognose-usps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-5);
}

.prognose-usp {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.12) 0%, rgba(111, 191, 177, 0.12) 100%);
  border: 1px solid rgba(111, 191, 177, 0.25);
  color: var(--color-teal);
  box-shadow: 0 0 12px rgba(111, 191, 177, 0.1);
}

.prognose-usp svg {
  flex-shrink: 0;
}

.prognose-source {
  text-align: center;
  font-size: 10px;
  color: var(--text-dim);
  margin-top: var(--s-4);
  line-height: 1.5;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.prognose-step-btns {
  display: flex;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.prognose-step-btns .prognose-back {
  flex-shrink: 0;
}

.prognose-step-btns .prognose-next {
  flex: 1;
  margin-top: 0;
}

/* Benefit Cards Grid */
.prognose-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

.prognose-benefit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  background: rgba(8, 18, 26, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: left;
}

.prognose-benefit:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.prognose-benefit.is-selected {
  background: var(--color-gold-soft);
  border-color: var(--color-gold-border);
  box-shadow: 0 0 24px rgba(242, 205, 92, 0.18), 0 0 60px rgba(242, 205, 92, 0.06);
}

.prognose-benefit__icon {
  color: rgba(226, 234, 240, 0.75);
  transition: color var(--t-fast);
}

.prognose-benefit.is-selected .prognose-benefit__icon {
  color: var(--color-gold);
}

.prognose-benefit__icon--euro {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.prognose-benefit__icon svg {
  width: 18px;
  height: 18px;
}

.prognose-benefit__text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(226, 234, 240, 0.9);
  line-height: 1.3;
  text-align: left;
}

.prognose-benefit.is-selected .prognose-benefit__text {
  color: var(--text-bright);
  font-weight: 600;
}

/* Score Bar */
.prognose-score {
  margin-bottom: 0;
}

.prognose-score__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-bottom: var(--s-2);
}

.prognose-score__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--warning), var(--color-gold), var(--color-teal));
  border-radius: var(--r-pill);
  transition: width 0.5s var(--ease-out);
}

.prognose-score__labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(226, 234, 240, 0.8);
}

.prognose-score__value {
  font-weight: 700;
  color: var(--color-gold);
}

/* Terminal Animation */
.prognose-terminal {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.prognose-terminal__ring {
  position: absolute;
  inset: -8px;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: terminal-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes terminal-pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

.prognose-terminal__window {
  background: #0A1628;
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md);
  overflow: hidden;
}

.prognose-terminal__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.prognose-terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.prognose-terminal__dot:first-child { background: #FF5F57; }
.prognose-terminal__dot:nth-child(2) { background: #FEBC2E; }
.prognose-terminal__dot:nth-child(3) { background: #28C840; }

.prognose-terminal__title {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

.prognose-terminal__body {
  padding: 18px 20px;
  font-family: "SF Mono", "Fira Code", "Menlo", monospace;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--color-teal);
  min-height: 200px;
}

.prognose-terminal__body .term-line {
  opacity: 0;
  animation: term-type 0.3s ease forwards;
}

.prognose-terminal__body .term-line--done {
  color: var(--color-gold);
}

@keyframes term-type {
  from { opacity: 0; transform: translateX(-4px); }
  to   { opacity: 1; transform: translateX(0); }
}

.prognose-terminal__progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.prognose-terminal__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  transition: width 0.3s linear;
}

/* KPI Grid */
/* ── Step 3: Hero-KPIs (3 Kacheln) ── */
.prognose-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}

.prognose-kpi-basis {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: var(--s-3);
  text-align: center;
}

.prognose-kpi-grid--compact {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: var(--s-5);
}

.prognose-kpi {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md);
  padding: var(--s-6) var(--s-5);
  text-align: center;
}

.prognose-kpi--featured {
  border: none;
  position: relative;
  background-clip: padding-box;
  box-shadow:
    0 0 30px rgba(242, 205, 92, 0.15),
    0 0 60px rgba(111, 191, 177, 0.08);
}

.prognose-kpi--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal), var(--color-gold));
  background-size: 300% 100%;
  animation: gradient-shift 9s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.prognose-kpi--featured .prognose-kpi__value {
  background: linear-gradient(110deg, var(--color-gold) 0%, var(--color-gold-light) 25%, var(--color-teal-light) 55%, var(--color-teal) 75%, var(--color-gold) 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-shift 9s linear infinite;
}

.prognose-kpi__cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--s-2);
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  color: #0B1D2A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(242, 205, 92, 0.35),
    0 0 30px rgba(242, 205, 92, 0.18),
    0 0 50px rgba(111, 191, 177, 0.12);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.prognose-kpi__cta-hint::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

.prognose-kpi--cta:hover .prognose-kpi__cta-hint {
  transform: translateY(-1px);
  box-shadow:
    0 6px 22px rgba(242, 205, 92, 0.45),
    0 0 40px rgba(242, 205, 92, 0.25),
    0 0 70px rgba(111, 191, 177, 0.18);
}

.prognose-kpi__value {
  display: block;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: var(--s-2);
}

.prognose-kpi__value--gold {
  color: var(--color-gold);
}

.prognose-kpi__value--teal {
  color: var(--color-teal);
}

.prognose-kpi__label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}

.prognose-kpi__bench {
  display: none;
  font-size: 11px;
  color: var(--color-teal);
  margin-top: var(--s-2);
  font-weight: 600;
}

.prognose-kpi__bench.is-visible {
  display: block;
}

/* Attraktivitäts-Meter */
.prognose-attr-meter {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-sm);
}

.prognose-attr-meter__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.prognose-attr-meter__bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.prognose-attr-meter__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  border-radius: var(--r-pill);
  transition: width 1.2s var(--ease-out);
}

.prognose-attr-meter__score {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
  min-width: 52px;
  text-align: right;
}

/* Skalierungs-Hinweis bei mehreren Stellen */
.prognose-scale-note {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  padding: var(--s-4) var(--s-5);
  background: rgba(242, 205, 92, 0.06);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-sm);
  margin-bottom: var(--s-4);
}

.prognose-scale-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.prognose-scale-note p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-bright);
}

/* KI-Insight Einzeiler */
.prognose-insight-line {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-teal);
  margin-bottom: var(--s-6);
  padding: 0 var(--s-2);
  text-align: center;
}

.prognose-insight-line:empty {
  display: none;
}

/* ── ROI-Snapshot ── */
.prognose-roi-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-3);
}

.prognose-roi-snapshot__col {
  padding: var(--s-6);
  border-radius: var(--r-md);
  text-align: center;
}

.prognose-roi-snapshot__col--warning {
  background: rgba(239, 120, 80, 0.06);
  border: 1px solid rgba(239, 120, 80, 0.25);
}

.prognose-roi-snapshot__col--gold {
  background: rgba(242, 205, 92, 0.04);
  border: 1px solid var(--color-gold-border);
}

.prognose-roi-snapshot__col--muted {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  opacity: 0.7;
}

.prognose-roi-snapshot__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: var(--s-2);
}

.prognose-roi-snapshot__value {
  display: block;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--s-1);
}

.prognose-roi-snapshot__value--red {
  color: var(--warning);
}

.prognose-roi-snapshot__value--gold {
  color: var(--color-gold);
}

.prognose-roi-snapshot__pricing {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.4;
}

.prognose-roi-snapshot__pricing--highlight {
  color: var(--color-gold);
  font-size: 17px;
  font-weight: 700;
  margin-top: var(--s-1);
}

.prognose-roi-snapshot__dimmed {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: var(--s-3);
}

/* ── Kampagnen-KPIs ── */
.prognose-campaign-kpis {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md);
  padding: var(--s-5);
  margin-bottom: var(--s-5);
  text-align: center;
}

.prognose-campaign-kpis__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: var(--s-5);
}

.prognose-campaign-kpis__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.prognose-campaign-kpis__card {
  text-align: center;
  padding: var(--s-3) var(--s-4);
  background: rgba(242, 205, 92, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.prognose-campaign-kpis__abbr {
  display: inline;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-gold);
}

.prognose-campaign-kpis__name {
  display: inline;
  font-size: 10px;
  color: var(--text-dim);
  margin-left: 2px;
}

.prognose-campaign-kpis__val {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.3;
  margin: var(--s-1) 0;
}

.prognose-campaign-kpis__record {
  display: block;
  font-size: 11px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--s-1);
  letter-spacing: 0.02em;
}

.prognose-campaign-kpis__saving {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--color-teal);
  background: rgba(111, 191, 177, 0.1);
  padding: 1px 6px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-1);
}

.prognose-campaign-kpis__bench {
  display: block;
  font-size: 10px;
  color: var(--text-dim);
}

.prognose-campaign-kpis__note {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
}

/* ── Vakanzkosten-Box ── */
.prognose-vacancy-box {
  background: rgba(239, 120, 80, 0.05);
  border: 1px solid rgba(239, 120, 80, 0.2);
  border-radius: var(--r-md);
  padding: var(--s-6);
  margin-bottom: var(--s-4);
}

.prognose-vacancy-box__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--warning);
  margin-bottom: var(--s-5);
}

.prognose-vacancy-box__rows {
  margin-bottom: var(--s-5);
}

.prognose-vacancy-box__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-2) 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.prognose-vacancy-box__row:last-child {
  border-bottom: none;
}

.prognose-vacancy-box__row span:last-child {
  font-weight: 600;
  color: var(--text-bright);
  white-space: nowrap;
  margin-left: var(--s-4);
}

.prognose-vacancy-box__row--total {
  border-top: 2px solid rgba(239, 120, 80, 0.3);
  border-bottom: none;
  padding-top: var(--s-3);
  margin-top: var(--s-2);
}

.prognose-vacancy-box__row--total span:first-child {
  font-weight: 700;
  color: var(--warning);
}

.prognose-vacancy-box__row--total span:last-child {
  font-size: 18px;
  font-weight: 700;
  color: var(--warning);
}

.prognose-vacancy-box__multi {
  text-align: center;
  padding: var(--s-4);
  margin-top: var(--s-4);
  background: rgba(239, 120, 80, 0.1);
  border-radius: var(--r-sm);
  font-size: 16px;
  font-weight: 700;
  color: var(--warning);
}

.prognose-vacancy-box__source {
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
}

/* ── CTA-Zone ── */
.prognose-cta-zone {
  text-align: center;
  margin-bottom: var(--s-4);
}

.prognose-cta-zone__primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 20px var(--s-8);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #0B1D2A;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast);
  box-shadow: 0 4px 24px rgba(242, 205, 92, 0.25);
}

.prognose-cta-zone__primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

.prognose-cta-zone__primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 20px rgba(242, 205, 92, 0.4),
    0 0 50px rgba(242, 205, 92, 0.2),
    0 0 80px rgba(111, 191, 177, 0.15);
}

.prognose-cta-zone__primary .cta-sub {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.75;
  margin: 0;
  line-height: 1.2;
}

.prognose-cta-zone__sub {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: var(--s-3);
  margin-bottom: var(--s-5);
}

.prognose-cta-zone__checks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-6);
  margin-bottom: var(--s-5);
}

.prognose-cta-zone__checks li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}

.prognose-cta-zone__checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236FBFB1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}

.prognose-cta-zone__authority {
  margin-top: var(--s-4);
}

.prognose-cta-zone__authority .hero__pills-grid {
  justify-content: center;
  margin-bottom: var(--s-4);
}

.prognose-cta-zone__authority .reviews-bar {
  justify-content: center;
}

/* ── Lead-Capture Accordion ── */
.prognose-lead-accordion {
  border-top: 1px solid var(--border);
  padding-top: var(--s-5);
}

.prognose-lead-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: 100%;
  padding: var(--s-3) 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.prognose-lead-accordion__trigger:hover {
  color: var(--text-muted);
}

.prognose-lead-accordion__chevron {
  transition: transform 0.25s var(--ease-out);
}

.prognose-lead-accordion__trigger.is-open .prognose-lead-accordion__chevron {
  transform: rotate(180deg);
}

.prognose-lead-accordion__body {
  padding-top: var(--s-5);
}

.prognose-lead-accordion__submit {
  width: 100%;
  justify-content: center;
}

/* Lead form fields (shared) */
.prognose-lead__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.prognose-lead__consent {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 13px;
  color: var(--text-dim);
  text-align: left;
  margin-bottom: var(--s-6);
  cursor: pointer;
}

.prognose-lead__consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
}

.prognose-lead__consent a {
  color: var(--color-teal);
  text-decoration: underline;
}

.prognose-lead__success {
  padding: var(--s-8);
  text-align: center;
}

.prognose-lead__success svg {
  margin: 0 auto var(--s-4);
}

.prognose-lead__success p {
  font-size: 16px;
  color: var(--text-bright);
  line-height: 1.55;
}

/* Result fade-in */
.prognose-result {
  animation: prognose-fadein 0.6s var(--ease-out) both;
}

/* ---- Responsive: Prognose ---- */
@media (max-width: 860px) {
  .prognose-benefits {
    grid-template-columns: 1fr 1fr;
  }
  .prognose-kpi-grid--compact {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .prognose-lead__fields {
    grid-template-columns: 1fr;
  }
  .prognose-roi-snapshot {
    grid-template-columns: 1fr 1fr;
  }
  .prognose-attr-meter {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-2);
  }
  .prognose-attr-meter__score {
    text-align: left;
  }
  .prognose-cta-zone__authority .hero__pills-grid {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .prognose-card {
    padding: var(--s-7) var(--s-5);
  }
  .prognose-benefits {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3);
  }
  .prognose-benefit {
    padding: var(--s-4) var(--s-3);
  }
  .prognose-kpi-grid--compact {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  .prognose-kpi {
    padding: var(--s-5) var(--s-4);
  }
  .prognose-roi-snapshot {
    grid-template-columns: 1fr;
  }
  .prognose-progress__label {
    display: none;
  }
  .prognose-progress__line {
    width: 32px;
  }
  .prognose-cta-zone__primary {
    font-size: 16px;
    padding: var(--s-4) var(--s-6);
  }
  .prognose-step-btns {
    flex-direction: column-reverse;
  }
  .prognose-step-btns .prognose-next {
    width: 100%;
  }
  .prognose-terminal__body {
    font-size: 12px;
    padding: 14px 16px;
    min-height: 180px;
  }
}


/* =============================================================================
   GARANTIEN-SEKTION (Premium Trust-Block, zwei harte Versprechen)
   ============================================================================= */
.guarantees-section {
  position: relative;
  /* Default section padding aus section{} */
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}

@media (max-width: 1100px) {
  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
  }
}

@media (max-width: 720px) {
  .guarantees-grid {
    grid-template-columns: 1fr;
  }
}

/* No-Money-Back Block unterhalb der Garantien */
.no-moneyback {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  align-items: start;
  max-width: 880px;
  margin: var(--s-9) auto 0;
  padding: var(--s-6) var(--s-7);
  background: rgba(8, 21, 32, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.no-moneyback__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 191, 177, 0.08);
  border: 1px solid rgba(111, 191, 177, 0.25);
  border-radius: 999px;
}

.no-moneyback__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin: 0 0 var(--s-3);
  color: var(--text);
  letter-spacing: -0.01em;
}

.no-moneyback__body p {
  margin: 0 0 var(--s-3);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.no-moneyback__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .no-moneyback {
    grid-template-columns: 1fr;
    padding: var(--s-5) var(--s-5);
  }
}

/* Premium Card — eigene Klasse, nicht die g-card aus investition */
.g-card--premium {
  position: relative;
  overflow: visible;
  padding: 52px 36px 36px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 30% 15%, rgba(242, 205, 92, 0.07), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(111, 191, 177, 0.07), transparent 55%),
    rgba(8, 21, 32, 0.6);
  border: 1px solid transparent;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.32),
    0 4px 20px rgba(242, 205, 92, 0.08),
    0 4px 20px rgba(111, 191, 177, 0.08);
  isolation: isolate;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Gradient-Border via Masked Pseudo */
.g-card--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.g-card--premium:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 60px rgba(0, 0, 0, 0.42),
    0 10px 48px rgba(242, 205, 92, 0.18),
    0 10px 48px rgba(111, 191, 177, 0.18);
}

.g-card--premium > * {
  position: relative;
  z-index: 2;
}

/* Visual (SVG-Wrapper) */
.g-card--premium__visual {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--s-6);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 20px rgba(242, 205, 92, 0.12)) drop-shadow(0 4px 20px rgba(111, 191, 177, 0.12));
}

.g-card--premium__visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Pill — Award-Badge oben auf der Kachel (ersetzt Eyebrow) */
.g-card--premium__pill {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  color: #081520;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r-pill, 99px);
  white-space: nowrap;
  box-shadow:
    0 8px 24px rgba(242, 205, 92, 0.30),
    0 8px 24px rgba(111, 191, 177, 0.30),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* Eyebrow (Produkt-Label, Gradient-Text) */
.g-card--premium__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* Title */
.g-card--premium__title {
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-bright);
  margin: 0 0 var(--s-4) 0;
  letter-spacing: -0.01em;
}

.g-card--premium__title .gradient-text {
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Body */
.g-card--premium__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 var(--s-5) 0;
}

/* Footnote */
.g-card--premium__footnote {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.55;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(158, 224, 210, 0.15);
  margin: 0;
}

@media (max-width: 560px) {
  .g-card--premium {
    padding: 32px 24px 28px;
  }
  .g-card--premium__visual {
    width: 150px;
    height: 150px;
  }
}
