/* ═══════════════════════════════════════════
   MUATABAREA — LANDING PAGE CSS
   Premium · Responsive · Accessible
   ═══════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --primary:     #00ACC1;
  --primary-d:   #0097A7;
  --primary-l:   #E0F7FA;
  --secondary:   #7C3AED;
  --secondary-l: #EDE9FE;
  --accent:      #F59E0B;
  --bg:          #FFFFFF;
  --surface:     #F8FAFC;
  --surface-2:   #EFF6FF;
  --dark:        #0B1120;
  --dark-2:      #131C32;
  --text-1:      #111827;
  --text-2:      #374151;
  --text-3:      #6B7280;
  --border:      #E5E7EB;
  --border-l:    rgba(255,255,255,0.12);

  --nav-h:       72px;
  --r-sm:        8px;
  --r-md:        14px;
  --r-lg:        20px;
  --r-xl:        28px;
  --r-pill:      999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:   0 24px 60px rgba(0,0,0,.18);
  --glow:        0 0 60px rgba(0,172,193,.35);

  --grad-primary:   linear-gradient(135deg, #00ACC1 0%, #7C3AED 100%);
  --grad-hero:      linear-gradient(135deg, #00BCD4 0%, #7C3AED 50%, #6366F1 100%);
  --grad-dark:      linear-gradient(135deg, #0B1120 0%, #131C32 100%);
  --grad-checkout:  linear-gradient(135deg, #131C32 0%, #1E2A44 50%, #0B1120 100%);

  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { color: var(--text-1); background: var(--bg); overflow-x: hidden; line-height: 1.6; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

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

/* ─── Reveal Animations ─── */
.reveal-up, .reveal-left, .reveal-right {
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
body.js-animate .reveal-up:not(.revealed)    { opacity: 0; transform: translateY(28px); }
body.js-animate .reveal-left:not(.revealed)  { opacity: 0; transform: translateX(-28px); }
body.js-animate .reveal-right:not(.revealed) { opacity: 0; transform: translateX(28px); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
  opacity: 1 !important; transform: none !important;
}

/* ─── Typography helpers ─── */
.stag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-l);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.stag-light { color: var(--primary-l); background: rgba(0,172,193,.18); }
.stitle {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 14px;
}
.stitle-light { color: #ffffff; }
.sdesc {
  font-size: 17px;
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}
.sdesc-light { color: rgba(255,255,255,.75); text-align: left; }

.section-head { text-align: center; margin-bottom: 56px; }

.grad { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-light { background: linear-gradient(135deg, #67E8F9, #C4B5FD); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--r-pill);
  transition: all .25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,172,193,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,172,193,.55); }
.btn-ghost {
  color: var(--text-2);
  border: 2px solid var(--border);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-sm  { padding: 10px 20px; font-size: 13px; }
.btn-lg  { padding: 16px 32px; font-size: 15px; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
  height: var(--nav-h);
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,172,193,.4);
}
.logo-img {
  width: 40px; height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,172,193,.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-en { font-size: 16px; font-weight: 800; color: var(--text-1); }
.logo-ar { font-size: 12px; font-family: 'Cairo', sans-serif; color: var(--text-3); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-l); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--r-md);
}
.mobile-link:hover { background: var(--surface); color: var(--primary); }
.mobile-cta-btn { margin-top: 8px; text-align: center; justify-content: center; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: linear-gradient(160deg, #F0FDFF 0%, #EDE9FE 50%, #F8FAFC 100%);
  overflow: hidden;
}
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-orb 12s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0,172,193,.18); top:-100px; left:-150px; }
.orb-2 { width: 400px; height: 400px; background: rgba(124,58,237,.15); top:30%; right:-100px; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: rgba(99,102,241,.12); bottom:10%; left:30%; animation-delay: -8s; }

@keyframes float-orb {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(30px,-20px) scale(1.05); }
  66%  { transform: translate(-20px,30px) scale(.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-copy { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,172,193,.12);
  border: 1px solid rgba(0,172,193,.3);
  color: var(--primary-d);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,172,193,.5)} 50%{box-shadow:0 0 0 8px rgba(0,172,193,0)} }

.hero-h1 {
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.hero-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 20px;
}
.hero-desc { font-size: 17px; color: var(--text-2); line-height: 1.7; margin-bottom: 32px; }
.hero-desc strong { color: var(--primary-d); }
.hero-btns { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  color: var(--text-2);
  backdrop-filter: blur(8px);
}

/* ── Hero Phone Mockup ── */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.mockup-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: var(--grad-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

/* ── Phone Shell ── */
.phone-shell {
  width: 260px;
  background: #1C1C1E;
  border-radius: 40px;
  padding: 12px 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}
.phone-shell-dark { animation: none; }
.phone-notch {
  width: 80px; height: 22px;
  background: #1C1C1E;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
}

/* Hero screen content */
.hero-screen { font-size: 9.5px; }
.hs-bar {
  display: flex;
  align-items: center;
  padding: 28px 10px 8px;
  background: #fff;
  border-bottom: 1px solid #F3F4F6;
  gap: 4px;
}
.hs-logo {
  width: 22px; height: 22px;
  background: var(--grad-primary);
  border-radius: 7px;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-right: 4px;
}
.hs-title { font-weight: 700; color: var(--text-1); flex:1; font-size: 10px; }
.hs-icons { color: var(--text-3); font-size: 12px; display:flex; gap: 3px; }
.hs-badge-container { position: relative; display: inline-block; }
.hs-badge { position: absolute; top: -3px; right: -4px; background: #EF4444; color: #fff; border-radius: 50%; font-size: 7px; font-weight: 800; width: 9px; height: 9px; display: flex; align-items: center; justify-content: center; border: 1px solid #fff; }

.hs-banner {
  margin: 8px;
  background: var(--grad-hero);
  border-radius: 10px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.hs-banner-title { font-weight: 800; font-size: 10px; margin-bottom: 2px; }
.hs-banner-sub { font-size: 8px; opacity: .85; }
.hs-banner-logo {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 900; font-size: 14px;
}

.hs-section-row {
  display: flex;
  justify-content: space-between;
  padding: 0 10px 4px;
}
.hs-section-label { font-weight: 800; font-size: 10px; color: var(--text-1); }
.hs-section-link { font-size: 9px; color: var(--primary); font-weight: 700; }

.hs-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 8px;
  flex: 1;
  overflow: hidden;
}
.hs-prod {
  background: var(--surface);
  border-radius: 10px;
  padding: 8px 6px 6px;
  position: relative;
}
.hs-prod-img { font-size: 22px; text-align: center; margin-bottom: 3px; }
.hs-prod-name { font-size: 8px; font-weight: 700; color: var(--text-1); text-align: center; margin-bottom: 2px; }
.hs-prod-price { font-size: 8.5px; font-weight: 800; color: var(--primary); text-align: center; }
.hs-prod-add {
  position: absolute;
  top: 5px; right: 5px;
  width: 14px; height: 14px;
  background: var(--grad-primary);
  border-radius: 50%;
  color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.hs-nav {
  display: flex;
  background: #fff;
  border-top: 1px solid #F3F4F6;
  padding: 6px 0 10px;
}
.hs-nav-item {
  flex: 1;
  text-align: center;
  font-size: 7px;
  color: #9CA3AF;
  line-height: 1.4;
}
.hs-nav-item.active { color: var(--primary); }

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.float-chip span { font-size: 20px; }
.float-chip b { display: block; font-size: 12px; color: var(--text-1); line-height: 1.2; }
.float-chip small { font-size: 10px; color: var(--text-3); }
.chip-1 { top: 10%; left: -100px; animation: chip-bob 5s ease-in-out infinite; }
.chip-2 { bottom: 20%; right: -110px; animation: chip-bob 5s ease-in-out infinite .5s; }
.chip-3 { bottom: 5%; left: -90px; animation: chip-bob 5s ease-in-out infinite 1s; }
@keyframes chip-bob { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(0,0,0,.2);
  border-radius: 11px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(0,0,0,.3);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%{opacity:1;transform:translateY(0)}
  100%{opacity:0;transform:translateY(10px)}
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--bg);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 20px 48px; }
.stat-num {
  font-size: 40px;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl { font-size: 13px; font-weight: 600; color: var(--text-3); }
.stat-div { width: 1px; height: 48px; background: var(--border); }

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.how {
  padding: 100px 0;
  background: var(--surface);
}
.how-grid {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.how-card {
  flex: 1;
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  position: relative;
}
.how-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.how-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 16px;
}
.how-icon { font-size: 36px; margin-bottom: 16px; }
.how-card h3 { font-size: 17px; font-weight: 800; color: var(--text-1); margin-bottom: 10px; }
.how-card p { font-size: 14px; color: var(--text-3); line-height: 1.65; }
.how-card p strong { color: var(--text-2); }
.how-connector {
  font-size: 20px;
  color: var(--text-3);
  padding-top: 80px;
  flex-shrink: 0;
  opacity: .5;
}

/* ══════════════════════════════
   DELIVERY CATEGORIES
══════════════════════════════ */
.categories {
  padding: 100px 0;
  background: var(--bg);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  border-radius: var(--r-xl);
  padding: 40px 32px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.cat-personal {
  background: linear-gradient(135deg, #F0FDFF, #E0F7FA);
  border: 1px solid rgba(0,172,193,.2);
}
.cat-personal::before { background: linear-gradient(90deg, var(--primary), #00BCD4); }
.cat-mosque {
  background: linear-gradient(135deg, #EDE9FE, #F5F3FF);
  border: 1px solid rgba(124,58,237,.2);
}
.cat-mosque::before { background: linear-gradient(90deg, var(--secondary), #8B5CF6); }
.cat-charity {
  background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
  border: 1px solid rgba(245,158,11,.2);
}
.cat-charity::before { background: linear-gradient(90deg, #F59E0B, #F97316); }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-icon { font-size: 44px; margin-bottom: 20px; }
.cat-card h3 { font-size: 20px; font-weight: 800; color: var(--text-1); margin-bottom: 12px; }
.cat-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.cat-features { display: flex; flex-direction: column; gap: 6px; }
.cat-features span { font-size: 13px; font-weight: 600; color: var(--text-2); }

/* ══════════════════════════════
   PRODUCTS
══════════════════════════════ */
.products-sec {
  padding: 100px 0;
  background: var(--surface);
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform .3s, box-shadow .3s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.prod-emoji { font-size: 36px; flex-shrink: 0; }
.prod-info h4 { font-size: 15px; font-weight: 800; color: var(--text-1); margin-bottom: 6px; }
.prod-info p { font-size: 13px; color: var(--text-3); line-height: 1.6; margin-bottom: 10px; }
.prod-price { font-size: 14px; font-weight: 800; color: var(--primary); }
.prod-card-cta {
  background: linear-gradient(135deg, #EDE9FE, #F0FDFF);
  border: 1px solid rgba(124,58,237,.2);
}
.prod-card-cta .prod-info h4 { color: var(--secondary); }

/* ══════════════════════════════
   CHECKOUT SECTION
══════════════════════════════ */
.checkout-sec {
  padding: 100px 0;
  background: var(--grad-checkout);
  position: relative;
  overflow: hidden;
}
.checkout-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.checkout-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.checkout-copy { position: relative; z-index: 1; }

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.pm-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 14px 18px;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background .2s;
}
.pm-card:hover { background: rgba(255,255,255,.14); }
.pm-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}
.pm-card strong { display: block; font-size: 14px; color: #fff; }
.pm-card span { font-size: 12px; color: rgba(255,255,255,.6); }

.security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Checkout phone screen */
.checkout-phone { flex-shrink: 0; }
.phone-shell-dark { background: #000; }
.checkout-screen {
  background: #0F1621;
  font-size: 9px;
  color: #fff;
  height: 500px;
}
.cs-header {
  display: flex;
  align-items: center;
  padding: 28px 12px 10px;
  gap: 8px;
}
.cs-back { font-size: 16px; opacity: .6; }
.cs-title { font-weight: 800; font-size: 11px; flex: 1; text-align: center; }
.cs-lock { font-size: 12px; }

.cs-order-summary {
  background: rgba(255,255,255,.05);
  margin: 0 10px 10px;
  border-radius: 10px;
  overflow: hidden;
}
.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 8.5px;
}
.cs-item span { font-size: 14px; }
.cs-item-name { font-weight: 700; color: #fff; margin-bottom: 1px; }
.cs-item-dest { color: rgba(255,255,255,.5); }
.cs-item-price { margin-left: auto; font-weight: 800; color: var(--primary); white-space: nowrap; }
.cs-total-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  color: rgba(255,255,255,.5);
  font-size: 8px;
}
.cs-grand-total {
  font-weight: 800;
  font-size: 10px;
  color: #fff;
  padding: 8px 10px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.cs-methods {
  display: flex;
  gap: 6px;
  margin: 0 10px 10px;
}
.cs-method {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 7px 4px;
  text-align: center;
  font-size: 7.5px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}
.cs-method.active {
  background: rgba(0,172,193,.2);
  border-color: var(--primary);
  color: var(--primary);
}
.cs-stripe-badge {
  text-align: center;
  font-size: 8px;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.cs-pay-btn {
  margin: 0 10px;
  background: var(--grad-primary);
  border-radius: 10px;
  padding: 11px;
  text-align: center;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,172,193,.5);
}

/* ══════════════════════════════
   CUSTOM REQUEST
══════════════════════════════ */
.custom-sec {
  padding: 100px 0;
  background: var(--bg);
}
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cf-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cf-num {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,172,193,.4);
}
.cf-content h4 { font-size: 16px; font-weight: 800; color: var(--text-1); margin-bottom: 6px; }
.cf-content p { font-size: 13px; color: var(--text-3); line-height: 1.65; }
.cf-arrow { text-align: center; font-size: 22px; color: var(--border); margin: 8px 0; padding-left: 18px; }

.custom-phone-wrap { position: relative; display: flex; justify-content: center; }
.req-screen {
  background: var(--surface);
  font-size: 9px;
  color: var(--text-1);
  height: 530px;
}
.rs-header {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 28px 12px 10px;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.rs-title { font-weight: 800; font-size: 11px; }
.rs-form { padding: 10px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; flex:1; }
.rs-label { font-size: 8.5px; font-weight: 700; color: var(--text-3); margin-bottom: -3px; }
.rs-input {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 8px;
  font-size: 9px;
  color: var(--text-2);
  font-weight: 600;
}
.rs-date { display: flex; align-items: center; gap: 4px; }
.rs-note { font-size: 8px; color: var(--text-3); }
.rs-submit {
  background: var(--grad-primary);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  text-align: center;
  padding: 10px;
  margin-top: 4px;
}
.rs-confirm { text-align: center; font-size: 8px; color: var(--primary); font-weight: 600; }

.req-status-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.97);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 11px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.req-status-card span { font-size: 16px; }
.req-status-card b { display: block; font-size: 11px; }
.req-status-card small { font-size: 10px; color: var(--text-3); }
.req-pending { top: 10%; left: -80px; animation: chip-bob 6s ease-in-out infinite; }
.req-approved { bottom: 15%; right: -90px; animation: chip-bob 6s ease-in-out infinite .5s; }

/* ══════════════════════════════
   FEATURES
══════════════════════════════ */
.features-sec {
  padding: 100px 0;
  background: var(--surface);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.feat-icon { font-size: 32px; margin-bottom: 16px; }
.feat-card h3 { font-size: 16px; font-weight: 800; color: var(--text-1); margin-bottom: 8px; }
.feat-card p { font-size: 13px; color: var(--text-3); line-height: 1.65; }
.feat-card-accent { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); border-color: rgba(124,58,237,.2); }
.feat-badge {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-top: 10px;
}

/* ══════════════════════════════
   ADMIN SECTION
══════════════════════════════ */
.admin-sec {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}
.admin-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}
.admin-copy .stitle { color: #fff; }
.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight: 500;
}
.af-item span { font-size: 18px; width: 28px; }
.af-item:last-child { border-bottom: none; }

/* Admin dash preview */
.admin-dash-preview {
  background: #0F1E30;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-xl);
  font-size: 10px;
}
.adp-bar {
  background: #0A1628;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.adp-logo { font-weight: 900; color: var(--primary); font-size: 12px; flex-shrink: 0; }
.adp-nav { display: flex; gap: 16px; }
.adp-nav span { color: rgba(255,255,255,.45); font-weight: 600; cursor: pointer; transition: color .2s; }
.adp-nav span:hover { color: #fff; }
.adp-nav-active { color: var(--primary) !important; }

.adp-body { padding: 16px; }
.adp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.adp-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
}
.adp-stat-num { font-size: 13px; font-weight: 900; color: var(--primary); margin-bottom: 2px; }
.adp-stat-lbl { font-size: 8px; color: rgba(255,255,255,.4); font-weight: 600; }

.adp-table { background: rgba(255,255,255,.03); border-radius: 8px; overflow: hidden; }
.adp-table-head {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr .5fr 1fr .8fr;
  padding: 8px 12px;
  background: rgba(255,255,255,.06);
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.adp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr .5fr 1fr .8fr;
  padding: 9px 12px;
  border-top: 1px solid rgba(255,255,255,.04);
  color: rgba(255,255,255,.7);
  font-size: 9px;
  font-weight: 500;
  align-items: center;
}
.badge-pending {
  background: rgba(245,158,11,.2); color: #FCD34D;
  padding: 3px 7px; border-radius: 4px; font-size: 8px; font-weight: 700;
}
.badge-approved {
  background: rgba(0,172,193,.2); color: var(--primary);
  padding: 3px 7px; border-radius: 4px; font-size: 8px; font-weight: 700;
}
.badge-paid {
  background: rgba(34,197,94,.2); color: #4ADE80;
  padding: 3px 7px; border-radius: 4px; font-size: 8px; font-weight: 700;
}
.adp-approve {
  background: var(--grad-primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}
.adp-view {
  color: rgba(255,255,255,.4);
  font-size: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-sec {
  padding: 100px 0;
  background: var(--bg);
}
.testi-track-wrap {
  overflow: hidden;
  margin-bottom: 32px;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .5s var(--ease-out);
}
.testi-card {
  min-width: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  flex-shrink: 0;
}
.testi-stars { color: #F59E0B; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card blockquote { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-auth { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-auth strong { display: block; font-size: 14px; color: var(--text-1); font-weight: 700; }
.testi-auth small { font-size: 12px; color: var(--text-3); }
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testi-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: all .2s;
}
.testi-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.testi-dots { display: flex; gap: 6px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.testi-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-sec {
  padding: 100px 0;
  background: var(--surface);
}
.faq-inner { max-width: 760px; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.ac-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.ac-item.open { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,172,193,.08); }
.ac-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  transition: color .2s;
}
.ac-trigger:hover { color: var(--primary); }
.ac-icon { flex-shrink: 0; transition: transform .3s var(--ease-out); }
.ac-item.open .ac-icon { transform: rotate(180deg); }
.ac-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.ac-item.open .ac-panel { max-height: 300px; }
.ac-panel p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
}
.ac-panel p strong { color: var(--text-2); }

/* ══════════════════════════════
   DOWNLOAD
══════════════════════════════ */
.download-sec {
  padding: 120px 0;
  background: var(--grad-dark);
  overflow: hidden;
  position: relative;
}
.dl-orbs { position: absolute; inset: 0; pointer-events: none; }
.dl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.dl-orb-1 { width: 600px; height: 600px; background: rgba(0,172,193,.2); top:-200px; left:-200px; }
.dl-orb-2 { width: 400px; height: 400px; background: rgba(124,58,237,.2); bottom:-100px; right:-100px; }
.dl-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.dl-copy .stitle { color: #fff; font-size: clamp(32px, 5vw, 48px); }
.dl-btns { display: flex; gap: 14px; margin: 32px 0 24px; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-lg);
  transition: background .25s, transform .25s;
}
.store-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }
.si { width: 26px; height: 26px; flex-shrink: 0; }
.sb-text small { display: block; font-size: 11px; opacity: .7; }
.sb-text strong { font-size: 16px; }
.dl-ratings {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.dlr { color: rgba(255,255,255,.6); }
.dlr span { color: rgba(255,255,255,.4); }

.dl-phone { position: relative; display: flex; justify-content: center; }
.dl-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,172,193,.3), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.dl-img {
  width: 300px;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #060C18;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo-ar { color: rgba(255,255,255,.4); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.4); margin: 16px 0 20px; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; }
.fsoc {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: all .2s;
}
.fsoc:hover { border-color: var(--primary); color: var(--primary); }
.footer-links-group { display: flex; flex-direction: column; gap: 2px; }
.footer-links-group h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links-group a { font-size: 13px; color: rgba(255,255,255,.35); padding: 6px 0; transition: color .2s; }
.footer-links-group a:hover { color: var(--primary); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.2);
}

/* ── Back to top ── */
.btt {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all .3s;
  z-index: 900;
}
.btt.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.btt:hover { transform: translateY(-3px) scale(1.08); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .how-grid { flex-wrap: wrap; }
  .how-connector { display: none; }
  .how-card { min-width: 200px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-container { grid-template-columns: 1fr; }
  .admin-dash-preview { display: none; }
  .adp-stats { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-mockup { display: none; }
  .hero-btns, .hero-trust { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }

  .cat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .checkout-container { grid-template-columns: 1fr; }
  .checkout-phone { display: none; }
  .custom-grid { grid-template-columns: 1fr; }
  .custom-phone-wrap { display: none; }
  .dl-container { grid-template-columns: 1fr; }
  .dl-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #nav-dl-btn { display: none; }

  .hero { padding: calc(var(--nav-h) + 40px) 0 60px; }
  .how-grid { flex-direction: column; }
  .feat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-div { width: 80%; height: 1px; }
  .stat-item { padding: 16px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-row { flex-direction: column; gap: 8px; text-align: center; }
  .btt { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 34px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .dl-btns { flex-direction: column; }
  .chip-1, .chip-2, .chip-3 { display: none; }
  .req-pending, .req-approved { display: none; }
}
