:root{
  --blue:#071B33;
  --gold:#B98B3D;
  --gold2:#D9B86F;
  --bg:#F7F5F0;
  --card:#FFFFFF;
  --text:#111827;
  --muted:#6B7280;
  --border:#E7E0D3;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:"Tajawal","Segoe UI",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  direction:rtl;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(1180px,92vw);
  margin:auto;
}

.topbar{
  background:linear-gradient(135deg,var(--blue),#101820);
  color:white;
  padding:10px 0;
  font-size:14px;
}

.nav{
  background:white;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:20;
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
  gap:24px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  color:var(--blue);
  font-size:24px;
}

.logo-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  display:grid;
  place-items:center;
  color:var(--blue);
  font-weight:900;
}

.menu{
  display:flex;
  gap:24px;
  font-weight:700;
  color:#243244;
}

.actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.btn{
  border:0;
  border-radius:14px;
  padding:13px 20px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#111827;
}

.btn-dark{
  background:var(--blue);
  color:white;
}

.btn-light{
  background:white;
  border:1px solid var(--border);
  color:var(--blue);
}

.hero{
  min-height:690px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(135deg,rgba(7,27,51,.94),rgba(11,43,87,.88)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-position:center;
  color:white;
}

.kicker{
  color:var(--gold2);
  font-weight:900;
  margin-bottom:14px;
}

.hero h1{
  font-size:62px;
  line-height:1.15;
  margin:0 0 22px;
  max-width:850px;
}

.hero p{
  font-size:22px;
  line-height:1.9;
  color:#E9EDF3;
  max-width:760px;
  margin-bottom:32px;
}

.hero-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:45px;
}

.hero-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  padding:22px;
}

.hero-card b{
  font-size:30px;
  color:var(--gold2);
}

.section{
  padding:86px 0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:34px;
}

.section h2{
  font-size:42px;
  margin:0;
  color:var(--blue);
}

.lead{
  font-size:18px;
  color:var(--muted);
  line-height:1.8;
  max-width:680px;
  margin:12px 0 0;
}

.grid{
  display:grid;
  gap:22px;
}

.grid-3{
  grid-template-columns:repeat(3,1fr);
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:26px;
  padding:28px;
  box-shadow:0 18px 50px rgba(7,27,51,.10);
}

.icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:#F5EBD7;
  color:var(--gold);
  display:grid;
  place-items:center;
  font-size:24px;
  margin-bottom:18px;
}

.card h3{
  font-size:24px;
  margin:0 0 12px;
  color:var(--blue);
}

.card p{
  color:var(--muted);
  line-height:1.75;
}

.price{
  font-size:22px;
  color:var(--blue);
  font-weight:900;
}

.band{
  background:linear-gradient(135deg,var(--blue),#101820);
  color:white;
  border-radius:32px;
  padding:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.footer{
  background:#091827;
  color:white;
  padding:60px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.3fr;
  gap:40px;
}

.footer a,
.footer p{
  color:#CDD6E2;
  line-height:1.8;
}

@media(max-width:900px){
  .menu{
    display:none;
  }

  .hero h1{
    font-size:42px;
  }

  .hero-cards,
  .grid-3,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .section-head{
    display:block;
  }
}