/* ============================================
   OpenClaw London — Premium Design System
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --claw-red: #E63946;
  --claw-red-dark: #C62D39;
  --claw-red-glow: rgba(230, 57, 70, 0.15);
  --claw-red-vivid: #FF2D40;
  --gold: #FFD700;
  --gold-dim: rgba(255, 215, 0, 0.12);
  --teal: #00D4AA;
  --teal-glow: rgba(0, 212, 170, 0.12);
  --navy-deep: #06060F;
  --navy: #0A0A1A;
  --navy-mid: #12122A;
  --navy-card: #161636;
  --navy-border: #1E1E4A;
  --navy-light: #252560;
  --slate: #8B8BAA;
  --slate-light: #A8A8C0;
  --cream: #F0EDE8;
  --white: #FFFFFF;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow-red: 0 0 60px rgba(230, 57, 70, 0.2), 0 0 120px rgba(230, 57, 70, 0.08);
  --glow-gold: 0 0 40px rgba(255, 215, 0, 0.15);
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--slate-light);
  background: var(--navy-deep);
  line-height: 1.7;
  overflow-x: hidden;
  /* Cyber Matrix Grid */
  background-image: 
    linear-gradient(rgba(0, 212, 170, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--claw-red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- GLOW ORB DECORATIONS ---------- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 8s ease-in-out infinite;
}
.glow-orb--red {
  background: var(--claw-red);
  width: 400px; height: 400px;
}
.glow-orb--gold {
  background: var(--gold);
  width: 300px; height: 300px;
  animation-delay: -3s;
}
.glow-orb--teal {
  background: var(--teal);
  width: 250px; height: 250px;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ========================================
   NAVIGATION
   ======================================== */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(6, 6, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
  transition: box-shadow var(--transition), background var(--transition);
}
nav.scrolled {
  background: rgba(6, 6, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo .claw-icon {
  font-size: 1.5rem;
}
.nav-logo span {
  color: var(--claw-red);
}
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--slate);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--claw-red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--claw-red) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--claw-red-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(230, 57, 70, 0.45) !important;
}

.mobile-toggle {
  display: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--claw-red) 0%, var(--claw-red-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: none;
  z-index: 1;
}
.btn-primary:hover::after {
  animation: scanline 0.8s cubic-bezier(0.1, 0, 0.3, 1) forwards;
}
@keyframes scanline {
  0% { left: -100%; }
  100% { left: 200%; }
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(230, 57, 70, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: var(--claw-red);
  color: var(--claw-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.15);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  padding-top: 80px;
}

/* Particle canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--navy-deep) 0%, rgba(6,6,15,0.5) 40%, rgba(6,6,15,0.7) 70%, var(--navy-deep) 100%),
    linear-gradient(90deg, var(--navy-deep) 0%, transparent 30%, transparent 70%, var(--navy-deep) 100%);
}

/* Glow orbs */
.hero .glow-orb--red { top: 10%; right: -5%; }
.hero .glow-orb--gold { bottom: 20%; left: -8%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--claw-red);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(var(--navy-deep), var(--navy-deep)) padding-box,
              linear-gradient(135deg, var(--claw-red), var(--gold)) border-box;
  border: 1.5px solid transparent;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px;
  background: var(--claw-red);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.1); }
  50% { box-shadow: 0 0 30px rgba(230, 57, 70, 0.2); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 0 50px rgba(230, 57, 70, 0.3);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--claw-red) 0%, #FF6B7A 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 640px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero stats */
.hero-proof {
  margin-top: 56px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 16px;
}
.hero-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 3px; height: 36px;
  background: linear-gradient(180deg, var(--claw-red), transparent);
  border-radius: 2px;
}
.hero-stat strong {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 2px;
}

/* ========================================
   SECTIONS — GENERIC
   ======================================== */
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.tech-accent {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--teal);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.8;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--claw-red);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--claw-red);
  border-radius: 1px;
}
section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 0 40px rgba(230, 57, 70, 0.2);
}
section .lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 640px;
  line-height: 1.7;
}

/* ========================================
   GLASS CARD BASE
   ======================================== */
.glass-card {
  background: rgba(22, 22, 54, 0.6);
  border: 1px solid rgba(30, 30, 74, 0.8);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  position: relative;
}
/* HUD Accent Bracket Left/Right */
.glass-card::before, .glass-card::after {
  content: '';
  position: absolute;
  top: 15px; bottom: 15px;
  width: 15px;
  border: 1px solid rgba(0, 212, 170, 0.4);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
  z-index: 2;
}
.glass-card::before {
  left: -1px;
  border-right: none;
  border-radius: 4px 0 0 4px;
  transform: translateX(-10px);
}
.glass-card::after {
  right: -1px;
  border-left: none;
  border-radius: 0 4px 4px 0;
  transform: translateX(10px);
}
.glass-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--glow-red);
}
.glass-card:hover::before { opacity: 1; transform: translateX(0); border-color: rgba(230, 57, 70, 0.6); }
.glass-card:hover::after { opacity: 1; transform: translateX(0); border-color: rgba(230, 57, 70, 0.6); }

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
  background: var(--navy);
}
.problem .glow-orb--teal { top: 30%; right: -10%; opacity: 0.2; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  padding: 32px;
  position: relative;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--claw-red), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.problem-card:hover::before { opacity: 1; }

.problem-icon {
  width: 52px; height: 52px;
  background: var(--claw-red-glow);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 0.925rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--navy-deep);
}
.services .glow-orb--red { bottom: 10%; left: -10%; opacity: 0.15; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.service-card .card-num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(230, 57, 70, 0.07);
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 4px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--claw-red-glow);
  border: 1px solid rgba(230, 57, 70, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(230, 57, 70, 0.2);
  border-color: rgba(230, 57, 70, 0.4);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.15);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  background: var(--navy);
  position: relative;
}
.pricing .glow-orb--gold { top: 20%; left: 50%; transform: translateX(-50%); opacity: 0.1; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.price-card {
  background: rgba(22, 22, 54, 0.7);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(230, 57, 70, 0.05) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.4);
  box-shadow: var(--glow-red);
}
.price-card:hover::before { opacity: 1; }

/* Featured card */
.price-card.featured {
  border-color: var(--claw-red);
  background: linear-gradient(180deg, rgba(22, 22, 54, 0.9) 0%, rgba(230, 57, 70, 0.06) 100%);
}
.price-card.featured::after {
  content: '⚡ MOST POPULAR';
  position: absolute;
  top: 0; right: 24px;
  background: linear-gradient(135deg, var(--claw-red), var(--claw-red-dark));
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.price-tier {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--claw-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.price-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin: 20px 0 6px;
  letter-spacing: -2px;
  line-height: 1;
}
.price-amount span {
  font-size: 1rem;
  color: var(--slate);
  font-weight: 400;
  letter-spacing: 0;
}
.price-was {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 20px;
}
.price-was s { color: rgba(230, 57, 70, 0.6); }
.price-save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--teal-glow);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
}
.price-desc {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 28px;
  line-height: 1.6;
}
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.price-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-features li.na { opacity: 0.35; }
.price-features li.na::before { content: '—'; color: var(--slate); }
.price-card .btn { width: 100%; text-align: center; justify-content: center; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--slate);
  position: relative;
  z-index: 2;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
  background: var(--navy-deep);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
  position: relative;
}
/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--claw-red), var(--gold), var(--teal));
  opacity: 0.2;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--navy-card);
  border: 2px solid var(--navy-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--claw-red);
  transition: all var(--transition);
}
.step:hover .step-num {
  border-color: var(--claw-red);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
  background: var(--claw-red-glow);
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ========================================
   AREAS
   ======================================== */
.areas { background: var(--navy); }
.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.area-tag {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-light);
  transition: all var(--transition);
  cursor: default;
}
.area-tag:hover {
  border-color: var(--claw-red);
  color: var(--white);
  background: var(--claw-red-glow);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.1);
  transform: translateY(-2px);
}

/* ========================================
   FAQ
   ======================================== */
.faq { background: var(--navy-deep); }
.faq-list { max-width: 800px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(30, 30, 74, 0.6);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 48px 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--white);
  position: relative;
  line-height: 1.4;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--claw-red); }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--claw-red);
  transition: transform 0.35s;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--claw-red-glow);
  border-radius: 50%;
}
.faq-q.open::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq-a.open { max-height: 500px; padding: 0 0 24px; }
.faq-a p { font-size: 0.95rem; color: var(--slate); line-height: 1.75; }

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(230, 57, 70, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* --- Left info column --- */
.booking-info {
  padding-top: 20px;
}
.booking-info h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -1px;
}
.booking-benefits {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.booking-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.benefit-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--claw-red-glow);
  border: 1px solid rgba(230, 57, 70, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.booking-benefit strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.booking-benefit p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}
.booking-info .cta-email {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--slate);
}
.cta-email a {
  color: var(--claw-red);
  transition: color var(--transition);
}
.cta-email a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* --- Booking Form Card --- */
.booking-form {
  padding: 44px 40px;
  background: rgba(10, 10, 15, 0.85); /* Darker, more solid base */
  border: 1px solid rgba(230, 57, 70, 0.2); /* Subtle brand red border */
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(230, 57, 70, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.5), transparent);
}
.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.5px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 6px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-light);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  width: 100%;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(10, 10, 26, 0.6);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(139, 139, 170, 0.5);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--claw-red);
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.1), 0 4px 12px rgba(230, 57, 70, 0.05);
  background: rgba(16, 16, 32, 0.8);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238B8BAA' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 40px;
}
.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-group input[type="date"] {
  color-scheme: dark;
}

/* --- Time Slots --- */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.time-slot {
  cursor: pointer;
}
.time-slot input { display: none; }
.time-slot span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 8px;
  background: rgba(10, 10, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.time-slot:hover span {
  border-color: rgba(230, 57, 70, 0.5);
  background: rgba(230, 57, 70, 0.05);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.time-slot input:checked + span {
  background: var(--claw-red);
  border-color: var(--claw-red);
  color: var(--white);
  box-shadow: 0 0 16px rgba(230, 57, 70, 0.3);
  font-weight: 700;
  transform: translateY(-1px);
}

/* --- Submit Button --- */
.btn-submit {
  width: 100%;
  margin-top: 12px;
  padding: 20px 36px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--claw-red) 0%, #B8202A 100%);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.25);
  border: none;
  transition: all 0.25s ease;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.35);
}
.btn-submit:active {
  transform: translateY(0) scale(0.98);
}

/* --- Form Note --- */
.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--slate);
}

/* --- Success State --- */
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success .success-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}
.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: #04040A;
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(30, 30, 74, 0.4);
}
footer p { font-size: 0.8rem; color: var(--slate); line-height: 1.8; }
footer a {
  color: var(--claw-red);
  transition: color var(--transition);
}
footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-brand {
  color: var(--white);
  font-weight: 700;
}
.footer-brand span { color: var(--claw-red); }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* Scale variant */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .booking-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .booking-form { padding: 32px 28px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    background: rgba(6, 6, 15, 0.98);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid var(--navy-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .nav-links.open a::after { display: none; }

  .hero { padding-top: 80px; min-height: auto; }
  .hero-content { padding: 40px 0; }
  .hero-proof { gap: 28px; }
  section { padding: 70px 0; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .glow-orb { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; letter-spacing: -1px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; gap: 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(4, 1fr); }
  .booking-form { padding: 24px 20px; }
}
