/* ─────────────────────────────────────────────
   DESIGN TOKENS
──────────────────────────────────────────── */
:root {
  --blue:   #1A6FE8;
  --teal:   #00B4A6;
  --green:  #22C55E;
  --gray:   #607D8B;
  --brand-grad: linear-gradient(135deg, #1A6FE8, #00B4A6, #22C55E);

  --bg-base:   #F0F4FA;
  --bg-teal:   #F0FDFB;
  --bg-white:  #FFFFFF;
  --footer-bg: #0f1f35;

  --text-dark:  #0D1B2A;
  --text-body:  #2D3748;
  --text-muted: #607D8B;
  --text-light: #94A3B8;

  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(26,111,232,.08);
  --shadow-md: 0 8px 32px rgba(26,111,232,.12);
  --shadow-lg: 0 20px 60px rgba(26,111,232,.16);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Inter', sans-serif;

  --ticker-h: 40px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ar);
  background: var(--bg-base);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

body.lang-en {
  font-family: var(--font-en);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────────────────────────────────────
   TICKER
──────────────────────────────────────────── */
.ticker-wrap {
  height: var(--ticker-h);
  background: var(--brand-grad);
  overflow: hidden;
  position: relative;
  z-index: 1000;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 100%;
  animation: ticker-scroll 35s linear infinite;
  will-change: transform;
}

.ticker-item {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 0 6px;
  letter-spacing: 0.01em;
}

.ticker-sep {
  color: rgba(255,255,255,.5);
  padding: 0 8px;
  font-size: 12px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

html[dir="ltr"] .ticker-track { animation-name: ticker-scroll-ltr; }

@keyframes ticker-scroll-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}

.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #000;
  padding: 3px 8px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: color .2s, background .2s;
}

.nav-link:hover {
  color: var(--blue);
  background: rgba(26,111,232,.06);
}

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

.lang-toggle {
  height: 36px;
  padding: 0 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: .03em;
  transition: border-color .2s, background .2s, color .2s;
}

.lang-toggle:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(26,111,232,.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,111,232,.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(26,111,232,.4);
  filter: brightness(1.05);
}

.btn-glass {
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255,255,255,.28);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.btn-sm { height: 38px; padding: 0 18px; font-size: 13px; border-radius: 20px; }
.btn-lg { height: 52px; padding: 0 28px; font-size: 16px; border-radius: var(--radius-md); }

.nav-cta {
  background: var(--brand-grad) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .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 */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--border);
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}

.mobile-menu.open {
  max-height: 320px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}

.mobile-nav-link:hover {
  color: var(--blue);
  background: rgba(26,111,232,.04);
}

/* ─────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--ticker-h) - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,25,60,.82) 0%,
    rgba(0,80,80,.7) 50%,
    rgba(10,50,10,.65) 100%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #1A6FE8, transparent 70%);
  top: -100px; inset-inline-end: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #22C55E, transparent 70%);
  bottom: -80px; inset-inline-start: 5%;
  animation-delay: -4s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100%;
}

.hero-text { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.badge-pulse {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-badge 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.hero-brand {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-typed {
  color: #fff;
}

.typing-cursor {
  color: #22C55E;
  animation: blink .75s step-end infinite;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-ratings {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.rating-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: #fff;
  backdrop-filter: blur(6px);
}

.r-stars { color: #FBBF24; font-size: 12px; }
.rating-pill strong { font-weight: 800; }
.r-platform { opacity: .8; font-size: 12px; }

/* Glass Card */
.hero-glass {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  min-width: 240px;
  color: #fff;
  flex-shrink: 0;
}

.glass-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.glass-stat { text-align: center; flex: 1; }

.glass-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gl-plus, .gl-unit {
  font-size: 1.1rem;
  font-weight: 700;
}

.glass-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
  font-weight: 500;
}

.glass-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

.glass-footer {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: .4; }
}

/* ─────────────────────────────────────────────
   SECTION SHARED
──────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(26,111,232,.1), rgba(0,180,166,.1));
  border: 1px solid rgba(26,111,232,.2);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   STATS
──────────────────────────────────────────── */
.stats-section {
  padding: 72px 0;
  background: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 64px; height: 64px;
  background: var(--g);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   OFFERS
──────────────────────────────────────────── */
.offers-section {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-teal) 100%);
}

.carousel-wrap { position: relative; }

.carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.offer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.offer-img-wrap {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.offer-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.offer-card:hover .offer-img-wrap img { transform: scale(1.05); }

.offer-badge {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  background: linear-gradient(135deg, #EF4444, #F97316);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(239,68,68,.4);
  z-index: 1;
}

.offer-body {
  padding: 20px 22px 22px;
}

.offer-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.offer-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: transform .2s, box-shadow .2s;
}

.offer-cta:hover {
  transform: translateX(-3px);
  box-shadow: 0 6px 16px rgba(26,111,232,.3);
}

html[dir="ltr"] .offer-cta:hover { transform: translateX(3px); }

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.car-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}

.car-btn:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: scale(1.05);
}

.car-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.car-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s, width .3s;
  cursor: pointer;
}

.car-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────
   PLATFORMS
──────────────────────────────────────────── */
.platforms-section {
  padding: 88px 0;
  background: var(--bg-white);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-card {
  position: relative;
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  color: var(--text-dark);
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(26,111,232,.15);
  border-color: var(--accent, var(--blue));
}

.pcard-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--gc, transparent), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.platform-card:hover .pcard-glow { opacity: 1; }

.pcard-icon {
  width: 80px; height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.pcard-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.pcard-stars {
  color: #FBBF24;
  font-size: 15px;
  margin-bottom: 4px;
}

.pcard-score {
  font-weight: 800;
  color: var(--text-dark);
  font-size: 14px;
}

.pcard-reviews {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pcard-delivery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,111,232,.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pcard-cta {
  display: block;
  background: var(--brand-grad);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  margin-top: 8px;
  transition: box-shadow .2s, transform .2s;
}

.platform-card:hover .pcard-cta {
  box-shadow: 0 8px 20px rgba(26,111,232,.35);
  transform: translateY(-2px);
}

/* Coming Soon */
.platform-soon {
  opacity: .9;
  cursor: default;
}

.platform-soon:hover {
  transform: translateY(-4px);
}

.soon-ribbon {
  position: absolute;
  top: 20px;
  inset-inline-end: -28px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 40px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  letter-spacing: .05em;
}

html[dir="ltr"] .soon-ribbon {
  inset-inline-end: -28px;
  inset-inline-start: auto;
  transform: rotate(45deg);
}

.app-stores-mini {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.store-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(96,125,139,.1);
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  opacity: .7;
}

/* ─────────────────────────────────────────────
   WHY W MART
──────────────────────────────────────────── */
.why-section {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--bg-teal) 0%, var(--bg-base) 100%);
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(34,197,94,.05) 0%, transparent 60%);
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-title {
  text-align: start;
}

.why-section .section-tag,
.why-section .section-sub {
  text-align: start;
  margin-inline: 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}

.why-item:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-md);
}

html[dir="ltr"] .why-item:hover { transform: translateX(4px); }

.why-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(26,111,232,.1);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.why-item-text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.why-item-text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Why visual */
.why-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.why-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.why-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  animation: float-card 4s ease-in-out infinite;
}

.why-float span:first-child { font-size: 24px; }

.why-float div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-float strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
}

.why-float div span {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.why-float-1 {
  top: 10%;
  inset-inline-start: -48px;
  animation-delay: 0s;
}

.why-float-2 {
  bottom: 12%;
  inset-inline-end: -40px;
  animation-delay: -2s;
}

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

/* ─────────────────────────────────────────────
   APP SECTION
──────────────────────────────────────────── */
.app-section {
  padding: 88px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.app-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.app-orb-1 {
  width: 600px; height: 600px;
  background: rgba(26,111,232,.06);
  top: -200px; inset-inline-end: -100px;
}

.app-orb-2 {
  width: 400px; height: 400px;
  background: rgba(34,197,94,.06);
  bottom: -100px; inset-inline-start: -50px;
}

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

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-body {
  width: 260px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 16px;
  box-shadow:
    0 0 0 8px #2a2a4e,
    0 0 0 10px rgba(26,111,232,.15),
    var(--shadow-lg);
  position: relative;
}

.phone-notch {
  width: 80px; height: 20px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #f8faff;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}

.ps-header {
  background: linear-gradient(135deg, #1A6FE8, #00B4A6);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ps-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  object-fit: contain;
  background: white;
}

.ps-greeting {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.ps-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  margin: 12px;
  font-size: 11px;
  color: #bbb;
}

.ps-cats {
  display: flex;
  gap: 6px;
  padding: 0 12px 12px;
}

.ps-cat {
  flex: 1;
  background: rgba(26,111,232,.08);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ps-cat span {
  font-size: 9px;
  color: var(--c);
  font-weight: 700;
}

.ps-offer-strip {
  background: linear-gradient(90deg, #EF4444, #F97316);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 12px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.ps-off {
  background: rgba(255,255,255,.25);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
}

.ps-products { padding: 0 12px 12px; }

.ps-prod {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.ps-prod-emoji { font-size: 22px; }

.ps-prod-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  color: var(--text-dark);
  font-weight: 600;
}

.ps-price {
  font-size: 12px;
  color: var(--green);
  font-weight: 800;
}

.ps-add {
  width: 28px; height: 28px;
  background: var(--brand-grad);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
}

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 80px;
  background: var(--brand-grad);
  filter: blur(40px);
  opacity: .3;
  border-radius: 50%;
}

/* App content */
.app-section .section-tag,
.app-section .section-sub,
.app-section .section-title {
  text-align: start;
  margin-inline: 0;
}

.app-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.app-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
}

.app-feat span:first-child { font-size: 20px; }

.app-store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-body);
  min-width: 160px;
  transition: border-color .2s;
}

.app-store-btn.disabled {
  opacity: .6;
  cursor: not-allowed;
}

.app-store-btn svg { flex-shrink: 0; }

.asb-sub {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

.asb-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.app-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,.1);
  border: 1.5px solid rgba(37,211,102,.4);
  color: #16a34a;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: background .2s, transform .2s;
}

.app-wa-cta:hover {
  background: rgba(37,211,102,.18);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   TRUST SECTION
──────────────────────────────────────────── */
.trust-section {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-teal) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.rv-stars {
  color: #FBBF24;
  font-size: 16px;
  margin-bottom: 14px;
}

.rv-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.rv-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.rv-platform {
  font-size: 12px;
  color: var(--text-muted);
}

/* Trust scores */
.trust-scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.ts-item { text-align: center; }

.ts-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.ts-stars {
  font-size: 16px;
  color: #FBBF24;
  margin-bottom: 4px;
}

.ts-score {
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.ts-count {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.ts-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   CONTACT
──────────────────────────────────────────── */
.contact-section {
  padding: 88px 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ccard {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
}

.ccard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.ccard-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.ccard-body { flex: 1; min-width: 0; }

.ccard-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.ccard-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  word-break: break-all;
}

.ccard-hint {
  font-size: 13px;
  color: var(--text-muted);
}

.open-badge {
  background: rgba(34,197,94,.12);
  color: #16a34a;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  position: absolute;
  top: 16px;
  inset-inline-end: 20px;
  letter-spacing: .05em;
}

/* ─────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.footer { position: relative; }

.footer-top-wave {
  height: 80px;
  overflow: hidden;
  margin-bottom: -2px;
}

.footer-top-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-body {
  background: var(--footer-bg);
  padding: 56px 0 32px;
  color: #94A3B8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 14px;
  background: rgba(255,255,255,.1);
  padding: 4px;
}

.footer-tagline {
  font-size: 15px;
  color: #CBD5E1;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.fsocial {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s, background .2s;
}

.fsocial:hover {
  border-color: rgba(26,111,232,.5);
  color: var(--blue);
  background: rgba(26,111,232,.1);
}

.fcol-title {
  font-size: 14px;
  font-weight: 800;
  color: #E2E8F0;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.flink {
  display: block;
  font-size: 14px;
  color: #94A3B8;
  font-weight: 500;
  margin-bottom: 10px;
  transition: color .2s, padding-inline-start .2s;
}

.flink:hover {
  color: var(--teal);
  padding-inline-start: 4px;
}

.flink-soon {
  opacity: .5;
  cursor: default;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #64748B;
}

/* ─────────────────────────────────────────────
   FLOATING WHATSAPP
──────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  z-index: 2;
}

.wa-float:hover .wa-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,.6);
}

.wa-ring {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  inset-inline-end: 0;
  bottom: 0;
  animation: wa-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

.wa-ring-2 { animation-delay: 1.25s; }

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(2.4); opacity: 0; }
}

.wa-tip {
  background: rgba(0,0,0,.8);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}

html[dir="ltr"] .wa-tip { transform: translateX(-8px); }

.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateX(0);
}

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS
──────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
  transition-delay: var(--delay, 0s);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-glass { width: 100%; max-width: 400px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }

  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }

  .app-layout { grid-template-columns: 1fr; }
  .app-phone { display: none; }
  .app-section .section-tag,
  .app-section .section-sub,
  .app-section .section-title { text-align: center; margin: 0 auto; }
  .app-feats { align-items: center; }
  .app-store-row, .app-wa-cta { justify-content: center; }
  .app-content { text-align: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

  .hero-content { padding-top: 40px; padding-bottom: 48px; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-glass { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 24px 16px; }

  .carousel { grid-template-columns: 1fr; }

  .platforms-grid { grid-template-columns: 1fr; }

  .why-layout { gap: 32px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .trust-scores { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .ts-divider { width: 80px; height: 1px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section-header { margin-bottom: 36px; }
  .offers-section,
  .stats-section,
  .platforms-section,
  .why-section,
  .app-section,
  .trust-section,
  .contact-section { padding: 56px 0; }

  .why-list { gap: 12px; }
  .why-item { padding: 14px 16px; }

  .hero-headline { font-size: 1.8rem; }

  .hero-ratings { gap: 8px; }
  .rating-pill { font-size: 12px; padding: 5px 10px; }

  .trust-scores { padding: 20px 16px; }
  .ccard { padding: 18px 16px; gap: 14px; }
  .ccard-icon { width: 48px; height: 48px; }
}

/* ─────────────────────────────────────────────
   RTL / LTR specific
──────────────────────────────────────────── */
html[dir="ltr"] .why-item:hover { transform: translateX(4px); }
html[dir="ltr"] .flink:hover { padding-inline-start: 4px; }
html[dir="ltr"] .offer-cta svg { transform: none; }

/* Ensure Arabic text renders correctly */
.lang-ar [data-ar] { display: revert; }
.lang-en [data-en] { display: revert; }
