/* ═══════════════════════════════════════════════════════════
   NOOR · Website Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── SCROLL PROGRESS BAR ────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  z-index: 300;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

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

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Colors */
  --navy:          #0D1B2A;
  --navy-mid:      #101f30;
  --navy-deep:     #091420;
  --navy-card:     #0e2035;
  --gold:          #C9A84C;
  --gold-light:    #E8C96A;
  --gold-dim:      #A8841F;
  --gold-glow:     rgba(201, 168, 76, 0.15);
  --off-white:     #F0EDE6;
  --muted:         #7A8FA3;
  --divider:       rgba(26, 48, 72, 0.9);

  /* Gradients */
  --grad-gold:  linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
  --grad-hero:  linear-gradient(150deg, #0D1B2A 0%, #0F2438 55%, #091420 100%);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-arabic:  'Amiri', 'Noto Naskh Arabic', serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale */
  --s4:   4px;
  --s8:   8px;
  --s12:  12px;
  --s16:  16px;
  --s20:  20px;
  --s24:  24px;
  --s32:  32px;
  --s40:  40px;
  --s48:  48px;
  --s64:  64px;
  --s80:  80px;
  --s96:  96px;

  /* Border radii */
  --r-sm:    8px;
  --r-md:    16px;
  --r-lg:    24px;
  --r-xl:    36px;
  --r-phone: 44px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-std:  0.25s ease;
  --t-slow: 0.4s ease;

  /* Shadows */
  --shadow-gold:  0 8px 40px rgba(201, 168, 76, 0.22);
  --shadow-card:  0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-phone: 0 32px 80px rgba(0, 0, 0, 0.65), 0 0 0 1.5px rgba(201, 168, 76, 0.18);
}

/* ─── BASE ───────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--s20);
}

section { padding: var(--s96) 0; }
.text-center { text-align: center; }

/* ─── TYPOGRAPHY TOKENS ──────────────────────────────────── */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s12);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s16);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

.section-header { margin-bottom: var(--s64); }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -300% center; }
  100% { background-position:  300% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible        { opacity: 1; transform: translateY(0); }
.fade-up.delay-1        { transition-delay: 0.1s; }
.fade-up.delay-2        { transition-delay: 0.2s; }
.fade-up.delay-3        { transition-delay: 0.3s; }
.fade-up.delay-4        { transition-delay: 0.4s; }
.fade-up.delay-5        { transition-delay: 0.5s; }
.fade-up.delay-6        { transition-delay: 0.6s; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--s12);
  padding: 14px 28px;
  background: var(--grad-gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(201, 168, 76, 0.38);
}
.btn-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.btn-store {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  padding: 14px 24px;
  background: transparent;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  transition: border-color var(--t-std), background var(--t-std), transform var(--t-std);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
  transform: translateY(-2px);
}

/* ─── PHONE FRAME ────────────────────────────────────────── */
.phone {
  position: relative;
  background: #07111c;
  border-radius: var(--r-phone);
  border: 1.5px solid rgba(201, 168, 76, 0.22);
  box-shadow: var(--shadow-phone);
  overflow: hidden;
  flex-shrink: 0;
}

.phone-lg {
  width: 270px;
  aspect-ratio: 390 / 844;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 0 1.5px rgba(201,168,76,0.22),
    0 0 80px rgba(201,168,76,0.1),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.phone-sm {
  width: 165px;
  aspect-ratio: 390 / 844;
}

/* Dynamic island */
.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 24px;
  background: #07111c;
  border-radius: 20px;
  z-index: 10;
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.phone-island::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: #0a1929;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(201, 168, 76, 0.18);
}

.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: calc(var(--r-phone) - 1.5px);
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--r-phone) - 1px);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0%,
    transparent 40%,
    transparent 60%,
    rgba(201,168,76,0.04) 100%
  );
  pointer-events: none;
  z-index: 20;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background: rgba(8, 17, 28, 0.82);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  animation: fade-in-down 0.5s ease both;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--s20);
  gap: var(--s16);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s8);
  flex-shrink: 0;
}
.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}
.nav-logo-arabic {
  font-family: var(--font-arabic);
  font-size: 24px;
  color: var(--gold-light);
  line-height: 1;
}
.nav-logo-sep {
  width: 1px;
  height: 14px;
  background: rgba(201, 168, 76, 0.2);
}
.nav-logo-latin {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s32);
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--off-white); }

/* Download button */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  padding: 8px 20px;
  background: var(--grad-gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  flex-shrink: 0;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.btn-download:hover { transform: scale(1.03); opacity: 0.9; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--t-std), opacity var(--t-std);
}

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(8, 18, 28, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--s16) var(--s16) var(--s20);
  flex-direction: column;
  gap: 2px;
  z-index: 199;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  display: block;
  padding: 14px var(--s12);
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-link:hover {
  background: rgba(201, 168, 76, 0.06);
  color: var(--off-white);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  margin-top: var(--s12);
  padding: 15px;
  background: var(--grad-gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  transition: opacity var(--t-fast);
}
.mobile-cta:hover { opacity: 0.9; }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  padding-top: 64px;
  overflow: hidden;
}

/* Geometric pattern background */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.8'%3E%3Cpolygon points='40,5 75,27.5 75,52.5 40,75 5,52.5 5,27.5'/%3E%3Cpolygon points='40,18 62,30.5 62,49.5 40,62 18,49.5 18,30.5'/%3E%3Cline x1='40' y1='5' x2='40' y2='18'/%3E%3Cline x1='75' y1='27.5' x2='62' y2='30.5'/%3E%3Cline x1='75' y1='52.5' x2='62' y2='49.5'/%3E%3Cline x1='40' y1='75' x2='40' y2='62'/%3E%3Cline x1='5' y1='52.5' x2='18' y2='49.5'/%3E%3Cline x1='5' y1='27.5' x2='18' y2='30.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* Ambient glow */
.hero-glow {
  position: absolute;
  top: 10%;
  right: 20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 130, 180, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Hero layout — mobile first: stacked */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s48);
  padding: var(--s64) 0;
  text-align: center;
}

/* ---- Hero text ---- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s16);
}
.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot-pulse 2.5s ease-in-out infinite;
}

.hero-arabic {
  display: block;
  font-family: var(--font-arabic);
  font-size: clamp(80px, 15vw, 150px);
  line-height: 1;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dim), var(--gold-light), var(--gold));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
  margin-bottom: var(--s8);
}

.hero-transliteration {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-bottom: var(--s20);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--off-white);
  letter-spacing: -0.025em;
  margin-bottom: var(--s16);
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.75;
  margin: 0 auto var(--s32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s12);
  margin-bottom: var(--s28, 28px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
.trust-item svg { stroke: var(--gold); opacity: 0.7; }
.trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(122, 143, 163, 0.4);
}

/* ---- Hero phone ---- */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease-out;
}

.hero-phone-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.11) 0%, transparent 65%);
  pointer-events: none;
}

.phone-lg { animation: float 8s ease-in-out infinite; }

/* Floating info badges */
.float-badge {
  position: absolute;
  background: rgba(8, 18, 30, 0.88);
  border: 1px solid rgba(201, 168, 76, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: var(--s8) var(--s12);
  font-size: 12px;
  font-weight: 600;
  color: var(--off-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,168,76,0.06);
  white-space: nowrap;
}

.float-1 {
  display: flex;
  align-items: center;
  gap: var(--s8);
  bottom: 22%;
  left: -72px;
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}
.float-1 svg { stroke: var(--gold); flex-shrink: 0; }

.float-2 {
  top: 18%;
  right: -55px;
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}
.float-arabic {
  font-family: var(--font-arabic);
  font-size: 17px;
  color: var(--gold-light);
}

/* ─── FEATURES ───────────────────────────────────────────── */
#features {
  background:
    radial-gradient(ellipse at top right, rgba(201,168,76,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(78,130,180,0.03) 0%, transparent 55%),
    var(--navy-mid);
  border-top:    1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s20);
}

.feature-card {
  background: rgba(12, 26, 44, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-std), border-color var(--t-std), box-shadow var(--t-std);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.12), inset 0 1px 0 rgba(201,168,76,0.07);
}

/* Screenshot banner */
.feature-shot {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.feature-shot::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(transparent, var(--navy-card));
  pointer-events: none;
}
.feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--t-slow);
}
.feature-card:hover .feature-shot img { transform: scale(1.05); }

.feature-body {
  padding: var(--s20) var(--s20) var(--s24);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--s12);
}

.feature-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: -0.01em;
  margin-bottom: var(--s8);
}

.feature-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── SCREENSHOTS ────────────────────────────────────────── */
#screenshots {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(100,160,220,0.03) 0%, transparent 50%),
    var(--navy);
  padding-bottom: var(--s48);
}

.screenshots-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.screenshots-wrap:active { cursor: grabbing; }
.screenshots-wrap::-webkit-scrollbar { display: none; }

.screenshots-track {
  display: flex;
  gap: var(--s24);
  padding: var(--s8) var(--s20) var(--s24);
  width: max-content;
}

.shot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s12);
  flex-shrink: 0;
}
.shot-item figcaption {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  margin-top: var(--s4);
  font-size: 12px;
  color: rgba(122, 143, 163, 0.4);
}
.scroll-hint svg { stroke: rgba(122, 143, 163, 0.4); }

/* ─── PRIVACY ────────────────────────────────────────────── */
#privacy {
  background: var(--navy-mid);
  border-top: 1px solid var(--divider);
}

.privacy-wrap {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.privacy-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  margin: 0 auto var(--s20);
  animation: pulse-ring 3s ease-in-out infinite;
}

.privacy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s16);
  margin-top: var(--s40);
  text-align: left;
}

.privacy-card {
  background: rgba(10, 22, 38, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--r-lg);
  padding: var(--s24) var(--s20);
  transition: border-color var(--t-std), transform var(--t-std), box-shadow var(--t-std);
}
.privacy-card:hover {
  border-color: rgba(201, 168, 76, 0.24);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(201,168,76,0.06);
  transform: translateY(-3px);
}
.privacy-card-icon { color: var(--gold); margin-bottom: var(--s12); }
.privacy-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: var(--s8);
}
.privacy-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── DOWNLOAD CTA ───────────────────────────────────────── */
#download {
  background: linear-gradient(160deg, #090f18 0%, #0f2236 55%, #090f18 100%);
  border-top:    1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  text-align: center;
}

.download-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.download-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.download-arabic {
  display: block;
  font-family: var(--font-arabic);
  font-size: 88px;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--s16);
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--s12);
}

.download-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--s40);
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s12);
  padding: 16px 32px;
  background: var(--off-white);
  color: #000;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.app-store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.45);
}

.store-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.65;
}
.store-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.download-note {
  margin-top: var(--s20);
  font-size: 13px;
  color: rgba(122, 143, 163, 0.5);
}

/* ─── DONATE ─────────────────────────────────────────────── */
#donate {
  background: var(--navy);
  border-top: 1px solid var(--divider);
  padding: var(--s64) 0;
}

.donate-wrap {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.donate-icon {
  display: block;
  font-size: 40px;
  margin-bottom: var(--s16);
}

.donate-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: var(--s12);
}

.donate-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--s32);
}

.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  padding: 12px 28px;
  background: transparent;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid rgba(201, 168, 76, 0.32);
  transition: border-color var(--t-std), background var(--t-std), transform var(--t-std);
}
.btn-donate:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
  transform: translateY(-2px);
}


.donate-note {
  font-size: 11px;
  color: rgba(122, 143, 163, 0.38);
  margin-top: var(--s12);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--divider);
  padding: var(--s48) 0 var(--s32);
}

.footer-inner { text-align: center; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  margin-bottom: var(--s8);
}
.footer-logo-arabic {
  font-family: var(--font-arabic);
  font-size: 28px;
  color: var(--gold-light);
}
.footer-logo-latin {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--s24);
}

.footer-divider {
  width: 56px;
  height: 1px;
  background: var(--divider);
  margin: 0 auto var(--s24);
}

.footer-links {
  display: flex;
  gap: var(--s24);
  justify-content: center;
  margin-bottom: var(--s24);
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold); }

.footer-heart { font-size: 13px; color: rgba(122, 143, 163, 0.5); margin-bottom: 4px; }
.footer-copy  { font-size: 12px; color: rgba(122, 143, 163, 0.3); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════ */

/* ─── Desktop: hero side by side ────────────────────────── */
@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: var(--s64);
    padding: var(--s80) 0;
  }

  .hero-text {
    flex: 1;
    min-width: 0;
  }

  .hero-desc      { margin-left: 0; }
  .hero-actions   { justify-content: flex-start; }
  .hero-trust     { justify-content: flex-start; }
  .hero-phone-wrap { flex-shrink: 0; }
}

/* ─── Tablet: 2-col features, hide nav links ────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: var(--s24); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }

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

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

  .float-1 { left: -40px; }
  .float-2 { right: -32px; }
}

/* ─── Mobile: single column everything ──────────────────── */
@media (max-width: 640px) {
  section { padding: var(--s64) 0; }

  .section-header { margin-bottom: var(--s40); }

  .btn-download { display: none; }
  .hamburger    { display: flex; }

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

  .hero-actions { flex-direction: column; align-items: center; }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: var(--s8);
  }
  .trust-dot { display: none; }

  .float-1, .float-2 { display: none; }

  .phone-lg { width: 210px; }
  .phone-sm { width: 145px; }

  .download-arabic { font-size: 64px; }
}

@media (max-width: 380px) {
  .phone-lg { width: 180px; }
  .phone-sm { width: 130px; }
}
