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

:root {
  /* Exact Figma colors */
  --dark-bg:    #0c2921;
  --dark-bg2:   #081f19;
  --primary:    #247c6c;
  --yellow:     #ffc103;
  --white:      #ffffff;
  --light-bg:   #f9f9f9;
  --text-dark:  #1c2035;
  --text-muted: #6c6c6c;
  --border:     rgba(255,255,255,.1);
  --border-l:   #e0e0e0;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-dark: 0 30px 60px rgba(0,0,0,.5);
  --shadow-card: 0 9px 20px rgba(0,0,0,.1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── UTILITY ──────────────────────────────────────────────── */
.text-yellow { color: var(--yellow); }
.text-green  { color: var(--primary); }
.text-white  { color: var(--white); }

/* ─── SPARKLES ─────────────────────────────────────────────── */
.sparkle {
  position: absolute;
  color: var(--yellow);
  font-size: 28px;
  pointer-events: none;
  animation: sparkle-anim 3s ease-in-out infinite;
  z-index: 1;
}
.sp1 { top: 8%; right: 12%; font-size: 20px; animation-delay: 0s; }
.sp2 { top: 18%; right: 28%; font-size: 28px; animation-delay: .5s; }
.sp3 { bottom: 18%; left: 5%; font-size: 32px; animation-delay: 1s; }
.sp4 { top: 60%; right: 6%; font-size: 20px; animation-delay: 1.5s; }
.sp5 { top: 10%; left: 5%; font-size: 22px; animation-delay: 0s; }
.sp6 { bottom: 10%; right: 8%; font-size: 18px; animation-delay: .8s; }
.sp7 { top: 8%; right: 10%; font-size: 26px; animation-delay: .3s; }
.sp8 { top: 12%; left: 8%; font-size: 22px; animation-delay: 0s; }
.sp9 { bottom: 15%; right: 12%; font-size: 30px; animation-delay: 1s; }
@keyframes sparkle-anim {
  0%,100% { opacity:.8; transform: scale(1); }
  50%      { opacity:1; transform: scale(1.15); }
}

/* ─── SECTION HEADERS ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(36,124,108,.1);
  color: var(--primary);
  border: 1px solid rgba(36,124,108,.2);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag-dark {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,193,3,.12);
  color: var(--yellow);
  border: 1px solid rgba(255,193,3,.25);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}

/* ─── DARK SECTION ─────────────────────────────────────────── */
.dark-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(36,124,108,.15) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,193,3,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 16px 0;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
.navbar.scrolled {
  background: rgba(8, 31, 25, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(36,124,108,.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 6px; }
.logo-arabic { height: 32px; }
.logo-360 { height: 16px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; }
.nav-links a { color: rgba(255,255,255,.7); transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.btn-nav {
  padding: 9px 20px;
  background: var(--yellow);
  color: var(--dark-bg) !important;
  font-weight: 700 !important;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s !important;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,193,3,.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; display: block; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark-bg);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .2;
}
.orb-tl { width: 500px; height: 500px; background: var(--primary); top: -100px; left: -150px; }
.orb-br { width: 350px; height: 350px; background: var(--yellow); bottom: 50px; right: -80px; opacity: .07; }
.circles { position: absolute; inset: 0; }
.circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(36,124,108,.15);
}
.circle-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.circle-2 { width: 300px; height: 300px; bottom: 100px; left: -80px; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  flex: 1; padding: 80px 24px 80px;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,193,3,.12);
  border: 1px solid rgba(255,193,3,.2);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--yellow);
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.6);
  max-width: 460px; line-height: 1.7; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

/* CTA pill — matches the Figma "Let's get started" button */
.cta-pill {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: 10px 24px 10px 10px;
  color: var(--white); font-size: 15px; font-weight: 600;
  backdrop-filter: blur(10px);
  transition: background .2s, transform .2s;
}
.cta-pill:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.cta-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-icon svg { width: 20px; height: 20px; }

.cta-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 24px;
  color: rgba(255,255,255,.6);
  font-size: 14px; font-weight: 500;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  transition: color .2s, border-color .2s;
}
.cta-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-num { display: block; font-size: 22px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* ─── PHONES (HERO) ────────────────────────────────────────── */
.hero-phones {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 580px;
}

.phone-frame {
  background: #0a0f18;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  z-index: 10;
}

/* Phone variants */
.phone-back {
  width: 200px;
  position: absolute; left: -20px; bottom: 0;
  transform: rotate(-6deg);
  z-index: 1;
  opacity: .8;
}
.phone-main {
  width: 230px;
  position: absolute; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.phone-front {
  width: 200px;
  position: absolute; right: -20px; bottom: 0;
  transform: rotate(6deg);
  z-index: 2;
  opacity: .85;
}

/* Dark screen (splashscreen / get started style) */
.phone-screen-dark {
  background: var(--dark-bg);
  min-height: 380px;
  height: 100%;
  padding: 28px 14px 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-back .phone-screen-dark { min-height: 340px; }
.phone-front .phone-screen-dark { min-height: 340px; }

/* Splash logo */
.ps-logo {
  position: absolute;
  top: 38%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.ps-sparkle {
  position: absolute;
  color: var(--yellow);
  animation: sparkle-anim 3s ease-in-out infinite;
}
.ps-sparkle.ps1 { top: 12%; right: 12%; font-size: 26px; }
.ps-sparkle.ps2 { top: 22%; left: 12%; font-size: 18px; animation-delay: .6s; }
.ps-loader {
  position: absolute;
  bottom: 18%; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.loader-dots { display: flex; gap: 3px; }
.loader-dots span {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  animation: dot-pulse 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: .2s; }
.loader-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dot-pulse { 0%,100%{opacity:.3;transform:scale(.8)} 50%{opacity:1;transform:scale(1.2)} }
.loader-text { font-size: 10px; color: rgba(255,255,255,.5); white-space: nowrap; }

/* Get started screen */
.gs-sparkle {
  position: absolute;
  color: var(--yellow);
  animation: sparkle-anim 3s ease-in-out infinite;
}
.gs-sparkle.gs1 { top: 8%; right: 10%; font-size: 26px; animation-delay: 0s; }
.gs-sparkle.gs2 { top: 18%; right: 30%; font-size: 18px; animation-delay: .5s; }
.gs-sparkle.gs3 { bottom: 28%; right: 8%; font-size: 22px; animation-delay: 1s; }
.gs-content { position: absolute; top: 28%; left: 14px; right: 14px; }
.gs-headline {
  font-size: 18px; font-weight: 400; line-height: 1.4;
  color: var(--white);
}
.gs-btn {
  position: absolute;
  bottom: 10%;
  left: 10px; right: 10px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  padding: 7px 16px 7px 7px;
  backdrop-filter: blur(20px);
}
.gs-btn-icon {
  width: 40px; height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gs-btn span { font-size: 13px; font-weight: 500; color: var(--white); }

/* Light screen (listings style) */
.phone-screen-light {
  background: var(--white);
  min-height: 380px;
  height: 100%;
  padding: 28px 10px 10px;
  display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
}
.phone-front .phone-screen-light { min-height: 340px; }

/* Listing screen components */
.ls-search {
  display: flex; align-items: center; gap: 8px;
  background: #f5f5f5;
  border-radius: 100px; padding: 8px 12px;
  font-size: 11px; color: #999; flex-shrink: 0;
}
.ls-tabs {
  display: flex; gap: 6px;
  overflow: hidden; flex-shrink: 0;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 6px;
}
.ls-tab {
  font-size: 9px; font-weight: 500; color: #888;
  padding: 2px 6px; white-space: nowrap; flex-shrink: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -8px;
}
.ls-tab.active { color: var(--primary); border-bottom-color: var(--yellow); }
.ls-section-title { font-size: 10px; font-weight: 600; color: var(--primary); flex-shrink: 0; }
.ls-cards { display: flex; gap: 6px; flex-shrink: 0; }
.ls-card {
  flex: 1; height: 90px;
  border-radius: 10px; overflow: hidden;
  position: relative;
}
.ls-card-img {
  width: 100%; height: 100%; object-fit: cover;
}
.ls-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}
.ls-price-badge {
  position: absolute; bottom: 6px; left: 6px;
  background: white;
  border-radius: 100px; padding: 3px 7px;
  font-size: 9px; display: flex; align-items: center; gap: 2px;
}
.ls-heart {
  position: absolute; top: 6px; right: 6px;
  color: white; font-size: 14px;
}
.ls-card-meta-row { display: flex; gap: 6px; flex-shrink: 0; }
.ls-meta { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.ls-title { font-size: 9px; font-weight: 500; color: #222; }
.ls-loc { font-size: 8px; color: #999; }

/* Bottom nav (listing screen) */
.ls-nav {
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(255,255,255,.95);
  border-top: 1px solid #eee;
  padding: 8px 4px 4px;
  margin-top: auto;
  flex-shrink: 0;
}
.ls-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 8px; color: #888; flex: 1;
}
.ls-nav-item.active { color: var(--primary); }
.ls-nav-add {
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(12, 41, 33, .9);
  border: 1px solid rgba(36,124,108,.3);
  border-radius: 14px; padding: 10px 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 30px rgba(0,0,0,.4);
  white-space: nowrap; z-index: 10;
}
.fb1 { bottom: 40px; left: 0; animation: float1 4s ease-in-out infinite; }
.fb2 { top: 60px; right: 0; animation: float2 4s ease-in-out infinite; }
.fb-icon { font-size: 20px; }
.fb-title { font-size: 12px; font-weight: 700; color: var(--white); }
.fb-sub { font-size: 10px; color: rgba(255,255,255,.5); }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ─── CATEGORIES ───────────────────────────────────────────── */
.categories { padding: 120px 0; background: var(--light-bg); }
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  border-color: rgba(36,124,108,.2);
}
.cat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.cat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.cat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.cat-tag {
  display: inline-block; padding: 4px 10px;
  background: rgba(36,124,108,.08);
  color: var(--primary);
  border-radius: 100px; font-size: 11px; font-weight: 600;
}
.cat-card-cta {
  background: var(--dark-bg);
  border-color: var(--dark-bg);
  display: flex; flex-direction: column;
}
.cat-card-cta h3 { color: var(--white); }
.cat-card-cta p { color: rgba(255,255,255,.5); }
.cat-more-icon { color: var(--yellow); font-size: 32px; margin-bottom: 12px; }
.cat-cta-link {
  display: inline-block; padding: 10px 20px;
  background: var(--yellow); color: var(--dark-bg);
  border-radius: 100px; font-size: 13px; font-weight: 700;
  margin-top: auto;
  transition: transform .2s;
}
.cat-cta-link:hover { transform: translateY(-2px); }

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works { padding: 120px 0; }
.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  justify-content: center;
}
.step-card {
  flex: 1; max-width: 280px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(255,193,3,.2); }
.step-num {
  font-size: 56px; font-weight: 900;
  color: var(--yellow); opacity: .2;
  line-height: 1; margin-bottom: 12px;
}
.step-icon { font-size: 32px; margin-bottom: 16px; }
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }
.step-arrow {
  font-size: 28px; color: var(--yellow); opacity: .4;
  align-self: center; padding: 0 16px; flex-shrink: 0;
  margin-top: -40px;
}

/* ─── FEATURES ─────────────────────────────────────────────── */
.features { padding: 120px 0; }
.feat-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.fp-wrapper { position: relative; display: flex; justify-content: center; }
.fp-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(36,124,108,.25), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  filter: blur(40px);
}
.fp-phone { width: 260px; position: relative; z-index: 2; }
.fp-phone .phone-screen-light { min-height: 420px; }

.feat-list { display: flex; flex-direction: column; gap: 28px; }
.feat-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--border-l);
  transition: transform .2s, box-shadow .2s;
}
.feat-item:hover { transform: translateX(6px); box-shadow: var(--shadow-card); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.feat-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feat-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── SCREENSHOTS ──────────────────────────────────────────── */
.screenshots { padding: 120px 0; }
.screens-row {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 32px; overflow: visible;
}
.scr-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.scr-phone { width: 200px; }
.scr-phone-lg { width: 240px; }
.scr-phone .phone-screen-dark { min-height: 380px; }
.scr-phone-lg .phone-screen-dark { min-height: 440px; }
.scr-phone .phone-screen-light { min-height: 380px; }
.scr-side { opacity: .75; transform: scale(.96); }
.scr-center { position: relative; z-index: 2; }
.scr-label {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials { padding: 120px 0; background: var(--light-bg); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform .3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-featured {
  background: var(--dark-bg);
  border-color: rgba(36,124,108,.3);
  transform: scale(1.04);
}
.testi-featured:hover { transform: scale(1.04) translateY(-4px); }
.testi-featured p { color: rgba(255,255,255,.7) !important; }
.testi-featured .testi-name { color: var(--white); }
.testi-featured .testi-role { color: rgba(255,255,255,.4); }
.testi-stars { color: var(--yellow); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ─── DOWNLOAD ─────────────────────────────────────────────── */
.download { padding: 120px 0; }
.download-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 2;
}
.dl-text h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.dl-text p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 36px; }
.dl-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 14px 20px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  min-width: 160px;
}
.store-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255,193,3,.3);
  box-shadow: 0 15px 30px rgba(0,0,0,.3);
}
.store-os-icon { width: 26px; height: 26px; color: var(--white); flex-shrink: 0; }
.store-sub { font-size: 10px; color: rgba(255,255,255,.5); }
.store-name { font-size: 16px; font-weight: 700; color: var(--white); }

/* Download phone stack */
.dl-visual { display: flex; justify-content: center; align-items: center; }
.dl-phone-stack { position: relative; height: 420px; width: 300px; }
.dl-phone-a, .dl-phone-b { width: 200px; position: absolute; }
.dl-phone-a {
  left: 0; bottom: 0;
  transform: rotate(-6deg);
  z-index: 1; opacity: .8;
}
.dl-phone-a .phone-screen-dark { min-height: 360px; }
.dl-phone-b {
  right: 0; bottom: 0;
  transform: rotate(4deg);
  z-index: 2;
}
.dl-phone-b .phone-screen-light { min-height: 360px; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark-bg2);
  padding: 80px 0 0;
  border-top: 1px solid rgba(36,124,108,.15);
}
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; padding-bottom: 60px;
}
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,.4);
  line-height: 1.7; margin-top: 16px; max-width: 280px;
}
.footer-logo { margin-bottom: 4px; display: inline-flex; }
.social-links { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: background .2s, border-color .2s, color .2s;
}
.social-btn:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: var(--white); }
.social-btn svg { width: 15px; height: 15px; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.3);
}

/* ─── AOS ANIMATIONS ───────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { text-align: center; }
  .hero-phones { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-layout { grid-template-columns: 1fr; }
  .fp-wrapper { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-featured { transform: scale(1); }
  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .dl-buttons { justify-content: center; }
  .dl-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { flex-wrap: wrap; gap: 40px; }
  .steps-grid { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow { display: none; }
  .screens-row { flex-wrap: wrap; justify-content: center; }
  .scr-side { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cat-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }
}
