/* ============================================
   AKTURIO V2 - KI-Beratung Landing Page
   Sales-Psychology Focused, No Pricing
   Colors: Navy #0a1829, Teal #00bfa6, Gold #d4a742
   ============================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary-dark: #0a1829;
  --primary-darker: #060e18;
  --primary-medium: #0e2136;
  --primary-light: #122b45;
  --accent: #e07c3a;
  --accent-bright: #ec8f50;
  --accent-dark: #c86b2e;
  --accent-teal: #00bfa6;
  --accent-teal-light: #00e5c7;
  --accent-gold: #d4a742;
  --accent-gold-light: #f0cc6b;
  --accent-orange: #e07c3a;
  --text-light: #e8edf2;
  --text-muted: #8fa3b8;
  --text-subtle: #5a7a96;
  --white: #ffffff;
  --red: #ff6b6b;
  --gradient-teal: linear-gradient(135deg, #00bfa6, #00e5c7);
  --gradient-orange: linear-gradient(135deg, #e07c3a, #ec8f50);
  --gradient-gold: linear-gradient(135deg, #d4a742, #f0cc6b);
  --gradient-hero: linear-gradient(135deg, #0a1829 0%, #122b45 50%, #0e2136 100%);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow-orange: 0 0 40px rgba(224, 124, 58, 0.4);
  --shadow-glow-orange-sm: 0 0 20px rgba(224, 124, 58, 0.25);
  --shadow-glow-teal: 0 0 40px rgba(0, 191, 166, 0.25);
  --shadow-glow-sm: 0 0 20px rgba(0, 191, 166, 0.15);
  --border-subtle: 1px solid rgba(0, 191, 166, 0.1);
  --border-orange: 1px solid rgba(224, 124, 58, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--accent-teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-teal-light); }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--white); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto 56px; }

.text-gradient {
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 24px rgba(224, 124, 58, 0.4);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(224, 124, 58, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(224, 124, 58, 0.08);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(224, 124, 58, 0.3);
}
.btn-nav:hover { transform: translateY(-2px); background: var(--accent-bright); box-shadow: var(--shadow-glow-orange); }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 24, 41, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
  padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { font-size: 1.6rem; font-weight: 800; letter-spacing: 4px; color: var(--accent-teal) !important; }
.navbar-menu { display: flex; list-style: none; gap: 28px; align-items: center; }
.navbar-menu a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}
.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-teal);
  transition: width 0.3s ease;
}
.navbar-menu a:hover { color: var(--white); }
.navbar-menu a:hover::after { width: 100%; }

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition);
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gradient-hero);
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,166,0.08) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,167,66,0.05) 0%, transparent 70%);
  animation: pulse-glow 10s ease-in-out infinite reverse;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: rgba(0, 191, 166, 0.3);
  border-radius: 50%;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-grid {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0,191,166,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,166,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 800px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,191,166,0.1);
  border: 1px solid rgba(0,191,166,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-teal);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent-teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,191,166,0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(0,191,166,0); }
}

.hero h1 { margin-bottom: 20px; font-weight: 800; }
.hero-sub { color: var(--text-muted); font-size: 1.15rem; max-width: 620px; margin-bottom: 36px; line-height: 1.8; }

.hero-cta-wrapper { margin-bottom: 48px; }
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-teal);
  margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 0.85rem; color: var(--text-muted); }
.trust-text strong { color: var(--white); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: var(--border-subtle);
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,191,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { stroke: var(--accent-teal); width: 22px; height: 22px; }
.hero-stat .number { font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-subtle);
  font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === ANIMATION BASE === */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* === PAIN SECTION === */
.pain-section {
  padding: 100px 0 80px;
  background: var(--primary-darker);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.pain-card {
  background: rgba(255,107,107,0.03);
  border: 1px solid rgba(255,107,107,0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.pain-card:hover {
  border-color: rgba(255,107,107,0.25);
  transform: translateY(-4px);
}
.pain-icon { margin-bottom: 16px; }
.pain-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--white); }
.pain-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.pain-cta { margin-top: 40px; }
.pain-cta-text { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 24px; }
.pain-cta-text strong { color: var(--accent); }

/* === BENEFITS === */
.benefits { padding: 100px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--primary-medium);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 124, 58, 0.4);
  box-shadow: 0 0 24px rgba(224, 124, 58, 0.15);
}
.benefit-card:hover .benefit-icon-wrap {
  background: rgba(224, 124, 58, 0.15);
}
.benefit-card:hover .benefit-icon-wrap svg { stroke: var(--accent); }
.benefit-number {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0,191,166,0.06);
  line-height: 1;
}
.benefit-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,191,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.benefit-icon-wrap svg { stroke: var(--accent-teal); transition: var(--transition); }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.benefit-card:hover h3 { color: var(--accent); }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* === MODULES === */
.modules {
  padding: 100px 0;
  background: var(--primary-darker);
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.module-card {
  background: var(--primary-medium);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: var(--transition);
  text-align: center;
}
.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 124, 58, 0.4);
  box-shadow: 0 0 24px rgba(224, 124, 58, 0.15);
}
.module-card:hover .module-icon { background: rgba(224, 124, 58, 0.15); }
.module-card:hover .module-icon svg { stroke: var(--accent); }
.module-card:hover h3 { color: var(--accent); }
.module-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(0,191,166,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.module-icon svg { stroke: var(--accent-teal); transition: var(--transition); }
.module-card h3 { font-size: 1rem; margin-bottom: 8px; transition: var(--transition); }
.module-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 12px; }
.module-benefit {
  display: inline-block;
  background: rgba(224, 124, 58, 0.1);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.modules-cta { margin-top: 48px; }
.modules-cta p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 20px; }

/* === PROCESS === */
.process { padding: 100px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}
.process-card {
  text-align: center;
  position: relative;
  padding: 40px 24px;
}
.process-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(224, 124, 58, 0.35);
}
.process-line {
  position: absolute;
  top: 72px;
  right: -16px;
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  z-index: 1;
  transform: translateX(50%);
}
.process-card:last-child .process-line { display: none; }
.process-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.process-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.process-cta { margin-top: 24px; }

/* === TESTIMONIALS === */
.testimonials {
  padding: 100px 0;
  background: var(--primary-darker);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--primary-medium);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 124, 58, 0.35);
  box-shadow: 0 0 20px rgba(224, 124, 58, 0.1);
}
.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-teal);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-result {
  background: rgba(224, 124, 58, 0.06);
  border: 1px solid rgba(224, 124, 58, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.testimonial-result strong { color: var(--accent); }

/* === TEAM === */
.team { padding: 100px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
  background: var(--primary-medium);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 20px;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 124, 58, 0.35);
  box-shadow: 0 0 20px rgba(224, 124, 58, 0.1);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 3px solid var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-teal);
  margin: 0 auto 16px;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-role { color: var(--text-muted); font-size: 0.82rem; }
.team-region { color: var(--accent-teal); font-size: 0.75rem; font-weight: 600; margin-top: 4px; }

/* === FINAL CTA === */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,166,0.06) 0%, transparent 70%);
}
.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.final-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.final-cta p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.final-cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.final-cta-guarantee svg { stroke: var(--accent-teal); flex-shrink: 0; }

/* === FOOTER === */
.footer {
  padding: 64px 0 32px;
  background: var(--primary-darker);
  border-top: var(--border-subtle);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-size: 1.4rem; font-weight: 800; letter-spacing: 4px; color: var(--accent-teal); margin-bottom: 12px; }
.footer-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 8px; }
.footer-address { color: var(--text-subtle); font-size: 0.82rem; }
.footer h4 { font-size: 0.9rem; margin-bottom: 16px; color: var(--white); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; color: var(--text-muted); font-size: 0.85rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-subtle);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-subtle); }
.footer-legal a:hover { color: var(--accent); }

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 32px rgba(224, 124, 58, 0.45);
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.floating-cta-btn:hover {
  transform: translateY(-3px);
  background: var(--accent-bright);
  box-shadow: 0 12px 40px rgba(224, 124, 58, 0.55);
}
.floating-cta-btn svg { stroke: var(--white); }

/* ==================== BOOKING MODAL ==================== */
.booking-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(6,14,24,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.booking-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.booking-modal {
  background: var(--primary-medium);
  border: var(--border-subtle);
  border-radius: 20px;
  width: 95%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: scale(0.95) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.booking-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.booking-close svg { stroke: var(--text-muted); }
.booking-close:hover { background: rgba(255,255,255,0.1); }
.booking-close:hover svg { stroke: var(--white); }

/* Progress */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--text-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-subtle);
  transition: var(--transition);
}
.progress-step.active .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}
.progress-step.current .step-circle {
  border-color: var(--accent);
  background: rgba(224, 124, 58, 0.15);
  color: var(--accent);
}
.progress-step span {
  font-size: 0.7rem;
  color: var(--text-subtle);
  font-weight: 500;
}
.progress-step.active span { color: var(--accent); }
.progress-line {
  width: 40px; height: 2px;
  background: var(--text-subtle);
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Booking Steps */
.booking-step h2 { font-size: 1.5rem; margin-bottom: 8px; text-align: center; }
.step-desc { color: var(--text-muted); text-align: center; margin-bottom: 32px; font-size: 0.92rem; }

/* Calendar */
.calendar-container {
  background: var(--primary-dark);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-header h3 { font-size: 1.1rem; }
.cal-nav {
  background: rgba(255,255,255,0.05);
  border: var(--border-subtle);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: var(--transition);
}
.cal-nav:hover { background: rgba(224, 124, 58, 0.15); border-color: var(--accent); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  margin-bottom: 8px;
}
.calendar-weekdays span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.cal-day.empty { visibility: hidden; }
.cal-day.disabled { color: var(--text-subtle); opacity: 0.3; }
.cal-day.available {
  cursor: pointer;
  color: var(--text-light);
  background: rgba(255,255,255,0.03);
}
.cal-day.available:hover {
  background: rgba(224, 124, 58, 0.15);
  color: var(--accent);
}
.cal-day.selected {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700;
}

/* Time Slots */
.time-slots-container { margin-bottom: 24px; }
.time-slots-container h3 { font-size: 1rem; margin-bottom: 16px; text-align: center; }
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.time-slot {
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: var(--border-subtle);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.time-slot:hover {
  background: rgba(224, 124, 58, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}
.time-slot.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 700;
}

/* Booking Form */
.booking-form { max-width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--primary-dark);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 124, 58, 0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238fa3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Module Checkboxes */
.module-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.checkbox-card:hover {
  border-color: rgba(224, 124, 58, 0.35);
  background: rgba(224, 124, 58, 0.05);
}
.checkbox-card input { display: none; }
.checkbox-card input:checked + .cb-icon { background: var(--accent); }
.checkbox-card input:checked + .cb-icon svg { stroke: var(--white); }
.checkbox-card input:checked ~ span:last-child { color: var(--accent); font-weight: 600; }
.cb-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.cb-icon svg { stroke: var(--text-subtle); }

.checkbox-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-weight: 400 !important;
}
.checkbox-consent input {
  margin-top: 3px;
  accent-color: var(--accent-teal);
  width: auto;
}
.checkbox-consent span { font-size: 0.8rem; color: var(--text-muted); }

.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.step-actions .btn { flex: 1; justify-content: center; }
.step-actions .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Confirmation */
.confirmation-content { text-align: center; }
.confirmation-icon { margin-bottom: 20px; }
.confirmation-details {
  background: var(--primary-dark);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px auto;
  max-width: 440px;
  text-align: left;
}
.conf-item {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.conf-item:last-child { border-bottom: none; }
.conf-item strong { color: var(--white); }
.confirmation-text { color: var(--text-muted); font-size: 0.92rem; margin: 20px 0; }
.confirmation-next { margin: 32px 0; }
.confirmation-next h3 { font-size: 1.1rem; margin-bottom: 20px; }
.next-steps {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.next-step {
  text-align: center;
  max-width: 180px;
}
.next-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,191,166,0.15);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 auto 10px;
}
.next-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ==================== RESPONSIVE ==================== */
/* === IMAGE SHOWCASE (Pain section dual images) === */
.image-showcase {
  margin-top: 56px;
}

.image-showcase.dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.showcase-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 191, 166, 0.08);
  transition: var(--transition);
}

.showcase-item:hover {
  border-color: rgba(224, 124, 58, 0.4);
  box-shadow: 0 0 24px rgba(224, 124, 58, 0.12);
  transform: translateY(-3px);
}

.showcase-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

.showcase-item:hover img {
  transform: scale(1.03);
}

.showcase-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* === CINEMATIC BANNER (full-width visual breaks) === */
.cinematic-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 600px;
}

.cinematic-banner.compact {
  max-height: 520px;
}

.cinematic-banner img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.cinematic-banner.compact img {
  height: 520px;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 14, 24, 0.85) 0%,
    rgba(6, 14, 24, 0.3) 40%,
    rgba(6, 14, 24, 0.15) 60%,
    rgba(6, 14, 24, 0.4) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 24px;
}

.cinematic-tagline {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.5px;
  max-width: 800px;
  text-transform: uppercase;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.2);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

/* === TEAM HERO IMAGE === */
.team-hero-image {
  margin: 0 auto 48px;
  max-width: 900px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 191, 166, 0.1);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.team-hero-image:hover {
  border-color: rgba(224, 124, 58, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(224, 124, 58, 0.08);
}

.team-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* === RESPONSIVE: Images === */
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .navbar .btn-nav { display: none; }
  .navbar-toggle { display: block; }
  .navbar-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,24,41,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 0;
    border-bottom: var(--border-subtle);
  }
  .navbar-menu.open li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .navbar-menu.open a { font-size: 1rem; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-scroll-indicator { display: none; }

  .image-showcase.dual { grid-template-columns: 1fr; }
  .showcase-item img { height: 280px; }
  .cinematic-banner img { height: 420px; }
  .cinematic-banner.compact img { height: 360px; }
  .cinematic-banner { max-height: 420px; }
  .cinematic-banner.compact { max-height: 360px; }
  .team-hero-image { max-width: 100%; }

  .pain-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .booking-modal { padding: 24px; width: 98%; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .module-checkboxes { grid-template-columns: 1fr; }
  .next-steps { flex-direction: column; align-items: center; }
  .booking-progress { gap: 4px; }
  .progress-line { width: 20px; }
  .step-circle { width: 30px; height: 30px; font-size: 0.7rem; }
  .progress-step span { font-size: 0.6rem; }

  .floating-cta { bottom: 16px; right: 16px; }
  .floating-cta-btn { padding: 12px 18px; font-size: 0.8rem; }
  .floating-cta-btn span { display: none; }
}

@media (max-width: 480px) {
  .showcase-item img { height: 220px; }
  .cinematic-banner img { height: 320px; }
  .cinematic-banner.compact img { height: 260px; }
  .cinematic-banner { max-height: 320px; }
  .cinematic-banner.compact { max-height: 260px; }
  .cinematic-tagline { font-size: 1.1rem; }
  .showcase-caption { font-size: 0.9rem; padding: 16px; }

  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .hero-trust-row { flex-direction: column; align-items: flex-start; }
  .btn-lg { padding: 16px 28px; font-size: 0.95rem; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary-darker); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-teal); }

/* === SELECTION === */
::selection { background: rgba(0,191,166,0.3); color: var(--white); }
