/* ===================================
   SYSTEM ATELIER – Main Stylesheet
   CI: Primär #1F2A44 | Akzent #F5B942 (Gold/Amber hell) | BG #ffffff
   Headlines: Nirand (Fallback: Playfair Display)
   Fließtext: Montserrat
   =================================== */

/* ── Fade-In via IntersectionObserver ── */
.fade-in-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
.fade-in-ready.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto; /* nach Animation will-change zurücksetzen */
}

/* ── Aktiver Nav-Link ── */
.nav-links a.active { color: #fff; font-weight: 700; }



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

:root {
  /* ── Markenfarben ── */
  --primary:        #1F2A44;
  --accent:         #F5B942;
  --accent-light:   #FEF6E0;
  --accent-dark:    #D99B1E;
  --green:          #27AE60;
  --yellow:         #F2C94C;
  --white:          #ffffff;
  --bg:             #ffffff;

  /* ── Grau-Palette ── */
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-300:   #D1D5DB;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-800:   #1F2937;

  /* ── Schriften ── */
  --font-title: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:  'Montserrat', system-ui, -apple-system, sans-serif;

  /* ── Schatten ── */
  --shadow-sm:  0 1px 3px rgba(31,42,68,.06), 0 1px 2px rgba(31,42,68,.04);
  --shadow-md:  0 4px 20px rgba(31,42,68,.09), 0 2px 8px rgba(31,42,68,.06);
  --shadow-lg:  0 10px 40px rgba(31,42,68,.12), 0 4px 16px rgba(31,42,68,.08);

  /* ── Radien & Animation ── */
  --radius:     20px;
  --radius-sm:  12px;
  --radius-xs:  8px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }
/* Auf Mobile: smooth scroll deaktivieren (verhindert Lag bei iOS) */
@media (max-width: 768px) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Alle Headline-Tags bekommen Nirand ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}

/* ── Spezifische Headline-Weights ── */
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }
h4 { font-weight: 600; }

/* ── UTILS ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.highlight { color: var(--accent); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: var(--primary);
  padding: 14px 28px; border-radius: 50px; font-weight: 700;
  font-size: .95rem; font-family: var(--font-body);
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(245,185,66,.3);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,185,66,.4); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--primary);
  padding: 13px 28px; border-radius: 50px; font-weight: 600;
  font-size: .95rem; font-family: var(--font-body);
  text-decoration: none; border: 2px solid var(--gray-200);
  transition: all var(--transition); cursor: pointer;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  height: 80px;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity .2s;
  filter: brightness(0) invert(1);
}
.nav-logo:hover .nav-logo-img { opacity: .75; }
.nav-logo-text {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.nav-logo-text strong {
  display: block;
  color: var(--white);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .1em;
}
.text-logo {
  font-family: var(--font-title);
  font-size: 1.2rem; letter-spacing: .06em; color: var(--primary);
  text-decoration: none; display: inline-block; font-weight: 700;
}
.text-logo strong { color: var(--accent); font-weight: 800; }
.footer-brand { font-size: 1rem; display: block; margin-bottom: .6rem; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,.75); font-weight: 500; font-size: .9rem; transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 1rem;
  padding: 1.5rem 24px; background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: sticky; top: 80px; z-index: 998;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,.85); font-weight: 600; text-decoration: none; font-size: 1.05rem; }
.mobile-menu a:hover { color: var(--white); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--primary); line-height: 1.2; margin-bottom: .75rem; font-family: var(--font-title); }
.section-sub { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #FFFDF7 0%, #FDFAF3 50%, #FFF8E8 100%);
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,185,66,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: #ffffff; font-weight: 700; font-size: .8rem;
  padding: 7px 18px; border-radius: 6px; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: .07em;
  box-shadow: 0 2px 8px rgba(31,42,68,.18);
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800;
  font-family: var(--font-title);
  color: var(--primary); line-height: 1.1; margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: var(--gray-600); font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.7;
}

.hero-bullets { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; }
.hero-bullets li i { color: var(--green); font-size: .85rem; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust { display: flex; align-items: center; gap: 1rem; }
.trust-stars { display: flex; align-items: center; gap: 4px; color: #F59E0B; font-size: .9rem; }
.trust-stars span { color: var(--gray-800); font-weight: 700; margin-left: 4px; }
.trust-text { color: var(--gray-400); font-size: .82rem; }

/* QUIZ WIDGET */
.hero-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding-top: 0;
  margin-top: -1.5rem;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-top: -2rem;
}

.hero-logo-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  /* Sanfter Einschwebeffekt */
  animation: floatLogo 5s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 8px 32px rgba(245,185,66,.15));
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.widget-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 2rem;
  width: 100%; max-width: 380px;
  animation: floatCard 4s ease-in-out infinite;
  will-change: transform;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.widget-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.widget-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--accent-light); }
.widget-avatar img { width: 100%; height: 100%; object-fit: cover; }
.widget-info strong { display: block; font-size: .9rem; color: var(--primary); }
.widget-info span { font-size: .78rem; color: var(--gray-400); }

.widget-bubble {
  background: var(--gray-100); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: .9rem; font-weight: 500;
  color: var(--primary); margin-bottom: 1.25rem; line-height: 1.5;
}
.widget-bubble.quiz-success { background: #E6F4EA; color: #1a7c3a; }

.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1rem; }
.quiz-option {
  background: var(--gray-50); border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 1rem .75rem;
  cursor: pointer; text-align: center; transition: all var(--transition);
  font-family: var(--font-body);
}
.quiz-option:hover { border-color: var(--accent); background: var(--accent-light); }
.quiz-option .quiz-icon { font-size: 1.8rem; margin-bottom: .4rem; }
.quiz-option span { font-size: .85rem; font-weight: 700; color: var(--primary); }

.quiz-step { margin-top: .5rem; }

/* ── HERO CHECK WIDGET (Emotionaler Schnellcheck) ── */

/* Sekundärer CTA-Button im Hero */
.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--gray-300);
  padding: .72rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.btn-secondary-hero:hover {
  border-color: var(--primary);
  background: var(--gray-50);
  color: var(--primary);
}

/* Widget Steps */
.hc-step { animation: hcFadeIn .28s ease; }
@keyframes hcFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Sprechblasen-Text */
.hc-bubble {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: .75rem;
  line-height: 1.5;
  display: inline-block;
}

/* Frage-Text */
.hc-q {
  font-size: .98rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 1rem;
}

/* Antwort-Buttons */
.hc-opts {
  display: flex;
  flex-direction: column;
  gap: .52rem;
  margin-bottom: .75rem;
}
.hc-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .72rem 1rem;
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  transition: border-color .18s, background .18s, transform .15s;
  line-height: 1.35;
}
.hc-opt i {
  color: var(--accent);
  font-size: .88rem;
  width: 16px;
  flex-shrink: 0;
}
.hc-opt:hover {
  border-color: var(--primary);
  background: var(--white);
  transform: translateX(3px);
}

/* Ergebnis-Step */
.hc-result-icon {
  font-size: 2.2rem;
  color: #27AE60;
  text-align: center;
  margin-bottom: .75rem;
}
.hc-result-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: .4rem;
  line-height: 1.3;
}
.hc-result-desc {
  font-size: .84rem;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.hc-cta {
  margin-bottom: .6rem !important;
  font-size: .9rem !important;
}
.hc-restart {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  text-align: center;
  padding: .3rem;
  transition: color .18s;
}
.hc-restart:hover { color: var(--primary); }

.widget-footer {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--gray-400); margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.online-dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.5; } }

/* ── FUNNEL SECTION ── */
.funnel-section {
  padding: 6rem 0; background: var(--white);
}
.funnel-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}

.funnel-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  font-family: var(--font-title);
  color: var(--primary); margin-bottom: 1.25rem; line-height: 1.15;
  letter-spacing: -0.02em;
}
.funnel-text p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.7; }

.funnel-label { font-weight: 700; color: var(--primary); margin-top: 1.5rem; margin-bottom: .75rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }

.funnel-type-slider { display: flex; flex-direction: column; gap: .5rem; }
.funnel-type {
  padding: 12px 16px; border-radius: var(--radius-xs);
  border: 2px solid var(--gray-200); cursor: pointer;
  transition: all var(--transition); background: var(--white);
}
.funnel-type:hover { border-color: var(--accent); background: var(--accent-light); }
.funnel-type.active { border-color: var(--accent); background: var(--accent-light); }
.funnel-type strong { display: block; font-size: .88rem; color: var(--primary); }
.funnel-type span { font-size: .78rem; color: var(--gray-400); }

/* Funnel Visual */
.funnel-visual { display: flex; flex-direction: column; align-items: center; gap: 0; }

.funnel-svg-wrap {
  position: relative; width: 100%; max-width: 420px; height: auto;
}

/* Avatare sind jetzt im SVG – kein HTML-Block mehr nötig */
.funnel-people { display: none; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.funnel-svg { width: 100%; height: auto; display: block; }

/* lost/won: aus dem SVG-Wrap raus, eigene Zeile unter dem Pfeil */
.funnel-outcome-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 360px;
  padding: 0 8px;
  margin-top: .5rem;
}

.lost-leads {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lost-avatar { font-size: 1.5rem; }

.won-leads {
  text-align: center;
  font-size: .78rem;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.won-avatar { font-size: 1.5rem; }

/* Funnel drop animation */
.funnel-drop {
  position: absolute; top: 60px; left: 33.5%; transform: translateX(-50%);
  z-index: 10; pointer-events: none;
}
.drop-person {
  font-size: 1.4rem;
  animation: dropThrough 3s ease-in-out infinite;
}
@keyframes dropThrough {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  70% { transform: translateY(220px) scale(.5); opacity: .8; }
  85% { transform: translateY(265px) scale(.3); opacity: .5; }
  100% { transform: translateY(280px) scale(.2); opacity: 0; }
}
.drop-person { will-change: transform, opacity; }

.funnel-active-info {
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  width: 100%; max-width: 360px; border-left: 4px solid var(--accent);
  transition: all .4s ease;
}
.fai-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--accent-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.fai-icon i { font-size: 1.1rem; color: var(--accent); }
.funnel-active-info strong { display: block; font-size: .95rem; color: var(--primary); margin-bottom: .3rem; }
.funnel-active-info p { font-size: .82rem; color: var(--gray-600); line-height: 1.6; }

/* ── LEISTUNGEN ── */
.leistungen-section { padding: 6rem 0; background: var(--gray-50); }

.leistungen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.leistung-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.leistung-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--accent); }
.leistung-icon {
  width: 44px; height: 44px; background: var(--accent-light);
  border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.leistung-icon i { color: var(--accent); font-size: 1.1rem; }
.leistung-card h3 { font-size: 1.05rem; font-weight: 700; font-family: var(--font-title); color: var(--primary); margin-bottom: .6rem; }
.leistung-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; }

/* ── ROI SECTION ── */
.roi-section { padding: 6rem 0; background: linear-gradient(160deg, #F0F4FF 0%, #FAFBFF 100%); }
.roi-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }

.roi-label {
  display: inline-block;
  background: var(--primary); color: #ffffff;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .35rem .9rem; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(31,42,68,.18);
  margin-bottom: .75rem;
}
.roi-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; font-family: var(--font-title); color: var(--primary); margin-bottom: 1.25rem; line-height: 1.2; letter-spacing: -0.02em; }
.roi-text p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.7; }

.roi-trust { display: flex; gap: 1rem; margin-top: 2rem; }
.roi-trust-item {
  flex: 1; background: var(--white); border-radius: var(--radius-sm);
  padding: 1.25rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.roi-trust-item strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gray-400); }
.roi-trust-item span { font-size: .75rem; color: var(--gray-600); line-height: 1.4; }
.roi-trust-accent strong { color: var(--accent); }

/* ROI Card */
.roi-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 2.5rem;
}

.roi-slider-group { margin-bottom: 2rem; }
.roi-slider-group label { display: block; font-weight: 700; color: var(--primary); font-size: .9rem; margin-bottom: .3rem; }
.roi-hint { font-size: .78rem; color: var(--gray-400); display: block; margin-bottom: .75rem; line-height: 1.5; }

.roi-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 2px;
  background: var(--gray-200); outline: none; cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); cursor: pointer;
  box-shadow: 0 2px 8px rgba(31,42,68,.35);
  transition: transform var(--transition);
}
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.roi-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); cursor: pointer; border: none;
}

.roi-value { font-size: .95rem; font-weight: 700; color: var(--primary); margin-top: .5rem; }

.roi-result {
  border-top: 2px solid var(--gray-200); padding-top: 1.5rem; margin-top: 1rem;
}
.roi-result-label { font-size: .85rem; color: var(--gray-600); margin-bottom: .4rem; }
.roi-result-value { font-size: 2.8rem; font-weight: 900; color: var(--primary); letter-spacing: -.02em; }

/* ── FAQ ── */
.faq-section { padding: 6rem 0; background: var(--white); }

/* FAQ Header */
.faq-header { max-width: 640px; margin-bottom: 3rem; }
.faq-header h2 { font-family: var(--font-title); font-size: 2.8rem; color: var(--primary); margin-bottom: .75rem; }
.faq-intro { font-size: .95rem; color: var(--gray-600); line-height: 1.7; }

/* Zweispaltiges Grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
}
.faq-col { display: flex; flex-direction: column; }

.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-item:hover { border-color: var(--accent); }

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 0; font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; color: var(--primary); text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-q i { font-size: .75rem; color: var(--accent); flex-shrink: 0; transition: transform .3s; }
.faq-q.open i { transform: rotate(180deg); }
.faq-q.open { color: var(--accent); }

.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease;
}
.faq-a.open { max-height: 500px; }
.faq-a p { padding: 0 0 1.1rem; font-size: .87rem; color: var(--gray-600); line-height: 1.75; }

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-col:last-child .faq-item:first-child { border-top: none; }
}

/* ── FUNNEL FINDER ── */
.finder-section {
  padding: 6rem 0;
  background: #ffffff;
}
.finder-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

/* Linke Seite */
.finder-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary); color: #ffffff;
  font-size: .8rem; font-weight: 700; padding: 6px 14px;
  border-radius: 6px; margin-bottom: 1.2rem;
  text-transform: uppercase; letter-spacing: .07em;
  box-shadow: 0 2px 8px rgba(31,42,68,.18);
}
.finder-intro h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary); line-height: 1.15;
  margin-bottom: 1rem;
}
.finder-intro > p {
  color: var(--gray-600); font-size: .95rem; line-height: 1.75; margin-bottom: 1.5rem;
}
.finder-promises { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.finder-promises li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--primary); font-weight: 500; }
.finder-promises li i { color: var(--green); font-size: .85rem; }

/* Ergebnis-Box */
.finder-result-box {
  margin-top: 2rem;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  animation: fadeInUp .5s ease;
}
.finder-result-label-top {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 20px; margin-bottom: .85rem;
}
.finder-result-box h3 {
  font-family: var(--font-title);
  font-size: 1.4rem; color: var(--primary); margin-bottom: .6rem;
}
.finder-result-box p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.finder-result-pain {
  background: #FFF8E1; border-left: 4px solid #F2C94C;
  padding: .85rem 1rem; border-radius: 8px;
  font-size: .88rem; color: #7a5c00; line-height: 1.6;
  margin-bottom: 1.25rem;
}
.finder-cta { font-size: .95rem !important; }

/* Rechte Seite – Karte */
.finder-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2rem 2.5rem;
  position: sticky;
  top: 100px;
}

/* Progress */
.finder-progress-bar {
  background: var(--gray-200); border-radius: 99px;
  height: 6px; margin-bottom: .6rem; overflow: hidden;
}
.finder-progress-fill {
  height: 100%; background: var(--accent);
  border-radius: 99px;
  transition: width .4s ease;
}
.finder-progress-label {
  font-size: .78rem; color: var(--gray-400); font-weight: 600;
  margin-bottom: 1.5rem; text-align: right;
}

/* Fragen */
.finder-q { display: none; }
.finder-q.active { display: block; animation: fadeInUp .35s ease; }
.finder-q-emoji { font-size: 2rem; margin-bottom: .75rem; }
.finder-q-sub {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .5rem;
}
.finder-q h3 {
  font-family: var(--font-title);
  font-size: 1.1rem; color: var(--primary);
  margin-bottom: 1.25rem; line-height: 1.4;
}

/* Antwort-Buttons */
.finder-options { display: flex; flex-direction: column; gap: .65rem; }
.finder-opt {
  display: flex; align-items: center; gap: 12px;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: .9rem 1.1rem;
  cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: .9rem;
  font-weight: 500; color: var(--primary);
  transition: all .2s ease;
}
.finder-opt:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateX(4px);
}
.finder-opt.selected {
  border-color: var(--accent);
  background: var(--accent-light);
}
.finder-opt i { font-size: 1rem; color: var(--accent); flex-shrink: 0; width: 18px; text-align: center; }
.finder-opt span { line-height: 1.4; }

/* Fertig-State */
.finder-done { text-align: center; padding: 2rem 0; }
.finder-done-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1rem;
  animation: popIn .4s ease;
}
.finder-done p { color: var(--gray-400); font-size: .9rem; }

@keyframes fadeInUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
@keyframes popIn   { from { transform:scale(0.4); opacity:0; } to { transform:scale(1); opacity:1; } }

/* Responsive Finder */
@media (max-width: 900px) {
  .finder-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .finder-card { position: static; }
}

/* ── SHOWCASE KARUSSELL ── */
.showcase-section {
  padding: 5rem 0 0;
  background: var(--white);
  overflow: hidden;
}

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--primary);
  border-radius: 6px;
  padding: .35rem 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(31,42,68,.18);
}

.showcase-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--primary);
  margin-bottom: .75rem;
}

.showcase-sub {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Track-Wrapper: overflow hidden + fade-Ränder */
.showcase-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 4rem;
}

/* Weiße Fade-Masken links & rechts */
.showcase-track-wrap::before,
.showcase-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.showcase-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.showcase-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

/* Scrollender Track */
.showcase-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: showcaseScroll 50s linear infinite;
  padding: 0 12px;
  will-change: transform;      /* GPU-Layer für flüssige Animation */
  contain: layout style;       /* verhindert Layout-Recalc nach außen */
  backface-visibility: hidden; /* zusätzliche GPU-Optimierung */
  transform: translateZ(0);    /* erzwingt GPU-Compositing-Layer */
}

.showcase-track:hover {
  animation-play-state: paused;
}

@keyframes showcaseScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Einzelne Karte (Querformat / Landscape) ── */
.sc-card {
  display: flex;
  flex-direction: column;
  width: 400px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: default;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(31,42,68,.10), 0 1px 4px rgba(31,42,68,.06);
  border: 1px solid rgba(31,42,68,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.sc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(31,42,68,.16);
}

/* Showcase-Vorschaubereich als echte Website-Previews */
.sc-preview {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #eef4ff;
  flex-shrink: 0;
  padding: 12px;
  contain: layout; /* Reflow isolieren ohne Größe einzufrieren */
}

.sc-preview--lead { background: linear-gradient(180deg, #edf5ff 0%, #f8fbff 100%); }
.sc-preview--recruiting { background: linear-gradient(180deg, #eefcf5 0%, #f9fffc 100%); }
.sc-preview--sales { background: linear-gradient(180deg, #fff7ea 0%, #fffdf8 100%); }
.sc-preview--event { background: linear-gradient(180deg, #f3ecff 0%, #fcfaff 100%); }
.sc-preview--partner { background: linear-gradient(180deg, #eafaf8 0%, #f9fffe 100%); }
.sc-preview--ki { background: linear-gradient(180deg, #eef2fb 0%, #f9fbff 100%); }

/* ── Foto-Vorschau: echte generierte Bilder ── */
.sc-preview--photo {
  padding: 0;
  background: #f0f4f8;
  height: auto !important;      /* überschreibt die fixe 260px-Höhe */
  min-height: 0 !important;
  overflow: visible !important; /* kein Abschneiden */
  flex-shrink: 0;
}
.sc-photo {
  width: 100%;
  height: auto;                 /* natürliche Bildhöhe – nichts abschneiden */
  display: block;
  transition: transform .4s ease;
}
.sc-card:hover .sc-photo {
  transform: scale(1.02);
}

/* Portrait-Bild: auf sinnvolle Maximalhöhe begrenzen */
.sc-preview--portrait {
  background: #1a2540;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 500px;
  overflow: hidden !important;
}
.sc-preview--portrait .sc-photo {
  width: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.sc-browser-shell {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31,42,68,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 48px rgba(31,42,68,.14);
}

.sc-browser-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(180deg, rgba(31,42,68,.96), rgba(31,42,68,.88));
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  z-index: 3;
}

.sc-address {
  margin-left: 10px;
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.sc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.sc-dot:nth-child(1) { background: #ff5f57; }
.sc-dot:nth-child(2) { background: #febc2e; }
.sc-dot:nth-child(3) { background: #28c840; }

.site-shot {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: calc(100% - 30px);
  padding: 10px;
}

.site-shot-canvas {
  width: 100%;
  height: 470px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(31,42,68,.08);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(31,42,68,.10);
  padding: 12px;
  transform: scale(.53);
  transform-origin: top center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-card:hover .site-shot-canvas {
  transform: scale(.55) translateY(-3px);
  transition: transform .35s ease;
}

.site-shot-announcement {
  height: 7px;
  width: 46%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31,42,68,.10), rgba(245,185,66,.18));
}

.site-shot-nav {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 70px;
  gap: 8px;
  align-items: center;
}

.site-shot-nav span {
  height: 10px;
  border-radius: 999px;
  background: rgba(31,42,68,.08);
}

.site-shot-logo {
  width: 56px;
  background: linear-gradient(135deg, #1F2A44, #F5B942) !important;
}

.site-shot-cta {
  background: linear-gradient(135deg, #F5B942, #D99B1E) !important;
}

.site-shot-hero {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(245,248,255,.95), rgba(255,255,255,.96));
  border: 1px solid rgba(31,42,68,.06);
  border-radius: 18px;
  padding: 14px;
}

.site-shot-hero--split {
  grid-template-columns: 1.2fr .8fr;
}

.site-shot-hero--stack {
  grid-template-columns: 1fr;
}

.site-shot-copy h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.2;
  margin: .35rem 0;
  color: var(--primary);
}

.site-shot-copy p,
.site-shot-avatar-row span,
.site-shot-metric span,
.site-shot-chart-labels small,
.site-shot-progress small {
  font-size: .65rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.site-shot-badge {
  display: inline-flex;
  width: fit-content;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: rgba(245,185,66,.12);
  color: var(--accent);
  font-size: .56rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.site-shot-badge--green { background: rgba(16,185,129,.14); color: #0f9f67; }
.site-shot-badge--orange { background: rgba(245,158,11,.14); color: #d97706; }
.site-shot-badge--purple { background: rgba(139,92,246,.14); color: #7c3aed; }
.site-shot-badge--teal { background: rgba(13,148,136,.14); color: #0d9488; }
.site-shot-badge--dark { background: rgba(31,42,68,.12); color: var(--primary); }

.site-shot-button-row,
.site-shot-metrics,
.site-shot-avatar-row,
.site-shot-counter,
.site-shot-network-row,
.site-shot-proof-row,
.site-shot-mini-logos,
.site-shot-benefit-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-shot-button,
.site-shot-linkline,
.site-shot-card,
.site-shot-metric,
.site-shot-network-node,
.site-shot-sections div,
.site-shot-content-block,
.site-shot-proof-row span,
.site-shot-mini-logos span,
.site-shot-benefit-list span,
.site-shot-footerline,
.site-shot-form-title {
  border: 1px solid rgba(31,42,68,.08);
  box-shadow: 0 10px 24px rgba(31,42,68,.06);
}

.site-shot-button {
  height: 26px;
  min-width: 92px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F5B942, #D99B1E);
}

.site-shot-button--full {
  width: 100%;
}

.site-shot-linkline {
  height: 10px;
  width: 74px;
  border-radius: 999px;
  background: rgba(31,42,68,.08);
}

.site-shot-card {
  background: rgba(255,255,255,.98);
  border-radius: 16px;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.site-shot-form-title {
  width: 58%;
  height: 10px;
  border-radius: 999px;
  background: rgba(31,42,68,.08);
}

.site-shot-proof-row span,
.site-shot-mini-logos span,
.site-shot-benefit-list span {
  display: block;
  height: 28px;
  border-radius: 10px;
  background: rgba(255,255,255,.9);
}

.site-shot-proof-row span {
  flex: 1;
}

.site-shot-mini-logos span {
  width: 42px;
}

.site-shot-benefit-list {
  flex-direction: column;
  align-items: stretch;
}

.site-shot-benefit-list span {
  height: 12px;
  width: 92%;
}

.site-shot-footerline {
  min-height: 20px;
  border-radius: 12px;
  background: rgba(31,42,68,.05);
}

.site-shot-input {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31,42,68,.08), rgba(245,185,66,.18));
}

.site-shot-input--short {
  width: 70%;
}

.site-shot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fde8b0, #F5B942 70%);
  flex-shrink: 0;
}

.site-shot-avatar--large {
  width: 38px;
  height: 38px;
}

.site-shot-progress {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 6px;
  align-items: center;
}

.site-shot-progress i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #F5B942, #D99B1E);
}

.site-shot-chart {
  height: 88px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.site-shot-chart span {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #f9c74f 0%, #f59e0b 100%);
}

.site-shot-chart-labels {
  display: flex;
  justify-content: space-between;
}

.site-shot-counter span {
  min-width: 30px;
  padding: .45rem 0;
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(180deg, #F5B942, #D99B1E);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.site-shot-metrics {
  justify-content: space-between;
}

.site-shot-metric {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-shot-metric strong {
  font-size: .82rem;
  color: var(--primary);
}

.site-shot-sections {
  display: grid;
  gap: 8px;
}

.site-shot-sections--2 {
  grid-template-columns: repeat(2, 1fr);
}

.site-shot-sections--3 {
  grid-template-columns: repeat(3, 1fr);
}

.site-shot-sections--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.site-shot-sections.compact div {
  min-height: 38px;
}

.site-shot-sections div {
  min-height: 52px;
  border-radius: 14px;
  background: rgba(245,248,255,.96);
}

.site-shot-content-block {
  min-height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245,248,255,.96), rgba(255,255,255,.96));
}

.site-shot-content-block--light {
  background: linear-gradient(180deg, rgba(255,250,243,.96), rgba(255,255,255,.96));
}

.site-shot-network-row {
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-shot-network-node {
  padding: .45rem .65rem;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  font-size: .58rem;
  font-weight: 700;
  color: var(--primary);
}

.site-shot-network-node--center {
  background: linear-gradient(135deg, #1F2A44, #F5B942);
  color: #fff;
  border: none;
}

/* Text-Bereich unten */
.sc-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

/* Funnel-Typ Badge */
.sc-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--primary);
  border-radius: 6px;
  padding: .25rem .85rem;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(31,42,68,.15);
}
.sc-tag--green  { color: #ffffff; background: var(--primary); }
.sc-tag--orange { color: #ffffff; background: var(--primary); }
.sc-tag--purple { color: #ffffff; background: var(--primary); }
.sc-tag--teal   { color: #ffffff; background: var(--primary); }
.sc-tag--dark   { color: #ffffff; background: var(--primary); }

/* Karten-Titel */
.sc-title {
  font-family: var(--font-title);
  font-size: .98rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin: 0;
}

/* Zielgruppe */
.sc-for {
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.sc-for i {
  font-size: .7rem;
  flex-shrink: 0;
}

/* Beschreibung */
.sc-desc {
  font-size: .82rem;
  color: var(--gray-400);
  line-height: 1.65;
  margin: 0;
}

/* Mobile Showcase */
@media (max-width: 768px) {
  .sc-preview {
    height: 190px;
    padding: 8px;
  }
  /* Foto-Karten auf Mobile: auto-Höhe, kein Abschneiden */
  .sc-preview--photo {
    height: auto !important;
    padding: 0;
    contain: none; /* Layout-Containment aufheben damit Bild frei wächst */
  }
  /* aspect-ratio für stabile Bildgröße ohne Layout-Shift */
  .sc-preview--photo .sc-photo {
    aspect-ratio: 16/9;
    object-fit: cover;
    height: auto;
  }
  .sc-preview--portrait {
    max-height: 320px;
  }
  .sc-preview--portrait .sc-photo {
    aspect-ratio: auto;
    object-fit: contain;
    max-height: 320px;
  }
  /* Fade-Masken auf Mobile schmäler */
  .showcase-track-wrap::before,
  .showcase-track-wrap::after {
    width: 24px;
  }
  /* Padding-Bottom kleiner auf Mobile */
  .showcase-track-wrap {
    padding-bottom: 1.5rem;
  }
  .site-shot {
    padding: 8px;
  }
  .site-shot-canvas {
    height: 430px;
    transform: scale(.42);
    padding: 8px;
  }
  .sc-card:hover .site-shot-canvas {
    transform: scale(.44) translateY(-1px);
  }
  .site-shot-hero--split {
    grid-template-columns: 1fr;
  }
  .site-shot-copy h4 {
    font-size: .82rem;
  }
  .site-shot-copy p,
  .site-shot-avatar-row span,
  .site-shot-metric span,
  .site-shot-chart-labels small,
  .site-shot-progress small,
  .site-shot-network-node {
    font-size: .54rem;
  }
  .site-shot-sections--3,
  .site-shot-sections--2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-shot-counter span {
    min-width: 24px;
    font-size: .6rem;
  }
  .sc-body { padding: 1rem 1.1rem 1.25rem; }
  .sc-title { font-size: .88rem; }
  .sc-desc  { font-size: .76rem; }
  .sc-for   { font-size: .72rem; }
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 6rem 0 4rem;
  background: linear-gradient(160deg, var(--primary) 0%, #2c3e60 100%);
}

.cta-top {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.cta-text h2,
.cta-top h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-top p { color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; }
.cta-top p strong { color: var(--white); }

.cta-bullets {
  list-style: none;
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem 1.5rem;
  margin: 0 auto;
}
.cta-bullets li {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 500;
}
.cta-bullets li i { color: #4ade80; font-size: .85rem; }

.cta-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* Form Card (legacy – nicht mehr aktiv) */
.cta-form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.cta-form-card h3 { font-size: 1.4rem; font-weight: 700; font-family: var(--font-title); color: var(--primary); margin-bottom: 1.5rem; }
.cta-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--primary); font-family: var(--font-body); }
.form-group input, .form-group select {
  padding: 12px 16px; border-radius: var(--radius-xs);
  border: 1.5px solid var(--gray-200); font-family: var(--font-body);
  font-size: .88rem; color: var(--gray-800); outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus { border-color: var(--accent); }
.form-note { font-size: .75rem; color: var(--gray-400); text-align: center; margin-top: .5rem; }

/* ── FOOTER ── */
.footer { background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: 3rem 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.footer-logo-img {
  height: 110px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  margin-bottom: .75rem;
}
.footer-logo p { font-size: .82rem; color: var(--gray-400); line-height: 1.6; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a, .footer-legal a { color: var(--gray-600); text-decoration: none; font-size: .85rem; font-weight: 500; transition: color var(--transition); }
.footer-links a:hover, .footer-legal a:hover { color: var(--accent); }
.footer-bottom { padding: 1.25rem 24px; text-align: center; }
.footer-bottom p { font-size: .78rem; color: var(--gray-400); }

/* ── ROI POPUP ── */
.roi-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(15, 22, 40, 0.65); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.roi-overlay.open { display: flex; animation: fadeOverlay .25s ease; }
@keyframes fadeOverlay { from { opacity: 0; } to { opacity: 1; } }

.roi-popup {
  background: var(--white); border-radius: var(--radius);
  max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; padding: 3rem;
  animation: slideUp .3s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.roi-popup-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  font-size: 1.3rem; color: var(--gray-600); display: flex;
  align-items: center; justify-content: center;
  transition: all var(--transition); line-height: 1;
}
.roi-popup-close:hover { background: var(--gray-200); color: var(--primary); }

.roi-popup-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.roi-popup h2 { font-family: var(--font-title); font-weight: 700; letter-spacing: -0.02em; }

/* ── FUNNEL – echte Bilder ── */
.person-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.person-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lost-avatar-img, .won-avatar-img {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 4px; border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.lost-avatar-img img, .won-avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.drop-person-img {
  width: 32px; height: 32px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--white); box-shadow: 0 2px 6px rgba(0,0,0,.2);
  animation: dropThrough 3s ease-in-out infinite;
  will-change: transform, opacity;
}
.drop-person-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Paket-Name: Abstand zum Preis klein halten */
/* (Override entfernt – .paket-name hat bereits margin-bottom: .4rem oben) */

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .pakete-grid { grid-template-columns: repeat(2, 1fr); }
  .pakete-grid .paket-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 820px) {
  .roi-popup { padding: 2rem 1.5rem; }
  .roi-popup-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  /* ── Performance: unnötige Animationen auf Mobile abschalten ── */
  .hero-logo-wrap,
  .widget-card,
  .drop-person,
  .drop-person-img {
    animation: none !important;
    will-change: auto;
  }
  /* Hover-Effekte auf Mobile nicht nötig – CPU sparen */
  .sc-card:hover {
    transform: none;
    box-shadow: 0 4px 24px rgba(31,42,68,.10), 0 1px 4px rgba(31,42,68,.06);
  }
  .sc-card:hover .sc-photo {
    transform: none;
  }
  /* Karussell auf Mobile: nativer scroll-snap via JS aktiviert */
  .showcase-track {
    animation: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    gap: 14px;
    /* Scrollbar ausblenden */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .showcase-track::-webkit-scrollbar {
    display: none;
  }
  .sc-card {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 85vw;
    max-width: 320px;
  }

  /* ── Navigation ── */
  .nav-links, .navbar .btn-primary { display: none; }
  .nav-burger { display: flex; }

  /* ── Hero ── */
  .hero { padding: 2rem 0 3rem; }
  .hero-grid { display: flex; flex-direction: column; gap: 1.5rem; }
  .hero-text  { order: 1; }
  .hero-widget { order: 2; display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 0; }
  .hero-logo-wrap { display: none; }
  .widget-card { max-width: 100%; padding: 1.4rem 1.2rem; animation: none; }
  .hero-roi-sliders { gap: .75rem; }
  .hero-roi-result-value { font-size: 1.35rem; }
  .hero-roi-cta { font-size: .82rem !important; padding: .9rem 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost, .hero-ctas .btn-secondary-hero { width: 100%; text-align: center; justify-content: center; }

  /* ── Funnel-Visualisierung ── */
  .funnel-grid { grid-template-columns: 1fr; }
  .funnel-svg-wrap { width: 100%; max-width: 340px; }
  .funnel-people { gap: 5px; }
  .person-avatar { width: 38px; height: 38px; }
  .funnel-labels { right: -15px; }

  /* ── Leistungen ── */
  .leistungen-grid { grid-template-columns: 1fr; }

  /* ── Pakete ── */
  .pakete-grid { grid-template-columns: 1fr; }
  .pakete-grid .paket-card:last-child { grid-column: span 1; max-width: 100%; }
  .paket-preis { font-size: 1.5rem; }
  .paket-features li { font-size: .82rem; }

  /* ── ROI / CTA ── */
  .roi-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   WIE ES FUNKTIONIERT – 3-Schritte Sektion
   ============================================================ */
.wie-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #FFF8E8 0%, #ffffff 100%);
}
.wie-eyebrow {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 6px;
  padding: .35rem .9rem;
  box-shadow: 0 2px 8px rgba(31,42,68,.18);
  margin-bottom: 1rem;
}
.wie-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1.5rem;
  margin-top: 3rem;
}
.wie-step {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 4px 24px rgba(31,42,68,.08);
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.wie-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31,42,68,.12);
}
.wie-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(31,42,68,.25);
}
.wie-step-icon {
  width: 60px; height: 60px;
  background: var(--primary);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: #ffffff;
}
.wie-step h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .7rem;
}
.wie-step p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.wie-step-time {
  font-size: .78rem;
  color: #ffffff;
  font-weight: 600;
  background: var(--primary);
  border-radius: 8px;
  padding: .4rem .8rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.wie-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  opacity: .3;
  margin-top: 3.5rem;
}
.wie-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   BRANCHEN STRIP
   ============================================================ */
.branchen-strip {
  background: var(--primary);
  padding: 1.5rem 0;
  overflow: hidden;
}
.branchen-strip-label {
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}
.branchen-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem 1.5rem;
}
.branchen-list span {
  color: rgba(255,255,255,.85);
  font-size: .83rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.branchen-list span i {
  color: var(--accent);
  font-size: .9rem;
}

/* ── Paket Ideal-Tag ── */
.paket-ideal {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.2rem;
  margin-top: -.3rem;
}

/* ── CTA Sub-Note ── */
.cta-sub-note {
  margin-top: .8rem;
  font-size: .83rem;
  color: rgba(255,255,255,.7);
  text-align: center;
}

@media (max-width: 900px) {
  .wie-steps {
    grid-template-columns: 1fr;
  }
  .wie-step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  /* ── Sehr kleine Screens ── */
  .roi-result-value { font-size: 2rem; }
  .hero-text h1 { font-size: 1.8rem; }

  /* ── Pakete ── */
  .paket-card { padding: 1.5rem 1.25rem; }
  .paket-preis { font-size: 1.35rem; }
  .paket-name { font-size: 1rem; }

  /* ── Showcase-Karten auf sehr kleinen Screens ── */
  .sc-card { width: 90vw; max-width: 290px; }
}
