/* ── Variables ── */
:root {
  --green: #00008B; /* primary color changed to dark blue */
  --green-dark: #000070;
  --green-light: #dfe9ff;
  --ink: #0d1b12;
  --ink-soft: #3a4d40;
  --surface: #f4faf6;
  --white: #ffffff;
  --card-bg: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,.08);
  --shadow-hover: 0 16px 60px rgba(0,0,139,.18);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Navbar ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  height: 68px;
  background: rgba(244,250,246,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,139,.12);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 2rem; font-size: .95rem; font-weight: 500; }
.nav-links a { color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta {
  padding: .5rem 1.4rem;
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,139,.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 6vw 2rem;
  border-bottom: 1px solid var(--green-light);
  z-index: 99;
  flex-direction: column; gap: 1rem;
}
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--ink-soft); padding: .4rem 0; }
.mobile-menu.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 7rem 6vw 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 75% 40%, rgba(0,0,139,.10) 0%, transparent 70%),
              radial-gradient(ellipse 50% 60% at 10% 80%, rgba(0,0,139,.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Animated background orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 380px; height: 380px; background: var(--green); top: -100px; right: -80px; animation-delay: 0s; }
.orb-2 { width: 220px; height: 220px; background: #4a7bff; bottom: -40px; left: 30%; animation-delay: 3s; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-text { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  margin-bottom: 1.8rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero-badge i { font-size: .75rem; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}
.hero h1 .accent { color: var(--green); }
.hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.4rem;
}
.hero-arabic {
  font-size: 1rem;
  color: var(--green-dark);
  font-style: italic;
  margin-bottom: 2.4rem;
  margin-top: -.8rem;
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-store {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 500;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-store:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-store-dark {
  background: var(--ink);
  color: #fff;
}
.btn-store-outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid rgba(13,27,18,.15);
  box-shadow: var(--shadow);
}
.btn-store i { font-size: 1.35rem; }
.btn-store-label { display: flex; flex-direction: column; text-align: left; }
.btn-store-label small { font-size: .7rem; opacity: .7; font-weight: 400; }
.btn-store-label strong { font-size: .95rem; font-weight: 700; }

/* Hero Visual */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: flex-end;
}
.phone-mockup {
  position: relative;
  width: min(300px, 78vw);
  filter: drop-shadow(0 30px 60px rgba(0,0,139,.22)) drop-shadow(0 8px 24px rgba(0,0,0,.14));
  animation: phoneFloat 5s ease-in-out infinite;
}
.phone-mockup-back {
  position: absolute;
  width: min(260px, 68vw);
  right: -30px; bottom: -20px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.12));
  opacity: .65;
  animation: phoneFloat 5s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(.5deg); }
}
.phone-frame {
  background: var(--ink);
  border-radius: 42px;
  padding: 12px;
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  z-index: 2;
}
.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #0d2b1a 0%, #0a1f12 100%);
  aspect-ratio: 9/19;
  display: flex; flex-direction: column;
  padding: 2.5rem 1.2rem 1.5rem;
  gap: .8rem;
}
/* Images inside phone screens and placeholders should cover their containers */
.phone-screen img.hero-phone-img,
.screen-screenshot,
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-phone-img { border-radius: 28px; }
.screen-screenshot { border-radius: 26px; }
.about-img { border-radius: 12px; }

/* Modifier to make the phone-screen area fully covered by the image */
.phone-screen.image-fill {
  padding: 0;
  display: block;
}
.phone-screen.image-fill img.hero-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}
.screen-header { color: #fff; font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
.screen-header span { color: var(--green); }
.screen-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: .8rem;
  display: flex; flex-direction: column; gap: .3rem;
}
.screen-card-top { display: flex; justify-content: space-between; align-items: center; }
.screen-card-name { color: #fff; font-size: .72rem; font-weight: 600; }
.screen-card-badge {
  background: var(--green);
  color: #fff; font-size: .6rem; font-weight: 700;
  padding: .15rem .45rem; border-radius: 50px;
}
.screen-card-info { color: rgba(255,255,255,.55); font-size: .62rem; }
.screen-card-bar {
  height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: .3rem; overflow: hidden;
}
.screen-card-fill { height: 100%; width: 70%; background: var(--green); border-radius: 2px; }
.screen-time-row { display: flex; gap: .4rem; margin-top: .2rem; }
.screen-time-chip {
  background: rgba(0,0,139,.2);
  border: 1px solid rgba(0,0,139,.3);
  color: var(--green);
  font-size: .6rem; font-weight: 700;
  padding: .25rem .6rem; border-radius: 50px;
}
.screen-time-chip.selected { background: var(--green); color: #fff; }
.screen-btn {
  background: var(--green);
  color: #fff;
  border: none; border-radius: 12px;
  padding: .65rem;
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  text-align: center;
  margin-top: auto;
}
.screen-sport-row { display: flex; gap: .5rem; margin-bottom: .2rem; }
.sport-icon-mini {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .75rem;
}
.sport-icon-mini.active { background: rgba(0,0,139,.25); color: var(--green); border: 1px solid rgba(0,0,139,.4); }

/* ── Stats strip ── */
.stats {
  display: flex; justify-content: center; gap: 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,139,.1);
  border-bottom: 1px solid rgba(0,0,139,.1);
  padding: 2.2rem 6vw;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; align-items: center;
  padding: .8rem 1.5rem;
  border-right: 1px solid rgba(0,0,139,.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 800;
  color: var(--green);
  letter-spacing: -.04em;
}
.stat-label { font-size: .85rem; color: var(--ink-soft); margin-top: .2rem; }

/* ── Section commons ── */
section { padding: 7rem 6vw; }
.section-tag {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--green); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 22px; height: 2px; background: var(--green); border-radius: 1px; }
.section-title {
    
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; max-width: 560px; }

/* ─── Contact ─── */
.contact { background: var(--white); }
.contact-inner { max-width: 920px; margin: 0 auto; padding: 4rem 6vw; text-align: left; }
.contact .section-title { margin-top: .25rem; }
.contact-form { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: flex; gap: .8rem; }
.form-row input { flex: 1; padding: .85rem 1rem; border-radius: 10px; border: 1px solid rgba(0,0,139,.12); font-size: .95rem; }
.contact-form textarea { min-height: 140px; padding: 1rem; border-radius: 10px; border: 1px solid rgba(0,0,139,.12); resize: vertical; font-size: .95rem; }
.contact .btn-store { align-self: flex-start; }
@media (max-width: 900px) {
  .form-row { flex-direction: column; }
  .contact-inner { padding: 3rem 6vw; }
}

/* Simple contact info (email + phone) */
.contact-info { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.contact-info a { color: var(--green); font-weight: 700; font-size: 1.05rem; }
.contact-info a.contact-phone { font-size: 1.1rem; }

/* Compact footer bar */
.small-footer {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,.06);
  padding: .6rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.small-footer-left { display: flex; flex: 1; align-items: center; justify-content: center; gap: 1rem; }
.small-footer-left a { color: var(--green); font-weight: 700; text-decoration: none; margin: 0 .4rem; }
.small-footer-left .sep { color: rgba(0,0,0,.2); margin: 0 .2rem; }
.small-footer-right { color: var(--ink-soft); font-size: .9rem; flex-shrink: 0; }
@media (max-width: 600px) {
  .small-footer { flex-direction: column; text-align: center; gap: .35rem; }
}

/* Creative icon footer styles */
.contact-label { font-weight: 700; color: var(--ink); margin-right: 1rem; font-size: .95rem; }
.contact-items { display: flex; align-items: center; gap: .6rem; }
.contact-item { display: inline-flex; align-items: center; gap: .6rem; background: linear-gradient(90deg, rgba(0,0,139,.06), rgba(0,0,139,.03)); padding: .45rem .65rem; border-radius: 999px; text-decoration: none; color: var(--ink); transition: transform .12s ease, box-shadow .12s ease; }
.contact-item:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.contact-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: rgba(0,0,139,.12); color: var(--green); font-size: .9rem; }
.contact-text { font-weight: 700; color: var(--ink); font-size: .95rem; }
.small-footer { align-items: center; }

/* ── About ── */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual {
  position: relative;
}
.about-img-wrap {
  background: linear-gradient(White);
  border-radius: 28px;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;

}
.about-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0,0,139,.15), transparent);
}
.court-graphic {
  width: 80%; aspect-ratio: 1;
  border: 3px solid rgba(0,0,139,.5);
  border-radius: 12px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.court-graphic::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(0,0,139,.25);
  border-radius: 6px;
}
.court-net {
  width: 100%; height: 1.5px;
  background: rgba(0,0,139,.5);
}
.court-center {
  position: absolute;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(0,0,139,.4);
  border-radius: 50%;
}
.about-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: .75rem 1.1rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  font-size: .82rem; font-weight: 600;
}
.about-badge-float i { color: var(--green); font-size: 1.1rem; }
.badge-top { top: -18px; right: -20px; }
.badge-bottom { bottom: -18px; left: -20px; }
.about-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.about-item { display: flex; gap: 1rem; align-items: flex-start; }
.about-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1rem;
}
.about-item-text h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.about-item-text p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

/* ── Features ── */
.features { background: White; }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header .section-desc { margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(0,0,139,.06);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), #4a7bff);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon {
  width: 54px; height: 54px;
  background: var(--green-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.3rem;
  margin-bottom: 1.3rem;
  transition: background .25s;
}
.feat-card:hover .feat-icon { background: var(--green); color: #fff; }
.feat-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.feat-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.65; }

/* ── Screenshots ── */
.screenshots { background: linear-gradient(180deg, var(--green-dark) 0%, rgba(0,0,139,.85) 60%); overflow: hidden; position: relative; }
.screenshots::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,0,139,.12), transparent 60%);
}
.screenshots .section-tag { color: var(--green); }
.screenshots .section-tag::before { background: var(--green); }
.screenshots .section-title { color: var(--white); }
.screenshots .section-desc { color: rgba(255,255,255,.55); }
.screens-scroll {
  display: flex; gap: 2rem;
  padding: 3rem 0 2rem;
  overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: rgba(0,0,139,.3) transparent;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.screens-scroll::-webkit-scrollbar { height: 4px; }
.screens-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,139,.3); border-radius: 2px; }
.screen-item {
  flex-shrink: 0;
  width: 220px;
  transition: transform .3s;
}
.screen-item:hover { transform: translateY(-10px) scale(1.03); }
.screen-phone-frame {
  background: #1a1a2e;
  border: 6px solid #2d2d3e;
  border-radius: 36px;
  padding: 10px 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
}
.screen-phone-frame::before {
  content: '';
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 5px; background: #2d2d3e; border-radius: 3px;
}
.screen-placeholder {
  border-radius: 26px;
  aspect-ratio: 9/18;
  overflow: hidden;
  position: relative;
}
.screen-p1 { background: linear-gradient(160deg, #0d2b1a, #0a3520); }
.screen-p2 { background: linear-gradient(160deg, #112215, #0a2818); }
.screen-p3 { background: linear-gradient(160deg, #0a1f12, #08180e); }
.screen-p4 { background: linear-gradient(160deg, #0e2619, #0b1f14); }
.screen-inner {
  padding: 1.2rem .9rem;
  height: 100%;
  display: flex; flex-direction: column; gap: .6rem;
}
.si-tag { display: inline-block; padding: .2rem .7rem; border-radius: 50px; font-size: .55rem; font-weight: 700; }
.si-tag-green { background: rgba(0,0,139,.2); color: var(--green); }
.si-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,.08); overflow: hidden; }
.si-bar-fill { height: 100%; background: var(--green); border-radius: 4px; }
.si-row { display: flex; gap: .4rem; align-items: center; }
.si-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.si-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,.08); flex: 1; }
.si-line.short { flex: .5; }
.si-card-mini {
  background: rgba(255,255,255,.06);
  border-radius: 10px; padding: .7rem;
  display: flex; flex-direction: column; gap: .3rem;
}
.si-title { font-family: var(--font-head); font-size: .65rem; font-weight: 700; color: #fff; }
.si-sub { font-size: .55rem; color: rgba(255,255,255,.4); }
.si-chips { display: flex; gap: .3rem; flex-wrap: wrap; }
.si-chip {
  padding: .15rem .4rem; border-radius: 4px; font-size: .5rem; font-weight: 700;
  background: rgba(0,0,139,.15); color: var(--green);
}
.screen-label {
  text-align: center; color: rgba(255,255,255,.5);
  font-size: .78rem; margin-top: 1rem;
}

/* ─── DOWNLOAD CTA ── */
.download {
  background: linear-gradient(rgba(255, 255, 255, 0.95) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.download::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,139,.18), transparent 70%);
}
.download-inner { position: relative; z-index: 1; }
.download .section-tag { justify-content: center; color: var(--green); }
.download .section-tag::before { background: var(--green); }
.download .section-title { color: var(--white); margin: 0 auto 1rem; max-width: 600px; }
.download .section-desc { color: rgba(255,255,255,.55); margin: 0 auto 3rem; }
.download-btns { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.btn-dl {
  display: inline-flex; align-items: center; gap: .9rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-family: var(--font-body); font-weight: 500; font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
  min-width: 200px;
}
.btn-dl:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,139,.25); }
.btn-dl-dark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; }
.btn-dl-green { background: var(--green); color: #fff; }
.btn-dl i { font-size: 1.7rem; }
.btn-dl-label { display: flex; flex-direction: column; text-align: left; }
.btn-dl-label small { font-size: .68rem; opacity: .65; }
.btn-dl-label strong { font-size: 1rem; font-weight: 700; }

/* ─── FOOTER ── */
footer {
  background: linear-gradient(180deg, rgba(0,0,139,.95) 0%, var(--green-dark) 60%);
  padding: 3rem 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-logo span { color: var(--green); }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { color: rgba(255,255,255,.3); font-size: .82rem; width: 100%; text-align: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.06); }

/* ─── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 5rem 6vw 4rem; gap: 3rem; }
  .hero-sub, .hero-arabic { margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }
  .hero-visual { order: -1; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 320px; margin: 0 auto; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Make phone mockups and screenshots fill the viewport width on mobile */
  .phone-mockup, .phone-mockup-back { width: min(420px, 86vw); }
  .phone-frame { padding: 8px; }
  .phone-screen { padding: 1rem .6rem .8rem; }
  .hero-phone-img { height: auto; }

  .screens-scroll { gap: 1rem; }
  .screen-item { width: 86vw; max-width: 420px; }
  .screen-phone-frame { padding: 8px; }
  .screen-placeholder { border-radius: 22px; }
  .screen-screenshot { height: auto; object-fit: cover; }
}
@media (max-width: 600px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,139,.12); }
  .stat-item:last-child { border-bottom: none; }
  footer { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }

  /* On very small screens use almost full-bleed screenshots */
  .phone-mockup, .phone-mockup-back { width: 94vw; }
  .screen-item { width: 94vw; max-width: 560px; }
  .screen-placeholder { aspect-ratio: auto; }
}
