/* =========================================
   1. Reset + Custom Properties
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:      #050505;
  --bg-surface:   #0b0907;
  --bg-card:      #141110;
  --bg-card-2:    #1d1814;
  --accent-1:     #ff8a3d;
  --accent-2:     #ff6b1a;
  --accent-3:     #ffa733;
  --accent-orange:#ff8a3d;
  --accent-orange-2:#ff6b1a;
  --accent-glow:  rgba(255,138,61,0.16);
  --orange-glow:  rgba(255,138,61,0.22);
  --text:         #f8f7f5;
  --text-muted:   #a8a29a;
  --text-subtle:  #6b6259;
  --border:       rgba(255,255,255,0.07);
  --border-accent:rgba(255,138,61,0.38);
  --success:      #10b981;
  --warning:      #f59e0b;
  --danger:       #ef4444;
  --r-card:       18px;
  --r-btn:        10px;
  --r-pill:       999px;
  --shadow:       0 0 40px rgba(255,107,26,0.14);
  --glow:         0 0 32px rgba(255,138,61,0.5);
  --t:            0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4 { line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(38px, 5.5vw, 68px); font-weight: 900; line-height: 1.06; }
h2 { font-size: clamp(28px, 3.8vw, 48px); font-weight: 800; }
h3 { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; }
p  { color: var(--text-muted); }

/* =========================================
   2. Scroll Progress
========================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3));
  z-index: 9999;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* =========================================
   3. Utilities
========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Animated underline on hero word */
.text-underline-animate {
  position: relative;
  display: inline-block;
  color: var(--text);
}
.text-underline-animate::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
  border-radius: 2px;
  animation: underline-grow 1.2s ease forwards 0.6s;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes underline-grow { to { transform: scaleX(1); } }

.section-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
  color: var(--accent-1);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 14px; }
.section-subtitle { font-size: 18px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  font-size: 16px; font-weight: 700;
  transition: var(--t); cursor: pointer;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff; border: none;
  box-shadow: 0 4px 20px rgba(255,138,61,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.btn-primary:active { transform: translateY(0); }

.btn-glow::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent);
  opacity: 0; transition: opacity var(--t);
}
.btn-glow:hover::before { opacity: 1; }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { border-color: var(--border-accent); background: var(--accent-glow); color: var(--accent-1); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--accent-1);
  border: 1.5px solid var(--border-accent);
}
.btn-outline:hover { background: var(--accent-glow); transform: translateY(-2px); }

.btn-white {
  background: #fff; color: var(--bg-base); border: none;
  font-weight: 800;
}
.btn-white:hover { background: var(--text); transform: translateY(-2px); }

.btn-large { padding: 18px 40px; font-size: 17px; }

/* =========================================
   4. Animations
========================================= */
.animate-up, .animate-left, .animate-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
.animate-up   { transform: translateY(36px); }
.animate-left { transform: translateX(-36px); }
.animate-right{ transform: translateX(36px); }
.animate-up.visible, .animate-left.visible, .animate-right.visible {
  opacity: 1; transform: translate(0,0);
}
/* stagger */
.leistungen-grid .leistung-card:nth-child(2).animate-up,
.case-studies-grid .case-card:nth-child(2).animate-up,
.testimonials-grid .testimonial-card:nth-child(2).animate-up,
.pain-grid .pain-card:nth-child(2).animate-up { transition-delay: .1s; }
.leistungen-grid .leistung-card:nth-child(3).animate-up,
.case-studies-grid .case-card:nth-child(3).animate-up,
.testimonials-grid .testimonial-card:nth-child(3).animate-up,
.pain-grid .pain-card:nth-child(3).animate-up { transition-delay: .2s; }
.testimonials-grid .testimonial-card:nth-child(4).animate-up { transition-delay: .0s; }
.testimonials-grid .testimonial-card:nth-child(5).animate-up { transition-delay: .1s; }
.testimonials-grid .testimonial-card:nth-child(6).animate-up { transition-delay: .2s; }

/* =========================================
   5. NAVBAR
========================================= */
.navbar {
  position: fixed; top: 18px; left: 0; right: 0;
  z-index: 1000; padding: 0 28px;
  transition: top var(--t), transform var(--t);
}
.navbar.scrolled { top: 10px; }
.nav-container {
  max-width: 1140px; margin: 0 auto;
  height: 72px; display: flex; align-items: center; gap: 28px;
  padding: 0 14px 0 22px;
  background: rgba(12,9,7,0.8);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transition: box-shadow var(--t), border-color var(--t);
}
.navbar.scrolled .nav-container {
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
  border-color: var(--border-accent);
}
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-monogram {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-stack { display: flex; flex-direction: column; line-height: 1.1; }
.logo-wordmark { font-size: 19px; font-weight: 800; color: var(--text); }
.logo-slogan { font-size: 11px; font-weight: 600; color: var(--accent-orange); letter-spacing: .3px; }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  padding: 8px 13px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  transition: color var(--t), background var(--t);
}
.nav-link:hover { color: var(--text); background: var(--accent-glow); }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.scarcity-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700; color: var(--warning); white-space: nowrap;
}
.scarcity-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--warning);
  animation: pulse-dot 2s infinite; flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .5; }
}
.nav-cta { padding: 10px 20px; font-size: 14px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--bg-base); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-nav-links { text-align: center; }
.mobile-nav-link { display: block; padding: 14px 32px; font-size: 22px; font-weight: 700; color: var(--text-muted); transition: color var(--t); }
.mobile-nav-link:hover { color: var(--accent-1); }
.mobile-cta { font-size: 17px; padding: 16px 40px; }
.mobile-scarcity { font-size: 13px; color: var(--warning); font-weight: 700; }

/* =========================================
   6. HERO
========================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 0 80px; overflow: hidden;
}

/* Grid background */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
/* Fade out grid at bottom */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(transparent, var(--bg-base));
  pointer-events: none; z-index: 1;
}

/* Orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(255,138,61,.14); top: -150px; left: -120px; animation: float1 9s ease-in-out infinite; }
.hero-orb-2 { width: 500px; height: 500px; background: rgba(255,107,26,.1); bottom: 0; right: -100px; animation: float1 12s ease-in-out infinite reverse; }
.hero-orb-3 { width: 360px; height: 360px; background: rgba(255,167,51,.08); top: 40%; left: 55%; animation: float1 15s ease-in-out infinite; }

@keyframes float1 {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.04); }
}

/* Floating mini-cards */
.hero-float { position: absolute; z-index: 3; }
.hero-float-1 { top: 22%; right: 3%; animation: floatCard 6s ease-in-out infinite; }
.hero-float-2 { bottom: 28%; right: 6%; animation: floatCard 8s ease-in-out infinite reverse; }
.hero-float-3 { top: 14%; left: 62%; animation: floatCard 7s ease-in-out infinite 1s; }

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

.float-card-mini {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(15,22,41,.92);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  min-width: 180px;
}
.float-card-green { border-color: rgba(16,185,129,.4); }
.float-card-violet { border-color: rgba(255,107,26,.4); }
.float-icon { font-size: 22px; flex-shrink: 0; }
.float-card-mini strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.2; }
.float-card-mini span { font-size: 11px; color: var(--text-subtle); }

/* Hero inner layout */
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px; align-items: center;
}
.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255,138,61,.1);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--accent-1);
  margin-bottom: 28px;
}

.hero-title { margin-bottom: 22px; }

.hero-subtext {
  font-size: 19px; color: var(--text-muted);
  margin-bottom: 36px; max-width: 560px; line-height: 1.65;
}
.hide-mobile { display: inline; }

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--text-muted); }
.trust-stars { color: var(--warning); font-size: 15px; letter-spacing: 1px; }
.trust-divider { width: 1px; height: 18px; background: var(--border); }

/* ---- Hero Illustration (Calendar) ---- */
.hero-illustration { position: relative; }

.illus-dashboard {
  background: var(--bg-card-2);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), 0 32px 80px rgba(0,0,0,.6), 0 0 60px rgba(255,138,61,.15);
}

.illus-top-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
}
.illus-dots { display: flex; gap: 6px; }
.illus-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.illus-dots span:nth-child(1) { background: #ef4444; }
.illus-dots span:nth-child(2) { background: var(--warning); }
.illus-dots span:nth-child(3) { background: var(--success); }
.illus-label { font-size: 12px; font-weight: 600; color: var(--text-subtle); }

.illus-calendar { padding: 16px 16px 8px; }

.illus-week-header {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 8px; margin-bottom: 8px;
}
.illus-week-header span {
  text-align: center; font-size: 11px; font-weight: 700;
  color: var(--text-subtle); text-transform: uppercase; letter-spacing: .06em;
}

.illus-slots {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.illus-slot {
  height: 52px; border-radius: 8px;
  display: flex; align-items: flex-end;
  padding: 6px; font-size: 10px; font-weight: 600;
  line-height: 1.2;
}

.slot-empty { background: rgba(255,255,255,.03); border: 1px solid var(--border); }

.slot-booked {
  background: rgba(255,138,61,.12);
  border: 1px solid rgba(255,138,61,.3);
  color: var(--accent-1);
  flex-direction: column; gap: 3px;
  align-items: flex-start; padding: 6px 8px;
}
.slot-high {
  background: rgba(16,185,129,.1);
  border-color: rgba(16,185,129,.3);
  color: var(--success);
}
.slot-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
  display: block;
}

.illus-metric-row {
  display: flex; gap: 0;
  border-top: 1px solid var(--border);
  margin: 0 -0; padding: 0;
}
.illus-metric {
  flex: 1; padding: 14px 12px; text-align: center;
  border-right: 1px solid var(--border);
}
.illus-metric:last-child { border-right: none; }
.illus-metric-val {
  display: block; font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.illus-metric-label { display: block; font-size: 10px; color: var(--text-subtle); margin-top: 4px; font-weight: 600; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 12px; position: relative;
}
.scroll-dot::after {
  content: ''; width: 4px; height: 8px;
  background: var(--accent-1); border-radius: 2px;
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim { 0% { top: 6px; opacity: 1; } 100% { top: 22px; opacity: 0; } }

/* =========================================
   7. LOGO BAR
========================================= */
.logo-bar {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logo-bar-title {
  text-align: center;
  font-size: 13px; font-weight: 700;
  color: var(--text-subtle); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 32px;
}
.logo-marquee-wrapper {
  overflow: hidden; position: relative;
}
.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logo-marquee-wrapper::before { left: 0; background: linear-gradient(90deg, var(--bg-base), transparent); }
.logo-marquee-wrapper::after  { right:0; background: linear-gradient(-90deg, var(--bg-base), transparent); }
.logo-marquee {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 22s linear infinite; width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item { display: flex; align-items: center; gap: 10px; opacity: .35; transition: opacity var(--t); flex-shrink: 0; }
.logo-item:hover { opacity: 1; }
.logo-shape { display: block; background: var(--text-subtle); }
.logo-shape-1 { width: 30px; height: 30px; border-radius: 8px; }
.logo-shape-2 { width: 30px; height: 30px; border-radius: 50%; }
.logo-shape-3 { width: 38px; height: 22px; border-radius: 4px; }
.logo-shape-4 { width: 26px; height: 26px; border-radius: 4px; transform: rotate(45deg); }
.logo-text { font-size: 15px; font-weight: 700; color: var(--text-muted); white-space: nowrap; }

/* =========================================
   8. PAIN SECTION
========================================= */
.pain-section { padding: 100px 0; }

.pain-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 48px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid rgba(239,68,68,.12);
  border-radius: var(--r-card); padding: 32px;
  transition: var(--t);
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, rgba(239,68,68,.6), rgba(239,68,68,.1));
}
.pain-card:hover { border-color: rgba(239,68,68,.35); transform: translateY(-4px); box-shadow: 0 0 28px rgba(239,68,68,.08); }
.pain-icon-wrap { margin-bottom: 16px; }
.pain-icon { font-size: 36px; display: block; }
.pain-card h3 { font-size: 18px; margin-bottom: 10px; }
.pain-card p { font-size: 15px; line-height: 1.65; }

.pain-transition { margin-top: 16px; }
.pain-transition-inner {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  background: linear-gradient(135deg, rgba(255,138,61,.1), rgba(255,138,61,.04));
  border: 1px solid var(--border-accent);
  border-radius: var(--r-card); padding: 28px 40px;
}
.pain-transition-text { font-size: 22px; font-weight: 800; color: var(--text); }

/* =========================================
   9. TRANSFORMATION
========================================= */
.transformation { padding: 100px 0; }

.transform-grid {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 20px; align-items: center; margin-bottom: 48px;
}

.transform-card {
  border-radius: var(--r-card); padding: 36px;
  transition: var(--t);
}
.transform-before {
  background: var(--bg-card);
  border: 1px solid rgba(239,68,68,.2);
}
.transform-after {
  background: linear-gradient(160deg, rgba(16,185,129,.06), var(--bg-card));
  border: 1px solid rgba(16,185,129,.3);
}
.transform-before:hover { transform: translateY(-4px); box-shadow: 0 0 28px rgba(239,68,68,.08); }
.transform-after:hover  { transform: translateY(-4px); box-shadow: 0 0 28px rgba(16,185,129,.1); }

.transform-label-wrap { margin-bottom: 22px; }
.transform-label {
  display: inline-block; padding: 5px 16px;
  border-radius: var(--r-pill); font-size: 13px; font-weight: 800;
}
.transform-label-bad  { background: rgba(239,68,68,.1); color: #ef4444; border: 1px solid rgba(239,68,68,.2); }
.transform-label-good { background: rgba(16,185,129,.1); color: var(--success); border: 1px solid rgba(16,185,129,.2); }

.transform-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--text-muted);
}
.transform-list li:last-child { border-bottom: none; }
.list-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.list-icon.bad  { background: rgba(239,68,68,.1); color: #ef4444; }
.list-icon.good { background: rgba(16,185,129,.1); color: var(--success); }

.transform-vs { display: flex; align-items: center; justify-content: center; }
.vs-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff;
  box-shadow: 0 0 24px rgba(255,138,61,.4);
  flex-shrink: 0;
}

.transform-cta { text-align: center; }

/* =========================================
   10. LEISTUNGEN
========================================= */
.leistungen { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(255,138,61,.03), transparent); }

.leistungen-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.leistung-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 36px;
  position: relative;
  transition: var(--t);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 0;
}
.leistung-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}
.leistung-featured {
  border-color: var(--border-accent);
  background: linear-gradient(170deg, rgba(255,138,61,.1), var(--bg-card));
}
.leistung-featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 4px 18px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: var(--r-pill); font-size: 12px; font-weight: 800; color: #fff;
  white-space: nowrap;
}
.leistung-icon-box {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.leistung-title { font-size: 20px; margin-bottom: 12px; }
.leistung-desc { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.leistung-features { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.leistung-features li {
  font-size: 14px; color: var(--text-muted);
  padding-left: 18px; position: relative;
}
.leistung-features li::before { content: '→'; position: absolute; left: 0; color: var(--accent-1); }
.leistung-footer { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.leistung-tag {
  padding: 3px 12px;
  background: var(--accent-glow); border: 1px solid rgba(255,138,61,.2);
  border-radius: var(--r-pill); font-size: 11px; font-weight: 700; color: var(--accent-1);
}

/* =========================================
   11. PROZESS
========================================= */
.prozess { padding: 100px 0; }

.prozess-steps { max-width: 800px; margin: 0 auto 56px; display: flex; flex-direction: column; gap: 0; }

.prozess-step { display: flex; gap: 24px; }

.step-visual { display: flex; flex-direction: column; align-items: center; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #fff; flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,138,61,.4); z-index: 1;
}
.step-line {
  width: 2px; flex: 1; min-height: 24px;
  background: linear-gradient(180deg, rgba(255,138,61,.6), rgba(255,138,61,.1));
  margin: 8px 0;
}

.step-body {
  padding-bottom: 40px; flex: 1;
  padding-top: 10px;
}
.prozess-step:last-child .step-body { padding-bottom: 0; }

.step-week-badge {
  display: inline-block; padding: 3px 12px;
  background: var(--accent-glow); border: 1px solid rgba(255,138,61,.2);
  border-radius: var(--r-pill); font-size: 11px; font-weight: 700; color: var(--accent-1);
  margin-bottom: 10px;
}
.step-title { font-size: 19px; margin-bottom: 8px; }
.step-desc { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.step-deliverable {
  display: inline-block; padding: 6px 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; color: var(--text-muted);
}

.prozess-cta { text-align: center; }

/* =========================================
   12. ERGEBNISSE
========================================= */
.ergebnisse { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(255,138,61,.04), transparent); }

.case-studies-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--t); display: flex; flex-direction: column; gap: 16px;
}
.case-card:hover { border-color: var(--border-accent); transform: translateY(-5px); box-shadow: var(--glow); }

.case-industry-icon { font-size: 32px; }
.case-badge {
  display: inline-block; padding: 4px 14px;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  border-radius: var(--r-pill); font-size: 11px; font-weight: 700;
  color: var(--accent-1); text-transform: uppercase; letter-spacing: .06em;
}
.case-headline { font-size: 20px; line-height: 1.3; }

.case-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 16px; background: rgba(255,138,61,.06); border-radius: 12px;
}
.case-stat { text-align: center; }
.case-stat-value {
  display: block; font-size: 26px; font-weight: 900;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.case-stat-label { display: block; font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.case-story { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.case-quote {
  font-size: 13px; font-style: italic; color: var(--accent-1);
  padding: 10px 14px;
  border-left: 2px solid var(--accent-1);
  background: rgba(255,138,61,.06); border-radius: 0 8px 8px 0;
}

/* Stats Bar */
.stats-bar {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: center; text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-card); padding: 40px 32px;
  box-shadow: var(--shadow);
}
.stats-bar-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stats-bar-value {
  font-size: 48px; font-weight: 900;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; display: inline;
}
.stats-bar-symbol { font-size: 28px; font-weight: 900; color: var(--accent-1); }
.stats-bar-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.stats-bar-divider { width: 1px; height: 56px; background: var(--border); }

/* =========================================
   13. GARANTIE
========================================= */
.garantie { padding: 100px 0; }

.garantie-inner {
  background: linear-gradient(135deg, rgba(255,138,61,.15), rgba(255,107,26,.08));
  border: 1px solid var(--border-accent);
  border-radius: 24px; padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; overflow: hidden;
}

.garantie-bg-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.garantie-orb-1 { width: 300px; height: 300px; background: rgba(255,138,61,.2); top: -80px; left: -60px; }
.garantie-orb-2 { width: 250px; height: 250px; background: rgba(255,107,26,.15); bottom: -60px; right: -40px; }

.garantie-content { position: relative; z-index: 1; }
.garantie-shield { margin-bottom: 20px; display: block; }
.garantie-title {
  font-size: clamp(26px, 3vw, 38px); font-weight: 900;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 60%, var(--accent-1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.garantie-text { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }

.garantie-checks { display: flex; flex-direction: column; gap: 22px; position: relative; z-index: 1; }
.garantie-item { display: flex; align-items: flex-start; gap: 14px; }
.garantie-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.garantie-item strong { display: block; font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.garantie-item p { font-size: 13px; color: var(--text-muted); }

/* =========================================
   14. TESTIMONIALS
========================================= */
.testimonials { padding: 100px 0; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow); transition: var(--t);
}
.testimonial-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--glow); }
.testimonial-stars { color: var(--warning); font-size: 17px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--text-muted); font-style: italic; line-height: 1.7; flex: 1;
}
.testimonial-card blockquote::before { content: '"'; color: var(--accent-1); font-size: 22px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-meta span  { display: block; font-size: 12px; color: var(--text-subtle); }

/* =========================================
   15. FAQ
========================================= */
.faq { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(255,138,61,.03), transparent); }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; font-size: 17px; font-weight: 600; color: var(--text);
  text-align: left; transition: color var(--t);
}
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--accent-1); }
.faq-icon { font-size: 22px; font-weight: 400; color: var(--accent-1); transition: transform var(--t); flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer[hidden] { display: none; }
.faq-answer p { padding-bottom: 22px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* =========================================
   16. CONTACT
========================================= */
.contact { padding: 100px 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }

.lead-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 40px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.required { color: var(--accent-1); }
.form-input {
  padding: 13px 16px; background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 15px;
  outline: none; transition: var(--t); -webkit-appearance: none; appearance: none;
}
.form-input:focus { border-color: var(--accent-1); background: rgba(255,138,61,.06); box-shadow: 0 0 0 3px rgba(255,138,61,.15); }
.form-input.error { border-color: var(--danger); }
.form-input::placeholder { color: var(--text-subtle); }
.form-select option { background: var(--bg-card); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-error { font-size: 12px; color: var(--danger); min-height: 16px; }
.form-submit { width: 100%; margin-top: 4px; }
.btn-loading { display: flex; align-items: center; gap: 10px; }
.spinner {
  width: 17px; height: 17px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .8s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-privacy { font-size: 12px; color: var(--text-subtle); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-privacy a { color: var(--accent-1); }

.form-success {
  background: var(--bg-card); border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--r-card); padding: 48px; text-align: center;
}
.success-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.form-success h3 { font-size: 22px; color: var(--success); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }
.form-error-global {
  padding: 14px; background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25);
  border-radius: 10px; margin-top: 12px; color: #ef4444; font-size: 14px;
}

/* Contact Trust sidebar */
.contact-trust { display: flex; flex-direction: column; gap: 20px; }

.next-steps-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 26px;
}
.next-steps-card h3 { font-size: 16px; margin-bottom: 20px; }
.next-steps-list { display: flex; flex-direction: column; gap: 18px; }
.next-step { display: flex; align-items: flex-start; gap: 14px; }
.next-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.next-step strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.next-step p { font-size: 12px; color: var(--text-muted); }

.contact-mini-testimonial {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 18px;
}
.contact-mini-testimonial blockquote { font-size: 13px; font-style: italic; color: var(--text-muted); margin: 6px 0; line-height: 1.5; }
.contact-mini-testimonial span { font-size: 12px; color: var(--text-subtle); }

.contact-info-block { display: flex; flex-direction: column; gap: 10px; }
.contact-info-item { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

.contact-scarcity {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.2);
  border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--warning);
}

/* =========================================
   17. FOOTER
========================================= */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-tagline { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.footer-scarcity {
  display: inline-block; padding: 5px 14px;
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--r-pill); font-size: 12px; font-weight: 700; color: var(--warning);
}
.footer-col-title { font-size: 12px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-links-col a { font-size: 14px; color: var(--text-muted); transition: color var(--t); }
.footer-links-col a:hover { color: var(--accent-1); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: var(--text-subtle); }

/* =========================================
   18. MEDIA QUERIES
========================================= */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }
  .hero-float { display: none; }

  .leistungen-grid,
  .case-studies-grid,
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }

  .transform-grid { grid-template-columns: 1fr; }
  .transform-vs { display: none; }

  .garantie-inner { grid-template-columns: 1fr; padding: 40px; gap: 36px; }

  .stats-bar { grid-template-columns: 1fr 1fr; gap: 0; }
  .stats-bar-divider:nth-child(2) { display: none; }
  .stats-bar-divider:nth-child(4) { grid-column: 1/-1; width: 100%; height: 1px; }
  .stats-bar-divider:nth-child(6) { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .pain-grid { grid-template-columns: 1fr; }
  .leistungen-grid,
  .case-studies-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  section { padding: 64px 0 !important; }
  .hero { padding: 120px 0 64px !important; }
  .pain-transition-inner { flex-direction: column; text-align: center; }
  .stats-bar { grid-template-columns: 1fr; padding: 28px; }
  .stats-bar-divider { width: 60%; height: 1px; margin: 0 auto; }

  .garantie-inner { padding: 28px; }
  .hide-mobile { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .trust-divider { display: none; }
  .lead-form { padding: 24px; }
  h1 { font-size: 34px; }
}

/* =========================================
   19. ILLUSTRATIONS
========================================= */

/* ---- Pipeline Funnel (Leistungen) ---- */
.pipeline {
  display: flex; align-items: stretch; justify-content: center; gap: 8px;
  max-width: 920px; margin: 0 auto 72px;
  padding: 36px 32px;
  background: linear-gradient(160deg, rgba(255,138,61,.06), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.pipeline-stage {
  flex: 1; text-align: center; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 8px;
}
.pipeline-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,61,.25), transparent 70%);
  filter: blur(12px); pointer-events: none;
}
.pipeline-stage-final .pipeline-glow { background: radial-gradient(circle, rgba(255,167,51,.3), transparent 70%); }
.pipeline-icon {
  font-size: 30px; position: relative; z-index: 1;
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  margin-bottom: 4px;
}
.pipeline-num {
  font-size: 32px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pipeline-stage-final .pipeline-num {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pipeline-label { font-size: 12px; color: var(--text-muted); font-weight: 600; min-height: 32px; }
.pipeline-bar { width: 100%; height: 6px; border-radius: 4px; background: rgba(255,255,255,.05); overflow: hidden; margin-top: 4px; }
.pipeline-bar i {
  display: block; height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transition: width 1.1s cubic-bezier(.4,0,.2,1) .3s;
}
.pipeline-bar-final i { background: linear-gradient(90deg, var(--accent-2), var(--accent-3)); }
.pipeline.visible .pipeline-bar i { width: var(--w); }

.pipeline-flow {
  display: flex; align-items: center; justify-content: center;
  position: relative; width: 64px; flex-shrink: 0;
}
.pipeline-flow svg { width: 100%; height: 24px; }
.flow-spark {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 12px var(--accent-1);
  animation: flowSpark 2.2s linear infinite;
}
.flow-spark-2 { background: var(--accent-3); box-shadow: 0 0 12px var(--accent-3); animation-delay: 1.1s; }
@keyframes flowSpark {
  0% { left: 4px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 54px; opacity: 0; }
}

/* ---- Growth Chart (Ergebnisse) ---- */
.growth-chart {
  max-width: 920px; margin: 0 auto 72px;
  padding: 32px 36px 24px;
  background: linear-gradient(160deg, rgba(255,138,61,.06), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.growth-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.growth-title { font-size: 18px; margin-bottom: 4px; }
.growth-sub { font-size: 13px; color: var(--text-subtle); }
.growth-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 800; color: var(--success);
  white-space: nowrap;
}
.growth-badge-arrow { font-size: 16px; }

.growth-svg-wrap { position: relative; }
.growth-svg { width: 100%; height: auto; display: block; overflow: visible; }
.grid-line { stroke: rgba(255,255,255,.05); stroke-width: 1; stroke-dasharray: 4 6; }

.growth-area { opacity: 0; transition: opacity 1.2s ease .5s; }
.growth-chart.visible .growth-area { opacity: 1; }

.growth-line {
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
}
.growth-chart.visible .growth-line { animation: drawLine 1.8s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.growth-dot {
  fill: var(--bg-card); stroke: var(--accent-2); stroke-width: 3;
  opacity: 0; transform: scale(0); transform-origin: center; transform-box: fill-box;
}
.growth-chart.visible .growth-dot { animation: popDot .4s ease forwards; }
.growth-chart.visible .growth-dot:nth-of-type(1) { animation-delay: .6s; }
.growth-chart.visible .growth-dot:nth-of-type(2) { animation-delay: .85s; }
.growth-chart.visible .growth-dot:nth-of-type(3) { animation-delay: 1.1s; }
.growth-chart.visible .growth-dot:nth-of-type(4) { animation-delay: 1.35s; }
.growth-chart.visible .growth-dot:nth-of-type(5) { animation-delay: 1.6s; }
.growth-chart.visible .growth-dot:nth-of-type(6) { animation-delay: 1.85s; }
.growth-chart.visible .growth-dot:nth-of-type(7) { animation-delay: 2.1s; }
@keyframes popDot { to { opacity: 1; transform: scale(1); } }
.growth-dot-final {
  fill: var(--accent-3); stroke: #fff; stroke-width: 2;
}
.growth-chart.visible .growth-dot-final { animation: popDotPulse 2s ease 2.1s infinite; }
@keyframes popDotPulse {
  0% { opacity: 1; transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { opacity: 1; transform: scale(1); }
}

.growth-axis { display: flex; justify-content: space-between; padding: 10px 24px 0; }
.growth-axis span { font-size: 11px; color: var(--text-subtle); font-weight: 600; }

/* ---- Multi-Channel Reach (Prozess) ---- */
.channels {
  max-width: 880px; margin: 16px auto 64px;
  padding: 44px 32px 36px;
  background: linear-gradient(160deg, rgba(255,138,61,.06), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.channels-center { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 12px; }
.channels-core {
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 32px rgba(255,138,61,.5);
  position: relative;
}
.channels-core::after {
  content: ''; position: absolute; inset: -8px; border-radius: 24px;
  border: 1.5px solid rgba(255,138,61,.3);
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.12); opacity: 0; }
}
.channels-core-mono { font-size: 24px; font-weight: 900; color: #fff; }
.channels-core-label { font-size: 13px; font-weight: 700; color: var(--text-muted); }

.channels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
.channel-node {
  position: relative; padding-top: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.channel-line {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 24px;
  background: linear-gradient(180deg, rgba(255,138,61,.5), rgba(255,138,61,.1));
}
.channel-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff;
  margin-bottom: 4px;
  transition: var(--t);
}
.channel-node:hover .channel-icon { transform: translateY(-4px) scale(1.05); }
.channel-linkedin { background: linear-gradient(135deg, #0a66c2, #ff8a3d); }
.channel-mail { background: linear-gradient(135deg, #ff6b1a, #ff8a3d); }
.channel-phone { background: linear-gradient(135deg, #ffa733, #ff8a3d); }
.channel-name { font-size: 15px; font-weight: 700; color: var(--text); }
.channel-stat { font-size: 12px; color: var(--text-subtle); }

/* ---- Rating Summary (Testimonials) ---- */
.rating-summary {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center;
  max-width: 760px; margin: 0 auto 56px;
  padding: 36px 40px;
  background: linear-gradient(160deg, rgba(255,138,61,.06), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.rating-score { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; border-right: 1px solid var(--border); padding-right: 20px; }
.rating-big {
  font-size: 64px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rating-stars-big { color: var(--warning); font-size: 22px; letter-spacing: 3px; }
.rating-count { font-size: 12px; color: var(--text-subtle); }
.rating-platforms { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.rating-platform {
  padding: 3px 10px; font-size: 11px; font-weight: 700; color: var(--text-muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: var(--r-pill);
}
.rating-bars { display: flex; flex-direction: column; gap: 9px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; }
.rating-bar-label { font-size: 12px; font-weight: 700; color: var(--text-muted); width: 28px; flex-shrink: 0; }
.rating-track { flex: 1; height: 8px; border-radius: 4px; background: rgba(255,255,255,.05); overflow: hidden; }
.rating-track i {
  display: block; height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--warning), #fbbf24);
  transition: width 1.1s cubic-bezier(.4,0,.2,1) .3s;
}
.rating-summary.visible .rating-track i { width: var(--w); }
.rating-bar-pct { font-size: 12px; font-weight: 700; color: var(--text-subtle); width: 34px; text-align: right; flex-shrink: 0; }

/* ---- Momentum Arc ---- */
.momentum {
  margin: 56px auto 8px;
  max-width: 820px;
  padding: 36px 40px 28px;
  background: linear-gradient(180deg, rgba(255,138,61,.04), rgba(255,107,26,.02));
  border: 1px solid var(--border);
  border-radius: 24px;
}
.momentum-svg { width: 100%; height: auto; display: block; overflow: visible; }
.momentum-area { opacity: 0; transition: opacity 1.2s ease .4s; }
.momentum.visible .momentum-area { opacity: 1; }
.momentum-line {
  stroke-dasharray: 1100; stroke-dashoffset: 1100;
  filter: drop-shadow(0 4px 14px rgba(255,107,26,.4));
}
.momentum.visible .momentum-line { animation: momentumDraw 1.8s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes momentumDraw { to { stroke-dashoffset: 0; } }
.momentum-stop circle { fill: #fff; stroke: #ff6b1a; stroke-width: 3; }
.momentum-stop { opacity: 0; transform: scale(0); transform-origin: center; transform-box: fill-box; }
.momentum.visible .momentum-stop { animation: momentumPop .5s cubic-bezier(.34,1.56,.64,1) forwards; animation-delay: var(--d); }
@keyframes momentumPop { to { opacity: 1; transform: scale(1); } }
.momentum-labels { display: flex; justify-content: space-between; margin-top: 18px; gap: 12px; }
.momentum-label { font-size: 13px; font-weight: 600; color: var(--text-subtle); }
.momentum-end { color: var(--accent-3); }

/* ---- Illustrations Responsive ---- */
@media (max-width: 768px) {
  .momentum { padding: 24px 20px 20px; margin-top: 40px; }
  .momentum-labels { flex-direction: column; gap: 6px; align-items: center; text-align: center; }

  .pipeline { flex-direction: column; gap: 4px; padding: 28px 20px; }
  .pipeline-flow { width: 100%; height: 40px; transform: rotate(90deg); }
  .pipeline-flow svg { height: 20px; }
  .pipeline-label { min-height: 0; }
  .pipeline-bar { max-width: 200px; }

  .growth-chart { padding: 24px 20px 18px; }
  .growth-header { flex-direction: column; }

  .channels-grid { grid-template-columns: 1fr; gap: 12px; }
  .channel-node { flex-direction: row; padding-top: 0; gap: 12px; text-align: left; }
  .channel-line { display: none; }
  .channel-node { align-items: center; justify-content: flex-start; padding: 10px 16px; background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 12px; }
  .channel-icon { margin-bottom: 0; flex-shrink: 0; }
  .channel-meta { text-align: left; }

  .rating-summary { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .rating-score { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 20px; }
}

/* =========================================
   19b. NEW SECTIONS — Orange, Vorteile, Über uns
========================================= */
.gradient-text-orange {
  background: linear-gradient(120deg, var(--accent-orange), var(--accent-orange-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Hero trust stats */
.trust-stat-num {
  font-size: 22px; font-weight: 900; color: var(--text);
  line-height: 1; display: block;
}
.trust-stat-orange { color: var(--accent-orange); }
.hero-trust .trust-item { flex-direction: column; align-items: flex-start; gap: 2px; }
.hero-trust .trust-item span:last-child { font-size: 13px; color: var(--text-muted); }

/* --- Vorteile / Umsatz Section --- */
.vorteile-section { padding: 100px 0; position: relative; }

.revenue-calc {
  max-width: 860px; margin: 0 auto 56px;
  background: linear-gradient(160deg, rgba(255,138,61,.07), rgba(255,138,61,.04));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 36px 32px 24px;
}
.revenue-calc-row {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.revenue-step {
  flex: 1; min-width: 140px; text-align: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 18px; padding: 22px 16px;
  transition: transform .3s, border-color .3s;
}
.revenue-step:hover { transform: translateY(-4px); border-color: var(--border-accent); }
.revenue-step-result {
  background: linear-gradient(160deg, rgba(255,138,61,.16), rgba(255,107,26,.06));
  border-color: rgba(255,138,61,.4);
}
.revenue-step-icon { font-size: 30px; margin-bottom: 8px; }
.revenue-step-num { font-size: 38px; font-weight: 900; color: var(--text); line-height: 1; }
.revenue-step-result .revenue-step-num { color: var(--accent-orange); }
.revenue-step-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; display: block; }
.revenue-op { font-size: 32px; font-weight: 800; color: var(--accent-orange); flex-shrink: 0; }
.revenue-calc-note { text-align: center; font-size: 13px; color: var(--text-subtle); margin-top: 18px; }

.vorteile-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.vorteil-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.vorteil-card:hover {
  transform: translateY(-5px); border-color: var(--border-accent);
  box-shadow: var(--shadow);
}
.vorteil-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,138,61,.2), rgba(255,138,61,.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.vorteil-icon-wrap.vorteil-orange {
  background: linear-gradient(135deg, rgba(255,138,61,.22), rgba(255,107,26,.06));
}
.vorteil-icon { font-size: 28px; }
.vorteil-card h3 { font-size: 19px; margin-bottom: 8px; }
.vorteil-card p { font-size: 15px; line-height: 1.6; }

/* --- Über uns --- */
.ueber-uns { padding: 90px 0; position: relative; }
.ueber-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.ueber-title { text-align: left; margin: 14px 0 22px; }
.ueber-text { font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.ueber-text strong { color: var(--text); }
.ueber-values { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.ueber-value { display: flex; align-items: center; gap: 14px; }
.ueber-value-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,138,61,.12); border: 1px solid rgba(255,138,61,.25);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.ueber-value strong { display: block; font-size: 15px; color: var(--text); }
.ueber-value span { font-size: 13px; color: var(--text-muted); }

.ueber-visual { position: relative; min-height: 360px; }
.ueber-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,61,.25), rgba(255,138,61,.12) 60%, transparent 75%);
  filter: blur(8px); animation: ueberFloat 8s ease-in-out infinite;
}
@keyframes ueberFloat { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-54%) scale(1.06); } }
.ueber-stat-card {
  position: absolute; background: rgba(15,22,41,.92);
  border: 1px solid var(--border-accent); border-radius: 16px;
  padding: 18px 22px; backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
  animation: ueberCardFloat 6s ease-in-out infinite;
}
.ueber-stat-card .ueber-stat-label { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.ueber-stat-num { font-size: 34px; font-weight: 900; color: var(--text); line-height: 1; }
.ueber-stat-plus { font-size: 24px; font-weight: 900; color: var(--accent-orange); }
.ueber-stat-emoji { font-size: 34px; }
.ueber-stat-1 { top: 6%; left: 2%; }
.ueber-stat-1 .ueber-stat-num { color: var(--accent-orange); }
.ueber-stat-2 { top: 42%; right: 0; animation-delay: 1.5s; }
.ueber-stat-3 { bottom: 6%; left: 14%; animation-delay: 3s; }
@keyframes ueberCardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 860px) {
  .vorteile-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; gap: 40px; }
  .ueber-title { text-align: left; }
  .ueber-visual { min-height: 300px; }
  .revenue-op { transform: rotate(90deg); }
  .revenue-calc-row { flex-direction: column; }
  .revenue-step { width: 100%; }
}

/* =========================================
   20. COOKIE BANNER
========================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9000;
  width: calc(100% - 48px);
  max-width: 780px;
  background: rgba(15, 15, 30, 0.97);
  border: 1px solid rgba(255,138,61,.35);
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(0,0,0,.6), 0 0 0 1px rgba(255,138,61,.1);
  backdrop-filter: blur(16px);
  padding: 20px 24px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
  opacity: 0;
}
.cookie-banner.cookie-show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-banner.cookie-hide { transform: translateX(-50%) translateY(120px); opacity: 0; }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { display: flex; align-items: flex-start; gap: 14px; flex: 1; min-width: 260px; }
.cookie-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.cookie-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: var(--text-subtle); line-height: 1.5; margin: 0; }
.cookie-link { color: var(--accent-1); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all .2s; white-space: nowrap; }
.cookie-btn-secondary { background: rgba(255,255,255,.06); color: var(--text-subtle); border: 1px solid var(--border); }
.cookie-btn-secondary:hover { background: rgba(255,255,255,.1); color: var(--text-primary); }
.cookie-btn-primary { background: linear-gradient(135deg, var(--accent-1), var(--accent-2)); color: #fff; }
.cookie-btn-primary:hover { opacity: .9; transform: translateY(-1px); }

@media (max-width: 600px) {
  .cookie-banner { bottom: 16px; left: 16px; right: 16px; width: auto; transform: translateY(120px); }
  .cookie-banner.cookie-show { transform: translateY(0); }
  .cookie-banner.cookie-hide { transform: translateY(120px); }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* =========================================
   21. FLOATING ACTION BUTTONS
========================================= */
.float-actions {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(0,0,0,.5); }
.float-whatsapp { background: #25d366; color: #fff; text-decoration: none; }
.float-whatsapp:hover { background: #20b95a; }
.float-scroll-top { background: rgba(255,138,61,.9); color: #fff; backdrop-filter: blur(8px); }
.float-scroll-top:hover { background: var(--accent-1); }

/* =========================================
   22. KI CHATBOT WIDGET
========================================= */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 8500;
}
.chat-toggle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(255,138,61,.5);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  position: relative;
}
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(255,138,61,.65); }
.chat-toggle.chat-pulse { animation: chatPulse 2s ease infinite; }
@keyframes chatPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(255,138,61,.5); }
  50% { box-shadow: 0 6px 36px rgba(255,138,61,.85), 0 0 0 10px rgba(255,138,61,.12); }
}
.chat-toggle-icon { display: flex; align-items: center; justify-content: center; }
.chat-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #ef4444; color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-base);
  transition: opacity .3s;
}
.chat-box {
  position: absolute;
  bottom: 72px; right: 0;
  width: 340px;
  background: rgba(12, 12, 28, 0.98);
  border: 1px solid rgba(255,138,61,.25);
  border-radius: 20px;
  box-shadow: 0 16px 60px rgba(0,0,0,.7);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transform: scale(0.92) translateY(12px);
  transform-origin: bottom right;
  opacity: 0;
  transition: transform .3s cubic-bezier(.34,1.2,.64,1), opacity .3s ease;
}
.chat-box-open { transform: scale(1) translateY(0); opacity: 1; }
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255,138,61,.15), rgba(255,107,26,.1));
  border-bottom: 1px solid rgba(255,138,61,.15);
}
.chat-header-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-name { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.chat-header-status { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #4ade80; margin-top: 2px; }
.chat-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: onlinePulse 2s ease infinite; }
@keyframes onlinePulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.chat-close-btn { background: none; border: none; cursor: pointer; color: var(--text-subtle); padding: 4px; border-radius: 6px; display: flex; }
.chat-close-btn:hover { color: var(--text-primary); background: rgba(255,255,255,.06); }
.chat-messages {
  height: 280px; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  scrollbar-width: thin; scrollbar-color: rgba(255,138,61,.2) transparent;
}
.chat-msg { display: flex; }
.chat-msg-user { justify-content: flex-end; }
.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px; line-height: 1.55;
}
.chat-msg-bot .chat-bubble {
  background: rgba(255,138,61,.12);
  border: 1px solid rgba(255,138,61,.15);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}
.chat-msg-user .chat-bubble {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-bubble-cta { display: flex; flex-direction: column; gap: 10px; }
.chat-cta-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff; text-decoration: none;
  padding: 8px 14px; border-radius: 10px;
  font-size: 13px; font-weight: 600; text-align: center;
  transition: opacity .2s;
}
.chat-cta-link:hover { opacity: .85; }
.chat-typing { display: flex; align-items: center; gap: 5px; padding: 12px 16px; }
.chat-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-1); opacity: .4;
  animation: typingDot 1.2s ease infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot { 0%,60%,100% { opacity:.4; transform:scale(1); } 30% { opacity:1; transform:scale(1.3); } }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 0 4px; }
.chat-quick-btn {
  font-size: 12px; padding: 6px 12px;
  border: 1px solid rgba(255,138,61,.35);
  border-radius: 20px; background: rgba(255,138,61,.08);
  color: var(--accent-1); cursor: pointer;
  transition: all .2s;
}
.chat-quick-btn:hover { background: rgba(255,138,61,.18); border-color: var(--accent-1); }
.chat-input-area {
  display: flex; gap: 8px; align-items: center;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,138,61,.12);
}
.chat-input {
  flex: 1; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
  color: var(--text-primary); padding: 9px 14px;
  font-size: 13.5px; font-family: inherit; outline: none;
  transition: border-color .2s;
}
.chat-input:focus { border-color: rgba(255,138,61,.5); }
.chat-input::placeholder { color: var(--text-subtle); }
.chat-send-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border: none; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.chat-send-btn:hover { opacity: .85; transform: scale(1.05); }
.chat-send-btn:disabled { opacity: .4; cursor: not-allowed; }

@media (max-width: 480px) {
  .chat-widget { right: 16px; bottom: 90px; }
  .chat-box { width: calc(100vw - 32px); right: 0; }
  .float-actions { right: 16px; bottom: 24px; }
}

/* =========================================
   23. ERSTGESPRÄCH-MODAL (Buchungsfenster)
========================================= */
.bk-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.bk-overlay.bk-open { opacity: 1; }
.bk-overlay[hidden] { display: none; }

.bk-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, #141110, #0b0907);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  padding: 40px 32px 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 107, 26, 0.12);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.bk-overlay.bk-open .bk-dialog { transform: translateY(0) scale(1); }

.bk-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.bk-close:hover { background: rgba(255, 138, 61, 0.18); color: var(--text); }

.bk-progress {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 26px;
}
.bk-progress-bar {
  display: block;
  height: 100%;
  width: 33.33%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transition: width 0.35s ease;
}

.bk-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 10px;
}
.bk-q {
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 22px;
}

.bk-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk-options-sm { grid-template-columns: 1fr 1fr 1fr; }
.bk-option {
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.1s ease;
}
.bk-option:hover { border-color: var(--border-accent); background: rgba(255, 138, 61, 0.08); }
.bk-option.selected {
  border-color: var(--accent-1);
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.18), rgba(255, 107, 26, 0.1));
  box-shadow: 0 0 0 1px var(--accent-1) inset;
}

.bk-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 16px 0 7px;
}
.bk-label:first-of-type { margin-top: 0; }
.bk-opt { color: var(--text-subtle); font-weight: 400; }
.required { color: var(--accent-1); }

.bk-input {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bk-input:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.bk-input::placeholder { color: var(--text-subtle); }

.bk-error {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: #ff7a6b;
}

.bk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}
.bk-back {
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 4px;
  transition: color 0.2s ease;
}
.bk-back:hover { color: var(--text); }
.bk-next { margin-left: auto; }

.bk-success { text-align: center; padding: 10px 0 4px; }
.bk-success-icon { font-size: 3rem; margin-bottom: 8px; }
.bk-success-text { color: var(--text-muted); margin: 6px 0 22px; }

@media (max-width: 480px) {
  .bk-dialog { padding: 36px 20px 22px; border-radius: 20px; }
  .bk-q { font-size: 1.25rem; }
  .bk-options { grid-template-columns: 1fr; }
  .bk-options-sm { grid-template-columns: 1fr 1fr 1fr; }
}
