/* ═══════════════════════════════════════════════════════════
   NEO FACTORY — KILLER LANDING PAGE
   Arabic Default · Dark Mode · Competitor-Crushing Design
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --bg-base:       #070B24;
  --bg-card:       #0D1235;
  --bg-card-hover: #111842;
  --gold:          #F5A623;
  --gold-dim:      rgba(245,166,35,0.15);
  --gold-glow:     rgba(245,166,35,0.35);
  --cyan:          #00D4FF;
  --cyan-dim:      rgba(0,212,255,0.12);
  --cyan-glow:     rgba(0,212,255,0.3);
  --white:         #FFFFFF;
  --text-primary:  #F4F7FF;
  --text-secondary:#8A90B8;
  --text-dim:      #525780;
  --border-dim:    rgba(255,255,255,0.06);
  --radius-card:   16px;
  --radius-pill:   100px;
  --max-w:         1200px;
  --section-pad:   120px;
  --trans:         all 0.3s ease;
}

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

html[lang="ar"], html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

html[lang="en"], html[dir="ltr"] {
  direction: ltr;
  text-align: left;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Alexandria', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background canvas */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* All sections above canvas */
nav, section, footer { position: relative; z-index: 1; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 500; line-height: 1.4; }
h4 { font-size: 1.1rem; font-weight: 500; }
p  { line-height: 1.7; color: var(--text-secondary); }

a { color: inherit; text-decoration: none; transition: var(--trans); }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #FFD166 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--cyan-dim);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  margin-bottom: 20px;
  background: var(--cyan-dim);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #07080F;
  font-family: 'Alexandria', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--trans);
  border: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #FFD166;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-primary.btn-large { padding: 18px 44px; font-size: 1.1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Alexandria', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-dim);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--trans);
}
.nav.scrolled {
  background: rgba(7,11,36,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: #07080F;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-weight: 500; font-size: 1rem; }
.logo-by { font-size: 0.75rem; color: var(--text-dim); }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
[dir="rtl"] .nav-links { margin-left: auto; margin-right: auto; }
[dir="ltr"] .nav-links { margin-left: auto; margin-right: auto; }

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--trans);
}
.nav-links a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  cursor: pointer;
  font-family: 'Alexandria', system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--trans);
  white-space: nowrap;
}
.lang-toggle:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }
.lang-ar, .lang-en { transition: var(--trans); }
.lang-ar.active, .lang-en.active { color: var(--gold); font-weight: 500; }
.lang-sep { opacity: 0.3; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #07080F;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: var(--trans);
}
.nav-cta:hover {
  background: #FFD166;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-orb-gold {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
  top: -150px; right: -150px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-cyan {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(30px, -30px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-headline {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
}
.hstat-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}
.hstat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.hstat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-dim);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-track {
  width: 2px;
  height: 48px;
  background: var(--border-dim);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.scroll-dot {
  width: 2px;
  height: 12px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-12px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(48px); opacity: 0; }
}

/* ══════════════════════════════════════════
   DEMO SECTION
══════════════════════════════════════════ */
.demo-section {
  background: linear-gradient(180deg, var(--bg-base) 0%, rgba(13,18,53,0.5) 50%, var(--bg-base) 100%);
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}

/* Left Panel */
.demo-panel {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.demo-left { opacity: 0.65; }
.demo-right { border: 1px solid var(--gold-dim); }

.demo-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-dim);
}
.chatbot-header { background: rgba(255,255,255,0.02); }
.neo-header { background: rgba(245,166,35,0.05); }

.demo-label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-icon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dim-dot { background: var(--text-dim); }
.gold-dot { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

.demo-label-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.demo-status-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.manual-tag {
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
}
.auto-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  color: var(--gold);
}
.status-pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s infinite;
}

/* Chat messages */
.demo-chat-wrap {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
}
.chat-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  animation: msgAppear 0.3s ease forwards;
}
@keyframes msgAppear {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.user-msg {
  background: rgba(245,166,35,0.1);
  color: var(--text-primary);
  align-self: flex-end;
  border-radius: 12px 12px 4px 12px;
}
[dir="rtl"] .user-msg { border-radius: 12px 12px 12px 4px; }
.bot-msg {
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  align-self: flex-start;
  border-radius: 12px 12px 12px 4px;
}
[dir="rtl"] .bot-msg { border-radius: 12px 12px 4px 12px; }

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  align-self: flex-start;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 12px 16px;
}
.typing-indicator span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: typing 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.demo-counter-wrap {
  padding: 12px 20px;
  border-top: 1px solid var(--border-dim);
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}
.counter-num { font-weight: 600; color: var(--text-secondary); }

/* Center Divider */
.demo-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 80px;
  min-height: 200px;
}
.divider-line {
  width: 1px;
  flex: 1;
  background: var(--border-dim);
}
.divider-vs {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
}

/* Neo Prompt */
.neo-prompt-bubble {
  margin: 20px;
  background: rgba(245,166,35,0.08);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.88rem;
}
.prompt-you {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}
.prompt-text { color: var(--text-primary); line-height: 1.5; }

/* Neo Timeline */
.neo-timeline {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.neo-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
[dir="rtl"] .neo-step { transform: translateX(-10px); }
.neo-step.visible {
  opacity: 1;
  transform: translateX(0);
}
.step-check {
  width: 20px; height: 20px;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.step-text { flex: 1; color: var(--text-secondary); }
.step-time { color: var(--text-dim); font-size: 0.72rem; font-variant-numeric: tabular-nums; }

/* Neo Mockup */
.neo-mockup {
  margin: 0 20px 16px;
  background: #0A0E2A;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease 1.8s, transform 0.5s ease 1.8s;
}
.neo-mockup.visible { opacity: 1; transform: scale(1); }

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-dim);
}
.mockup-dots { display: flex; gap: 5px; }
.md { width: 8px; height: 8px; border-radius: 50%; }
.md.red { background: #FF5F56; }
.md.yellow { background: #FFBD2E; }
.md.green { background: #27C93F; }
.mockup-url-text { font-size: 0.68rem; color: var(--text-dim); }

.mockup-body {
  padding: 16px;
  text-align: center;
}
.mockup-site-logo { font-size: 1.1rem; font-weight: 600; color: var(--gold); margin-bottom: 6px; }
.mockup-site-title { font-size: 0.75rem; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.mockup-site-sub { font-size: 0.65rem; color: var(--text-dim); margin-bottom: 10px; }
.mockup-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #07080F;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.mockup-metrics {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border-dim);
  padding-top: 10px;
}
.mockup-metric { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mockup-metric strong { font-size: 0.8rem; color: var(--cyan); }
.mockup-metric small { font-size: 0.6rem; color: var(--text-dim); }

.neo-total-time {
  padding: 10px 20px;
  border-top: 1px solid var(--border-dim);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}
.neo-total-time strong { color: var(--gold); }

.demo-tagline {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  text-align: center;
  justify-content: center;
}
.tagline-rule { flex: 1; height: 1px; background: var(--border-dim); }
.tagline-phrase {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════
   FIVE LEVELS
══════════════════════════════════════════ */
.levels-section { background: var(--bg-base); }

.levels-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.level-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-card);
  transition: var(--trans);
  position: relative;
}
.level-item:hover { background: rgba(255,255,255,0.02); }

.level-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: var(--trans);
}
.level-dim { background: rgba(255,255,255,0.04); color: var(--text-dim); }
.level-mid { background: rgba(0,212,255,0.08); color: var(--cyan); border: 1px solid rgba(0,212,255,0.2); }
.level-gold {
  background: var(--gold);
  color: #07080F;
  box-shadow: 0 0 20px var(--gold-glow);
  animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50% { box-shadow: 0 0 40px rgba(245,166,35,0.6); }
}

.level-body { flex: 1; }
.level-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.level-name-gold { color: var(--gold); font-size: 1.1rem; }
.level-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 14px; }
.level-desc-bright { color: var(--text-primary); }

.level-bar-wrap {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-pill);
  height: 4px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 12px;
}
.level-bar {
  height: 100%;
  width: var(--pct);
  background: var(--text-dim);
  border-radius: var(--radius-pill);
  transition: width 1s ease;
}
.level-bar-gold {
  background: linear-gradient(90deg, var(--gold) 0%, #FFD166 100%);
  box-shadow: 0 0 8px var(--gold-glow);
}

.level-chip {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.chip-dim { background: rgba(255,255,255,0.04); color: var(--text-dim); }
.chip-mid { background: rgba(0,212,255,0.08); color: var(--cyan); }
.chip-gold { background: var(--gold-dim); color: var(--gold); }

.level-five { background: rgba(245,166,35,0.04); border: 2px solid rgba(245,166,35,0.4); box-shadow: 0 0 20px rgba(245,166,35,0.1); }
.level-five-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.level-five-pct { font-size: 0.75rem; color: var(--text-dim); }
.level-five-glow {
  display: none;
}

.level-connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(var(--border-dim), var(--border-dim));
  margin: 0 auto;
  margin-right: 89px;
  margin-left: auto;
}
[dir="ltr"] .level-connector { margin-left: 89px; margin-right: auto; }

.levels-cta-wrap {
  text-align: center;
  margin-top: 50px;
}
.levels-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   CAPABILITIES
══════════════════════════════════════════ */
.capabilities { background: var(--bg-base); }

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

.cap-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 40px;
  transition: var(--trans);
  border: 1px solid var(--border-dim);
}
.cap-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.cap-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cyan-accent { background: var(--cyan-dim); }
.gold-accent { background: var(--gold-dim); }

.cap-card h3 { margin-bottom: 14px; }

.cap-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
[dir="rtl"] .cap-list li::before { content: "←"; color: var(--cyan); font-size: 0.75rem; }
[dir="ltr"] .cap-list li::before { content: "→"; color: var(--cyan); font-size: 0.75rem; }
[data-accent="gold"] .cap-list li::before { color: var(--gold); }

/* ══════════════════════════════════════════
   DATA SOURCES
══════════════════════════════════════════ */
.data-sources {
  background: linear-gradient(180deg, var(--bg-base) 0%, rgba(13,18,53,0.6) 50%, var(--bg-base) 100%);
}

.saudi-highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.saudi-flag-badge { font-size: 2rem; flex-shrink: 0; }
.saudi-text strong { display: block; font-size: 1rem; color: var(--gold); margin-bottom: 8px; }
.saudi-text p { font-size: 0.88rem; }
.saudi-cat { color: var(--gold) !important; }

.sources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.source-cat {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px;
}
.source-cat-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.source-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sbadge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-dim);
  transition: var(--trans);
}
.sbadge:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.sbadge-saudi {
  background: rgba(245,166,35,0.08);
  border-color: rgba(245,166,35,0.25);
  color: var(--gold);
}

/* ── Geo-Personalization: Regional sources block ── */
.regional-sources-block {
  margin-bottom: 16px;
  animation: fadeInDown 0.5s ease both;
}

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

.regional-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 16px;
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}

.regional-header-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.regional-sources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sbadge-local {
  background: rgba(245,166,35,0.09);
  border-color: rgba(245,166,35,0.28);
  color: var(--gold);
  position: relative;
}

.sbadge-local::after {
  content: attr(data-local-tag);
  font-size: 0.65rem;
  background: rgba(245,166,35,0.18);
  color: var(--gold);
  padding: 1px 5px;
  border-radius: 4px;
  margin-inline-start: 6px;
  opacity: 0.85;
  vertical-align: middle;
}

.regional-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 14px;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.regional-divider::before,
.regional-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-dim);
}

.sources-total {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-dim);
}
.sources-big-num {
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.sources-big-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   OUTPUT TOOLS
══════════════════════════════════════════ */
.output-tools { background: var(--bg-base); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tool-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid var(--border-dim);
  transition: var(--trans);
}
.tool-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); }

.tool-logo {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.gamma-logo { background: linear-gradient(135deg, #6366F1, #8B5CF6); color: white; }
.eleven-logo { background: linear-gradient(135deg, #F97316, #EF4444); color: white; }
.runway-logo { background: linear-gradient(135deg, #10B981, #06B6D4); color: white; }

.tool-info h3 { margin-bottom: 10px; }
.tool-info p { font-size: 0.85rem; margin-bottom: 20px; }

/* Sample visuals */
.tool-sample { margin-top: 20px; }

.sample-slide {
  background: #0A0E2A;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--border-dim);
}
.sample-slide-header {
  height: 8px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 80%);
  border-radius: 4px;
  margin-bottom: 10px;
}
.sample-slide-body { margin-bottom: 12px; }
.sample-line {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 6px;
}
.sample-line.long { width: 100%; }
.sample-line.med { width: 70%; }
.sample-line.short { width: 45%; }
.sample-slide-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 40px;
}
.sample-bar {
  flex: 1;
  background: linear-gradient(0deg, var(--gold), rgba(245,166,35,0.3));
  border-radius: 3px 3px 0 0;
}

.sample-audio {
  background: #0A0E2A;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--border-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.audio-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
}
.audio-wave span {
  width: 3px;
  border-radius: 2px;
  background: var(--cyan);
  animation: wave 1.2s ease-in-out infinite;
}
.audio-wave span:nth-child(1) { height: 12px; animation-delay: 0s; }
.audio-wave span:nth-child(2) { height: 22px; animation-delay: 0.1s; }
.audio-wave span:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.audio-wave span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.audio-wave span:nth-child(5) { height: 26px; animation-delay: 0.4s; }
.audio-wave span:nth-child(6) { height: 36px; animation-delay: 0.5s; }
.audio-wave span:nth-child(7) { height: 26px; animation-delay: 0.6s; }
.audio-wave span:nth-child(8) { height: 18px; animation-delay: 0.7s; }
.audio-wave span:nth-child(9) { height: 30px; animation-delay: 0.8s; }
.audio-wave span:nth-child(10) { height: 22px; animation-delay: 0.9s; }
.audio-wave span:nth-child(11) { height: 12px; animation-delay: 1.0s; }
.audio-wave span:nth-child(12) { height: 8px; animation-delay: 1.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
.audio-label { font-size: 0.72rem; color: var(--text-dim); }

.sample-video {
  background: #0A0E2A;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--border-dim);
  position: relative;
  text-align: center;
}
.video-play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
  margin: 0 auto 10px;
}
.video-frames { display: flex; gap: 6px; height: 28px; }
.vframe {
  flex: 1;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(16,185,129,0.3), rgba(6,182,212,0.3));
  border: 1px solid rgba(16,185,129,0.2);
}

/* ══════════════════════════════════════════
   CASE STUDIES
══════════════════════════════════════════ */
.case-studies { background: var(--bg-base); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 36px;
  border: 1px solid var(--border-dim);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.case-card:hover { transform: translateY(-4px); background: var(--bg-card-hover); }

.case-featured {
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, rgba(245,166,35,0.06) 0%, var(--bg-card) 60%);
}

.case-featured-ribbon {
  position: absolute;
  top: 20px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
[dir="rtl"] .case-featured-ribbon { right: 20px; }
[dir="ltr"] .case-featured-ribbon { left: 20px; }

.case-time-badge {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
  margin-top: 16px;
}
.time-num { font-size: 2.2rem; font-weight: 600; color: var(--cyan); line-height: 1; }
.time-unit { font-size: 0.85rem; color: var(--text-secondary); }
.gold-time .time-num { color: var(--gold); }

.case-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cyan-icon { background: var(--cyan-dim); }
.gold-icon { background: var(--gold-dim); }

.case-card h3 { margin-bottom: 12px; }
.case-card p { font-size: 0.85rem; margin-bottom: 20px; }

.case-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ctag {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  border: 1px solid var(--border-dim);
}
.ctag-gold {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: rgba(245,166,35,0.25);
}

/* ══════════════════════════════════════════
   PARALLEL SECTION
══════════════════════════════════════════ */
.parallel-section { background: var(--bg-base); }

.parallel-visual {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 48px;
  border: 1px solid var(--border-dim);
  margin-bottom: 40px;
}

.parallel-orchestrator {
  position: relative;
  width: 100px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orch-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  animation: orchRing 3s ease-in-out infinite;
}
@keyframes orchRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}
.orch-core {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #07080F;
  box-shadow: 0 0 30px var(--gold-glow);
}

.parallel-agents {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.p-agent {
  display: flex;
  align-items: center;
  gap: 14px;
}
.p-agent-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--cyan-glow);
  animation: agentPulse 2s ease-in-out infinite;
}
@keyframes agentPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.p-agent-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.p-agent-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.5));
  border-radius: var(--radius-pill);
  transition: width 1.5s ease;
}
.p-agent-bar.animated { width: var(--width); }

.p-agent-label { font-size: 0.8rem; color: var(--text-secondary); min-width: 120px; }
[dir="rtl"] .p-agent-label { text-align: right; }

/* Comparison visual */
.parallel-vs-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pvs-block {}
.pvs-label {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.pvs-them { color: var(--text-dim); }
.pvs-neo { color: var(--gold); }

.pvs-single-bar {
  height: 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}
.pvs-bar-fill {
  display: flex;
  height: 100%;
}
.pvs-bar-fill.pvs-sequential span {
  flex: 1;
  border-left: 1px solid rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--text-dim);
}
.pvs-bar-fill.pvs-sequential span:first-child { border-left: none; }

.pvs-parallel-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
}
.pvs-pbar {
  height: 5px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.pvs-pbar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(245,166,35,0.4));
  border-radius: var(--radius-pill);
  animation: pvsFill 2s ease-in-out infinite alternate;
}
@keyframes pvsFill {
  from { width: 40%; }
  to { width: 100%; }
}

.pvs-time { font-size: 0.72rem; color: var(--text-dim); }
.pvs-time-fast { color: var(--gold); font-weight: 500; }

/* ══════════════════════════════════════════
   SECURITY
══════════════════════════════════════════ */
.security { background: var(--bg-base); }

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.security-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 36px;
  border: 1px solid var(--border-dim);
  transition: var(--trans);
}
.security-card:hover { background: var(--bg-card-hover); }

.cert-badge-large {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.soc-badge { background: rgba(0,212,255,0.1); border: 2px solid rgba(0,212,255,0.3); }
.iso-badge { background: rgba(245,166,35,0.1); border: 2px solid rgba(245,166,35,0.3); }
.cert-text { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.cert-sub { font-size: 0.65rem; color: var(--text-secondary); }
.soc-badge .cert-text { color: var(--cyan); }
.iso-badge .cert-text { color: var(--gold); }

.security-icon-wrap { margin-bottom: 20px; }
.security-card h4 { margin-bottom: 12px; }
.security-card p { font-size: 0.85rem; }

.sovereignty-roadmap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(245,166,35,0.06), rgba(13,18,53,0.5));
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}
.sovereignty-icon { font-size: 2rem; flex-shrink: 0; }
.sovereignty-text strong { display: block; color: var(--gold); margin-bottom: 8px; font-size: 0.95rem; }
.sovereignty-text p { font-size: 0.85rem; }

/* ══════════════════════════════════════════
   PROOF / COUNTERS
══════════════════════════════════════════ */
.proof-section {
  background: linear-gradient(180deg, var(--bg-base) 0%, rgba(13,18,53,0.4) 50%, var(--bg-base) 100%);
  padding: 20px 0;
}

.counters-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-dim);
  padding: 48px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.counter-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 24px;
}
.counter-num {
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.counter-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.counter-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dim);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.final-orb-gold {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.final-orb-cyan {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-dim);
  max-width: 700px;
  margin: 0 auto;
}

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.final-headline {
  margin-bottom: 20px;
  line-height: 1.2;
}
.final-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.final-actions { margin-bottom: 20px; }
.final-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.final-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.final-contact a:hover { color: var(--gold); }
.contact-sep { color: var(--text-dim); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border-dim);
  padding: 60px 40px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 6px; font-style: italic; }
.footer-company { font-size: 0.8rem; color: var(--text-dim); }

.footer-cols {
  display: flex;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-certs { color: var(--text-secondary); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .sources-grid { grid-template-columns: repeat(2, 1fr); }
  .parallel-visual { grid-template-columns: 1fr; }
  .parallel-vs-single { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .nav-links { display: none; }
  .nav-inner { gap: 16px; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }

  .hero-stats-bar { flex-direction: column; gap: 16px; padding: 20px; border-radius: 20px; }
  .hstat-divider { display: none; }
  .hstat { flex-direction: row; gap: 10px; }

  .demo-container { grid-template-columns: 1fr; }
  .demo-divider { flex-direction: row; padding: 0; min-height: auto; }
  .divider-line { flex: 1; height: 1px; width: auto; }

  .cap-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .sources-grid { grid-template-columns: 1fr; }

  .counters-grid { flex-direction: column; }
  .counter-divider { width: 80%; height: 1px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .parallel-visual { grid-template-columns: 1fr; }
  .parallel-orchestrator { display: none; }

  .section-inner { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .nav-cta { display: none; }
  h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .sources-total { flex-direction: column; text-align: center; }
  .saudi-highlight { flex-direction: column; }
}

/* ════════════════════════════════════════════════
   PRICING SECTION
   ════════════════════════════════════════════════ */

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

/* Anchoring bar */
.pricing-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 auto 48px;
  max-width: 700px;
  padding: 16px 28px;
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  text-align: center;
}

.pricing-anchor-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-anchor-price {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-decoration: line-through;
}

.pricing-anchor-vs {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 300;
}

.pricing-anchor-neo {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
}

/* Two-column grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}

/* Base card */
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--trans);
}

.pricing-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* Featured (Operator) card */
.pricing-card-featured {
  border-color: rgba(245,166,35,0.45);
  box-shadow: 0 0 32px rgba(245,166,35,0.12), 0 0 0 1px rgba(245,166,35,0.3);
  background: linear-gradient(160deg, rgba(245,166,35,0.06) 0%, var(--bg-card) 60%);
}

.pricing-card-featured:hover {
  box-shadow: 0 0 48px rgba(245,166,35,0.2), 0 0 0 1px rgba(245,166,35,0.45);
  transform: translateY(-4px);
}

/* Recommended badge */
.pricing-recommended-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: linear-gradient(135deg, var(--gold), #e09218);
  color: #0a0a0f;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 100px;
}

/* Tier label */
.pricing-tier-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.pricing-tier-tag-gold {
  color: var(--gold);
}

/* Setup price block */
.pricing-setup {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pricing-setup-amount {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-setup-amount-gold {
  background: linear-gradient(135deg, var(--gold), #f7c46a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-setup-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Monthly sub-line */
.pricing-monthly {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dim);
}

/* "Everything in Analyst, plus:" label */
.pricing-includes-label {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  margin-top: -8px;
}

/* Feature list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

/* RTL: align checkmark to the right */
[dir="rtl"] .pricing-features li {
  flex-direction: row-reverse;
  text-align: right;
}

.pf-check {
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 1px;
}

.pf-check-gold {
  color: var(--gold);
}

/* CTA button inside card */
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4px;
  text-align: center;
}

/* Footnote below grid */
.pricing-footnote {
  text-align: center;
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pricing-anchor {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .pricing-card-featured {
    order: -1;
  }

  .pricing-recommended-badge {
    right: auto;
    left: 28px;
  }

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

@media (max-width: 480px) {
  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-setup-amount {
    font-size: 1.8rem;
  }
}
