:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --border: #1e1e1e;
  --border2: #2a2a2a;
  --gold: #C9A84C;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-line: rgba(201,168,76,0.28);
  --text: #f0ece3;
  --muted: #666;
  --dim: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Tajawal', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(10,10,10,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold-line);
  padding: 7px 18px;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--gold-dim) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 32px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity .2s;
  font-family: 'Tajawal', sans-serif;
}

.btn-primary:hover { opacity: .85; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  text-decoration: none;
  border: 1px solid var(--border2);
  letter-spacing: 0.04em;
  transition: border-color .2s;
  font-family: 'Tajawal', sans-serif;
}

.btn-ghost:hover { border-color: var(--muted); }

/* ── SECTION ── */
.sec {
  padding: 100px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.sec-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.sec-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.sec-title em { font-style: normal; color: var(--gold); }

.sec-body {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.85;
}

/* ── DIVIDER ── */
.sec-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
  opacity: .5;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--muted); }

.footer-copy {
  font-size: 12px;
  color: var(--dim);
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color .2s;
}

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

/* ── ANIMATIONS ── */
@keyframes up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: .3; }
  50% { opacity: 1; }
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 20px; }
  .footer-links { justify-content: center; }
}
