/* =========================================
   VARIABLES & THEME
   ========================================= */
:root {
  /* Colors - Premium Dark Theme */
  --bg-primary: #0a0a0c;
  --bg-secondary: #121216;
  --bg-tertiary: #1a1a20;
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #666677;
  
  --accent-primary: #3b82f6;
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #ec4899;
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.1);
  
  /* Gradients */
  --gradient-main: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
  --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5));
  
  /* Layout */
  --nav-height: 80px;
  --container-width: 1200px;
  --container-padding: 2.25rem;
  --section-spacing: 9.25rem;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
  --font-en: var(--font-sans);
  --font-ar: var(--font-sans);
  
  /* Effects */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Language Toggle Logic */
body.lang-ar {
  font-family: var(--font-ar);
  direction: rtl;
}

body.lang-en .ar { display: none !important; }
body.lang-ar .en { display: none !important; }

/* Global Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section {
  padding: var(--section-spacing) 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.lang-ar h1, body.lang-ar h2, body.lang-ar h3, body.lang-ar h4 {
  letter-spacing: 0;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.btn-ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--glass-highlight);
  border-color: rgba(255,255,255,0.2);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

body.lang-ar .btn svg {
  transform: scaleX(-1);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo-img:hover {
  transform: scale(1.08);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 0.875rem;
}

.lang-btn:hover {
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
}

.mobile-menu-btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn span:nth-child(1) { top: 4px; }
.mobile-menu-btn span:nth-child(2) { top: 11px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 20s infinite ease-in-out alternate;
}

.hero-orb-1 {
  background: var(--accent-primary);
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  background: var(--accent-secondary);
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -50px;
  animation-delay: -5s;
}

.hero-orb-3 {
  background: var(--accent-tertiary);
  width: 250px;
  height: 250px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  opacity: 0.3;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
  100% { transform: translate(-20px, 80px) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-stat-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--glass-border);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-proof {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
}

.proof-icon {
  font-size: 1.25rem;
}

.proof-value {
  font-weight: 700;
}

.proof-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* =========================================
   COMMON COMPONENTS
   ========================================= */
.section-header {
  margin-bottom: 4.5rem;
  max-width: 700px;
}

.section-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}

.section-number::before {
  content: "—";
  margin-inline-end: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.05);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-highlight {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border-left: 3px solid var(--accent-primary);
}
body.lang-ar .card-highlight {
  border-left: none;
  border-right: 3px solid var(--accent-primary);
}

/* =========================================
   MARKET VALIDATION
   ========================================= */
.validation-section {
  border-top: 1px solid rgba(16, 185, 129, 0.14);
  border-bottom: 1px solid rgba(16, 185, 129, 0.14);
}

.validation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.validation-card {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.validation-card:hover {
  border-color: rgba(16, 185, 129, 0.35);
  transform: translateY(-3px);
}

.validation-card.accent-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(59, 130, 246, 0.06));
  border-color: rgba(16, 185, 129, 0.28);
}

.validation-kicker {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.lang-ar .validation-kicker {
  letter-spacing: 0;
}

.validation-value {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--text-primary);
}

.validation-label {
  color: var(--text-secondary);
  font-weight: 600;
}

.cac-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(16, 185, 129, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 20px;
  margin-top: 2.5rem;
}

.cac-strip h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0.25rem 0 0.5rem;
}

.cac-strip p {
  color: var(--text-secondary);
  max-width: 720px;
}

.cac-eyebrow {
  color: var(--warning);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.lang-ar .cac-eyebrow {
  letter-spacing: 0;
}

/* =========================================
   STORY SECTION
   ========================================= */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.timeline-item {
  display: flex;
  gap: 2.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition);
}

.timeline-item:hover {
  border-color: var(--accent-primary);
}

.timeline-marker {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-muted);
}

.timeline-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.timeline-obstacle {
  flex: 1;
  min-width: 250px;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.timeline-arrow {
  color: var(--accent-primary);
  font-weight: 700;
}

body.lang-ar .timeline-arrow {
  transform: scaleX(-1);
}

.timeline-solution {
  flex: 1.5;
  min-width: 250px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.story-result {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.result-card {
  position: relative;
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.result-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: var(--gradient-main);
  border-radius: 17px;
  z-index: -1;
}

.result-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.result-stat {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.founder-quote {
  background: var(--glass-bg);
  border-left: 4px solid var(--accent-primary);
  padding: 3rem;
  border-radius: 0 16px 16px 0;
  font-size: 1.25rem;
  font-style: italic;
  position: relative;
}

body.lang-ar .founder-quote {
  border-left: none;
  border-right: 4px solid var(--accent-primary);
  border-radius: 16px 0 0 16px;
}

.founder-quote p {
  margin-bottom: 1rem;
}

.founder-quote cite {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 600;
}

/* =========================================
   ECOSYSTEM SECTION
   ========================================= */
.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

body.lang-ar .product-tag {
  right: auto;
  left: 1.5rem;
}

.exclusive-tag {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.3);
}

.new-tag {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.product-card-highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-color: rgba(139, 92, 246, 0.3);
}

/* =========================================
   FREE CALLING SECTION
   ========================================= */
.new-badge {
  display: inline-block;
  background: var(--success);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.cost-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.cost-zero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 0.8;
  margin-bottom: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cost-dollar {
  font-size: 4rem;
  font-weight: 700;
  margin-top: 1rem;
}

.cost-number {
  font-size: 12rem;
  font-weight: 900;
}

.cost-label {
  font-size: 1.25rem;
  max-width: 600px;
  color: var(--text-secondary);
}

.investor-callout {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2rem;
  border-radius: 16px;
}

.callout-icon {
  font-size: 2rem;
}

.investor-callout p {
  color: var(--text-primary);
  font-size: 1.125rem;
}

.investor-callout strong {
  color: var(--success);
}

/* =========================================
   COMPETITION SECTION
   ========================================= */
.cost-structure-wrap {
  margin-bottom: 4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
}

.structure-title {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.structure-intro {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.structure-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.structure-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.structure-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.structure-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: start;
}

.structure-info p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-secondary);
  text-align: start;
}

.structure-footer-callout {
  text-align: center;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
}

.footer-callout-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--accent-primary);
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.comp-table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comp-table th, .comp-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

body.lang-ar .comp-table th, body.lang-ar .comp-table td {
  text-align: right;
}

.comp-table th {
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-secondary);
}

.highlight-col {
  background: rgba(59, 130, 246, 0.05);
}
.comp-table th.highlight-col {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-primary);
}

.check {
  color: var(--success);
  font-weight: 800;
  margin-inline-end: 0.5rem;
}

.cross {
  color: var(--text-muted);
  font-weight: 800;
  margin-inline-end: 0.5rem;
}

.cross.danger {
  color: var(--danger);
}

.check.safe {
  color: var(--success);
}

.warning-callout {
  display: flex;
  gap: 1.5rem;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 2rem;
  border-radius: 16px;
}

.warning-callout p {
  font-size: 1.125rem;
}

.warning-callout strong {
  color: var(--danger);
}

/* =========================================
   MARKETS SECTION
   ========================================= */
.market-card {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.active-market {
  border-color: var(--accent-primary);
  background: rgba(59, 130, 246, 0.05);
}

.market-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.market-status {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

body.lang-ar .market-status {
  right: auto;
  left: 1.5rem;
}

.market-status.live {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.market-status.upcoming {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.market-status.planned {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.market-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.market-pop {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.market-detail {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* =========================================
   FINANCIALS SECTION
   ========================================= */
.subsection-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.budget-section {
  margin-bottom: 4rem;
}

.budget-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
}

.budget-item {
  display: grid;
  grid-template-columns: 3fr 100px 200px;
  align-items: center;
  gap: 1rem;
}

.budget-bar {
  height: 12px;
  background: var(--accent-primary);
  border-radius: 6px;
  width: var(--budget-pct);
  min-width: 4px;
}

.budget-amount {
  font-weight: 700;
  text-align: right;
}

.budget-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

body.lang-ar .budget-amount {
  text-align: left;
}
body.lang-ar .budget-item {
  grid-template-columns: 3fr 100px 200px;
}

.budget-item.dev-zero .budget-bar {
  background: transparent;
}

.budget-item.dev-zero .budget-amount {
  color: var(--success);
}

.projections-section {
  margin-bottom: 4rem;
}

.projection-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.projection-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.projection-year {
  position: absolute;
  top: -15px;
  right: 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-weight: 800;
}

body.lang-ar .projection-year {
  right: auto;
  left: 2rem;
}

.projection-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.projection-rides {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.projection-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.projection-row.net {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

.revenue { color: var(--text-primary); }
.expense { color: var(--danger); }
.net-negative { color: var(--danger); }
.net-positive { color: var(--success); }

.roi-card {
  background: linear-gradient(135deg, rgba(10, 10, 12, 0.9), rgba(26, 26, 32, 0.9)), var(--gradient-main);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 3.5rem;
  text-align: center;
}

.roi-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.roi-mega {
  margin-bottom: 3rem;
}

.roi-value {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.roi-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.roi-breakdown {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.roi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roi-item-value {
  font-size: 2rem;
  font-weight: 800;
}

.roi-item-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.roi-note {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ROI Calculation Breakdown */
.roi-calc-breakdown {
  margin: 2.5rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-align: left;
}

body.lang-ar .roi-calc-breakdown {
  text-align: right;
}

.roi-calc-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.roi-calc-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition);
}

.roi-calc-step:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.roi-calc-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.875rem;
  color: white;
}

.roi-calc-step-content {
  flex: 1;
}

.roi-calc-step-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.roi-calc-formula {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  padding: 0.5rem 0;
}

.roi-calc-formula strong {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.25rem;
}

.roi-calc-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.roi-calc-total {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  text-align: center;
}

.roi-calc-total-formula {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.roi-calc-total-formula small {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  vertical-align: middle;
  margin: 0 0.125rem;
}

.roi-calc-total-formula strong {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.75rem;
}

/* =========================================
   CTA SECTION
   ========================================= */
.section-cta {
  text-align: center;
  padding: 6rem 0;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 70%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
}

.cta-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* =========================================
   FEATURE TABS
   ========================================= */
.feat-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.ftb {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ftb:hover {
  background: var(--glass-highlight);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.ftb.on {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.fc {
  display: none;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  animation: fadeIn 0.5s ease;
}

.fc.on {
  display: block;
}

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

.fs-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fpills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.fpills:last-child {
  margin-bottom: 0;
}

.pill {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.pill.gold {
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--warning);
  background: rgba(245, 158, 11, 0.05);
}

.pill.cyan {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--accent-primary);
  background: rgba(59, 130, 246, 0.05);
}

.exclusive-badge {
  font-size: 0.65rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  margin-inline-start: 0.5rem;
  font-weight: 700;
  vertical-align: middle;
}

/* =========================================
   MOATS SECTION
   ========================================= */
.moat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.moat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.moat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.mc-ico {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.mc-t {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.mc-te {
  font-size: 0.875rem;
  color: var(--accent-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mc-d {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.mc-val {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--success);
  border-top: 1px solid var(--glass-border);
  padding-top: 1rem;
  margin-top: auto;
}

.callout {
  display: flex;
  gap: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 16px;
  align-items: flex-start;
}

.callout-i {
  font-size: 2rem;
  line-height: 1;
}

.callout.blue {
  border-left: 4px solid var(--accent-primary);
}
body.lang-ar .callout.blue {
  border-left: 1px solid var(--glass-border);
  border-right: 4px solid var(--accent-primary);
}

.callout.gold {
  border-left: 4px solid var(--warning);
}
body.lang-ar .callout.gold {
  border-left: 1px solid var(--glass-border);
  border-right: 4px solid var(--warning);
}

.callout.green {
  border-left: 4px solid var(--success);
}
body.lang-ar .callout.green {
  border-left: 1px solid var(--glass-border);
  border-right: 4px solid var(--success);
}

.tw {
  overflow-x: auto;
  margin-top: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.tw table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.tw th, .tw td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

body.lang-ar .tw th, body.lang-ar .tw td {
  text-align: right;
}

.tw th {
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.hl-row {
  background: rgba(245, 158, 11, 0.03);
}

.hl-row td {
  border-bottom-color: rgba(245, 158, 11, 0.2);
}

.tc-red { color: var(--danger); font-weight: 700; }
.tc-green { color: var(--success); font-weight: 700; }
.tc-gold { color: var(--warning); font-weight: 700; }
.tc-cyan { color: var(--accent-primary); font-weight: 700; }

/* =========================================
   SECURITY SECTION
   ========================================= */
.sec-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .sec-wrap {
    grid-template-columns: 1fr;
  }
}

.sec-ring-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-svg {
  width: 150px;
  height: 150px;
  margin-bottom: 1.5rem;
}

.ring-svg circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.r-val {
  fill: var(--text-primary);
  font-size: 2rem;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: middle;
}

.r-sub {
  fill: var(--text-secondary);
  font-size: 0.75rem;
  text-anchor: middle;
}

.sec-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.sec-feats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sf {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.sf-ico {
  font-size: 1.5rem;
  line-height: 1;
}

.sf-body {
  flex: 1;
}

.sf-n {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.sf-d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =========================================
   UNIT ECONOMICS
   ========================================= */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.unit-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--accent-primary);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.unit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.uc-v {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.uc-v.c {
  color: var(--warning);
}

.uc-l {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.uc-le {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* =========================================
   RISKS & MITIGATIONS
   ========================================= */
.risk-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
}

.rb-hi {
  background: rgba(239, 66, 66, 0.1);
  color: var(--danger);
}

.rb-med {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.rb-lo {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3.5rem;
  display: flex;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .team-wrap {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warning), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--bg-primary);
  flex-shrink: 0;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.team-info {
  flex: 1;
}

.team-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.team-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .team-tags {
    justify-content: center;
  }
}

.team-tag {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.team-tag svg {
  color: #0077b5;
}

.calendly-btn {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.calendly-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-wrap.member-card {
  flex-direction: column;
  text-align: center;
  padding: 2.5rem;
  gap: 1.5rem;
  align-items: center;
}

.team-wrap.member-card .team-avatar {
  margin-bottom: 1rem;
}

.team-wrap.member-card .team-tags {
  justify-content: center;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-primary);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* =========================================
   NARRATIVE SHIFT STRIP
   ========================================= */
.narrative-strip {
  background: linear-gradient(135deg, rgba(10,10,12,0.95), rgba(18,18,22,0.95));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.narrative-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.06), transparent 70%);
  pointer-events: none;
}

.narrative-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.narrative-before,
.narrative-after {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 340px;
}

.narrative-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

body.lang-ar .narrative-label {
  letter-spacing: 0;
}

.highlight-label {
  color: var(--accent-primary);
}

.narrative-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  line-height: 1.5;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.5);
}

.narrative-new {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 10px;
  color: var(--text-primary);
  line-height: 1.6;
}

.narrative-new strong {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.narrative-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.narrative-vs {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-primary);
  opacity: 0.7;
}

body.lang-ar .narrative-vs {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .narrative-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .narrative-vs {
    transform: rotate(90deg);
    font-size: 2rem;
  }
  body.lang-ar .narrative-vs {
    transform: rotate(90deg);
  }
}

/* =========================================
   REAL QUESTION SECTION
   ========================================= */
.real-question-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.real-question-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.rq-header {
  margin-bottom: 2rem;
}

.rq-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warning);
  padding: 0.35rem 1.2rem;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.06);
}

body.lang-ar .rq-eyebrow {
  letter-spacing: 0;
}

.rq-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  line-height: 2;
  padding: 3rem 3.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent-primary);
  border-radius: 0 20px 20px 0;
  margin-bottom: 3.5rem;
  text-align: left;
}

body.lang-ar .rq-quote {
  border-left: 1px solid var(--glass-border);
  border-right: 4px solid var(--accent-primary);
  border-radius: 20px 0 0 20px;
  text-align: right;
}

.rq-quote strong {
  color: var(--text-primary);
  font-weight: 800;
}

.rq-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.rq-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.rq-metric-main .rq-num {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
}

.rq-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.rq-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
}

.rq-divider {
  font-size: 2rem;
  color: var(--accent-primary);
  opacity: 0.5;
  font-weight: 300;
}

body.lang-ar .rq-divider {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .rq-quote {
    padding: 1.5rem;
    border-left: none;
    border-top: 4px solid var(--accent-primary);
    border-radius: 0 0 20px 20px;
    font-size: 1rem;
    line-height: 1.9;
  }
  body.lang-ar .rq-quote {
    border-right: none;
    border-top: 4px solid var(--accent-primary);
    border-radius: 0 0 20px 20px;
  }
  .rq-metrics {
    gap: 1rem;
  }
  .rq-divider {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
  body.lang-ar .rq-divider {
    transform: rotate(90deg);
  }
}

/* =========================================
   TEAM MOAT STRIP
   ========================================= */
.team-moat-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
}

.team-moat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.team-moat-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.team-moat-item b {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.team-moat-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .team-moat-strip {
    padding: 1rem;
  }
}

/* =========================================
   SCROLL ANIMATIONS (Progressive Enhancement)
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
    transition: none; /* Disable JS transition */
  }
  
  .reveal.active {
    opacity: auto; /* reset */
    transform: none; /* reset */
  }
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-orb {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    gap: 1.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 5.75rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }

  .cac-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
  }

  .cac-strip .btn {
    width: 100%;
  }
  
  .cost-number {
    font-size: 8rem;
  }
  
  .budget-item {
    grid-template-columns: 1fr auto;
  }
  
  .budget-label {
    grid-column: 1 / -1;
    margin-top: -0.5rem;
  }
}


/* ══════════════════════════════════════════
   SCENARIO PANELS
══════════════════════════════════════════ */
.scenario-panel {
  animation: fadeIn .3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.scenario-tab {
  transition: all .2s ease;
}
.scenario-tab.on {
  background: rgba(245,176,19,0.12);
  border-color: var(--goldb);
  color: var(--goldb);
}

/* ══════════════════════════════════════════
   TECH APPENDIX
══════════════════════════════════════════ */
.tech-appendix {
  margin: 2rem 0;
}
.appendix-header:hover {
  background: rgba(245,176,19,0.08) !important;
  border-color: var(--goldb) !important;
}
.appendix-header * {
  cursor: pointer;
}
#appendix-toggle-icon {
  transition: transform .3s ease;
}

/* ══════════════════════════════════════════
   DE-RISKED SECTION
══════════════════════════════════════════ */
.derisk-grid > div {
  transition: transform .2s ease, box-shadow .2s ease;
}
.derisk-grid > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,212,122,0.1);
}

/* ══════════════════════════════════════════
   ROI SCENARIO GRID
══════════════════════════════════════════ */
.roi-scenario-grid > div {
  transition: transform .2s ease;
}
.roi-scenario-grid > div:hover {
  transform: translateY(-2px);
}

/* Feature tabs collapsed by default on smaller screens */
@media (max-width: 768px) {
  .roi-scenario-grid {
    grid-template-columns: 1fr !important;
  }
  .derisk-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Team Bullets Styling */
.team-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}
body.lang-ar .team-bullets {
  text-align: right;
}
.team-bullets li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.25rem;
}
body.lang-ar .team-bullets li {
  padding-left: 0;
  padding-right: 1.25rem;
}
.team-bullets li::before {
  content: "•";
  color: var(--accent-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}
body.lang-ar .team-bullets li::before {
  left: auto;
  right: 0;
}
