/* ============================================================
   VisaFillAuto — Premium Light Design System
   ============================================================ */

/* --- Variables --- */
:root {
  --navy:      #1e3a5f;
  --navy-dark: #142b48;
  --navy-mid:  #2d5080;
  --gold:      #c8923a;
  --gold-soft: #f5e8d6;
  --green:     #25D366;
  --green-dark:#128C7E;
  --purple:    #7c3aed;
  --purple-soft: rgba(124,58,237,0.08);
  --bg:        #ffffff;
  --bg-alt:    #f4f8fc;
  --bg-deep:   #eef3fa;
  --border:    rgba(30, 58, 95, 0.1);
  --text:      #0f1f35;
  --muted:     #4a6484;
  --light-muted: #8aa3bc;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(14, 30, 54, 0.07);
  --shadow-lg: 0 16px 48px rgba(14, 30, 54, 0.10);
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* ============================================================
   RADAR SPOTLIGHT SECTION
   ============================================================ */
.radar-section { padding: 96px 0; background: linear-gradient(155deg, #f8f4ff 0%, #f0ebff 50%, #ede8fb 100%); }
.radar-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Left */
.radar-text p {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 36px;
}
.radar-text p strong { color: var(--purple); font-weight: 800; }
.radar-stats {
  display: flex; gap: 32px; margin-bottom: 40px;
  padding: 24px 28px; background: white;
  border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow);
}
.rstat { display: flex; flex-direction: column; align-items: center; flex: 1; }
.rstat-num {
  font-size: 2rem; font-weight: 900; color: var(--purple); letter-spacing: -0.04em;
  line-height: 1;
}
.rstat-label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-align: center; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.rstat + .rstat { border-left: 1px solid var(--border); padding-left: 32px; }
.radar-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.radar-list li { display: flex; gap: 16px; align-items: flex-start; }
.rl-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.radar-list strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.radar-list span { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* Right — UI Card */
.radar-visual { position: relative; }
.radar-glow {
  position: absolute; inset: -40px; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.10) 0%, transparent 70%);
  pointer-events: none; filter: blur(20px);
}
.radar-card-ui {
  position: relative; z-index: 1;
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--purple);
}
.rui-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.rui-badge {
  background: var(--purple); color: white;
  font-size: 0.65rem; font-weight: 900; letter-spacing: 0.12em;
  padding: 3px 8px; border-radius: 999px;
}
.rui-header h3 { font-size: 1rem; font-weight: 800; color: var(--navy); flex: 1; }
.rui-counter {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 800; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}
.rui-btn-auto {
  width: 100%; padding: 13px; border-radius: 12px;
  background: var(--purple); color: white;
  font-weight: 800; font-size: 0.95rem; border: none;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3); margin-bottom: 20px;
  cursor: default;
}
.rui-fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 20px;
}
.rui-field label {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px;
}
.rui-val {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-weight: 900; font-size: 1.4rem; color: var(--navy);
}
.rui-status {
  font-size: 0.82rem; color: var(--light-muted); text-align: center;
  margin-bottom: 16px; font-style: italic;
}
.rui-scanning {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 0.82rem; color: var(--muted); font-weight: 600;
}
.scan-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--purple);
  animation: scanPulse 1.2s ease-in-out infinite;
}
.scan-dot:nth-child(2) { animation-delay: 0.2s; }
.scan-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes scanPulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

/* Floating alert preview */
.radar-alert-preview {
  position: absolute; bottom: -20px; right: -20px; z-index: 2;
  background: white; border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(14,30,54,0.12);
  animation: floatCard 4s ease-in-out infinite;
}
.rap-icon { font-size: 1.4rem; }
.radar-alert-preview strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--navy); }
.radar-alert-preview small { font-size: 0.75rem; color: var(--muted); }

@media (max-width: 900px) {
  .radar-inner { grid-template-columns: 1fr; gap: 48px; }
  .radar-alert-preview { position: relative; bottom: auto; right: auto; margin-top: 16px; }
}



[lang="ar"], [dir="rtl"] {
  font-family: 'Tajawal', 'Inter', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  color: var(--text);
  background: linear-gradient(160deg, #111d2e 0%, #1a3050 40%, #0e1c30 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; }

/* --- Page Frame --- */
.page-frame {
  max-width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 32px 80px rgba(0,0,0,0.45);
  border-radius: 0;
  overflow-x: hidden;
}
@media (min-width: 1460px) {
  .page-frame {
    border-radius: 20px;
    margin: 24px auto;
    overflow: hidden;
  }
}

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* --- Section Labels & Titles --- */
.section-label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: #0a1a2e;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.section-title .accent { color: var(--navy-mid); }
.section-sub {
  font-size: 1.05rem;
  color: #3d5470;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 52px;
  font-weight: 450;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 1.05rem; color: var(--navy);
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-links {
  display: flex; gap: 4px; align-items: center; flex: 1;
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600; color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--bg-alt); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.lang-btn {
  background: none; border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 14px; font-size: 0.82rem; font-weight: 700; color: var(--muted);
  display: flex; gap: 6px; align-items: center; transition: border-color 0.2s;
}
.lang-btn:hover { border-color: var(--navy); }
.lang-fr, .lang-ar { transition: color 0.2s; }
.lang-fr.active, .lang-ar.active { color: var(--navy); }
.lang-sep { color: var(--border); }
.nav-cta {
  background: var(--green); color: white; padding: 10px 20px;
  border-radius: 999px; font-weight: 800; font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 130px 0 96px;
  background: linear-gradient(145deg, #f0f7ff 0%, #e6f0fc 40%, #dbeafe 70%, #eff6ff 100%);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(30,58,95,0.08);
}
/* Large decorative crescent in hero background */
.hero-deco-logo {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 520px;
  height: 520px;
  object-fit: contain;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 40px rgba(200,146,58,0.2));
  animation: decoFloat 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,58,95,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 14px 6px 10px; font-size: 0.82rem; font-weight: 700;
  color: var(--navy); margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(14,30,54,0.06);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,211,102,0.2); }
  50% { box-shadow: 0 0 0 7px rgba(37,211,102,0.05); }
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.045em;
  color: #0a1a2e; margin-bottom: 22px;
}
.hero-accent { color: #1e4a8a; }
.hero p {
  font-size: 1.12rem; line-height: 1.75; color: #3d5470; margin-bottom: 32px;
  max-width: 500px; font-weight: 430;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary-hero {
  background: var(--green); color: white;
  padding: 14px 28px; border-radius: 999px; font-weight: 800; font-size: 1rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.28);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary-hero:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,0.35); }
.btn-ghost-hero {
  background: white; color: var(--navy); border: 1.5px solid var(--border);
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-hero:hover { border-color: var(--navy); background: var(--bg-alt); }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust span { font-size: 0.82rem; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 4px; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-frame {
  background: white; border-radius: 16px; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.frame-bar {
  background: var(--bg-alt); padding: 10px 16px;
  display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f56; }
.dot.y { background: #ffbd2e; }
.dot.g { background: #27c93f; }
.frame-title { font-size: 0.75rem; color: var(--muted); font-weight: 600; margin-left: 6px; }
.hero-screenshot { width: 100%; }
.hero-float-card {
  position: absolute; background: white; border-radius: 12px;
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(14,30,54,0.12); border: 1px solid var(--border);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--navy); }
.hero-float-card small { font-size: 0.75rem; color: var(--muted); }
.float-icon { font-size: 1.4rem; }
.card-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.card-2 { top: -20px; right: -24px; animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   HERO PROMO PILL + STATS BAR
   ============================================================ */
.hero-promo-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.9); border: 1.5px solid rgba(234,88,12,0.25);
  border-radius: 999px; padding: 6px 16px 6px 12px;
  font-size: 0.85rem; font-weight: 700; color: var(--navy);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(234,88,12,0.12);
}
.promo-fire { font-size: 1rem; }
.promo-old {
  text-decoration: line-through;
  color: var(--light-muted); font-weight: 600; font-size: 0.82rem;
}
.promo-new {
  color: #c0392b; font-weight: 900; font-size: 1rem;
}
.hero-stats-bar {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.75); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 20px;
  margin-top: 28px; backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(14,30,54,0.06);
}
.hstat { flex: 1; display: flex; flex-direction: column; align-items: center; }
.hstat-num {
  font-size: 1.5rem; font-weight: 900; color: var(--navy);
  letter-spacing: -0.04em; line-height: 1;
}
.hstat-label {
  font-size: 0.7rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-top: 4px; text-align: center;
}
.hstat-sep {
  width: 1px; height: 36px; background: var(--border); flex-shrink: 0;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-section {
  background: var(--navy); overflow: hidden; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-track { overflow: hidden; }
.ticker-items {
  display: flex; align-items: center; gap: 32px; width: max-content;
  animation: ticker 30s linear infinite; white-space: nowrap;
}
.ticker-items span { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.ticker-sep { color: rgba(255,255,255,0.3) !important; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { padding: 96px 0; background: #ffffff; }
.how-section .container { text-align: center; }
.steps-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0;
  align-items: start; margin-top: 56px;
}
.step-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 20px;
  padding: 36px 28px;  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-number {
  font-size: 0.75rem; font-weight: 900; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.step-icon { font-size: 2.8rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.step-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px; padding-top: 60px;
}
.step-connector span { font-size: 1.5rem; color: var(--border); font-weight: 300; }

/* ============================================================
   AVANT / APRÈS SECTION
   ============================================================ */
.avantapres-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #0f1e32 0%, #162844 60%, #1a3050 100%);
}
.avantapres-section .section-title { text-align: center; color: #ffffff; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.avantapres-section .section-label { text-align: center; display: block; color: rgba(255,255,255,0.75); letter-spacing: 0.18em; }
.aa-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 56px;
}
.aa-card {
  border-radius: 24px; padding: 36px;
  border: 1.5px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}
.aa-card:hover { transform: translateY(-4px); }

.aa-before {
  background: #fff8f6;
  border-color: rgba(220, 80, 60, 0.15);
  box-shadow: 0 4px 32px rgba(220,80,60,0.06);
}
.aa-after {
  background: linear-gradient(145deg, #f0fdf6 0%, #e8faf2 100%);
  border-color: rgba(37, 211, 102, 0.25);
  box-shadow: 0 4px 32px rgba(37,211,102,0.08);
}
.aa-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.aa-icon { font-size: 2rem; }
.aa-before h3 { font-size: 1.25rem; font-weight: 900; color: #c0392b; }
.aa-after h3 { font-size: 1.25rem; font-weight: 900; color: #0b7f62; }
.aa-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.aa-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; line-height: 1.5; color: #2c3e50;
}
.aa-x {
  font-size: 1rem; font-weight: 900; color: #e74c3c;
  flex-shrink: 0; margin-top: 1px; width: 18px;
}
.aa-check {
  font-size: 1rem; font-weight: 900; color: #25D366;
  flex-shrink: 0; margin-top: 1px; width: 18px;
}
.aa-bottom {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.aa-stat-bad {
  font-size: 0.88rem; font-weight: 700; color: #c0392b;
  background: rgba(220,80,60,0.07);
  padding: 10px 16px; border-radius: 8px; display: block;
  border-left: 3px solid #e74c3c;
}
.aa-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: background 0.2s, transform 0.2s;
}
.aa-cta:hover { background: var(--green-dark); transform: translateY(-2px); }



@media (max-width: 768px) {
  .aa-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURES BENTO
   ============================================================ */
.features-section { padding: 96px 0; background: var(--bg-alt); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-top: 56px;
}
.bento-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-content { padding: 28px 28px 0; }
.bento-tag {
  display: inline-block; background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--navy-mid); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px;
  border-radius: 999px; margin-bottom: 14px;
}
.bento-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.bento-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.bento-img { padding: 24px 24px 0; }
.bento-img img { border-radius: 12px 12px 0 0; border: 1px solid var(--border); border-bottom: none; width: 100%; }
.bento-screenshot { display: block; width: 100%; max-width: 260px; margin: 20px auto 0; border-radius: 12px; border: 1px solid var(--border); }
.wide-img { max-width: 340px; }
.bento-large { grid-column: span 2; display: flex; flex-direction: column; }
.bento-medium { grid-column: span 1; }
.bento-small { padding: 28px; }
.bento-wide { grid-column: span 2; display: flex; align-items: center; padding: 28px; gap: 32px; }
.accent-card { background: var(--navy); border-color: transparent; }
.accent-card h3 { color: white; }
.accent-card p { color: rgba(255,255,255,0.7); }
.light-tag { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

/* ============================================================
   FEATURES CLEAN GRID
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feat-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feat-icon { font-size: 1.6rem; line-height: 1; }
.feat-icon-blue   { background: rgba(37, 99, 235, 0.10); }
.feat-icon-green  { background: rgba(37, 211, 102, 0.12); }
.feat-icon-purple { background: rgba(124, 58, 237, 0.10); }
.feat-icon-orange { background: rgba(234, 88, 12, 0.10); }
.feat-icon-navy   { background: rgba(30, 58, 95, 0.10); }
.feat-icon-teal   { background: rgba(14, 116, 144, 0.10); }
.feat-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.feat-card h3 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy); line-height: 1.3;
  margin-bottom: 10px;
}
.feat-card p {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SHOWCASE ROWS
   ============================================================ */
.showcase-section { padding: 96px 0; background: var(--bg); }
.showcase-section .container { text-align: center; }
.show-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; margin-top: 72px; text-align: left;
}
.show-row-reverse { direction: rtl; }
.show-row-reverse > * { direction: ltr; }
.img-frame-light {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 20px; padding: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s, box-shadow 0.4s;
}
.img-frame-light:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(14,30,54,0.12); }
.img-frame-light img { width: 100%; border-radius: 12px; border: 1px solid var(--border); }
.show-tag {
  display: inline-block; background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--navy-mid); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px;
  border-radius: 999px; margin-bottom: 16px;
}
.show-tag.green-tag { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.2); color: #0b7f62; }
.show-text h3 { font-size: 1.7rem; font-weight: 900; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.2; }
.show-text p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: 0.95rem; font-weight: 600; color: var(--text); }

/* ============================================================
   CENTRES
   ============================================================ */
.centres-section { padding: 96px 0; background: linear-gradient(160deg, #f0f7ff 0%, #e8f2fc 60%, #deeefb 100%); text-align: center; }
.centres-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px; text-align: left;
}
.centre-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.centre-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.centre-icon { font-size: 2.2rem; margin-bottom: 16px; }
.centre-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.centre-sub { font-size: 0.8rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.centre-wilayas { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   MASTERCLASS VIDEOS
   ============================================================ */
.videos-section { padding: 96px 0; background: #ffffff; text-align: center; }
.videos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px; text-align: left;
}
.video-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--bg-deep); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(14,30,54,0.35); transition: background 0.3s;
}
.video-card:hover .play-overlay { background: rgba(14,30,54,0.5); }
.play-btn {
  width: 52px; height: 52px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--navy); box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.video-info { padding: 16px 18px; }
.video-info h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); line-height: 1.4; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-section { padding: 96px 0; background: linear-gradient(155deg, #f4f8fc 0%, #edf4fb 50%, #e5f0fa 100%); text-align: center; }
.compare-section .section-sub { margin-left: auto; margin-right: auto; }
.compare-table-wrap { margin-top: 48px; overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.compare-table thead tr { background: var(--bg-alt); }
.compare-table th {
  padding: 20px 24px; font-size: 0.9rem; font-weight: 800;
  color: var(--navy); border-bottom: 1px solid var(--border); text-align: left;
}
.compare-table th.col-pro { background: var(--navy); color: white; }
.compare-table td {
  padding: 16px 24px; font-size: 0.92rem; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg-alt); }
.compare-table td.check { color: #0b7f62; font-weight: 700; }
.compare-table td.cross { color: var(--light-muted); font-weight: 600; }
.compare-table td.pro-check { background: rgba(30,58,95,0.04); font-weight: 800; color: #0b7f62; }
.compare-table tfoot td { padding: 20px 24px; }
.btn-ghost-sm {
  display: inline-block; border: 1.5px solid var(--border); color: var(--navy);
  padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 0.85rem;
  transition: border-color 0.2s;
}
.btn-ghost-sm:hover { border-color: var(--navy); }
.btn-pro-sm {
  display: inline-block; background: var(--green); color: white;
  padding: 10px 20px; border-radius: 999px; font-weight: 800; font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  transition: background 0.2s, transform 0.2s;
}
.btn-pro-sm:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 96px 0; background: #ffffff; }
.faq-inner {
  display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start;
}
.faq-left .section-title { font-size: 2rem; }
.faq-left p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.btn-wa-small {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white; padding: 12px 22px;
  border-radius: 999px; font-weight: 800; font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  transition: background 0.2s, transform 0.2s;
}
.btn-wa-small:hover { background: var(--green-dark); transform: translateY(-2px); }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; background: var(--bg);
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  padding: 18px 22px; font-weight: 700; font-size: 0.95rem; color: var(--navy);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 18px; font-size: 0.92rem; color: var(--muted);
  line-height: 1.65; border-top: 1px solid var(--border); padding-top: 16px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section { padding: 80px 0; background: var(--navy); }
.cta-card { text-align: center; }
.cta-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 900;
  color: white; letter-spacing: -0.03em; margin-bottom: 16px;
}
.cta-card p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-btn-ghost {
  background: rgba(255,255,255,0.1); color: white;
  border: 1.5px solid rgba(255,255,255,0.2); padding: 14px 28px;
  border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s;
}
.cta-btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.cta-btn-wa {
  background: var(--green); color: white; padding: 14px 28px;
  border-radius: 999px; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
  transition: background 0.2s, transform 0.2s;
}
.cta-btn-wa:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0d1b2e; padding: 56px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 64px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 800; color: white; margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 6px; }
.footer-links { display: flex; gap: 64px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { padding: 96px 0; background: linear-gradient(160deg, #0f1e32 0%, #162844 60%, #1a3050 100%); }
.testi-section .section-label { color: rgba(255,255,255,0.6); }
.testi-section .section-title { color: #fff; }
.testi-section .section-title .accent { color: #7cb9f4; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px 28px;
  transition: transform 0.3s, background 0.3s;
}
.testi-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.testi-card-highlight {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.testi-stars { color: #f5c518; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text {
  font-size: 0.97rem; color: rgba(255,255,255,0.85); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-mid); color: white;
  font-size: 0.8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 2px solid rgba(255,255,255,0.15);
}
.testi-author strong { display: block; font-size: 0.92rem; font-weight: 800; color: #fff; }
.testi-author span { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; display: block; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: 96px 0; background: var(--bg-alt); text-align: center; }
.pricing-section .section-sub { margin-left: auto; margin-right: auto; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px; text-align: left; align-items: start;
}
.price-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 24px; padding: 36px 32px;
  box-shadow: var(--shadow); position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-pro {
  border-color: var(--navy); box-shadow: 0 8px 40px rgba(30,58,95,0.12);
}
.price-badge-launch {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #c0392b; color: white;
  font-size: 0.78rem; font-weight: 900; letter-spacing: 0.06em;
  padding: 5px 16px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(192,57,43,0.35);
}
.price-tier {
  display: block; font-size: 0.72rem; font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.price-amount-free {
  font-size: 2.4rem; font-weight: 900; color: var(--navy);
  letter-spacing: -0.04em; margin-bottom: 10px; line-height: 1;
}
.price-amount-wrap { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.price-old {
  font-size: 1.1rem; font-weight: 600; color: var(--light-muted);
  text-decoration: line-through;
}
.price-new {
  font-size: 2.4rem; font-weight: 900; color: #c0392b;
  letter-spacing: -0.04em; line-height: 1;
}
.price-amount-cyb {
  font-size: 1.6rem; font-weight: 900; color: var(--navy-mid);
  margin-bottom: 10px; line-height: 1;
}
.price-desc {
  font-size: 0.88rem; color: var(--muted); line-height: 1.5;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.price-features li { font-size: 0.9rem; color: var(--text); line-height: 1.4; }
.pf-no { color: var(--light-muted); }
.price-btn-ghost {
  display: block; text-align: center;
  border: 1.5px solid var(--border); color: var(--navy);
  padding: 13px 20px; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
}
.price-btn-ghost:hover { border-color: var(--navy); background: var(--bg-alt); }
.price-btn-pro {
  display: block; text-align: center;
  background: var(--green); color: white;
  padding: 14px 20px; border-radius: 999px; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  transition: background 0.2s, transform 0.2s;
}
.price-btn-pro:hover { background: var(--green-dark); transform: translateY(-2px); }
.price-btn-cyb {
  display: block; text-align: center;
  background: var(--navy); color: white;
  padding: 13px 20px; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  transition: background 0.2s, transform 0.2s;
}
.price-btn-cyb:hover { background: var(--navy-dark); transform: translateY(-2px); }
.price-payment-methods {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 0.78rem; color: var(--muted); font-weight: 600;
}
.pay-badge {
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--navy); padding: 3px 10px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 800;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* ============================================================
   CTA SECTION UPGRADES
   ============================================================ */
.cta-urgency-badge {
  display: inline-block; background: rgba(192,57,43,0.15); color: #e74c3c;
  border: 1px solid rgba(192,57,43,0.25); border-radius: 999px;
  padding: 5px 16px; font-size: 0.82rem; font-weight: 800;
  margin-bottom: 20px; letter-spacing: 0.04em;
}
.cta-price-display {
  display: flex; align-items: baseline; justify-content: center; gap: 12px;
  margin: 16px 0 12px;
}
.cta-price-old {
  font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.cta-price-new {
  font-size: 2.4rem; font-weight: 900; color: #fff;
  letter-spacing: -0.04em;
}
.cta-payment-note {
  font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 20px;
  font-weight: 600; letter-spacing: 0.02em;
}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.mobile-sticky-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.mobile-sticky-price { display: flex; align-items: baseline; gap: 6px; }
.ms-old { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: line-through; font-weight: 600; }
.ms-new { font-size: 1.15rem; font-weight: 900; color: #fff; }
.ms-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 600; }
.ms-btn {
  background: var(--green); color: white;
  padding: 11px 24px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  .wa-float { bottom: 80px; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform 0.3s;
  animation: waPulse 3s infinite 2.5s;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-tooltip {
  position: absolute; right: 72px; bottom: 0;
  background: white; color: var(--navy); padding: 10px 16px;
  border-radius: 14px 14px 0 14px; font-weight: 800; font-size: 0.88rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12); white-space: nowrap;
  opacity: 0; pointer-events: none; transform-origin: bottom right;
  transform: scale(0.8); transition: opacity 0.3s, transform 0.3s;
  animation: waTooltip 9s infinite 3s;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: scale(1); animation: none; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes waTooltip {
  0%   { opacity: 0; transform: scale(0.8); }
  5%   { opacity: 1; transform: scale(1); }
  35%  { opacity: 1; transform: scale(1); }
  45%  { opacity: 0; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(0.8); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero p { max-width: 100%; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
  .centres-grid { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { padding: 0; display: none; }
  .show-row, .show-row-reverse { grid-template-columns: 1fr; gap: 40px; }
  .show-row-reverse { direction: ltr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .videos-grid { grid-template-columns: 1fr; }
  .centres-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-float-card { display: none; }
  .card-1, .card-2 { display: none; }
}
