/* ══════════════════════════════════════════════════════════
   Hisabi Landing Page — Production CSS
   Dark Premium Glassmorphism Theme
   ══════════════════════════════════════════════════════════ */

/* ── Google Fonts fallback + tokens ──────────────────────── */
:root {
  --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-en: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --bg-main:        #060c1a;
  --bg-surface:     #0a1628;
  --bg-card:        #0f1e38;
  --bg-card-hover:  #162544;
  --bg-glass:       rgba(10, 22, 40, 0.80);

  --border-subtle:  rgba(148,163,184,0.07);
  --border-light:   rgba(148,163,184,0.14);
  --border-glow:    rgba(56,189,248,0.35);

  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;

  --cyan:    #38bdf8;
  --indigo:  #6366f1;
  --emerald: #10b981;
  --amber:   #f59e0b;
  --rose:    #f43f5e;
  --violet:  #8b5cf6;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.6);
  --shadow-glow-cyan:   0 0 40px rgba(56,189,248,0.25);
  --shadow-glow-indigo: 0 0 40px rgba(99,102,241,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-ar);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  direction: rtl;
}

/* ── Particle Canvas ──────────────────────────────────────── */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Glow Orbs ────────────────────────────────────────────── */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbPulse 8s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; top: -10%; left: -10%; background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, transparent 70%); }
.orb-2 { width: 500px; height: 500px; bottom: 20%; right: -10%; background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%); animation-delay: -4s; }
.orb-3 { width: 400px; height: 400px; top: 50%; left: 40%; background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%); animation-delay: -2s; }

@keyframes orbPulse {
  from { transform: scale(1) translate(0, 0); opacity: 0.6; }
  to   { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ar);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(2,132,199,0.4);
}
.btn-primary:hover { background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 100%); box-shadow: 0 6px 28px rgba(56,189,248,0.5); transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--cyan); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }

.btn-hero { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-lg); }

/* ── Typography helpers ───────────────────────────────────── */
.num { font-family: var(--font-en); font-feature-settings: "tnum" 1; }

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo) 60%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══ HEADER ════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 0;
  transition: all 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6,12,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

/* Brand */
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand-logo { width: 42px; height: 42px; transition: transform 0.3s ease; }
.brand:hover .brand-logo { transform: rotate(-5deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-size: 20px; font-weight: 900; color: var(--text-primary); }
.brand-sub { font-size: 11px; color: var(--cyan); font-family: var(--font-en); font-weight: 700; letter-spacing: 0.05em; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }

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

.nav-admin-btn {
  color: var(--violet);
  border-color: rgba(139,92,246,0.3);
  font-size: 13px;
  padding: 7px 14px;
}
.nav-admin-btn:hover { background: rgba(139,92,246,0.1); border-color: var(--violet); color: #c4b5fd; }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(6,12,26,0.97);
  border-top: 1px solid var(--border-subtle);
  gap: 4px;
}
.mobile-nav a { color: var(--text-secondary); text-decoration: none; font-size: 15px; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); }
.mobile-nav a:hover { color: var(--cyan); }
.mobile-nav.open { display: flex; }
.mobile-admin-link { color: #c4b5fd !important; }
.mobile-nav-actions { display: flex; gap: 10px; margin-top: 16px; }

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(6,12,26,0.6) 0%, rgba(6,12,26,0.3) 50%, rgba(6,12,26,0.95) 100%),
    linear-gradient(to right, rgba(6,12,26,0.8) 0%, transparent 60%);
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
  z-index: 2;
}

/* Hero content */
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

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

.hero-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(241,245,249,0.8);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 20px; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(148,163,184,0.9);
  font-weight: 500;
}

/* Hero visual */
.hero-visual { position: relative; z-index: 2; }

.mockup-wrapper { position: relative; }

.mockup-laptop {
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.15);
  display: block;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md), 0 0 20px rgba(56,189,248,0.1);
  min-width: 160px;
}

.float-card-icon { font-size: 20px; }
.float-card-label { font-size: 11px; color: var(--text-muted); }
.float-card-value { font-size: 14px; font-weight: 800; color: var(--cyan); }
.success-val { color: var(--emerald) !important; }

.float-card-1 { top: -20px; left: -30px; }
.float-card-2 { bottom: 40px; left: -40px; }
.float-card-3 { top: 30%; right: -30px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  z-index: 3;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(148,163,184,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ══ STATS BAR ════════════════════════════════════════════ */
.stats-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10,22,40,0.8);
  backdrop-filter: blur(20px);
  padding: 32px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 48px;
}

.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label { font-size: 13px; color: var(--text-muted); }

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
}

/* ══ SECTIONS ══════════════════════════════════════════════ */
.section { padding: 96px 0; position: relative; z-index: 2; }
.section-elevated {
  background: rgba(10,22,40,0.6);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Section header */
.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
  display: inline-block;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Problem Cards ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.problem-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-card-glow {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.problem-card:hover .problem-card-glow { opacity: 1; }
.glow-rose { background: radial-gradient(circle, rgba(244,63,94,0.12) 0%, transparent 70%); }
.glow-amber { background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%); }
.glow-indigo { background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%); }

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-rose  { background: rgba(244,63,94,0.12); border: 1px solid rgba(244,63,94,0.2); }
.icon-amber { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.icon-indigo{ background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.2); }
.card-emoji { font-size: 22px; }

.card-title { font-size: 18px; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.card-desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

.card-tag { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; font-family: var(--font-en); }
.tag-rose   { background: rgba(244,63,94,0.1); color: #fb7185; border: 1px solid rgba(244,63,94,0.2); }
.tag-amber  { background: rgba(245,158,11,0.1); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.tag-indigo { background: rgba(99,102,241,0.1); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.2); }

/* ── Solution ────────────────────────────────────────────── */
.solution-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.solution-steps { display: flex; flex-direction: column; gap: 0; }

.solution-step {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  gap: 16px;
  align-items: start;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
}
.solution-step:hover {
  background: rgba(56,189,248,0.05);
  border-color: rgba(56,189,248,0.15);
}

.step-number {
  font-size: 32px;
  font-weight: 900;
  font-family: var(--font-en);
  color: rgba(56,189,248,0.25);
  line-height: 1;
  transition: color 0.3s;
}
.solution-step:hover .step-number { color: var(--cyan); }

.step-content {}
.step-title { font-size: 17px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.step-desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.step-icon  { font-size: 24px; text-align: center; }

.step-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(56,189,248,0.3), rgba(99,102,241,0.3));
  margin-right: 38px;
}

/* Phone mockup */
.solution-visual { display: flex; justify-content: center; }

.phone-wrapper {
  position: relative;
  width: 280px;
}

.phone-img {
  width: 100%;
  border-radius: 36px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(56,189,248,0.15);
  border: 1px solid rgba(56,189,248,0.15);
  display: block;
}

.phone-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, rgba(56,189,248,0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* ── How it works ────────────────────────────────────────── */
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: all 0.3s ease;
}
.how-step:hover { border-color: rgba(56,189,248,0.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.how-step-num {
  position: absolute;
  top: -14px;
  right: 24px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-en);
  box-shadow: 0 4px 12px rgba(56,189,248,0.4);
}

.how-step-icon { font-size: 36px; margin-bottom: 16px; }
.how-step h3 { font-size: 16px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.how-step p  { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

.how-arrow {
  font-size: 24px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0 12px;
  flex-shrink: 0;
  margin-top: 60px;
}

/* ── Business Grid ───────────────────────────────────────── */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.biz-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: default;
  transition: all 0.25s ease;
}
.biz-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56,189,248,0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.biz-emoji { font-size: 20px; flex-shrink: 0; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { background: transparent; }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(56,189,248,0.2); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.testimonial-featured {
  background: linear-gradient(135deg, rgba(56,189,248,0.08) 0%, rgba(99,102,241,0.08) 100%);
  border-color: rgba(56,189,248,0.25);
}

.testimonial-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
}

.testimonial-stars { color: var(--amber); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text  { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-text::before { content: '"'; color: var(--cyan); font-size: 24px; line-height: 0; vertical-align: -6px; margin-left: 4px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-container { display: flex; justify-content: center; }

.pricing-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: var(--bg-card);
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(56,189,248,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-header { text-align: center; margin-bottom: 36px; }

.pricing-badge-top {
  display: inline-block;
  background: linear-gradient(135deg, rgba(56,189,248,0.15), rgba(99,102,241,0.15));
  border: 1px solid rgba(56,189,248,0.3);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 24px;
}

.pricing-price-row { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 8px; }

.price-amount {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-meta { display: flex; flex-direction: column; align-items: flex-start; }
.price-currency { font-size: 16px; color: var(--text-secondary); font-weight: 600; }
.price-period   { font-size: 13px; color: var(--text-muted); }
.pricing-tagline { font-size: 14px; color: var(--text-muted); }

.pricing-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feat-check {
  color: var(--emerald);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-plans { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }

.plan-pill {
  position: relative;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  text-align: center;
  min-width: 100px;
  transition: all 0.25s;
}
.plan-pill:hover { border-color: var(--cyan); }

.plan-popular {
  background: rgba(56,189,248,0.08);
  border-color: rgba(56,189,248,0.3);
}

.plan-best {
  background: rgba(99,102,241,0.08);
  border-color: rgba(99,102,241,0.3);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name  { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 4px; }
.plan-price { font-size: 16px; font-weight: 900; color: var(--text-primary); display: block; }

.btn-pricing-cta {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(56,189,248,0.25); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-ar);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: right;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--cyan); }

.faq-chevron { color: var(--text-muted); transition: transform 0.3s ease; flex-shrink: 0; margin-right: 12px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--cyan); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section { padding: 80px 0; position: relative; z-index: 2; }

.cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(56,189,248,0.08) 0%, rgba(99,102,241,0.08) 100%);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.12) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--text-primary); margin-bottom: 16px; }
.cta-desc  { font-size: 17px; color: var(--text-secondary); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-trust { font-size: 13px; color: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  background: rgba(6,12,26,0.95);
  padding: 60px 0 32px;
}

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

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand-name { font-size: 18px; font-weight: 900; color: var(--text-primary); }
.footer-brand-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 240px; }

.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col h4 { font-size: 13px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.footer-links-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-version { color: var(--cyan); }

/* ══ ANIMATIONS ═══════════════════════════════════════════ */
.animate-fadeup {
  animation: fadeUpIn 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.animate-floatin {
  animation: fadeUpIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

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

.animate-float1 { animation: floatA 5s ease-in-out infinite; }
.animate-float2 { animation: floatB 7s ease-in-out infinite; }
.animate-float3 { animation: floatA 6s ease-in-out 1s infinite; }

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}

/* Scroll reveal */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right { transform: translateX(30px); }
.reveal.revealed, .reveal-right.revealed { opacity: 1; transform: none; }

/* ══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-subtitle { max-width: 100%; margin: 0 auto 36px; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }

  .solution-wrapper { grid-template-columns: 1fr; }
  .solution-visual { order: -1; }
  .phone-wrapper { width: 200px; margin: 0 auto; }

  .biz-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-section { padding-top: 80px; }
  .section { padding: 64px 0; }

  .stats-grid { gap: 0; }
  .stat-item { padding: 0 24px; }
  .stat-num { font-size: 28px; }

  .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .how-steps { flex-direction: column; gap: 16px; }
  .how-arrow { display: none; }

  .pricing-features { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }

  .biz-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-box { padding: 48px 24px; }

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

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-cta-group { flex-direction: column; }
  .btn-hero { width: 100%; justify-content: center; }
  .biz-grid { grid-template-columns: 1fr 1fr; }
}
