:root{
  --bg:#f8f6f2;
  --surface:#ffffff;
  --surface-2:#fdfbf8;
  --text:#243447;
  --muted:#6b7280;
  --primary:#c9dceb;
  --primary-strong:#a9c6de;
  --accent:#e8ddd0;
  --border:#e9e4dc;
  --shadow:0 10px 30px rgba(36,52,71,.08);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Cairo","Tajawal",Arial,sans-serif;
  background:linear-gradient(180deg,#fcfbf8 0%,#f8f6f2 100%);
  color:var(--text);
  line-height:1.9;
}
a{text-decoration:none;color:inherit}
.hero{
  min-height:100vh;
  padding:28px 20px 60px;
  background:
    radial-gradient(circle at top right, rgba(201,220,235,.55), transparent 30%),
    radial-gradient(circle at top left, rgba(232,221,208,.45), transparent 30%),
    linear-gradient(180deg,#fcfbf8 0%,#f6f3ee 100%);
}
.nav{
  max-width:1200px;
  margin:0 auto 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(10px);
  border:1px solid rgba(233,228,220,.8);
  border-radius:18px;
  padding:14px 20px;
  box-shadow:var(--shadow);
}
.logo{
  font-size:1.35rem;
  font-weight:800;
  letter-spacing:.5px;
}
.nav-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.nav-links a{
  color:var(--muted);
  font-weight:600;
  transition:.25s ease;
}
.nav-links a:hover{color:var(--text)}
.hero-content{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.badge{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 16px;
  background:rgba(255,255,255,.8);
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  box-shadow:var(--shadow);
}
.hero h1{
  margin:0 0 18px;
  font-size:clamp(2rem,5vw,4rem);
  line-height:1.3;
}
.lead{
  max-width:780px;
  margin:0 auto 28px;
  font-size:1.08rem;
  color:var(--muted);
}
.actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
  border:1px solid transparent;
}
.btn.primary{
  background:var(--text);
  color:#fff;
}
.btn.primary:hover{
  transform:translateY(-2px);
  opacity:.95;
}
.btn.secondary{
  background:rgba(255,255,255,.78);
  color:var(--text);
  border-color:var(--border);
}
.btn.secondary:hover{
  transform:translateY(-2px);
  background:#fff;
}
main{
  max-width:1200px;
  margin:0 auto;
  padding:30px 20px 80px;
}
.section{
  margin-bottom:34px;
}
.section h2{
  margin:0 0 18px;
  font-size:2rem;
  text-align:center;
}
.card{
  background:linear-gradient(180deg,rgba(255,255,255,.95) 0%,rgba(253,251,248,.95) 100%);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--shadow);
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}
.grid .card h3{
  margin-top:0;
  margin-bottom:10px;
  font-size:1.15rem;
}
.grid .card p{
  margin:0;
  color:var(--muted);
}
.list-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
  margin-top:22px;
}
.list-item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px 20px;
  font-weight:700;
  box-shadow:0 6px 20px rgba(36,52,71,.05);
}
.cta{
  text-align:center;
}
.cta p{
  max-width:820px;
  margin:0 auto 24px;
  color:var(--muted);
}
#contact p{
  color:var(--muted);
}
#contact a{
  color:var(--text);
  font-weight:800;
}
.footer{
  padding:24px 20px 40px;
  text-align:center;
  color:var(--muted);
}
@media (max-width:768px){
  .nav{
    flex-direction:column;
    align-items:flex-start;
  }
  .nav-links{
    width:100%;
    gap:12px;
  }
  .hero{
    padding-top:20px;
  }
  .card{
    padding:24px;
  }
  .section h2{
    font-size:1.6rem;
  }
}