/* ============================================================
   TAHA MOVE — styles.css  (v2 complete redesign)
   Theme  : Light base · Orange accent · Dark-navy contrast
   Font   : Plus Jakarta Sans (EN) + Cairo (AR labels)
   No glassmorphism — clean box-shadow elevation
   ============================================================ */

:root {
  --white: #ffffff;
  --off-white: #f8fafc;
  --light: #f1f5f9;
  --muted-bg: #eef2f7;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --text: #0f172a;
  --text-soft: #334155;
  --muted: #64748b;
  --muted-light: #94a3b8;

  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fff7ed;
  --orange-border: #fed7aa;

  --navy: #0f172a;
  --navy-soft: #1e293b;
  --navy-border: #334155;
  --navy-muted: #94a3b8;

  --play-green: #22c55e;
  --apple-gray: #1c1c1e;

  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1140px;

  --shadow-xs: 0 1px 3px rgba(15, 23, 42, .08), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, .10), 0 2px 4px rgba(15, 23, 42, .06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .12), 0 4px 10px rgba(15, 23, 42, .07);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, .14), 0 8px 20px rgba(15, 23, 42, .08);
  --shadow-orange: 0 8px 28px rgba(249, 115, 22, .32);
  --shadow-orange-lg: 0 16px 40px rgba(249, 115, 22, .38);

  --font-en: 'Cairo', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-ar: 'Cairo', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  font-family: var(--font-en);
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  display: block;
  flex-shrink: 0;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* ── Reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.4, 0, .2, 1),
    transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

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

/* ── Shared buttons ────────────────────────────────────── */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: .97rem;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: var(--shadow-orange);
}

.btn-orange svg {
  width: 20px;
  height: 20px;
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange-lg);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-md);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: .97rem;
  cursor: pointer;
  transition: all .22s ease;
}

.btn-navy svg {
  width: 20px;
  height: 20px;
}

.btn-navy:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
}

/* ── Section shared ─────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 99px;
  font-family: var(--font-ar);
  font-size: .88rem;
  font-weight: 800;
}

.orange-tag {
  background: var(--orange-light);
  color: var(--orange-dark);
  border: 1px solid var(--orange-border);
}

.light-tag {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .2);
}

.section-intro {
  max-width: 660px;
  margin-bottom: 48px;
}

.section-intro h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  color: var(--text);
}

.section-intro strong {
  color: var(--orange);
  font-weight: 900;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-intro h2 {
  color: var(--white);
}

.section-dark .section-intro strong {
  color: var(--orange);
}

.section-dark .section-intro p {
  color: var(--navy-muted);
}

/* ─────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xs);
}

.navbar {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--navy);
}

.brand-name em {
  font-style: normal;
  color: var(--orange);
}

.brand-sub {
  font-family: var(--font-ar);
  font-size: .72rem;
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-soft);
  transition: background .18s ease, color .18s ease;
}

.nav-link:hover {
  background: var(--light);
  color: var(--navy);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-cta .btn-orange {
  min-height: 40px;
  padding: 9px 20px;
  font-size: .88rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────
   HERO — split layout
   ───────────────────────────────────────────────────────── */
.hero {
  padding: 120px 0 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, .10) 0%, transparent 68%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 7px 14px 7px 9px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  font-size: .82rem;
  font-weight: 800;
  color: var(--text-soft);
  width: fit-content;
}

.hero-eyebrow img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.hero-eyebrow [lang="ar"] {
  font-family: var(--font-ar);
  color: var(--muted);
}

.hero-left h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.045em;
  margin-bottom: 20px;
  color: var(--navy);
}

.hero-left h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--white);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-soft);
  box-shadow: var(--shadow-xs);
}

.trust-tags svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.hero-right {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: .85rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.hero-badge-1 {
  bottom: -18px;
  left: -22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 18px;
}

.hb-value {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}

.hb-star {
  color: var(--orange);
}

.hb-label {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-badge-2 {
  top: -16px;
  right: -16px;
}

.hero-badge-3 {
  bottom: 32px;
  right: -22px;
  background: var(--orange);
  color: var(--white);
  font-size: .82rem;
}

/* ─────────────────────────────────────────────────────────
   SECTION BANDS
   ───────────────────────────────────────────────────────── */
.section-light {
  background: var(--off-white);
  padding: 92px 0;
  border-top: 1px solid var(--border);
}

.section-white {
  background: var(--white);
  padding: 92px 0;
  border-top: 1px solid var(--border);
}

.section-muted {
  background: var(--light);
  padding: 92px 0;
  border-top: 1px solid var(--border);
}

.section-dark {
  background: var(--navy);
  padding: 92px 0;
}

.section-dark .section-intro {
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────
   DOWNLOAD ROWS
   ───────────────────────────────────────────────────────── */
.download-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 52px;
}

.download-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}

.download-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.dark-row {
  background: var(--navy-soft);
  border-color: var(--navy-border);
}

.dark-row:hover {
  background: #253347;
  border-color: #475569;
}

.dr-store-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.dr-store-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.play-color {
  background: linear-gradient(135deg, #34d058, #1a9c38);
  box-shadow: 0 8px 20px rgba(52, 208, 88, .3);
}

.apple-color {
  background: linear-gradient(135deg, #3a3a3c, #1c1c1e);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.dr-info h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dark-row .dr-info h3 {
  color: var(--white);
}

.platform-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 700;
  background: var(--orange-light);
  color: var(--orange-dark);
  border: 1px solid var(--orange-border);
}

.light-chip {
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85);
  border-color: rgba(255, 255, 255, .25);
}

.dr-info p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.dark-row .dr-info p {
  color: var(--navy-muted);
}

.dr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.dr-chips span {
  padding: 4px 11px;
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange-dark);
}

.dark-chips span {
  background: rgba(249, 115, 22, .15);
  border-color: rgba(249, 115, 22, .3);
  color: #fdba74;
}

.dr-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: .92rem;
  white-space: nowrap;
  transition: all .22s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.dr-btn svg {
  width: 18px;
  height: 18px;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .9);
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────
   FEATURE STRIP
   ───────────────────────────────────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dark-strip {
  background: var(--navy-border);
  border-color: var(--navy-border);
}

.fs-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 22px;
  background: var(--white);
}

.dark-strip .fs-item {
  background: var(--navy-soft);
}

.fs-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid var(--orange-border);
  margin-bottom: 6px;
}

.dark-icon {
  background: rgba(249, 115, 22, .15);
  border-color: rgba(249, 115, 22, .3);
  color: #fdba74;
}

.fs-icon svg {
  width: 20px;
  height: 20px;
}

.fs-item strong {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
}

.dark-strip .fs-item strong {
  color: var(--white);
}

.fs-item span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

.dark-strip .fs-item span {
  color: var(--navy-muted);
}

/* ─────────────────────────────────────────────────────────
   HOW IT WORKS — numbered steps
   ───────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 3.4rem;
  font-weight: 900;
  color: rgba(249, 115, 22, .12);
  letter-spacing: -.04em;
  line-height: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid var(--orange-border);
  margin-bottom: 22px;
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy);
}

.step-card p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────
   JOIN BAND — orange gradient
   ───────────────────────────────────────────────────────── */
.join-band {
  background: linear-gradient(115deg, var(--orange-dark) 0%, #f97316 46%, #fb923c 100%);
  padding: 80px 0;
}

.join-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.jb-text h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.jb-text p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 20px;
}

.jb-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jb-perks span {
  padding: 6px 14px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 99px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
}

.jb-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.jb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: .95rem;
  white-space: nowrap;
  transition: all .22s ease;
  min-width: 200px;
}

.jb-btn svg {
  width: 20px;
  height: 20px;
}

.jb-primary {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.jb-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.jb-secondary {
  background: rgba(255, 255, 255, .18);
  border: 2px solid rgba(255, 255, 255, .5);
  color: var(--white);
}

.jb-secondary:hover {
  background: rgba(255, 255, 255, .28);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────
   CONTACT — 3-column grid
   ───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cg-col {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.cg-title {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.cg-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cg-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  transition: all .2s ease;
}

.cg-link:hover {
  border-color: var(--orange-border);
  background: var(--orange-light);
  transform: translateX(4px);
}

.cg-link-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.cg-link-icon svg {
  width: 20px;
  height: 20px;
}

.cg-link div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cg-link strong {
  font-size: .92rem;
  font-weight: 800;
  color: var(--navy);
}

.cg-link span {
  font-size: .8rem;
  color: var(--muted);
}

.facebook-link .cg-link-icon svg {
  color: #1877f2;
}

.instagram-link .cg-link-icon svg {
  color: #e1306c;
}

.email-link .cg-link-icon svg {
  color: var(--orange);
}

.phone-link .cg-link-icon svg {
  color: var(--navy);
}

.app-link .cg-link-icon svg {
  color: var(--play-green);
}

/* ─────────────────────────────────────────────────────────
   FOOTER — dark navy, multi-column
   ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--navy-border);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--white);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-tagline {
  font-size: .87rem;
  color: var(--navy-muted);
  line-height: 1.65;
  max-width: 320px;
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-muted);
  transition: color .18s ease;
}

.footer-col li a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — 1024px
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    max-width: 540px;
  }

  .hero-badge-1 {
    bottom: -16px;
    left: -12px;
  }

  .hero-badge-2 {
    top: -12px;
    right: -12px;
  }

  .hero-badge-3 {
    bottom: 24px;
    right: -12px;
  }

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

  .join-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .jb-buttons {
    flex-direction: row;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — 768px
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open,
  .nav-cta.open {
    display: flex;
  }

  .nav-cta.open {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .nav-cta .btn-orange {
    width: 100%;
    justify-content: center;
  }

  .nav-link {
    padding: 10px 14px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-img-wrap {
    aspect-ratio: 16/9;
  }

  .hero-badge-1 {
    bottom: -14px;
    left: 8px;
  }

  .hero-badge-2 {
    display: none;
  }

  .hero-badge-3 {
    right: 8px;
    bottom: 14px;
  }

  .section-light,
  .section-white,
  .section-muted,
  .section-dark {
    padding: 68px 0;
  }

  .section-intro {
    margin-bottom: 32px;
  }

  .download-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }

  .dr-btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .jb-buttons {
    flex-direction: column;
  }

  .jb-btn {
    min-width: unset;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 28px;
  }

  .footer-brand-col {
    grid-column: auto;
  }
}

/* ─────────────────────────────────────────────────────────
   FAQ accordion
   ───────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 40px auto 0;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: border-color .22s ease, box-shadow .22s ease;
}

.faq-item[open] {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(249, 115, 22, .12);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  gap: 16px;
  user-select: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--orange);
  line-height: 1;
  transition: transform .25s ease;
}

.faq-item[open] .faq-q {
  color: var(--orange);
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px 20px;
  color: var(--body);
  line-height: 1.8;
  font-size: .96rem;
}

/* ─────────────────────────────────────────────────────────
   RTL / Arabic overrides
   ───────────────────────────────────────────────────────── */
[dir="rtl"] body {
  font-family: 'Cairo', system-ui, sans-serif;
}

[dir="rtl"] .brand-sub,
[dir="rtl"] .section-tag,
[dir="rtl"] .hero-eyebrow {
  font-family: 'Cairo', system-ui, sans-serif;
}

/* Nav — swap auto margin to the logical start */
[dir="rtl"] .nav-links {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .nav-toggle {
  margin-left: 0;
  margin-right: auto;
}

/* Hero decoration arc — flip to left */
[dir="rtl"] .hero::before {
  right: auto;
  left: -160px;
}

/* Hero floating badges — mirror positions */
[dir="rtl"] .hero-badge-1 {
  left: auto;
  right: -22px;
}

[dir="rtl"] .hero-badge-2 {
  right: auto;
  left: -16px;
}

[dir="rtl"] .hero-badge-3 {
  right: auto;
  left: -22px;
}

/* Contact link hover — slide in opposite direction */
[dir="rtl"] .cg-link:hover {
  transform: translateX(-4px);
}

/* Step number — move to the left side in RTL */
[dir="rtl"] .step-num {
  right: auto;
  left: 28px;
}

/* Download button arrow — flip direction */
[dir="rtl"] .dr-btn svg {
  transform: scaleX(-1);
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — 480px
   ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 2.1rem;
  }

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

  .btn-orange,
  .btn-navy {
    justify-content: center;
  }

  .trust-tags span {
    font-size: .78rem;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .download-row {
    padding: 20px;
  }

  .dr-store-icon {
    width: 52px;
    height: 52px;
  }

  .dr-store-icon svg {
    width: 26px;
    height: 26px;
  }

  .step-num {
    font-size: 2.8rem;
  }
}