:root{
  --namaa-navy:#254E72;
  --namaa-cyan:#0A95B0;
  --namaa-purple:#8170BA;
  --namaa-green:#ABC24E;
  --namaa-coral:#EB655F;

  --bg:#F6F6F4;
  --surface:#FFFFFF;
  --text:#1F2A37;
  --muted:#6B7280;
  --border:#E7E7E3;
  --shadow:0 14px 35px rgba(37,78,114,0.08);
  --shadow-soft:0 10px 24px rgba(37,78,114,0.06);

  --track-color:#8170BA;
  --track-soft:rgba(129,112,186,0.12);
}

*{
  box-sizing:border-box;
  font-family:'Alexandria',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:linear-gradient(180deg,#f8f8f6 0%,#f3f4f1 100%);
  direction:rtl;
  color:var(--text);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

button,
input{
  font-family:'Alexandria',sans-serif;
}

.page-wrap{
  max-width:1450px;
  margin:auto;
  padding:32px 26px 90px;
}

/* Header */
.top-header{
  background:rgba(255,255,255,0.92);
  border:1px solid var(--border);
  border-radius:999px;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-shadow:var(--shadow);
  margin-bottom:30px;
  backdrop-filter:blur(8px);
  flex-wrap:wrap;
}

.logo-box{
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-img{
  width:78px;
  height:78px;
  object-fit:contain;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.nav-link{
  padding:12px 24px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  color:var(--namaa-navy);
  transition:.25s ease;
}

.nav-link:hover{
  background:#eef4f7;
}

.nav-link.active{
  background:var(--namaa-navy);
  color:#fff;
}

/* Shared section */
.section-block{
  margin-bottom:28px;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.section-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(129,112,186,0.12);
  color:var(--namaa-purple);
  padding:8px 15px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  margin-bottom:12px;
}

.section-title{
  margin:0 0 8px;
  font-size:32px;
  line-height:1.4;
  color:var(--namaa-navy);
  font-weight:900;
}

.section-desc{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.9;
}

/* Unified Hero */
.hero-shell{
  position:relative;
  overflow:hidden;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:34px;
  padding:38px 30px;
  margin-bottom:28px;
  box-shadow:var(--shadow);
}

.hero-shell::before,
.hero-shell::after{
  content:"";
  position:absolute;
  border-radius:50%;
  opacity:.12;
  z-index:1;
}

.hero-shell::before{
  width:180px;
  height:180px;
  top:-45px;
  left:-30px;
  background:rgba(129,112,186,.24);
}

.hero-shell::after{
  width:170px;
  height:170px;
  bottom:-55px;
  right:-10px;
  background:rgba(10,149,176,.20);
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:center;
}

.hero-copy{
  max-width:760px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 15px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  margin-bottom:16px;
  background:rgba(129,112,186,0.12);
  color:var(--namaa-purple);
}

.hero-title{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.35;
  color:var(--namaa-navy);
  font-weight:900;
}

.hero-desc{
  margin:0 0 20px;
  font-size:15px;
  color:var(--muted);
  line-height:2;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:16px;
  font-size:13px;
  font-weight:800;
  transition:.25s ease;
  border:none;
  cursor:pointer;
}

.hero-btn.primary{
  background:var(--namaa-navy);
  color:#fff;
}

.hero-btn.secondary{
  background:#eef4f7;
  color:var(--namaa-navy);
}

.hero-btn:hover{
  transform:translateY(-2px);
}

.hero-side{
  display:grid;
  gap:14px;
}

.hero-metric{
  background:linear-gradient(180deg,#ffffff 0%,#f8fafb 100%);
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.hero-metric-label{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

.hero-metric-value{
  color:var(--namaa-navy);
  font-size:28px;
  font-weight:900;
}

/* Tracks variant */
.hero-shell.tracks-hero .hero-kicker{
  background:var(--track-soft);
  color:var(--track-color);
}

.hero-shell.tracks-hero::before{
  background:rgba(129,112,186,.18);
}

.hero-shell.tracks-hero::after{
  background:rgba(10,149,176,.16);
}

.hero-orbs{
  position:relative;
  min-height:220px;
}

.hero-orb{
  position:absolute;
  border-radius:50%;
}

.hero-orb.one{
  width:130px;
  height:130px;
  right:35px;
  top:10px;
  background:rgba(129,112,186,.18);
}

.hero-orb.two{
  width:145px;
  height:145px;
  left:10px;
  bottom:10px;
  background:rgba(10,149,176,.18);
}

.hero-orb.three{
  width:110px;
  height:110px;
  right:110px;
  bottom:-5px;
  background:rgba(171,194,78,.16);
}

.hero-orb.four{
  width:120px;
  height:120px;
  left:40px;
  top:30px;
  background:rgba(235,101,95,.14);
}

/* News variant */
.hero-shell.news-hero .hero-kicker{
  background:rgba(129,112,186,0.12);
  color:var(--namaa-purple);
}

@media(max-width:1100px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-side{
    grid-template-columns:repeat(3,1fr);
  }

  .hero-orbs{
    min-height:170px;
  }
}

@media(max-width:1000px){
  .page-wrap{
    padding:20px 14px 70px;
  }

  .top-header{
    border-radius:26px;
    justify-content:center;
  }

  .main-nav{
    justify-content:center;
  }

  .section-title{
    font-size:28px;
  }
}

@media(max-width:700px){
  .hero-shell{
    padding:28px 20px;
    border-radius:28px;
  }

  .hero-title{
    font-size:30px;
  }

  .hero-side{
    grid-template-columns:1fr;
  }

  .hero-metric-value{
    font-size:24px;
  }
}