/* ==========================================================================
   Wakeel — Royal Azure & Sunset Violet 3D SaaS Design System
   Slogans: Business on Autopilot • سيب الشغل علي وكيل
   Domain: elwakeel.tech
   ========================================================================== */

:root {
  /* LIGHT MODE (DEFAULT) */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-hover: #e2e8f0;
  
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(15, 23, 42, 0.18);
  --border-focus: rgba(37, 99, 235, 0.45);
  
  --text-primary: #090d16;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Royal Azure & Sunset Violet Palette */
  --brand-primary: #2563eb;
  --brand-primary-hover: #1d4ed8;
  --brand-secondary: #7c3aed;
  --brand-light: #eff6ff;
  --brand-glow: rgba(37, 99, 235, 0.28);
  
  --accent-cyan: #06b6d4;
  --accent-violet: #8b5cf6;
  --accent-coral: #f43f5e;
  --accent-amber: #f59e0b;
  
  --shadow-sm: 0 2px 6px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -4px rgba(15, 23, 42, 0.08), 0 2px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 48px -8px rgba(15, 23, 42, 0.12);
  --shadow-3d: 0 32px 64px -16px rgba(37, 99, 235, 0.16), 0 0 0 1px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 28px 60px -10px rgba(37, 99, 235, 0.25), 0 0 0 1px rgba(37, 99, 235, 0.3);
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* DARK MODE OVERRIDES */
[data-theme="dark"] {
  --bg-body: #05070d;
  --bg-surface: #0b0f19;
  --bg-surface-elevated: #111726;
  --bg-subtle: #161e31;
  --bg-hover: #1e2942;
  
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.2);
  --border-focus: rgba(59, 130, 246, 0.55);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  
  --brand-primary: #3b82f6;
  --brand-primary-hover: #2563eb;
  --brand-secondary: #8b5cf6;
  --brand-light: rgba(59, 130, 246, 0.15);
  --brand-glow: rgba(59, 130, 246, 0.38);
  
  --shadow-sm: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px -4px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 48px -8px rgba(0, 0, 0, 0.7);
  --shadow-3d: 0 32px 64px -16px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.08);
  --shadow-card-hover: 0 30px 64px -12px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.5);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

body[dir="rtl"] {
  font-family: var(--font-ar);
}

/* Ambient Animated Glowing Mesh Orbs */
.ambient-mesh {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  animation: float-ambient 10s ease-in-out infinite alternate;
}

@keyframes float-ambient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.12); }
  100% { transform: translate(-30px, 30px) scale(1.05); }
}

.mesh-top-right {
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, var(--brand-primary), var(--accent-cyan));
}

.mesh-mid-left {
  top: 900px;
  left: -220px;
  background: radial-gradient(circle, var(--brand-secondary), var(--accent-coral));
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* Satisfying Fluid Scroll Animation Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(45px) scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* Parallax floating helper */
.parallax-layer {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(248, 250, 252, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .navbar {
  background: rgba(5, 7, 13, 0.85);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 900;
  font-size: 1.38rem;
  letter-spacing: -0.02em;
}

.logo-badge {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px var(--brand-glow);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo:hover .logo-badge {
  transform: rotate(12deg) scale(1.1);
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--brand-primary);
}

/* Dropdown Menu Item */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.nav-dropdown-item:hover {
  background: var(--bg-subtle);
  color: var(--brand-primary);
  transform: translateX(4px);
}

/* Nav Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* WhatsGPT.me-Style Globe Language Segmented Pill Button */
.whatsgpt-lang-pill {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px 6px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  gap: 4px;
  height: 38px;
}

.whatsgpt-lang-pill:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.lang-pill-segment {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.lang-pill-segment.active {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 2px 8px var(--brand-glow);
}

.control-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 6px 14px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.control-btn:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  box-shadow: 0 4px 18px var(--brand-glow);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 26px var(--brand-glow);
}

.btn-whatsapp-compact {
  background: #090d16;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .btn-whatsapp-compact {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-whatsapp-compact:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--brand-glow);
}

.btn-outline {
  background: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--bg-subtle);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.08rem;
}

/* Hero Section */
.hero-section {
  padding: 85px 0 95px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: var(--brand-light);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-primary);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 22px;
  line-height: 1.16;
}

.hero-subtitle {
  font-size: 1.22rem;
  color: var(--text-secondary);
  margin-bottom: 38px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 3D Phone & Interactive Mockup */
.hero-visual-3d {
  perspective: 1200px;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.phone-card-3d {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3d);
  width: 100%;
  max-width: 410px;
  transform: rotateY(-7deg) rotateX(5deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}

.phone-card-3d:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.phone-header {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.phone-user-info h4 {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
}

.phone-user-info span {
  font-size: 0.78rem;
  color: #93c5fd;
}

.phone-chat-body {
  background: #f1f5f9;
  padding: 18px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-theme="dark"] .phone-chat-body {
  background: #090d16;
}

.phone-bubble {
  max-width: 85%;
  padding: 11px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.phone-bubble-user {
  align-self: flex-end;
  background: #dbeafe;
  color: #1e3a8a;
  border-bottom-right-radius: 2px;
}

[data-theme="dark"] .phone-bubble-user {
  background: #1e3a8a;
  color: #eff6ff;
}

.phone-bubble-ai {
  align-self: flex-start;
  background: #ffffff;
  color: #0f172a;
  border-bottom-left-radius: 2px;
}

[data-theme="dark"] .phone-bubble-ai {
  background: #1e293b;
  color: #f8fafc;
}

.product-mini-card {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 8px;
}

[data-theme="dark"] .product-mini-card {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.28);
}

/* Floating 3D Micro-Badges */
.floating-3d-badge {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 2;
  animation: float-3d 5s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.badge-top-left {
  top: 6%;
  left: -28px;
}

body[dir="rtl"] .badge-top-left {
  left: auto;
  right: -28px;
}

.badge-bottom-right {
  bottom: 6%;
  right: -28px;
  animation-delay: 2.5s;
}

body[dir="rtl"] .badge-bottom-right {
  right: auto;
  left: -28px;
}

@keyframes float-3d {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* Section Common Styles */
.section-wrapper {
  padding: 100px 0;
}

.section-wrapper-alt {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header-compact {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-tag-compact {
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
  display: block;
}

.section-title-compact {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.section-desc-compact {
  color: var(--text-secondary);
  font-size: 1.14rem;
}

/* BIG 3D FEATURES CARDS (THE AI WORKFORCE) */
.cards-grid-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.card-3d-tilt {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 42px 34px;
  min-height: 290px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
}

.card-3d-tilt:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-primary);
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px var(--brand-glow);
  transition: transform 0.3s ease;
}

.card-3d-tilt:hover .card-icon-wrapper {
  transform: translateZ(20px) scale(1.1);
}

.card-3d-tilt h3 {
  font-size: 1.38rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.card-3d-tilt p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Interactive Simulator */
.sim-box-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.prompt-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.sim-prompt-chip {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  font-weight: 600;
  text-align: inherit;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sim-prompt-chip:hover, .sim-prompt-chip.active {
  background: var(--brand-light);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateX(4px);
}

body[dir="rtl"] .sim-prompt-chip:hover,
body[dir="rtl"] .sim-prompt-chip.active {
  transform: translateX(-4px);
}

.sim-chat-window {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 420px;
  box-shadow: var(--shadow-md);
}

.sim-chat-header {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.92rem;
}

.sim-chat-stream {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-body);
}

.sim-chat-footer {
  padding: 14px 18px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sim-chat-input {
  flex: 1;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  outline: none;
  font-family: inherit;
}

/* 3-STEP ONBOARDING TIMELINE (REPLACES PRICING) */
.timeline-3d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.timeline-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.timeline-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}

.timeline-step-num {
  position: absolute;
  top: -16px;
  left: 32px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  font-weight: 900;
  font-size: 0.9rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--brand-glow);
}

body[dir="rtl"] .timeline-step-num {
  left: auto;
  right: 32px;
}

.timeline-step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  margin-top: 8px;
}

.timeline-step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.timeline-step-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* COMPARISON MATRIX (HUMAN VS WAKEEL AI) */
.comparison-matrix-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-3d);
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: inherit;
}

.comparison-table th {
  padding: 16px 20px;
  font-size: 1.05rem;
  font-weight: 800;
  border-bottom: 2px solid var(--border-subtle);
  color: var(--text-primary);
}

.comparison-table td {
  padding: 18px 20px;
  font-size: 0.96rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.comparison-table tr:hover td {
  background: var(--bg-subtle);
}

.badge-winner {
  background: var(--brand-light);
  color: var(--brand-primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
}

/* BIG ROI CALCULATOR */
.roi-container-3d {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--brand-light) 100%);
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-3d);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: center;
}

.slider-wrapper {
  margin: 28px 0;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 1.08rem;
}

.roi-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: var(--border-subtle);
  outline: none;
  -webkit-appearance: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-primary);
  cursor: pointer;
  box-shadow: 0 0 14px var(--brand-glow);
  transition: transform 0.2s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.roi-stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.roi-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.roi-stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

/* Footer */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-top: 14px;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--brand-primary);
}

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

/* Responsive */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-cta-group { justify-content: center; }
  .trust-badges { justify-content: center; }
  .sim-box-grid { grid-template-columns: 1fr; }
  .timeline-3d-grid { grid-template-columns: 1fr; }
  .roi-container-3d { grid-template-columns: 1fr; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links-wrapper { display: none; }
}
