/* ═══════════════════════════════════════════════
   MON RAMADAN — Landing Page Stylesheet
   Design: Dark islamic · Gold · Night Sky
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── VARIABLES ── */
:root {
  --gold: #c9a227;
  --gold-l: #e8c55a;
  --gold-d: #8a6c12;
  --green: #2d7a4f;
  --green-l: #4ade80;
  --green-d: #1e5436;
  --bg: #080f0a;
  --bg2: #0d1a10;
  --bg3: #162118;
  --bg4: #1e2d22;
  --text: #f0e8d8;
  --text2: #b8a98e;
  --text3: #7a6b56;
  --border: rgba(200, 160, 80, .13);
  --border2: rgba(200, 160, 80, .25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-arabic: 'Amiri', 'Noto Naskh Arabic', serif;
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --shadow: 0 8px 40px rgba(0, 0, 0, .4);
  --shadow-gold: 0 0 40px rgba(201, 162, 39, .2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

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

ul {
  list-style: none;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 3px;
}

/* ── STAR CANVAS ── */
#starCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .7;
}

.nebula {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(45, 122, 79, .08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(201, 162, 39, .06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(30, 84, 54, .05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── CONTAINER ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 32px;
  background: rgba(8, 15, 10, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all .4s ease;
}

.navbar.scrolled {
  background: rgba(8, 15, 10, .92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  font-family: var(--font-display);
}

.logo-moon {
  font-size: 24px;
  animation: moonFloat 4s ease-in-out infinite;
}

@keyframes moonFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.logo-text em {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  background: #000;
}

.nav-links a {
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: all .2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .05);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-d), var(--gold)) !important;
  color: #0a1a0f !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  opacity: .9 !important;
  transform: translateY(-1px);
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 20px;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  padding: 10px 16px;
  font-size: 15px;
  border-radius: var(--r-sm);
  transition: background .2s;
}

.mobile-menu a:hover {
  background: var(--bg3);
}

.mob-cta {
  background: linear-gradient(135deg, var(--gold-d), var(--gold)) !important;
  color: #0a1a0f !important;
  font-weight: 700 !important;
  text-align: center;
  margin-top: 4px;
}

.mobile-menu.open {
  display: flex;
}

/* ── SECTION COMMON ── */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
}

.sec-title em {
  color: var(--gold);
  font-style: italic;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

.d5 {
  transition-delay: .5s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 32px 60px;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, .1);
  border: 1px solid rgba(201, 162, 39, .3);
  color: var(--gold-l);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 22px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-l);
  box-shadow: 0 0 8px var(--green-l);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero-arabic {
  font-family: var(--font-arabic);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
  direction: rtl;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}

.gold-text {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: #0a1a0f;
  padding: 14px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  transition: all .25s;
  box-shadow: 0 4px 24px rgba(201, 162, 39, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, .45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border2);
  color: var(--text);
  padding: 13px 24px;
  border-radius: var(--r);
  font-weight: 500;
  font-size: 15px;
  transition: all .25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.hstat {
  text-align: center;
  padding: 0 24px;
}

.hstat:first-child {
  padding-left: 0;
}

.hstat-n {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}

.hstat-l {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}

.hstat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PHONE MOCK ── */
.hero-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-wrap {
  position: relative;
}

.phone {
  width: 240px;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.phone-sm {
  width: 180px;
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.phone-sm .phone-notch {
  width: 60px;
  height: 14px;
}

.phone-screen {
  background: var(--bg);
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.phone-sm .phone-screen {
  min-height: 300px;
}

.phone-bar {
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-bar::after {
  content: '';
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, .3);
  border-radius: 2px;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(45, 122, 79, .25) 0%, transparent 70%);
  pointer-events: none;
}

.phone-glow-gold {
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, .2) 0%, transparent 70%);
}

.phone-ring {
  position: absolute;
  border: 1px solid rgba(45, 122, 79, .15);
  border-radius: 50%;
  pointer-events: none;
  animation: ringPulse 3s ease-in-out infinite;
}

.r1 {
  inset: -30px;
  animation-delay: 0s;
}

.r2 {
  inset: -60px;
  animation-delay: 1s;
  opacity: .5;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .15;
  }

  50% {
    transform: scale(1.05);
    opacity: .25;
  }
}

/* Phone screen content */
.ps-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

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

.ps-date {
  font-size: 9px;
  color: var(--text3);
}

.ps-prayer-card {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  margin: 8px;
  border-radius: var(--r-sm);
  padding: 12px;
}

.phone-sm .ps-prayer-card {
  margin: 6px;
  padding: 9px;
}

.psc-label {
  font-size: 9px;
  color: rgba(0, 0, 0, .6);
  font-weight: 700;
}

.psc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.psc-name {
  font-size: 16px;
  font-weight: 800;
  color: #0a1a0f;
}

.phone-sm .psc-name {
  font-size: 13px;
}

.psc-time {
  font-size: 18px;
  font-weight: 300;
  color: #0a1a0f;
}

.phone-sm .psc-time {
  font-size: 14px;
}

.psc-cd {
  font-size: 9px;
  color: rgba(0, 0, 0, .6);
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px 8px;
}

.ps-btn {
  aspect-ratio: 1;
  background: var(--bg3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.phone-sm .ps-btn {
  font-size: 14px;
}

.ps-hadith {
  background: var(--bg3);
  margin: 4px 8px 8px;
  border-radius: 8px;
  padding: 8px;
}

.psh-label {
  font-size: 8px;
  color: var(--text3);
  font-weight: 700;
  margin-bottom: 4px;
}

.psh-ar {
  font-family: var(--font-arabic);
  font-size: 14px;
  direction: rtl;
  text-align: right;
  color: var(--gold);
  line-height: 2;
}

.psh-fr {
  font-size: 9px;
  color: var(--text2);
  line-height: 1.5;
}

.psh-src {
  font-size: 8px;
  color: var(--text3);
  margin-top: 2px;
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text3);
  font-size: 11px;
  animation: fadeInUp 2s ease 1s both;
}

.scroll-ball {
  width: 18px;
  height: 28px;
  border: 1.5px solid var(--border2);
  border-radius: 9px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.scroll-ball::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBall 2s ease-in-out infinite;
}

@keyframes scrollBall {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ── FEATURES ── */
.features {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.feat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}

.feat-big {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.fc-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feat-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.fc-list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fc-list li {
  font-size: 13px;
  color: var(--text2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.fc-list li:last-child {
  border: none;
}

.fc-arabic-bg {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-arabic);
  font-size: 120px;
  color: rgba(201, 162, 39, .04);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.fc-tags span {
  background: rgba(45, 122, 79, .15);
  color: var(--green-l);
  border: 1px solid rgba(45, 122, 79, .3);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.fc-hadith {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px;
  margin-top: auto;
}

.fch-ar {
  font-family: var(--font-arabic);
  font-size: 16px;
  direction: rtl;
  text-align: right;
  color: var(--gold);
  line-height: 2;
}

.fch-src {
  font-size: 11px;
  color: var(--text3);
  margin-top: 4px;
}

.fc-bubble {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: rgba(45, 122, 79, .1);
  border: 1px solid rgba(45, 122, 79, .3);
  border-radius: var(--r-sm);
  padding: 10px;
  margin-top: auto;
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

.fc-apps {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.fc-app {
  font-size: 24px;
}

.fc-app.blocked {
  opacity: .4;
  filter: grayscale(1);
}

.fc-blocked-label {
  font-size: 11px;
  color: #f87171;
  margin-top: 8px;
  font-weight: 600;
}

.fc-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.fct-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text2);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.fct-item:last-child {
  border: none;
}

.fct-t {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  width: 36px;
  flex-shrink: 0;
}

/* ── QURAN HIGHLIGHT ── */
.quran-hl {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.qhl-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.qhl-phone {
  flex-shrink: 0;
  position: relative;
}

.qhl-text {
  flex: 1;
}

.qhl-text p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  margin: 16px 0 28px;
}

.qhl-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qhl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.qhl-dot {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.qhl-item strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.qhl-item p {
  font-size: 13px;
  color: var(--text2);
  margin: 0;
}

/* Mushaf mock */
.mushaf-mock {
  flex: 1;
  padding: 8px;
}

.mm-bismillah {
  font-family: var(--font-arabic);
  font-size: 12px;
  direction: rtl;
  text-align: center;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 2;
}

.mm-ayahs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  direction: rtl;
}

.mm-ayah {
  font-family: var(--font-arabic);
  font-size: 11px;
  color: var(--text);
  line-height: 2.2;
  padding: 2px 4px;
  border-radius: 4px;
}

.mm-active {
  background: rgba(201, 162, 39, .2);
  color: var(--gold);
}

.mm-bubble {
  background: var(--bg3);
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: 8px;
  padding: 6px 8px;
  margin-top: 6px;
}

.mmb-ref {
  font-size: 8px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2px;
}

.mmb-text {
  font-size: 9px;
  color: var(--text2);
  line-height: 1.5;
}

.mm-audio {
  background: var(--green);
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mma-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, .3);
  border-radius: 2px;
  overflow: hidden;
}

.mma-fill {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  width: 55%;
}

/* Prayer rows */
.pr-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 9px;
}

.pr-ic {
  font-size: 14px;
}

/* App rows */
.app-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 9px;
}

.toggle-off {
  width: 28px;
  height: 16px;
  background: #ef4444;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2px;
}

.toggle-off::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.toggle-on {
  width: 28px;
  height: 16px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2px;
}

.toggle-on::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

/* ── SCREENSHOTS ── */
.apercu {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.screens-wrapper {
  overflow: hidden;
  margin-top: 40px;
}

.screens-track {
  display: flex;
  gap: 24px;
  padding: 16px 32px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.screen-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.screen-label {
  font-size: 13px;
  color: var(--text3);
  font-weight: 600;
}

.screens-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.sn-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.sn-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sn-dots {
  display: flex;
  gap: 8px;
}

.sn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border2);
  transition: all .25s;
  cursor: pointer;
}

.sn-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.about-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-left {
  flex: 1;
}

.about-left p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  margin: 16px 0 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ag-item {
  display: flex;
  gap: 14px;
}

.ag-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ag-item strong {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.ag-item p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.about-right {
  flex-shrink: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.tc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text3);
  margin-bottom: 16px;
}

.tc-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--bg3);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text2);
}

.free-card {
  background: linear-gradient(135deg, var(--green-d), var(--green));
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.free-moon {
  font-size: 36px;
}

.free-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.free-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  margin-top: 3px;
}

/* ── DOWNLOAD ── */
.download {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(45, 122, 79, .06) 0%, transparent 70%);
}

.dl-arabic-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-arabic);
  font-size: 300px;
  color: rgba(201, 162, 39, .025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.dl-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.dl-moon {
  font-size: 56px;
  margin-bottom: 10px;
  animation: moonFloat 4s ease-in-out infinite;
}

.dl-arabic {
  font-family: var(--font-arabic);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}

.dl-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}

.dl-desc {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 48px;
}

.dl-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 480px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-gold);
}

.dlc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dlc-name {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-display);
}

.dlc-ver {
  font-size: 13px;
  color: var(--text3);
  margin-top: 3px;
}

.dlc-moon {
  font-size: 40px;
}

.dlc-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 24px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: #0a1a0f;
  padding: 16px 28px;
  border-radius: var(--r);
  font-weight: 800;
  font-size: 16px;
  width: 100%;
  box-shadow: 0 6px 28px rgba(201, 162, 39, .4);
  transition: all .25s;
  margin-bottom: 14px;
}

.dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201, 162, 39, .5);
}

.dlc-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--text3);
  line-height: 1.6;
}

.dl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.dl-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text2);
  transition: all .2s;
}

.dl-chip:hover {
  border-color: var(--gold);
  color: var(--text);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fl-moon {
  font-size: 28px;
}

.fl-name {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
}

.fl-ar {
  font-family: var(--font-arabic);
  font-size: 14px;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text3);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 12px;
  color: var(--text3);
  text-align: right;
  line-height: 1.7;
}

.footer-copy span {
  opacity: .6;
}

/* ── FLOATING BUTTON ── */
.float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.float-btn.show {
  transform: translateY(0);
  opacity: 1;
}

.float-btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: #0a1a0f;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(201, 162, 39, .5);
  transition: transform .2s;
}

.float-btn a:hover {
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }

  .hero-left {
    max-width: 600px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .feat-big {
    grid-column: span 2;
    flex-direction: row;
    gap: 24px;
  }

  .fc-list {
    margin-top: 0;
  }

  .qhl-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .qhl-phone {
    order: -1;
  }

  .qhl-item {
    text-align: left;
  }

  .about-inner {
    flex-direction: column;
  }

  .about-right {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .hero-right {
    display: none;
  }

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

  .feat-big {
    flex-direction: column;
    grid-column: auto;
  }

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

  .scroll-hint {
    display: none;
  }

  .dl-arabic-bg {
    font-size: 160px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
  }

  .hstat-div {
    display: none;
  }

  .hstat {
    width: calc(50% - 6px);
    text-align: center;
    padding: 12px;
    background: var(--bg2);
    border-radius: 10px;
    border: 1px solid var(--border);
  }
}