@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;500;600;700;800&family=Inter:wght@500;600;700&display=swap');

:root{
  --navy:#0F2A43;
  --navy-dark:#071E30;
  --ink:#07131f;
  --emerald:#1F5E4A;
  --emerald-2:#2A7A61;
  --gold:#C6A76B;
  --paper:#F8FAFC;
  --muted:#6B7280;
  --line:#E5E7EB;
}

*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}

body{
  font-family:"Noto Kufi Arabic",sans-serif;
  background:var(--navy);
  color:var(--paper);
  line-height:1.8;
}

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

.nav{
  position:fixed;
  top:0;
  inset-inline:0;
  z-index:20;
  height:78px;
  padding:0 42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(15,42,67,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.brand{
  direction:ltr;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:11px;
}

.brand-mark{flex-shrink:0;}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  letter-spacing:.14em;
}

.brand-text > span{
  font-family:Inter,sans-serif;
  font-size:18px;
  font-weight:700;
}

.brand-text > small{
  color:var(--gold);
  font-family:Inter,sans-serif;
  font-size:10px;
  font-weight:700;
}

.nav-links{
  display:flex;
  gap:28px;
  color:rgba(248,250,252,.65);
  font-size:14px;
  font-weight:500;
}

.nav-links a:hover{color:#fff}

.nav-cta{
  background:var(--emerald);
  color:#fff;
  padding:11px 20px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
}

.hero{
  min-height:100vh;
  padding:150px 42px 80px;
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(320px,.72fr);
  gap:70px;
  align-items:center;
  max-width:1240px;
  margin:auto;
  position:relative;
  overflow:hidden;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 15%, rgba(42,122,97,.22), transparent 32%),
    radial-gradient(circle at 80% 45%, rgba(198,167,107,.12), transparent 34%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:auto,auto,72px 72px,72px 72px;
  pointer-events:none;
  opacity:.9;
}

.hero-copy,
.diagnostic-card{
  position:relative;
  z-index:2;
}

.kicker,
.label{
  font-family:Inter,"Noto Kufi Arabic",sans-serif;
  letter-spacing:.16em;
  font-size:11px;
  font-weight:700;
  color:var(--emerald-2);
  margin-bottom:16px;
  text-transform:uppercase;
}

.hero h1{
  max-width:760px;
  font-size:64px;
  line-height:1.25;
  letter-spacing:-.04em;
  margin-bottom:24px;
}

.hero-text{
  max-width:680px;
  color:rgba(248,250,252,.68);
  font-size:18px;
}

.hero-actions{
  margin-top:34px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 24px;
  border-radius:8px;
  font-size:14px;
  font-weight:800;
}

.btn-primary{
  background:var(--emerald);
  color:#fff;
  box-shadow:0 14px 34px rgba(31,94,74,.36);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.15);
  color:rgba(248,250,252,.78);
}

.diagnostic-card{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  padding:28px;
  box-shadow:0 30px 90px rgba(0,0,0,.22);
}

.card-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
  direction:ltr;
}

.card-head span{
  font-family:Inter,sans-serif;
  color:rgba(248,250,252,.38);
  font-size:11px;
  letter-spacing:.12em;
  font-weight:700;
}

.card-head strong{
  color:var(--gold);
  font-family:Inter,sans-serif;
  font-size:12px;
}

.score-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:17px 0;
  border-bottom:1px solid rgba(255,255,255,.075);
}

.score-row span{
  display:block;
  font-weight:700;
  color:#fff;
  margin-bottom:2px;
}

.score-row small{
  display:block;
  color:rgba(248,250,252,.38);
  font-family:Inter,sans-serif;
  font-size:11px;
  direction:ltr;
}

.dots{
  display:flex;
  gap:7px;
  direction:ltr;
}

.dots i,
.dots em{
  width:10px;
  height:10px;
  border-radius:999px;
  display:block;
}

.dots i{background:var(--emerald-2)}
.dots em{background:rgba(255,255,255,.14)}

.priority{
  margin-top:26px;
  padding:18px;
  border-radius:14px;
  background:rgba(31,94,74,.18);
  border:1px solid rgba(42,122,97,.28);
}

.priority span{
  display:block;
  color:rgba(248,250,252,.48);
  font-size:12px;
  margin-bottom:6px;
}

.priority strong{
  color:#fff;
  font-size:15px;
}

.section{
  padding:92px 42px;
}

.light{
  background:var(--paper);
  color:var(--ink);
}

.white{
  background:#fff;
  color:var(--ink);
}

.navy{
  background:var(--navy);
  color:var(--paper);
  position:relative;
  overflow:hidden;
}

.navy:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:72px 72px;
  pointer-events:none;
}

.section > *,
.final-cta > *{
  position:relative;
  z-index:2;
}

.section-head,
.split,
.cards,
.method-grid{
  max-width:1180px;
  margin:auto;
}

.section-head{
  margin-bottom:42px;
}

.section h2,
.final-cta h2{
  font-size:42px;
  line-height:1.35;
  letter-spacing:-.025em;
}

.gold{color:var(--gold)}

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

.cards.four{
  grid-template-columns:repeat(4,1fr);
}

.cards article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:26px;
}

.white .cards article{
  background:#F8FAFC;
}

.cards h3{
  color:var(--navy);
  font-size:18px;
  line-height:1.6;
  margin-bottom:10px;
}

.cards p{
  color:var(--muted);
  font-size:14px;
}

.method-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:38px;
}

.method-grid article{
  position:relative;
}

.method-grid span{
  display:inline-flex;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:var(--gold);
  border:1px solid rgba(198,167,107,.4);
  font-family:Inter,sans-serif;
  font-size:13px;
  font-weight:800;
  margin-bottom:22px;
}

.method-grid h3{
  font-size:22px;
  margin-bottom:10px;
}

.method-grid p{
  color:rgba(248,250,252,.58);
  font-size:14px;
}

.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:start;
}

.outcomes{
  list-style:none;
  display:grid;
  gap:14px;
}

.outcomes li{
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:18px 20px;
  color:var(--navy);
  font-weight:700;
}

.outcomes li:before{
  content:"";
  display:inline-block;
  width:9px;
  height:9px;
  border-radius:999px;
  background:var(--emerald-2);
  margin-left:10px;
}

.final-cta{
  text-align:center;
  padding:95px 42px;
  background:var(--navy-dark);
  color:#fff;
}

.final-cta p:not(.label){
  color:rgba(248,250,252,.62);
  font-size:18px;
  margin:16px 0 30px;
}

.footer{
  background:transparent;
  padding:44px 42px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:28px;
}

.footer-divider{
  width:100%;
  max-width:480px;
  height:1px;
  margin:0 auto;
  background:rgba(255,255,255,0.12);
}

.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  direction:ltr;
  text-decoration:none;
}

.footer-brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  letter-spacing:.14em;
}

.footer-brand-text span{
  font-family:Inter,sans-serif;
  font-size:16px;
  font-weight:700;
  color:#F8FAFC;
}

.footer-brand-text small{
  font-family:Inter,sans-serif;
  font-size:9px;
  font-weight:700;
  color:var(--gold);
}

.footer-tag{
  max-width:520px;
  font-size:14px;
  line-height:1.8;
  color:rgba(248,250,252,.6);
}

.footer-socials{
  display:flex;
  gap:18px;
  align-items:center;
}

.footer-socials a{
  color:rgba(248,250,252,.6);
  display:inline-flex;
  transition:color .2s;
}

.footer-socials a:hover{color:var(--gold)}

.footer-rights{
  font-family:Inter,sans-serif;
  font-size:12px;
  color:rgba(248,250,252,.42);
  letter-spacing:.04em;
}

.footer-legal{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-privacy{
  font-size:13px;
  color:rgba(248,250,252,.42);
  transition:color .2s;
}

.footer-privacy:hover{
  color:var(--gold);
}

@media(max-width:980px){
  .nav{
    padding:0 22px;
  }

  .nav-links{
    display:none;
  }

  .hero{
    grid-template-columns:1fr;
    padding:120px 24px 70px;
    gap:40px;
  }

  .hero h1{
    font-size:42px;
  }

  .section{
    padding:70px 24px;
  }

  .cards,
  .cards.four,
  .method-grid,
  .split{
    grid-template-columns:1fr;
  }

  .section h2,
  .final-cta h2{
    font-size:30px;
  }

  .footer{
    padding:28px 22px;
  }
}

@media(max-width:560px){
  .hero h1{
    font-size:34px;
  }

  .hero-text{
    font-size:15px;
  }

  .diagnostic-card{
    padding:20px;
  }

  .score-row{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-links{
    flex-direction:column;
    align-items:center;
    gap:12px;
  }

  .footer-legal{
    flex-direction:column;
    gap:8px;
  }
}

.footer-links i{
  font-size:22px;
}

.footer-links a{
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-links a[href^="mailto"]{
  font-size:15px;
}



.challenge-note {
  max-width: 760px;
  margin: 34px auto 18px;
  color: rgba(18, 48, 71, 0.72);
  font-size: 20px;
  line-height: 1.9;
  font-weight: 700;
  text-align: center;
}

.challenge-cta {
  margin-top: 22px;
  text-align: center;
}

/* Challenges refinement */
#challenges {
  padding-top: 88px;
  padding-bottom: 88px;
}

#challenges .cards {
  margin-top: 36px;
}

#challenges .card h3 {
  line-height: 1.45;
}

#challenges .card p {
  line-height: 1.8;
}

.challenge-note {
  max-width: 720px;
  margin: 34px auto 18px;
  font-size: 19px;
  line-height: 1.8;
}

.challenge-cta {
  margin-top: 20px;
}

@media (max-width: 560px) {
  #challenges {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .challenge-note {
    font-size: 16px;
  }
}
