:root{
  --navy:#0F2038;
  --navy-2:#152C4A;
  --gold:#C6A15B;
  --gold-light:#E4C77C;
  --cream:#F8F6F1;
  --white:#FFFFFF;
  --ink:#1B2532;
  --gray:#5B6B7D;
  --gray-light:#E4E1D8;
  --radius:10px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}
h1,h2,h3,.logo{font-family:'Poppins',sans-serif;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
.container{max-width:1140px;margin:0 auto;padding:0 24px;}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  font-weight:600;
  color:var(--gold);
}

/* Top bar */
.topbar{background:var(--navy);color:#B9C4D3;font-size:13px;padding:8px 0;}
.topbar .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px;}
.topbar a{color:#B9C4D3;}
.topbar .topbar-right span{margin-left:16px;}

/* Header */
header{background:var(--white);border-bottom:1px solid var(--gray-light);position:sticky;top:0;z-index:50;}
header .container{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;}
.logo{font-size:22px;font-weight:700;color:var(--navy);}
.logo span{color:var(--gold);}
nav ul{list-style:none;display:flex;gap:32px;}
nav a{font-size:14px;font-weight:500;color:var(--ink);}
nav a:hover{color:var(--gold);}
.btn{
  display:inline-block;
  padding:12px 26px;
  border-radius:6px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  border:1px solid transparent;
}
.btn-gold{background:var(--gold);color:var(--navy);}
.btn-gold:hover{background:var(--gold-light);}
.btn-outline{border:1px solid var(--white);color:var(--white);}
.btn-outline:hover{background:rgba(255,255,255,0.1);}
.btn-navy-outline{border:1px solid var(--navy);color:var(--navy);}
.btn-navy-outline:hover{background:var(--navy);color:var(--white);}
.header-cta{display:flex;align-items:center;gap:28px;}

/* Hero */
.hero{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 100%);
  color:var(--white);
  padding:100px 0 90px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  right:-120px;top:-120px;
  width:420px;height:420px;
  border:1px solid rgba(198,161,91,0.25);
  border-radius:50%;
}
.hero::after{
  content:"";
  position:absolute;
  right:-40px;bottom:-160px;
  width:320px;height:320px;
  border:1px solid rgba(198,161,91,0.18);
  border-radius:50%;
}
.hero-inner{max-width:680px;position:relative;z-index:2;}
.hero h1{font-size:44px;font-weight:700;line-height:1.25;margin:18px 0 20px;}
.hero h1 em{font-style:normal;color:var(--gold-light);}
.hero p{font-size:17px;color:#C7D0DC;max-width:560px;margin-bottom:34px;}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap;}
.arabic-tag{font-size:15px;color:#8FA0B5;margin-top:28px;}

/* Small page hero (legal pages) */
.page-hero{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 100%);
  color:var(--white);
  padding:56px 0;
}
.page-hero .eyebrow{color:var(--gold-light);}
.page-hero h1{font-size:32px;font-weight:600;margin-top:10px;}
.page-hero p{color:#C7D0DC;margin-top:10px;font-size:14px;}

/* Trust bar */
.trustbar{background:var(--cream);border-top:1px solid var(--gray-light);border-bottom:1px solid var(--gray-light);padding:22px 0;}
.trustbar .container{display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px;}
.trust-item{font-size:13px;color:var(--gray);font-weight:500;display:flex;align-items:center;gap:8px;}
.trust-item b{color:var(--navy);font-weight:600;}

/* Section generic */
section{padding:88px 0;}
.section-head{max-width:600px;margin-bottom:52px;}
.section-head h2{font-size:32px;font-weight:600;color:var(--navy);margin-top:10px;}
.section-head p{color:var(--gray);margin-top:14px;font-size:15px;}
.section-alt{background:var(--cream);}

/* Services */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.service-card{
  background:var(--white);
  border:1px solid var(--gray-light);
  border-radius:var(--radius);
  padding:30px 26px;
  transition:border-color .2s, transform .2s;
}
.service-card:hover{border-color:var(--gold);transform:translateY(-3px);}
.service-icon{
  width:46px;height:46px;
  border-radius:8px;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
}
.service-icon svg{width:22px;height:22px;stroke:var(--gold-light);}
.service-card h3{font-size:17px;font-weight:600;color:var(--navy);margin-bottom:10px;}
.service-card p{font-size:14px;color:var(--gray);}
.service-card.placeholder{border-style:dashed;background:transparent;}
.service-card.placeholder .service-icon{background:var(--gray-light);}
.service-card.placeholder .service-icon svg{stroke:var(--gray);}
.placeholder-tag{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.5px;
  text-transform:uppercase;
  color:var(--gray);
  background:var(--gray-light);
  padding:3px 9px;
  border-radius:4px;
  margin-top:10px;
}

/* About / why */
.about-wrap{display:grid;grid-template-columns:1.1fr 0.9fr;gap:60px;align-items:center;}
.about-text h2{font-size:32px;font-weight:600;color:var(--navy);margin:10px 0 18px;}
.about-text p{color:var(--gray);font-size:15px;margin-bottom:16px;}
.stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.stat-card{background:var(--navy);color:var(--white);border-radius:var(--radius);padding:26px 22px;}
.stat-card .num{font-size:30px;font-weight:700;color:var(--gold-light);font-family:'Poppins',sans-serif;}
.stat-card .label{font-size:13px;color:#B9C4D3;margin-top:6px;}

/* Founders */
.founders-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.founder-card{
  background:var(--white);
  border:1px solid var(--gray-light);
  border-radius:var(--radius);
  padding:26px 20px;
  text-align:center;
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.founder-card:hover{
  transform:scale(1.07);
  box-shadow:0 16px 34px rgba(15,32,56,0.18);
  border-color:var(--gold);
  z-index:10;
}
.avatar{
  width:84px;height:84px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;
  font-family:'Poppins',sans-serif;
  font-weight:600;font-size:18px;
  margin:0 auto 16px;
  overflow:hidden;
  border:2px solid var(--gold-light);
  transition:width .25s ease, height .25s ease;
}
.founder-card:hover .avatar{
  width:104px;height:104px;
}
.avatar img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.founder-card h3{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:4px;}
.founder-card .role{font-size:11px;color:var(--gold);font-weight:600;text-transform:uppercase;letter-spacing:0.3px;margin-bottom:12px;line-height:1.4;}
.founder-card .bio{font-size:13px;color:var(--gray);text-align:left;line-height:1.55;}

/* CTA banner */
.cta-banner{background:var(--navy);color:var(--white);text-align:center;padding:70px 0;}
.cta-banner h2{font-size:28px;font-weight:600;margin-bottom:14px;}
.cta-banner p{color:#C7D0DC;margin-bottom:30px;font-size:15px;}

/* Contact */
.contact-wrap{display:grid;grid-template-columns:0.9fr 1.1fr;gap:60px;}
.contact-info h2{font-size:32px;font-weight:600;color:var(--navy);margin:10px 0 20px;}
.contact-line{display:flex;gap:14px;margin-bottom:20px;align-items:flex-start;}
.contact-line .ico{
  width:36px;height:36px;border-radius:8px;background:var(--white);
  border:1px solid var(--gray-light);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.contact-line .ico svg{width:16px;height:16px;stroke:var(--navy);}
.contact-line .txt-label{font-size:12px;color:var(--gray);text-transform:uppercase;letter-spacing:0.5px;}
.contact-line .txt-val{font-size:14px;color:var(--ink);font-weight:500;}
.form-card{background:var(--white);border:1px solid var(--gray-light);border-radius:var(--radius);padding:32px;}
.form-row{margin-bottom:18px;}
.form-row label{display:block;font-size:13px;font-weight:500;color:var(--navy);margin-bottom:6px;}
.form-row input,.form-row textarea{
  width:100%;
  padding:11px 14px;
  border:1px solid var(--gray-light);
  border-radius:6px;
  font-family:'Inter',sans-serif;
  font-size:14px;
  background:var(--cream);
}
.form-row textarea{min-height:100px;resize:vertical;}

/* Legal / policy pages */
.legal-wrap{display:grid;grid-template-columns:260px 1fr;gap:56px;align-items:start;}
.legal-toc{position:sticky;top:100px;}
.legal-toc h4{font-size:12px;text-transform:uppercase;letter-spacing:0.5px;color:var(--gray);margin-bottom:14px;}
.legal-toc ul{list-style:none;}
.legal-toc li{margin-bottom:10px;}
.legal-toc a{font-size:13px;color:var(--ink);}
.legal-toc a:hover{color:var(--gold);}
.legal-body h2{font-size:20px;font-weight:600;color:var(--navy);margin:36px 0 12px;}
.legal-body h2:first-child{margin-top:0;}
.legal-body p{font-size:14px;color:var(--gray);margin-bottom:14px;}
.legal-body ul{margin:0 0 14px 20px;color:var(--gray);font-size:14px;}
.legal-body li{margin-bottom:6px;}
.legal-body .updated{font-size:12px;color:var(--gray);margin-bottom:36px;}
.legal-body strong{color:var(--ink);}

/* Footer */
footer{background:#0A1626;color:#8FA0B5;padding:60px 0 24px;font-size:13px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px;}
.footer-logo{font-family:'Poppins',sans-serif;font-size:20px;font-weight:700;color:var(--white);margin-bottom:14px;}
.footer-logo span{color:var(--gold);}
.footer-col h4{color:var(--white);font-size:13px;font-weight:600;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.5px;}
.footer-col ul{list-style:none;}
.footer-col li{margin-bottom:10px;}
.footer-col a:hover{color:var(--gold-light);}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding-top:24px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;}

@media(max-width:900px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .founders-grid{grid-template-columns:repeat(2,1fr);}
  .about-wrap,.contact-wrap{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .legal-wrap{grid-template-columns:1fr;}
  .legal-toc{position:static;}
  nav{display:none;}
  .hero h1{font-size:32px;}
}
