/* ═══════════════════════════════════════════════════════════════
   TASHIL MAROC ECOM — Design System
   ═══════════════════════════════════════════════════════════════ */

:root {
  --primary:       #10b981;
  --primary-dark:  #059669;
  --gold:          #f59e0b;
  --gold-soft:     #fcd34d;
  --indigo:        #6366f1;
  --rose:          #f43f5e;
  --bg-dark:       #f8fafc;
  --bg-card:       #ffffff;
  --bg-card2:      #f1f5f9;
  --text-white:    #0f172a;
  --text-muted:    #64748b;
  --glass:         rgba(0,0,0,0.04);
  --glass-border:  rgba(0,0,0,0.08);
  --radius:        16px;
  --radius-sm:     10px;
}

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

html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body {
  font-family: 'Cairo', 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

[dir="ltr"] body { font-family: 'Inter', 'Cairo', sans-serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { background: rgba(99,102,241,.3); }
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #2d3748; border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background: var(--indigo); }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section    { padding:100px 0; }
.section-sm { padding:60px 0; }

/* ── Animated background ───────────────────────────────────── */
.bg-animation {
  position:fixed; top:0; left:0; width:100%; height:100%;
  z-index:-2; overflow:hidden; pointer-events:none;
}
.glow-orb {
  position:absolute; border-radius:50%;
  filter:blur(100px); opacity:.18;
  animation:float 20s ease-in-out infinite;
  will-change:transform;
}
.orb-1 { width:600px;height:600px;background:#10b981;top:-200px;right:-150px; }
.orb-2 { width:500px;height:500px;background:#f59e0b;bottom:-100px;left:-100px;animation-delay:7s; }
.orb-3 { width:400px;height:400px;background:#6366f1;top:40%;left:50%;animation-delay:14s; }
@keyframes float {
  0%,100% { transform:translate(0,0) scale(1); }
  33%      { transform:translate(30px,-40px) scale(1.05); }
  66%      { transform:translate(-20px,20px) scale(0.97); }
}

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4 { line-height:1.2; font-weight:800; }
p { color:var(--text-muted); }
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #f97316 50%, var(--indigo) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.gradient-text-green {
  background: linear-gradient(135deg, var(--primary) 0%, #06b6d4 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.section-title { font-size:clamp(1.8rem,4vw,3rem); font-weight:900; margin-bottom:16px; }
.section-sub   { font-size:1.1rem; color:var(--text-muted); max-width:600px; }
.section-header { margin-bottom:56px; }
.section-header.center { text-align:center; }
.section-header.center .section-sub { margin:0 auto; }
.tag {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(99,102,241,.15); border:1px solid rgba(99,102,241,.3);
  color:#818cf8; font-size:.78rem; font-weight:700;
  padding:6px 16px; border-radius:999px;
  text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px;
}
.divider {
  width:50px; height:4px; border-radius:2px;
  background:linear-gradient(90deg,var(--gold),var(--indigo));
  margin:18px 0;
}
.center .divider { margin:18px auto; }

/* ── Scroll animations ────────────────────────────────────── */
.animate-on-scroll {
  opacity:0; transform:translateY(28px);
  transition:opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible  { opacity:1; transform:translateY(0); }
.animate-on-scroll.delay-1  { transition-delay:.1s; }
.animate-on-scroll.delay-2  { transition-delay:.2s; }
.animate-on-scroll.delay-3  { transition-delay:.3s; }
.animate-on-scroll.delay-4  { transition-delay:.4s; }
.animate-slide-up { animation:slideUp .7s ease forwards; opacity:0; }
.animate-slide-up.delay-1 { animation-delay:.2s; }
.animate-slide-up.delay-2 { animation-delay:.4s; }
.animate-fade-in  { animation:fadeIn .8s ease forwards; opacity:0; }
.animate-fade-in.delay-4 { animation-delay:.8s; }
@keyframes slideUp { from { opacity:0;transform:translateY(30px);} to { opacity:1;transform:translateY(0);} }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes ripple-anim { to { transform:scale(4); opacity:0; } }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary,.btn-lg {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:linear-gradient(135deg, #25d366, #128c7e);
  color:#fff; font-weight:700; font-size:1rem;
  padding:14px 28px; border-radius:12px;
  border:none; cursor:pointer; font-family:inherit;
  transition:all .3s ease;
  box-shadow:0 4px 24px rgba(37,211,102,.35);
  position:relative;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(37,211,102,.5); }
.btn-primary.full-width { width:100%; }
.btn-gold {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:linear-gradient(135deg, var(--gold), #f97316);
  color:#0a0e1a; font-weight:800; font-size:1rem;
  padding:14px 28px; border-radius:12px;
  border:none; cursor:pointer; font-family:inherit;
  transition:all .3s ease; box-shadow:0 4px 24px rgba(245,158,11,.3);
}
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(245,158,11,.5); }
.btn-outline {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:transparent; color:var(--text-white); font-weight:600;
  padding:13px 24px; border-radius:12px;
  border:1px solid var(--glass-border); cursor:pointer;
  transition:all .3s ease; font-family:inherit;
}
.btn-outline:hover { border-color:var(--indigo); color:var(--indigo); }

/* ── Glass card ─────────────────────────────────────────────── */
.glass {
  background:rgba(17,24,39,.8);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border:1px solid var(--glass-border);
}
.card {
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:28px;
  transition:border-color .3s;
}
.card:hover { border-color:rgba(99,102,241,.3); }

/* ── Badges ─────────────────────────────────────────────────── */
.badge { display:inline-block; padding:4px 12px; border-radius:999px; font-size:.75rem; font-weight:700; }
.badge-gold    { background:rgba(245,158,11,.15); color:var(--gold);    border:1px solid rgba(245,158,11,.3); }
.badge-emerald { background:rgba(16,185,129,.15); color:var(--primary); border:1px solid rgba(16,185,129,.3); }
.badge-rose    { background:rgba(244,63,94,.15);  color:var(--rose);    border:1px solid rgba(244,63,94,.3); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.topbar-announcement {
  background: linear-gradient(90deg, #7c3aed, #6366f1, #4f46e5);
  text-align:center; padding:8px 16px;
  font-size:.85rem; font-weight:600; color:#fff;
  position:relative; z-index:1001;
}
.topbar-announcement a { color:var(--gold-soft); font-weight:800; }

.navbar {
  position:sticky; top:0; z-index:1000;
  background:rgba(10,14,26,.85);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--glass-border);
  transition:all .3s ease;
}
.navbar.scrolled {
  background:rgba(10,14,26,.97);
  box-shadow:0 4px 30px rgba(0,0,0,.4);
}

.navbar-inner {
  display:flex; align-items:center; gap:16px;
  padding:14px 0;
  max-width:1200px; margin:0 auto; padding-inline:24px;
}

.navbar-logo {
  display:flex; align-items:center; gap:10px;
  font-weight:900; font-size:1.1rem; color:var(--text-white);
  white-space:nowrap;
}
.logo-icon {
  width:36px; height:36px; border-radius:10px;
  background:linear-gradient(135deg, var(--primary), var(--indigo));
  display:grid; place-items:center; font-size:1.1rem; flex-shrink:0;
}

.main-nav { display:flex; align-items:center; gap:4px; flex:1; justify-content:center; }
.main-nav a {
  color:var(--text-muted); font-size:.9rem; font-weight:600;
  padding:6px 12px; border-radius:8px;
  transition:all .2s ease;
  white-space:nowrap;
}
.main-nav a:hover, .main-nav a.active { color:var(--text-white); background:var(--glass); }

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

/* Language toggle */
.lang-toggle {
  display:flex; align-items:center; gap:2px;
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:999px; padding:3px;
}
.lang-btn {
  padding:5px 12px; border-radius:999px; font-size:.8rem; font-weight:700;
  cursor:pointer; border:none; background:transparent; color:var(--text-muted);
  transition:all .2s ease; font-family:inherit;
}
.lang-btn.active { background:var(--indigo); color:#fff; }

.nav-cta-btn {
  background:linear-gradient(135deg, #25d366, #128c7e);
  color:#fff; font-weight:700; font-size:.85rem;
  padding:8px 16px; border-radius:10px;
  white-space:nowrap; transition:all .3s;
  box-shadow:0 2px 12px rgba(37,211,102,.3);
}
.nav-cta-btn:hover { transform:translateY(-1px); box-shadow:0 4px 20px rgba(37,211,102,.5); }

/* Mobile menu */
.mobile-menu-btn {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  background:transparent; border:none; padding:4px;
}
.mobile-menu-btn span {
  display:block; width:22px; height:2px;
  background:var(--text-white); border-radius:1px;
  transition:all .3s ease;
}

.nav-links {
  display:none;
}

/* Countdown inside topbar */
.countdown-bar {
  background:linear-gradient(90deg, rgba(229,62,62,.12), rgba(245,158,11,.12), rgba(229,62,62,.12));
  border-bottom:1px solid rgba(229,62,62,.25);
  padding:8px 0;
}
.countdown-inner {
  display:flex; align-items:center; justify-content:center;
  gap:16px; flex-wrap:wrap;
}
.countdown-label { color:#fff; font-size:.88rem; font-weight:600; }
.countdown-units { display:flex; gap:6px; align-items:center; }
.cd-unit {
  display:flex; flex-direction:column; align-items:center;
  background:rgba(229,62,62,.15); border:1px solid rgba(229,62,62,.3);
  border-radius:8px; padding:4px 10px; min-width:48px;
}
.cd-num { font-size:1.2rem; font-weight:800; color:#f87171; line-height:1; }
.cd-lbl { font-size:.6rem; color:#9ca3af; }
.cd-sep { color:#f87171; font-weight:800; font-size:1.2rem; line-height:1; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  padding:80px 0 60px;
  position:relative; overflow:hidden;
}
.hero-grid {
  display:grid;
  grid-template-columns:1fr 420px;
  gap:60px;
  align-items:center;
}
[dir="ltr"] .hero-grid { grid-template-columns:1fr 420px; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,rgba(245,158,11,.2),rgba(249,115,22,.1));
  border:1px solid rgba(245,158,11,.3);
  color:var(--gold); font-size:.85rem; font-weight:700;
  padding:6px 16px; border-radius:999px; margin-bottom:20px;
  animation:pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow:0 0 0 0 rgba(245,158,11,.3); }
  50%      { box-shadow:0 0 0 8px rgba(245,158,11,0); }
}

.hero-title {
  font-size:clamp(2rem,5vw,3.4rem);
  font-weight:900;
  line-height:1.15;
  margin-bottom:20px;
}
.hero-subtitle {
  font-size:1.1rem; color:var(--text-muted);
  margin-bottom:32px; max-width:520px;
}
.hero-stats {
  display:flex; gap:20px; flex-wrap:wrap; margin-top:32px;
}
.stat-item {
  display:flex; align-items:center; gap:8px;
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:10px; padding:10px 16px;
  font-size:.9rem; font-weight:600; color:var(--text-muted);
}
.stat-item i { color:var(--primary); }

/* Pricing card */
.pricing-card {
  background:var(--bg-card); border:2px solid rgba(99,102,241,.3);
  border-radius:24px; padding:32px;
  position:relative; overflow:hidden;
}
.pricing-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--primary), var(--indigo));
}
.card-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:linear-gradient(135deg, rgba(245,158,11,.2), rgba(249,115,22,.1));
  border:1px solid rgba(245,158,11,.3);
  color:var(--gold); font-size:.8rem; font-weight:700;
  padding:5px 12px; border-radius:999px; margin-bottom:20px;
}
.pricing-header h3 { font-size:1.2rem; font-weight:800; margin-bottom:4px; }
.pricing-header p  { font-size:.88rem; color:var(--text-muted); margin-bottom:20px; }
.pricing-price {
  display:flex; align-items:baseline; gap:6px; margin-bottom:16px;
  flex-wrap:wrap;
}
.pricing-price .currency { font-size:1.2rem; font-weight:700; color:var(--gold); }
.pricing-price .amount { font-size:3.5rem; font-weight:900; color:var(--text-white); line-height:1; }
.pricing-price .period { font-size:.85rem; color:var(--text-muted); }
.pricing-comparison {
  display:flex; gap:12px; margin-bottom:20px; flex-wrap:wrap;
}
.comparison-item {
  display:flex; align-items:center; gap:8px;
  font-size:.85rem;
}
.comparison-item .label { color:var(--primary); font-weight:700; }
.comparison-item .price { color:var(--text-muted); text-decoration:line-through; }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:24px; }
.pricing-features li {
  display:flex; align-items:center; gap:10px;
  font-size:.9rem; color:var(--text-muted);
}
.pricing-features li i { color:var(--primary); flex-shrink:0; }
.pricing-cta a {
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:100%; padding:15px; border-radius:12px;
  font-weight:700; font-size:1rem;
}

/* Video embed — portrait (app demo) */
.video-card-wrapper {
  border-radius:24px; overflow:hidden;
  border:2px solid rgba(16,185,129,.3);
  box-shadow:0 0 60px rgba(16,185,129,.15);
  background:#000;
  max-width:300px;
  margin:0 auto;
}
.video-hero-container { position:relative; padding-bottom:177.78%; height:0; overflow:hidden; }
.video-hero-container video { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; }

/* ══════════════════════════════════════════════════════════════
   PROBLEM
   ══════════════════════════════════════════════════════════════ */
#problem { background:linear-gradient(180deg, var(--bg-dark), rgba(17,24,39,.5), var(--bg-dark)); }

.problem-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start;
}
.problem-lead {
  font-size:1.1rem; color:var(--text-muted); line-height:1.8; margin-bottom:28px;
}
.problem-lead strong { color:var(--rose); }
.reason-item {
  display:flex; align-items:center; gap:12px;
  padding:12px 16px; border-radius:10px;
  background:rgba(244,63,94,.05); border:1px solid rgba(244,63,94,.15);
  font-size:.95rem; color:var(--text-muted);
  margin-bottom:10px;
}
.reason-item .icon-x {
  width:28px; height:28px; border-radius:50%; flex-shrink:0;
  background:rgba(244,63,94,.15); border:1px solid rgba(244,63,94,.3);
  display:grid; place-items:center; color:var(--rose);
}

.compare-cards { display:flex; flex-direction:column; gap:20px; }
.compare-card  {
  border-radius:var(--radius); padding:24px; border:1px solid var(--glass-border);
}
.compare-card.bad  { background:rgba(244,63,94,.05);  border-color:rgba(244,63,94,.2); }
.compare-card.good { background:rgba(16,185,129,.05); border-color:rgba(16,185,129,.2); }
.compare-title {
  display:flex; align-items:center; gap:10px;
  font-weight:800; font-size:1rem; margin-bottom:16px;
}
.compare-title.bad  { color:var(--rose); }
.compare-title.good { color:var(--primary); }
.compare-title i { opacity:.9; }
.compare-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.compare-item {
  display:flex; align-items:center; gap:8px;
  font-size:.88rem; color:var(--text-muted);
  padding:8px 10px; border-radius:8px;
}
.compare-item.bad  { background:rgba(244,63,94,.08); }
.compare-item.good { background:rgba(16,185,129,.08); color:var(--text-white); }
.compare-item .dot {
  width:8px; height:8px; border-radius:50%; flex-shrink:0;
}
.compare-item .dot.bad  { background:var(--rose); }
.compare-item .dot.good { background:var(--primary); }

/* ══════════════════════════════════════════════════════════════
   SOLUTION
   ══════════════════════════════════════════════════════════════ */
#solution {}
.solution-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.solution-card {
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:28px;
  transition:all .3s ease; position:relative; overflow:hidden;
}
.solution-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--primary),var(--indigo));
  opacity:0; transition:opacity .3s;
}
.solution-card:hover { transform:translateY(-4px); border-color:rgba(99,102,241,.3); }
.solution-card:hover::before { opacity:1; }
.sol-icon {
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg,rgba(16,185,129,.2),rgba(6,182,212,.1));
  border:1px solid rgba(16,185,129,.3);
  display:grid; place-items:center; margin-bottom:16px;
  color:var(--primary); font-size:1.2rem;
}
.sol-num {
  font-size:.75rem; font-weight:700; color:var(--indigo);
  opacity:.6; margin-bottom:8px; letter-spacing:.1em;
}
.solution-card h3 { font-size:1rem; font-weight:800; margin-bottom:10px; }
.solution-card p  { font-size:.88rem; color:var(--text-muted); margin-bottom:14px; }
.sol-tags { display:flex; gap:6px; flex-wrap:wrap; }
.sol-tag {
  font-size:.72rem; font-weight:700; padding:3px 10px; border-radius:999px;
  background:rgba(99,102,241,.1); color:#818cf8; border:1px solid rgba(99,102,241,.2);
}

/* ══════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════ */
#features { background:linear-gradient(180deg, var(--bg-dark), rgba(17,24,39,.5), var(--bg-dark)); }

.showcase-item {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
  margin-bottom:80px;
}
.showcase-item:last-child { margin-bottom:0; }
.showcase-item.reverse { direction:rtl; }
[dir="ltr"] .showcase-item.reverse { direction:ltr; }
[dir="ltr"] .showcase-item:not(.reverse) .showcase-text { order:1; }
[dir="ltr"] .showcase-item:not(.reverse) .showcase-visual { order:2; }
[dir="ltr"] .showcase-item.reverse .showcase-text { order:2; }
[dir="ltr"] .showcase-item.reverse .showcase-visual { order:1; }

.showcase-text .feat-num { font-size:.75rem; font-weight:700; color:var(--indigo); opacity:.7; letter-spacing:.1em; margin-bottom:8px; }
.showcase-text h3 { font-size:clamp(1.4rem,3vw,2rem); font-weight:900; margin-bottom:16px; }
.showcase-text > p { font-size:1rem; color:var(--text-muted); margin-bottom:24px; }
.feat-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.feat-list li {
  display:flex; align-items:center; gap:10px;
  font-size:.95rem; color:var(--text-muted);
}
.feat-check {
  width:20px; height:20px; border-radius:50%; flex-shrink:0;
  background:rgba(16,185,129,.15); border:1px solid rgba(16,185,129,.3);
  display:grid; place-items:center;
}
.feat-check i { color:var(--primary); }

/* Mockup screen */
.screen-mockup {
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:20px; padding:20px; position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,.5), 0 0 60px rgba(99,102,241,.08);
  transform:rotateY(-5deg); transition:transform .4s ease;
}
.screen-mockup:hover { transform:rotateY(0deg) translateY(-4px); }
.mockup-bar {
  display:flex; align-items:center; gap:6px; margin-bottom:16px; padding-bottom:12px;
  border-bottom:1px solid var(--glass-border);
}
.mockup-dots { display:flex; gap:5px; }
.mockup-dot { width:10px; height:10px; border-radius:50%; }
.mockup-dot.r { background:#f87171; }
.mockup-dot.y { background:var(--gold); }
.mockup-dot.g { background:var(--primary); }
.mockup-title { font-size:.8rem; font-weight:700; color:var(--text-muted); margin-inline-start:8px; }

.mockup-chart-wrap { position:relative; height:100px; }
.chart-bars { display:flex; align-items:flex-end; gap:6px; height:80px; }
.bar { flex:1; border-radius:4px 4px 0 0; min-width:12px; }

.mockup-calc { display:flex; flex-direction:column; gap:8px; }
.calc-row {
  display:flex; justify-content:space-between; align-items:center;
  font-size:.82rem; color:var(--text-muted); padding:8px 12px;
  background:rgba(255,255,255,.03); border-radius:8px;
}
.calc-row.total { background:rgba(16,185,129,.1); color:var(--primary); font-weight:700; }
.calc-row span:last-child { font-weight:600; color:var(--text-white); }
.calc-row.total span:last-child { color:var(--primary); }

.stock-list { display:flex; flex-direction:column; gap:8px; }
.stock-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 12px; border-radius:8px; font-size:.85rem;
}
.stock-row.ok   { background:rgba(16,185,129,.08); }
.stock-row.low  { background:rgba(245,158,11,.08); }
.stock-row.crit { background:rgba(244,63,94,.08); }
.stock-name { font-weight:600; }
.stock-qty.ok   { color:var(--primary); }
.stock-qty.low  { color:var(--gold); }
.stock-qty.crit { color:var(--rose); font-weight:700; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════ */
#howitworks {}
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; position:relative; }
.steps-grid::before {
  content:''; position:absolute; top:40px; left:16%; right:16%;
  height:2px; background:linear-gradient(90deg,var(--primary),var(--indigo),var(--primary));
  border-radius:1px; opacity:.3;
}
.step-card {
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:32px 24px;
  text-align:center; transition:all .3s ease; position:relative;
}
.step-card:hover { transform:translateY(-6px); border-color:rgba(99,102,241,.3); }
.step-num {
  position:absolute; top:-16px; left:50%; transform:translateX(-50%);
  width:32px; height:32px; border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--indigo));
  display:grid; place-items:center;
  font-size:.85rem; font-weight:900; color:#fff;
  box-shadow:0 4px 12px rgba(99,102,241,.4);
}
.step-icon {
  width:60px; height:60px; border-radius:16px;
  background:linear-gradient(135deg,rgba(99,102,241,.2),rgba(16,185,129,.1));
  border:1px solid rgba(99,102,241,.2);
  display:grid; place-items:center; margin:0 auto 20px;
  color:var(--indigo);
}
.step-card h3 { font-size:1.1rem; font-weight:800; margin-bottom:10px; }
.step-card p  { font-size:.9rem; color:var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
#testimonials { background:linear-gradient(180deg, var(--bg-dark), rgba(17,24,39,.5), var(--bg-dark)); }

.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial-card {
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:28px;
  display:flex; flex-direction:column; gap:16px;
  transition:all .3s ease;
}
.testimonial-card:hover { transform:translateY(-4px); border-color:rgba(245,158,11,.25); box-shadow:0 20px 40px rgba(0,0,0,.3); }
.testimonial-stars { display:flex; gap:4px; }
.testimonial-stars svg { width:16px; height:16px; fill:var(--gold); stroke:var(--gold); }
.testimonial-text { font-size:.95rem; color:var(--text-muted); line-height:1.8; flex:1; }
.testimonial-text::before { content:'"'; color:var(--gold); font-size:2rem; line-height:0; vertical-align:-0.5em; margin-inline-end:4px; }
.testimonial-author { display:flex; align-items:center; gap:12px; border-top:1px solid var(--glass-border); padding-top:16px; }
.author-avatar {
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  display:grid; place-items:center; font-weight:800; font-size:1.1rem;
  background:linear-gradient(135deg,var(--indigo),var(--primary));
  color:#fff;
}
.author-name { font-weight:700; font-size:.95rem; }
.author-role { font-size:.8rem; color:var(--text-muted); }
.testimonial-rating { display:flex; gap:3px; }

/* ══════════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════════ */
#cta {
  background:linear-gradient(135deg, rgba(99,102,241,.08) 0%, rgba(16,185,129,.06) 100%);
  border-top:1px solid var(--glass-border);
  border-bottom:1px solid var(--glass-border);
}
.cta-grid { display:grid; grid-template-columns:1fr 380px; gap:60px; align-items:center; }
.cta-title { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:900; margin-bottom:16px; }
.cta-sub { font-size:1.05rem; color:var(--text-muted); margin-bottom:32px; }
.cta-buttons { display:flex; gap:12px; flex-wrap:wrap; }
.cta-note { font-size:.82rem; color:var(--text-soft,var(--text-muted)); margin-top:12px; opacity:.7; }

.cta-visual {
  background:var(--bg-card); border:1px solid rgba(16,185,129,.25);
  border-radius:20px; padding:28px;
  box-shadow:0 0 60px rgba(16,185,129,.08);
  position:relative; overflow:hidden;
}
.cta-visual::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--primary),var(--indigo));
}
.cta-profit-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(16,185,129,.15); border:1px solid rgba(16,185,129,.3);
  color:var(--primary); font-weight:800; font-size:.9rem;
  padding:8px 16px; border-radius:999px; margin-bottom:16px;
}
.mini-chart-wrap { margin:16px 0; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer {
  background:var(--bg-card); border-top:1px solid var(--glass-border);
  padding:60px 0 24px;
}
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-brand-name { font-size:1.2rem; font-weight:900; margin-bottom:12px; display:flex; align-items:center; gap:10px; }
.footer-desc { font-size:.9rem; color:var(--text-muted); line-height:1.7; }
.footer-col h4 { font-size:.95rem; font-weight:800; margin-bottom:16px; color:var(--text-white); }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:.9rem; color:var(--text-muted); transition:color .2s; }
.footer-col ul li a:hover { color:var(--text-white); }
.footer-bottom {
  border-top:1px solid var(--glass-border);
  padding-top:24px; text-align:center;
  font-size:.85rem; color:var(--text-muted);
}
.footer-wa {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--primary); font-weight:700; margin-top:8px;
}

/* ══════════════════════════════════════════════════════════════
   FLOATING WA BUTTON
   ══════════════════════════════════════════════════════════════ */
.download-fixed {
  position:fixed; bottom:24px; right:24px; z-index:999;
  display:flex; align-items:center; gap:10px;
  background:linear-gradient(135deg, #25d366, #128c7e);
  color:#fff; font-weight:700; font-size:.9rem;
  padding:12px 20px; border-radius:50px;
  box-shadow:0 4px 20px rgba(37,211,102,.45);
  transition:all .3s ease; max-width:280px;
  border:2px solid rgba(255,255,255,.2);
}
[dir="rtl"] .download-fixed { right:24px; left:auto; }
[dir="ltr"] .download-fixed { left:24px; right:auto; }
.download-fixed:hover { transform:translateY(-3px); box-shadow:0 8px 32px rgba(37,211,102,.6); }
.download-fixed svg { flex-shrink:0; }
@media (max-width:640px) { .download-fixed span { display:none; } .download-fixed { padding:14px; border-radius:50%; } }

/* ══════════════════════════════════════════════════════════════
   VIDEO MODAL
   ══════════════════════════════════════════════════════════════ */
.video-modal { display:none; position:fixed; inset:0; z-index:9999; align-items:center; justify-content:center; }
.video-modal.active { display:flex; }
.video-modal-overlay { position:absolute; inset:0; background:rgba(0,0,0,.9); backdrop-filter:blur(8px); }
.video-modal-inner { position:relative; z-index:1; width:min(92vw,900px); }
.video-modal-inner video { width:100%; border-radius:16px; box-shadow:0 0 80px rgba(0,0,0,.8); }
.video-modal-close {
  position:absolute; top:-44px; right:0;
  background:transparent; border:none; color:#fff; cursor:pointer;
  width:36px; height:36px; display:flex; align-items:center; justify-content:center;
  opacity:.7; border-radius:50%;
}
.video-modal-close:hover { opacity:1; background:rgba(255,255,255,.1); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width:1024px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-grid .pricing-card { max-width:480px; }
  .problem-grid { grid-template-columns:1fr; }
  .solution-grid { grid-template-columns:repeat(2,1fr); }
  .showcase-item { grid-template-columns:1fr; gap:40px; }
  .showcase-item.reverse { direction:inherit; }
  .cta-grid { grid-template-columns:1fr; }
  .cta-visual { max-width:480px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > :first-child { grid-column:1/-1; }
  .steps-grid::before { display:none; }
}
@media (max-width:768px) {
  .section { padding:64px 0; }
  .section-sm { padding:44px 0; }
  .section-header { margin-bottom:40px; }
  .testimonials-grid { grid-template-columns:1fr; }
  .steps-grid { grid-template-columns:1fr; }
  .solution-grid { grid-template-columns:1fr; }
  .main-nav { display:none; }
  .mobile-menu-btn { display:flex; }
  .nav-links {
    display:none; position:fixed; inset:0; top:0;
    background:rgba(10,14,26,.98); backdrop-filter:blur(16px);
    flex-direction:column; align-items:center; justify-content:center;
    gap:20px; z-index:999; padding:40px;
    overflow-y:auto;
  }
  .nav-links.active { display:flex; }
  .nav-links a { font-size:1.2rem; }
  .hero { padding:50px 0 40px; }
  .hero-title { font-size:clamp(1.7rem,6vw,2.6rem); }
  .hero-subtitle { font-size:1rem; }
  .pricing-card { padding:24px; }
  .showcase-item { margin-bottom:56px; gap:28px; }
  .screen-mockup { transform:none; }
  .screen-mockup:hover { transform:translateY(-4px); }
  /* Navbar compact */
  .navbar-inner { padding-inline:16px; }
  .navbar-actions { gap:6px; }
}
@media (max-width:480px) {
  .section { padding:48px 0; }
  .section-sm { padding:32px 0; }
  .section-header { margin-bottom:28px; }
  .section-title { font-size:clamp(1.5rem,7vw,2rem); }
  .section-sub { font-size:.95rem; }
  .container { padding:0 16px; }
  .compare-grid { grid-template-columns:1fr; }
  .hero-stats { justify-content:center; }
  .hero-stats .stat-item { font-size:.82rem; padding:8px 12px; }
  .cta-buttons { flex-direction:column; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand-col { grid-column:auto; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .pricing-price .amount { font-size:2.5rem; }
  .pricing-card { padding:20px; }
  /* Countdown smaller on mobile */
  .countdown-inner { gap:8px; flex-wrap:wrap; justify-content:center; }
  .cd-unit { min-width:40px; padding:3px 8px; }
  .cd-num { font-size:1rem; }
  .countdown-label { font-size:.78rem; text-align:center; }
  /* Nav CTA hidden on very small - in mobile drawer */
  .nav-cta-btn { display:none; }
  /* Hero download buttons stack */
  .dl-buttons-row { flex-direction:column; }
  .dl-btn { min-width:auto; width:100%; padding:12px 14px; }
  .dl-platform { font-size:.85rem; }
  /* Testimonials compact */
  .testimonial-card { padding:20px; }
  /* Step cards */
  .step-card { padding:28px 18px; }
  /* Solution cards */
  .solution-card { padding:20px; }
  /* Card compact */
  .card { padding:20px; }
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR — REDESIGNED LOGO + NEW ELEMENTS
   ══════════════════════════════════════════════════════════════ */

/* Logo mark (SVG icon in gradient box) */
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  display: grid; place-items: center; flex-shrink: 0;
  color: #fff;
  box-shadow: 0 2px 12px rgba(16,185,129,.3);
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.logo-name {
  font-size: 1rem; font-weight: 900; color: var(--text-white);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .58rem; color: var(--text-muted);
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}

/* Highlighted "Download" nav link */
.nav-link-highlight {
  color: var(--primary) !important;
  background: rgba(16,185,129,.08) !important;
  border: 1px solid rgba(16,185,129,.2) !important;
  border-radius: 8px;
}
.nav-link-highlight:hover {
  background: rgba(16,185,129,.15) !important;
  border-color: var(--primary) !important;
}

/* Mobile download row inside nav drawer */
.mobile-dl-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-top: 8px; width: 100%;
}
.mobile-dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px;
  font-size: .88rem; font-weight: 700;
  transition: all .2s ease;
}
.mobile-dl-android {
  background: rgba(16,185,129,.12); border: 1.5px solid rgba(16,185,129,.3);
  color: var(--primary);
}
.mobile-dl-android:hover { background: rgba(16,185,129,.22); }
.mobile-dl-ios {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.12);
  color: var(--text-muted);
}
.mobile-dl-ios:hover { background: rgba(255,255,255,.09); }

/* Countdown fire emoji */
.countdown-fire { font-size: 1rem; animation: flicker 1.5s ease-in-out infinite alternate; }
@keyframes flicker { from { opacity:.8; transform:scale(1); } to { opacity:1; transform:scale(1.15); } }

/* ══════════════════════════════════════════════════════════════
   HERO DOWNLOAD SECTION
   ══════════════════════════════════════════════════════════════ */

.hero-download {
  margin-top: 32px;
  padding: 24px;
  background: rgba(16,185,129,.04);
  border: 1px solid rgba(16,185,129,.15);
  border-radius: 20px;
}
.dl-label-top {
  font-size: .88rem; font-weight: 700; color: var(--primary);
  margin-bottom: 14px !important;
}
.dl-buttons-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* App-store-style download button */
.dl-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 18px; border-radius: 14px;
  text-decoration: none; transition: all .25s ease;
  position: relative; min-width: 165px;
}
.dl-android {
  background: rgba(16,185,129,.1);
  border: 1.5px solid rgba(16,185,129,.3);
  color: var(--primary);
  box-shadow: 0 2px 16px rgba(16,185,129,.1);
}
.dl-android:hover {
  background: rgba(16,185,129,.18);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16,185,129,.2);
}
.dl-ios {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--text-muted);
}
.dl-ios:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.dl-store-icon { width: 28px; height: 28px; flex-shrink: 0; }
.dl-text { display: flex; flex-direction: column; line-height: 1.25; }
.dl-sub  { font-size: .7rem; opacity: .7; }
.dl-platform { font-size: .95rem; font-weight: 800; }
.dl-badge-free {
  position: absolute; top: -8px;
  font-size: .62rem; font-weight: 800;
  padding: 2px 8px; border-radius: 999px;
  background: var(--primary); color: #0a0e1a;
  letter-spacing: .04em;
}
[dir="rtl"] .dl-badge-free { left: -4px; right: auto; }
[dir="ltr"] .dl-badge-free { right: -4px; left: auto; }
.dl-badge-soon {
  position: absolute; top: -8px;
  font-size: .62rem; font-weight: 800;
  padding: 2px 8px; border-radius: 999px;
  background: rgba(245,158,11,.2); color: var(--gold);
  border: 1px solid rgba(245,158,11,.3);
  letter-spacing: .04em;
}
[dir="rtl"] .dl-badge-soon { left: -4px; right: auto; }
[dir="ltr"] .dl-badge-soon { right: -4px; left: auto; }
.dl-note {
  font-size: .75rem !important; color: var(--text-muted) !important;
  margin-top: 12px !important;
  line-height: 1.6 !important;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — 4-COLUMN GRID + DOWNLOAD COLUMN
   ══════════════════════════════════════════════════════════════ */

footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--glass-border);
  background: rgba(10,14,26,.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-col {}
.footer-brand-name {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: .88rem !important; color: var(--text-muted) !important;
  line-height: 1.7 !important; margin-bottom: 0 !important;
}
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 700; margin-top: 14px;
  font-size: .88rem; transition: opacity .2s;
}
.footer-wa:hover { opacity: .8; }

.footer-col h4 {
  font-size: .8rem; font-weight: 800; color: var(--text-white);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem; color: var(--text-muted);
  transition: color .2s; display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--primary); }

/* Footer download column */
.footer-dl-sub {
  font-size: .78rem !important; color: var(--text-muted) !important;
  margin-bottom: 14px !important; margin-top: -8px !important;
}
.footer-dl-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 12px;
  margin-bottom: 10px; transition: all .25s ease;
  text-decoration: none;
}
.footer-dl-btn div { display: flex; flex-direction: column; line-height: 1.25; }
.footer-dl-btn div span { font-size: .7rem; color: var(--text-muted); }
.footer-dl-btn div strong { font-size: .9rem; color: var(--text-white); font-weight: 800; }
.footer-dl-android {
  background: rgba(16,185,129,.08);
  border: 1.5px solid rgba(16,185,129,.25);
  color: var(--primary);
}
.footer-dl-android:hover { background: rgba(16,185,129,.16); transform: translateY(-1px); }
.footer-dl-ios {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--text-muted);
}
.footer-dl-ios:hover { background: rgba(255,255,255,.08); }
.footer-ios-soon {
  font-size: .7rem; font-weight: 800;
  color: var(--gold); background: rgba(245,158,11,.12);
  padding: 1px 7px; border-radius: 999px;
  margin-inline-start: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem !important; color: var(--text-muted) !important; }
.footer-bottom-links {
  display: flex; align-items: center; gap: 12px;
}
.footer-bottom-links a {
  font-size: .82rem; color: var(--text-muted); transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--primary); }
.footer-bottom-links span { color: var(--glass-border); }

/* ── Footer responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Hero download responsive ── */
@media (max-width: 480px) {
  .dl-btn { min-width: 140px; padding: 12px 14px; }
  .dl-platform { font-size: .85rem; }
}

/* ══════════════════════════════════════════════════════════════
   LTR OVERRIDES
   ══════════════════════════════════════════════════════════════ */
[dir="ltr"] .hero-grid { direction:ltr; }
[dir="ltr"] .hero-subtitle { direction:ltr; }
[dir="ltr"] .section-header { direction:ltr; }
[dir="ltr"] .section-header.center { direction:ltr; }

/* Accessibility */
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms!important; transition-duration:.01ms!important; }
}

/* ══════════════════════════════════════════════════════════════
   LIGHT MODE — hardcoded dark-rgba overrides
   ══════════════════════════════════════════════════════════════ */

/* Navbar */
.navbar { background: rgba(255,255,255,.88); }
.navbar.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 4px 24px rgba(0,0,0,.07); }

/* Mobile nav overlay */
.nav-links { background: rgba(255,255,255,.98) !important; }
.nav-links a { color: #0f172a !important; }
.mobile-menu-btn span { background: #0f172a; }

/* Glass card (hardcoded, not CSS var) */
.glass { background: rgba(255,255,255,.85); border-color: rgba(0,0,0,.08); }

/* Section alternating bands — remove the dark middle stop */
#problem  { background: linear-gradient(180deg, #f8fafc, rgba(241,245,249,.9), #f8fafc); }
#features { background: linear-gradient(180deg, #f8fafc, rgba(241,245,249,.9), #f8fafc); }
#testimonials { background: linear-gradient(180deg, #f8fafc, rgba(241,245,249,.9), #f8fafc); }

/* Dashboard mockup calc rows */
.calc-row { background: rgba(0,0,0,.03); }

/* Screen mockup shadow (was heavy dark shadow) */
.screen-mockup { box-shadow: 0 20px 60px rgba(0,0,0,.1), 0 0 40px rgba(99,102,241,.06); }

/* iOS/unavailable download buttons (dark bg → light bg) */
.dl-ios {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.1);
  color: #475569;
}
.dl-ios:hover { background: rgba(0,0,0,.07); border-color: rgba(0,0,0,.18); }
.mobile-dl-ios {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.12);
  color: #475569;
}
.mobile-dl-ios:hover { background: rgba(0,0,0,.08); }

/* Footer iOS */
.footer-dl-ios {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.1);
  color: #64748b;
}
.footer-dl-ios:hover { background: rgba(0,0,0,.07); }

/* Footer background */
footer { background: #f1f5f9 !important; }

/* Testimonials card hover */
.testimonial-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.08); }

/* Scrollbar */
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Orb opacity — keep subtle on light bg */
.glow-orb { opacity: .10; }

/* ══════════════════════════════════════════════════════════════
   FULL RESPONSIVE FIX — AR (RTL) + FR (LTR)
   ══════════════════════════════════════════════════════════════ */

/* FR: French nav links are wider — activate mobile menu at 900px */
@media (max-width: 900px) {
  [dir="ltr"] .main-nav { display: none; }
  [dir="ltr"] .mobile-menu-btn { display: flex; }
  /* Full-screen overlay for nav-links (only active when .active) */
  [dir="ltr"] .nav-links {
    display: none;
    position: fixed; inset: 0; top: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 20px; z-index: 999; padding: 40px;
    overflow-y: auto;
  }
  [dir="ltr"] .nav-links.active { display: flex; }
  [dir="ltr"] .nav-links a { color: #0f172a; font-size: 1.2rem; }
}

/* FR: hero stats flow left-to-right */
[dir="ltr"] .hero-stats { justify-content: flex-start; }
@media (max-width: 480px) {
  [dir="ltr"] .hero-stats { justify-content: center; }
}

/* FR: explicit left-align for key text blocks */
[dir="ltr"] .dl-label-top { text-align: left; }
[dir="ltr"] .dl-note      { text-align: left; }

/* Both: hero badge can wrap for long text */
.hero-badge { flex-wrap: wrap; }

/* FR: countdown units wider for "heures", "jours" */
[dir="ltr"] .cd-unit { min-width: 56px; }

/* Both: nav-cta-btn wraps text instead of clipping */
.nav-cta-btn { white-space: normal; text-align: center; }

/* ── Fix: hero-grid LTR had higher specificity than 1024px rule ── */
@media (max-width: 1024px) {
  [dir="ltr"] .hero-grid { grid-template-columns: 1fr; }
}

/* ── Burger icon → X animation when nav is open ─────────────── */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
