/* =============================================
   SmartBalie V3 — Apple-Inspired Cinematic Design
   Blives Digital · 2026
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   Design Tokens
   ============================================= */
:root {
  --bg-void: #000000;
  --bg-primary: #0a0a0f;
  --bg-elevated: #111118;
  --bg-card: rgba(17, 17, 24, 0.7);
  --accent: #3b82f6;
  --accent-bright: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --accent-glow-strong: rgba(59, 130, 246, 0.4);
  --purple: #8b5cf6;
  --pink: #ec4899;
  --emerald: #10b981;
  --gradient-hero: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  --gradient-cta: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  --gradient-text: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6, #60a5fa);
  --text-primary: #fafafa;
  --text-secondary: rgba(250, 250, 250, 0.6);
  --text-tertiary: rgba(250, 250, 250, 0.35);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(59, 130, 246, 0.2);
  --glass: rgba(17, 17, 24, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* =============================================
   Ambient — Cinematic Orbs
   ============================================= */
.ambient-bg {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(150px); opacity: 0.5;
  animation: orbDrift 30s ease-in-out infinite alternate;
}
.orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
  top: -20%; right: -15%;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 70%);
  bottom: 10%; left: -10%;
  animation-delay: -10s;
}
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.12), transparent 70%);
  top: 40%; left: 50%;
  animation-delay: -20s;
}
@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.15); }
  100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* =============================================
   Navigation — Minimal Apple-Style
   ============================================= */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.top-bar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 1px 40px rgba(0,0,0,0.5);
}
.top-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 56px; display: flex; align-items: center; justify-content: space-between;
}
.logo-group { display: flex; align-items: center; gap: 0.6rem; }
.logo-img { height: 32px; width: 32px; border-radius: 8px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text .brand { font-weight: 700; font-size: 0.9rem; letter-spacing: -0.01em; }
.logo-text .sub { font-size: 0.55rem; color: var(--text-tertiary); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.8rem; font-weight: 400;
  transition: color 0.3s ease; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--text-primary) !important;
  color: var(--bg-void) !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover { opacity: 0.85 !important; transform: scale(1.02); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn span { display: block; width: 20px; height: 1.5px; background: var(--text-primary); margin: 5px 0; border-radius: 2px; transition: all 0.3s ease; }

/* =============================================
   Section System — Apple Layout
   ============================================= */
section { position: relative; z-index: 1; }
.section-container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent-bright); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.25rem;
}
.section-desc { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

/* =============================================
   Buttons
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.2rem; background: var(--gradient-cta);
  color: white; border: none; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(59,130,246,0.3);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 40px rgba(59,130,246,0.45); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.2rem; background: transparent;
  color: var(--accent-bright); border: none; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all 0.3s ease;
}
.btn-ghost:hover { color: var(--text-primary); }
.btn-ghost .arrow { transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* =============================================
   HERO — Cinematic Fullscreen
   ============================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero-content { max-width: 900px; position: relative; z-index: 2; }
.hero-overline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500; color: var(--accent-bright);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 2rem; opacity: 0;
  animation: cineFadeUp 1s ease-out 0.2s forwards;
}
.hero-overline .dot {
  width: 6px; height: 6px; background: var(--emerald);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(1.6); } }

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800;
  line-height: 1.0; letter-spacing: -0.04em;
  margin-bottom: 1.5rem; opacity: 0;
  animation: cineFadeUp 1s ease-out 0.4s forwards;
}
.hero h1 .line { display: block; }
.gradient-text {
  background: var(--gradient-text); background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-secondary);
  line-height: 1.7; font-weight: 300; max-width: 640px; margin: 0 auto 3rem;
  opacity: 0; animation: cineFadeUp 1s ease-out 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: cineFadeUp 1s ease-out 0.8s forwards;
}

.hero-visual {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.15;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(2px);
}

/* Hero Stats — Floating cards */
.hero-stats {
  display: flex; gap: 1.5rem; justify-content: center; margin-top: 5rem;
  opacity: 0; animation: cineFadeUp 1s ease-out 1s forwards;
}
.stat-card {
  background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 1.5rem 2rem; text-align: center;
  transition: all 0.4s ease;
}
.stat-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.stat-number {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.02em;
  background: var(--gradient-hero);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.7rem; color: var(--text-tertiary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem;
}

@keyframes cineFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   PAIN — Cinematic Split
   ============================================= */
.pain-section {
  padding: 10rem 2rem;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-primary) 30%, var(--bg-primary) 70%, var(--bg-void) 100%);
}
.pain-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.pain-visual { perspective: 1000px; }
.pain-visual img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pain-visual:hover img { transform: rotateY(0) rotateX(0) scale(1.02); }
.pain-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.pain-card {
  display: flex; gap: 1.25rem; padding: 1.5rem;
  background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all 0.4s ease;
}
.pain-card:hover {
  border-color: rgba(239,68,68,0.3); transform: translateX(8px);
  box-shadow: -4px 0 20px rgba(239,68,68,0.1);
}
.pain-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,0.1); border-radius: 12px;
}
.pain-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.pain-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* =============================================
   FEATURES — Apple Grid Cards
   ============================================= */
#features { padding: 10rem 2rem; }
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.feature-card {
  position: relative; padding: 2.5rem 2rem;
  background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit; padding: 1px;
  background: var(--gradient-hero); opacity: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px) scale(1.01); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-glow), rgba(139,92,246,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.5rem;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* =============================================
   DASHBOARD — 3D Perspective Showcase
   ============================================= */
.dashboard-section {
  padding: 10rem 2rem;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(59,130,246,0.08), transparent);
}
.dashboard-visual {
  max-width: 1000px; margin: 0 auto;
  perspective: 2000px;
}
.dashboard-visual img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow:
    0 60px 120px rgba(0,0,0,0.5),
    0 0 80px rgba(59,130,246,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transform: rotateX(8deg) scale(0.95);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.dashboard-visual:hover img {
  transform: rotateX(0) scale(1);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 120px rgba(59,130,246,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* =============================================
   HOW IT WORKS — Timeline
   ============================================= */
#how-it-works { padding: 10rem 2rem; }
.steps-container { max-width: 780px; margin: 0 auto; }
.step-item {
  display: flex; gap: 2.5rem; padding: 2.5rem 0;
  position: relative;
}
.step-item::before {
  content: ''; position: absolute;
  left: 31px; top: 80px; bottom: -10px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}
.step-item:last-child::before { display: none; }
.step-number {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-primary); border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: var(--accent-bright);
  box-shadow: 0 0 30px var(--accent-glow);
  transition: all 0.4s ease; z-index: 2;
}
.step-item:hover .step-number {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 40px var(--accent-glow-strong);
}
.step-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.step-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* =============================================
   TRUST — Minimal Badges
   ============================================= */
#trust { padding: 8rem 2rem; }
.trust-badges { max-width: 900px; margin: 0 auto; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-badge {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  padding: 2rem; background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  flex: 1; min-width: 220px; transition: all 0.4s ease;
}
.trust-badge:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.trust-badge-icon { font-size: 2.5rem; }
.trust-badge h4 { font-size: 1rem; font-weight: 700; }
.trust-badge p { font-size: 0.8rem; color: var(--text-secondary); text-align: center; }

/* =============================================
   PRICING — Premium Cards
   ============================================= */
.pricing-section {
  padding: 10rem 2rem;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(139,92,246,0.06), transparent);
}
.pricing-container { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.pricing-card {
  padding: 3rem 2.5rem; background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); overflow: hidden; position: relative;
}
.pricing-card.featured {
  border-color: var(--border-accent);
  box-shadow: 0 0 60px var(--accent-glow);
}
.pricing-card.featured::after {
  content: 'Meest Gekozen'; position: absolute; top: 1.5rem; right: -2rem;
  background: var(--gradient-hero); color: white; font-size: 0.65rem; font-weight: 700;
  padding: 0.25rem 2.5rem; transform: rotate(35deg); letter-spacing: 0.08em;
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-bright); margin-bottom: 0.75rem; }
.pricing-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem; letter-spacing: -0.01em; }
.pricing-amount { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.5rem; }
.currency { font-size: 1.5rem; font-weight: 600; color: var(--text-secondary); }
.value { font-size: 3.5rem; font-weight: 800; background: var(--gradient-hero); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.03em; }
.pricing-period { font-size: 0.8rem; color: var(--text-tertiary); margin-bottom: 2.5rem; }
.pricing-features { list-style: none; margin-bottom: 2.5rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; font-size: 0.88rem; color: var(--text-secondary); }
.pricing-features .check { color: var(--emerald); font-weight: 700; }
.pricing-btn {
  display: block; width: 100%; padding: 0.9rem; text-align: center;
  border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  font-family: inherit; cursor: pointer; transition: all 0.3s ease; border: none;
}
.pricing-btn-primary { background: var(--gradient-cta); color: white; box-shadow: 0 4px 20px rgba(59,130,246,0.3); }
.pricing-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.45); }
.pricing-btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border) !important; }
.pricing-btn-secondary:hover { border-color: var(--accent-bright) !important; color: var(--accent-bright); }

/* =============================================
   BOOKING — Form Section
   ============================================= */
.booking-section {
  padding: 10rem 2rem;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-primary) 50%, var(--bg-void) 100%);
}
.booking-container { max-width: 640px; margin: 0 auto; }
.booking-form {
  padding: 3rem; background: var(--glass); backdrop-filter: blur(30px);
  border: 1px solid var(--border-accent); border-radius: var(--radius-xl);
  box-shadow: 0 0 60px var(--accent-glow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.form-group label .required { color: #ef4444; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 12px;
  color: var(--text-primary); font-family: inherit; font-size: 0.9rem;
  transition: all 0.3s ease; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-tertiary); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 01.753 1.659l-4.796 5.48a1 1 0 01-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.booking-submit { width: 100%; margin-top: 0.5rem; padding: 1rem; font-size: 1rem; }
.booking-note { text-align: center; margin-top: 1.25rem; font-size: 0.75rem; color: var(--text-tertiary); }

.booking-success {
  display: none; text-align: center; padding: 3rem;
  background: var(--glass); backdrop-filter: blur(30px);
  border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius-xl);
}
.booking-success.visible { display: block; animation: cineFadeUp 0.5s ease-out; }
.booking-success .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.booking-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--emerald); }
.booking-success p { color: var(--text-secondary); line-height: 1.7; }

/* =============================================
   HERO VIDEO Background
   ============================================= */
.hero-visual video {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(2px) brightness(0.35);
}

/* =============================================
   VIDEO SHOWCASE — AI Demo Section
   ============================================= */
.video-showcase {
  padding: 10rem 2rem;
  background: linear-gradient(180deg, var(--bg-void) 0%, rgba(59,130,246,0.03) 50%, var(--bg-void) 100%);
}
.video-demo-container {
  max-width: 480px; margin: 0 auto;
  perspective: 1200px;
}
.phone-demo {
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-demo:hover { transform: rotateY(0) rotateX(0) scale(1.02); }
.phone-screen {
  background: linear-gradient(145deg, rgba(15,15,25,0.95), rgba(10,10,20,0.98));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.5),
    0 0 80px rgba(59,130,246,0.1),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 4px; background: rgba(255,255,255,0.08); border-radius: 0 0 4px 4px;
}
.phone-status {
  text-align: center; font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent-bright); margin-bottom: 1.5rem; padding-top: 0.5rem;
}
.phone-caller {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; background: rgba(255,255,255,0.03);
  border-radius: var(--radius); margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}
.caller-avatar {
  width: 48px; height: 48px; background: var(--accent-glow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.caller-info { display: flex; flex-direction: column; }
.caller-name { font-size: 0.9rem; font-weight: 600; }
.caller-number { font-size: 0.75rem; color: var(--text-tertiary); font-family: 'SF Mono', monospace; }

/* Audio Wave Animation */
.phone-wave {
  display: flex; align-items: center; justify-content: center; gap: 3px;
  height: 40px; margin-bottom: 1.25rem;
}
.wave-bar {
  width: 3px; border-radius: 3px;
  background: var(--accent); opacity: 0.7;
  animation: waveAnim 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1) { animation-delay: 0s; height: 12px; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 20px; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 28px; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 36px; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 28px; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; height: 36px; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; height: 20px; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; height: 28px; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; height: 12px; }
@keyframes waveAnim {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Transcript Chat */
.phone-transcript {
  display: flex; flex-direction: column; gap: 0.75rem;
  max-height: 220px; overflow-y: auto; padding-right: 0.5rem;
  margin-bottom: 1.25rem;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.transcript-line {
  padding: 0.65rem 0.9rem; border-radius: 14px;
  font-size: 0.8rem; line-height: 1.5; max-width: 85%;
  opacity: 0; animation: chatBubble 0.5s ease-out forwards;
}
.transcript-line.ai {
  background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.2);
  align-self: flex-start; border-bottom-left-radius: 4px;
  color: var(--text-primary);
}
.transcript-line.patient {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  align-self: flex-end; border-bottom-right-radius: 4px;
  color: var(--text-secondary);
}
.transcript-line:nth-child(1) { animation-delay: 0.5s; }
.transcript-line:nth-child(2) { animation-delay: 2s; }
.transcript-line:nth-child(3) { animation-delay: 4s; }
.transcript-line:nth-child(4) { animation-delay: 6.5s; }
.transcript-line:nth-child(5) { animation-delay: 8s; }
@keyframes chatBubble {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.phone-actions {
  display: flex; gap: 0.5rem; justify-content: center;
}
.phone-badge {
  font-size: 0.65rem; font-weight: 600; padding: 0.35rem 0.8rem;
  border-radius: 50px; letter-spacing: 0.05em;
}
.ai-badge { background: rgba(59,130,246,0.15); color: var(--accent-bright); border: 1px solid rgba(59,130,246,0.25); }
.time-badge { background: rgba(16,185,129,0.12); color: var(--emerald); border: 1px solid rgba(16,185,129,0.25); }

/* Dashboard Video */
.dashboard-visual video {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow:
    0 60px 120px rgba(0,0,0,0.5),
    0 0 80px rgba(59,130,246,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transform: rotateX(8deg) scale(0.95);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.dashboard-visual:hover video {
  transform: rotateX(0) scale(1);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 120px rgba(59,130,246,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border); padding: 3rem 2rem;
  background: rgba(0,0,0,0.8);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start;
}
.footer-brand-group { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.footer-brand-group img { height: 28px; width: 28px; border-radius: 6px; }
.footer-left p { font-size: 0.8rem; color: var(--text-tertiary); margin-top: 0.25rem; }
.footer-right { text-align: right; }
.footer-right p { font-size: 0.75rem; color: var(--text-tertiary); line-height: 1.7; }
.footer-links { display: flex; gap: 1.5rem; margin-top: 0.75rem; }
.footer-links a { font-size: 0.75rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-bright); }

/* =============================================
   Scroll Reveal — Cinematic
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.3s; }

/* =============================================
   WhatsApp Float
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0; transform: scale(0.6) translateY(20px); pointer-events: none;
}
.whatsapp-float.visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.wa-tooltip {
  position: absolute; right: 68px;
  background: var(--bg-elevated); color: var(--text-primary);
  padding: 0.5rem 1rem; border-radius: 10px; font-size: 0.75rem; font-weight: 500;
  white-space: nowrap; border: 1px solid var(--border);
  opacity: 0; transform: translateX(8px); transition: all 0.3s; pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* =============================================
   Cookie Banner
   ============================================= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
  background: rgba(10,10,15,0.95); border-top: 1px solid var(--border);
  padding: 1rem 2rem; display: flex; align-items: center; justify-content: center; gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(30px);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.8rem; color: var(--text-secondary); max-width: 500px; line-height: 1.5; }
.cookie-banner a { color: var(--accent-bright); text-decoration: underline; }
.cookie-btn {
  padding: 0.55rem 1.4rem; background: var(--text-primary); color: var(--bg-void);
  border: none; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  font-family: inherit; cursor: pointer; transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
}
.cookie-btn:hover { opacity: 0.85; }

/* =============================================
   Form Error States
   ============================================= */
.form-group .error-msg { display: none; font-size: 0.73rem; color: #ef4444; margin-top: 0.3rem; }
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.15) !important;
}

/* =============================================
   Selection & Accessibility
   ============================================= */
::selection { background: rgba(59,130,246,0.3); color: var(--text-primary); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .orb { animation: none; }
  html { scroll-behavior: auto; }
}

/* =============================================
   Mobile Menu
   ============================================= */
.nav-links.mobile-open {
  display: flex !important; flex-direction: column;
  position: absolute; top: 56px; right: 1rem;
  background: rgba(10,10,15,0.95); backdrop-filter: blur(30px);
  padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border);
  gap: 1rem; box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  animation: cineFadeUp 0.3s ease-out;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 968px) {
  .hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-visual { max-width: 500px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-container { grid-template-columns: 1fr; max-width: 440px; }
  .hero-stats { gap: 1rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .footer-links { justify-content: center; }
  .step-item { gap: 1.25rem; }
  .step-number { width: 48px; height: 48px; font-size: 1rem; }
  .booking-form { padding: 2rem 1.25rem; }
  .trust-badges { gap: 1rem; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 0.75rem; align-items: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .stat-card { width: 100%; max-width: 220px; }
}
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; gap: 0.75rem; text-align: center; padding: 1rem 1.25rem; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .wa-tooltip { display: none; }
}

/* Print */
@media print {
  .ambient-bg, .top-bar, .whatsapp-float, .cookie-banner, .hero-visual { display: none !important; }
  body { background: white; color: #111; }
  .section-title, .hero h1 { color: #111; -webkit-text-fill-color: #111; }
  .feature-card, .pain-card, .pricing-card, .trust-badge { border: 1px solid #ccc; background: white; backdrop-filter: none; }
}
