/* ============================================================
   ARBS CHAT — شات العرب  |  Shared Stylesheet
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #06080F;
  --bg-2:        #0C1220;
  --bg-card:     #0F1829;
  --bg-surface:  #151F35;
  --purple:      #7C3AED;
  --purple-l:    #A78BFA;
  --purple-d:    #5B21B6;
  --cyan:        #0891B2;
  --cyan-l:      #22D3EE;
  --green:       #10B981;
  --orange:      #F59E0B;
  --pink:        #EC4899;
  --blue:        #3B82F6;
  --red:         #EF4444;
  --text:        #F1F5FF;
  --text-2:      #94A3B8;
  --text-3:      #475569;
  --border:      rgba(255,255,255,0.07);
  --border-m:    rgba(255,255,255,0.13);
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-f:   9999px;
  --ease:  cubic-bezier(0.4,0,0.2,1);
  --t:     0.25s cubic-bezier(0.4,0,0.2,1);
  --t-s:   0.4s  cubic-bezier(0.4,0,0.2,1);
  --sh:    0 4px 16px rgba(0,0,0,0.45);
  --sh-lg: 0 12px 40px rgba(0,0,0,0.55);
  --sh-p:  0 8px 30px rgba(124,58,237,0.28);
  --sh-c:  0 8px 30px rgba(8,145,178,0.25);
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.ar { font-family: 'Tajawal', 'Arial', sans-serif; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ── Global ambient glow ────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 15%, rgba(124,58,237,.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 45% at 85% 85%, rgba(8,145,178,.07)  0%, transparent 65%);
}

/* ── Section labels ─────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--cyan-l); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 22px; height: 2px;
  background: var(--cyan-l); border-radius: 2px; display: inline-block;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900; line-height: 1.12; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-2); max-width: 540px; line-height: 1.75;
}
.text-center .section-subtitle { margin: 0 auto; }
.grad { background: linear-gradient(135deg,var(--purple-l),var(--cyan-l)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(6,8,15,.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.navbar.scrolled { padding: 10px 0; background: rgba(6,8,15,.96); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #fff; box-shadow: var(--sh-p);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text .en { font-size: .95rem; font-weight: 800; }
.nav-logo-text .ar { font-size: .8rem;  font-weight: 500; color: var(--text-2); font-family: 'Tajawal', sans-serif; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 15px; border-radius: var(--r-f);
  font-size: .88rem; font-weight: 500; color: var(--text-2);
  transition: var(--t);
}
.nav-links a:hover { color: var(--text); background: var(--bg-surface); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--r-f);
  background: linear-gradient(135deg,var(--purple),var(--cyan));
  color: #fff !important; font-size: .88rem; font-weight: 700;
  box-shadow: var(--sh-p); transition: var(--t);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(124,58,237,.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border-radius: var(--r-sm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: var(--t); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(6,8,15,.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.3rem; font-weight: 700; color: var(--text-2);
  padding: 10px 28px; border-radius: var(--r-f); transition: var(--t);
}
.mobile-nav a:hover { color: var(--text); background: var(--bg-surface); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 1.4rem; color: var(--text-2); cursor: pointer;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); transition: var(--t);
}
.mobile-nav-close:hover { background: var(--bg-surface); color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; padding: 80px 0 100px; overflow: hidden;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--r-f); margin-bottom: 22px;
  background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.25);
  font-size: .78rem; font-weight: 700; color: var(--purple-l); width: fit-content;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 6px;
}
.hero-title-ar {
  font-family: 'Tajawal', sans-serif; direction: rtl;
  font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 700;
  color: var(--text-2); margin-bottom: 22px;
}
.hero-description {
  font-size: 1.02rem; color: var(--text-2); max-width: 460px;
  line-height: 1.75; margin-bottom: 36px;
}

/* ── Store Buttons ──────────────────────────────────────────── */
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 44px; }

.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 22px; border-radius: var(--r-lg);
  border: 1px solid var(--border-m);
  background: rgba(255,255,255,.04); color: var(--text);
  font-size: .85rem; transition: var(--t); position: relative;
  cursor: pointer;
}
.btn-store.active {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}
.btn-store.active:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: rgba(255,255,255,.26); }
.btn-store.inactive { opacity: .55; cursor: default; border-style: dashed; }

.btn-store-icon  { font-size: 1.85rem; line-height: 1; }
.btn-store-icon.gp { color: #4fc3f7; }
.btn-store-icon.ios { color: var(--text-2); }
.btn-store-sub   { font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); display: block; margin-bottom: 2px; }
.btn-store-name  { font-size: .98rem; font-weight: 800; display: block; line-height: 1; }

.badge-soon {
  position: absolute; top: -9px; right: -9px;
  background: linear-gradient(135deg,var(--orange),var(--red));
  color: #fff; font-size: .58rem; font-weight: 800;
  padding: 3px 9px; border-radius: var(--r-f);
  text-transform: uppercase; letter-spacing: .06em;
  box-shadow: 0 3px 10px rgba(239,68,68,.4);
}

/* ── Hero stats ─────────────────────────────────────────────── */
.hero-stats { display: flex; gap: 36px; }
.hero-stat-value { font-size: 1.45rem; font-weight: 800; display: block; background: linear-gradient(135deg,var(--text),var(--text-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-label { font-size: .7rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .09em; }

/* ── Phone Mockup ───────────────────────────────────────────── */
.phone-wrapper { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-glow {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle,rgba(124,58,237,.22) 0%,transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.phone {
  position: relative; width: 268px; height: 562px;
  background: linear-gradient(170deg,#1c2240,#0d1220);
  border-radius: 46px;
  border: 1.5px solid rgba(255,255,255,.12);
  box-shadow:
    0 50px 100px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
  animation: floatPhone 5s ease-in-out infinite;
}
@keyframes floatPhone {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%      { transform: translateY(-14px) rotate(-1deg); }
}
.phone-notch {
  width: 90px; height: 26px;
  background: #0d1220; margin: 0 auto;
  border-bottom-left-radius: 14px; border-bottom-right-radius: 14px;
  position: relative; z-index: 2;
}
.phone-screen { height: calc(100% - 40px); display: flex; flex-direction: column; overflow: hidden; }

/* App bar inside phone */
.chat-bar {
  padding: 10px 12px;
  background: rgba(124,58,237,.18); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,.22);
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.chat-bar-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,var(--purple),var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; color: #fff;
  font-family: 'Tajawal', sans-serif;
}
.chat-bar-info { flex: 1; min-width: 0; }
.chat-bar-name   { font-size: .7rem; font-weight: 700; color: var(--text); }
.chat-bar-status { font-size: .58rem; color: var(--green); }
.chat-bar-acts   { display: flex; gap: 10px; }
.chat-bar-acts i { font-size: .7rem; color: var(--purple-l); }

/* Messages */
.chat-msgs { flex: 1; padding: 10px 9px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.bubble {
  max-width: 78%; padding: 7px 10px; border-radius: 13px;
  font-size: .62rem; line-height: 1.45;
  font-family: 'Tajawal', sans-serif; direction: rtl;
  opacity: 0; animation: popIn .35s var(--ease) forwards;
}
.bubble.recv { background: rgba(255,255,255,.08); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.sent { background: linear-gradient(135deg,var(--purple),var(--purple-d)); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble:nth-child(1) { animation-delay: .6s; }
.bubble:nth-child(2) { animation-delay: 1.2s; }
.bubble:nth-child(3) { animation-delay: 1.8s; }
.bubble:nth-child(4) { animation-delay: 2.4s; }
.bubble:nth-child(5) { animation-delay: 3.0s; }
@keyframes popIn { from { opacity:0; transform: translateY(7px) scale(.94); } to { opacity:1; transform: none; } }

.typing-indicator {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 10px; align-self: flex-start;
  background: rgba(255,255,255,.08); border-radius: 12px; border-bottom-left-radius: 4px;
  opacity: 0; animation: popIn .3s var(--ease) 3.6s forwards;
}
.typing-indicator span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-3);
  animation: bounce 1.2s ease infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: .2s; }
.typing-indicator span:nth-child(3) { animation-delay: .4s; }
@keyframes bounce { 0%,60%,100% { transform:none; opacity:.4; } 30% { transform:translateY(-4px); opacity:1; } }

.chat-input-row {
  padding: 8px; border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.chat-input-field { flex:1; height: 27px; background: rgba(255,255,255,.05); border-radius: 14px; border: 1px solid rgba(255,255,255,.08); }
.chat-send { width: 27px; height: 27px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,var(--purple),var(--cyan)); }
.chat-send i { font-size: .58rem; color: #fff; }
.phone-bar { width: 90px; height: 4px; background: rgba(255,255,255,.18); border-radius: 2px; margin: 6px auto; }

/* ══════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════ */
.features-header { text-align: center; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.feat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px; transition: var(--t);
  position: relative; overflow: hidden;
}
.feat-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; transition: var(--t);
  background: radial-gradient(circle at 50% 0%,rgba(124,58,237,.1),transparent 60%);
}
.feat-card:hover { border-color: var(--border-m); transform: translateY(-5px); box-shadow: var(--sh-lg); }
.feat-card:hover::after { opacity: 1; }
.feat-card:hover .feat-icon { transform: scale(1.1) rotate(-3deg); }

.feat-icon {
  width: 50px; height: 50px; border-radius: var(--r); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; transition: var(--t);
}
.fi-p  { background: rgba(124,58,237,.14); color: var(--purple-l); border: 1px solid rgba(124,58,237,.22); }
.fi-c  { background: rgba(8,145,178,.14);  color: var(--cyan-l);   border: 1px solid rgba(8,145,178,.22); }
.fi-g  { background: rgba(16,185,129,.14); color: #34d399;          border: 1px solid rgba(16,185,129,.22); }
.fi-o  { background: rgba(245,158,11,.14); color: #fbbf24;          border: 1px solid rgba(245,158,11,.22); }
.fi-pk { background: rgba(236,72,153,.14); color: #f472b6;          border: 1px solid rgba(236,72,153,.22); }
.fi-b  { background: rgba(59,130,246,.14); color: #60a5fa;          border: 1px solid rgba(59,130,246,.22); }

.feat-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feat-desc  { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS  (steps)
   ══════════════════════════════════════════════════════════════ */
.steps-wrap { display: flex; align-items: center; max-width: 880px; margin: 0 auto; }
.step-card {
  flex: 1; text-align: center; padding: 28px 20px;
}
.step-num { font-size: .65rem; font-weight: 800; letter-spacing: .12em; color: var(--text-3); text-transform: uppercase; margin-bottom: 14px; }
.step-icon {
  width: 62px; height: 62px; border-radius: var(--r-lg); margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; color: var(--purple-l);
  background: linear-gradient(135deg,rgba(124,58,237,.14),rgba(8,145,178,.14));
  border: 1px solid var(--border-m);
  transition: var(--t);
}
.step-card:hover .step-icon { transform: scale(1.08); background: linear-gradient(135deg,rgba(124,58,237,.24),rgba(8,145,178,.24)); }
.step-title { font-size: .95rem; font-weight: 700; margin-bottom: 7px; }
.step-desc  { font-size: .85rem; color: var(--text-2); line-height: 1.6; }

.step-line {
  width: 80px; height: 1px; flex-shrink: 0; position: relative;
  background: linear-gradient(90deg,var(--purple),var(--cyan)); opacity: .35;
}
.step-line::after {
  content: ''; position: absolute; right: -1px; top: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan-l); opacity: .7;
}

/* ══════════════════════════════════════════════════════════════
   DOWNLOAD CTA
   ══════════════════════════════════════════════════════════════ */
.dl-inner {
  background: linear-gradient(135deg,rgba(124,58,237,.1),rgba(8,145,178,.1));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl); padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.dl-inner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 50% 0%,rgba(124,58,237,.1),transparent 70%);
}
.dl-title { font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 900; margin-bottom: 10px; }
.dl-sub-ar {
  font-family: 'Tajawal',sans-serif; direction: rtl;
  font-size: 1rem; color: var(--text-3); margin-bottom: 8px;
}
.dl-subtitle { font-size: 1rem; color: var(--text-2); max-width: 480px; margin: 0 auto 36px; }
.dl-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg,var(--purple),var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; }
.footer-logo-en { font-size: .9rem; font-weight: 800; display: block; }
.footer-logo-ar { font-size: .75rem; color: var(--text-3); display: block; font-family: 'Tajawal',sans-serif; }
.footer-tagline { font-size: .85rem; color: var(--text-2); line-height: 1.65; max-width: 250px; margin-bottom: 16px; }
.footer-email a { font-size: .85rem; color: var(--purple-l); transition: var(--t); }
.footer-email a:hover { color: var(--text); }

.footer-col-title { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .88rem; color: var(--text-2); transition: var(--t); }
.footer-links a:hover { color: var(--text); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: .78rem; color: var(--text-3); }
.footer-18 {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: var(--r-f);
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2);
  font-size: .72rem; font-weight: 700; color: #f87171;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ══════════════════════════════════════════════════════════════
   POLICY PAGES
   ══════════════════════════════════════════════════════════════ */
.policy-hero {
  padding: 60px 0 44px; text-align: center;
  border-bottom: 1px solid var(--border); margin-bottom: 56px;
  position: relative; z-index: 1;
}
.policy-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: var(--r-f); margin-bottom: 14px;
  background: rgba(8,145,178,.1); border: 1px solid rgba(8,145,178,.2);
  font-size: .72rem; font-weight: 700; color: var(--cyan-l);
  text-transform: uppercase; letter-spacing: .09em;
}
.policy-page-title { font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 900; margin-bottom: 8px; }
.policy-effective   { font-size: .85rem; color: var(--text-3); margin-top: 10px; }

.lang-toggle {
  display: inline-flex; border: 1px solid var(--border-m);
  border-radius: var(--r-f); overflow: hidden; margin-top: 22px;
}
.lang-btn {
  padding: 8px 22px; font-size: .84rem; font-weight: 700;
  cursor: pointer; transition: var(--t);
  background: transparent; border: none; color: var(--text-3);
  font-family: 'Inter', sans-serif;
}
.lang-btn.ar-btn { font-family: 'Tajawal', sans-serif; font-size: .9rem; }
.lang-btn.active  { background: var(--purple); color: #fff; }

.policy-content { max-width: 780px; margin: 0 auto; padding-bottom: 96px; position: relative; z-index: 1; }

.policy-sec {
  margin-bottom: 20px; padding: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); transition: border-color var(--t);
}
.policy-sec:hover { border-color: var(--border-m); }

.policy-sec h2 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; color: var(--text);
}
.sec-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg,var(--purple),var(--cyan));
  font-size: .7rem; font-weight: 900; color: #fff;
}
.policy-sec h3 { font-size: .88rem; font-weight: 700; color: var(--text-2); margin: 14px 0 7px; }
.policy-sec p  { font-size: .88rem; color: var(--text-2); line-height: 1.78; margin-bottom: 10px; }
.policy-sec ul, .policy-sec ol { display: flex; flex-direction: column; gap: 7px; margin-bottom: 10px; }
.policy-sec li { font-size: .88rem; color: var(--text-2); line-height: 1.65; padding-left: 18px; position: relative; }
.policy-sec ul li::before { content: '▸'; position: absolute; left: 0; top: 2px; color: var(--purple-l); font-size: .68rem; }

.policy-table { width: 100%; border-collapse: collapse; font-size: .84rem; margin-top: 14px; }
.policy-table th { text-align: left; padding: 9px 14px; background: rgba(124,58,237,.1); color: var(--purple-l); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid rgba(124,58,237,.2); }
.policy-table td { padding: 9px 14px; color: var(--text-2); border-bottom: 1px solid var(--border); }
.policy-table tr:last-child td { border-bottom: none; }
.policy-table a { color: var(--cyan-l); }
.policy-table a:hover { text-decoration: underline; }

.policy-contact {
  text-align: center; padding: 36px;
  background: linear-gradient(135deg,rgba(124,58,237,.08),rgba(8,145,178,.08));
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-xl);
  margin-top: 40px;
}
.policy-contact h2 { font-size: 1.25rem; margin-bottom: 10px; border: none; padding: 0; }
.policy-contact p  { font-size: .9rem; color: var(--text-2); margin-bottom: 12px; }
.policy-contact a  { color: var(--purple-l); font-weight: 700; font-size: .95rem; }
.policy-contact a:hover { color: var(--text); }

/* Arabic policy content */
.content-ar { direction: rtl; font-family: 'Tajawal', sans-serif; }
.content-ar .policy-sec h2 { flex-direction: row-reverse; }
.content-ar .policy-sec li { padding-left: 0; padding-right: 18px; }
.content-ar .policy-sec ul li::before { left: auto; right: 0; }
.content-ar .policy-table th, .content-ar .policy-table td { text-align: right; }
.content-ar .policy-contact p { font-family: 'Tajawal', sans-serif; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin: 0 auto 36px; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .phone-wrapper { order: -1; margin-bottom: 12px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .steps-wrap    { flex-direction: column; }
  .step-line     { width: 1px; height: 40px; background: linear-gradient(180deg,var(--purple),var(--cyan)); }
  .step-line::after { right: -3px; top: auto; bottom: -1px; }
  .dl-inner      { padding: 48px 20px; }
  .section       { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 44px 0 56px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-store    { justify-content: center; }
  .policy-sec   { padding: 20px; }
}
