/* ===================================================================
   SIRAJ CONSULTING — stylesheet
   Brand: deep navy + gold. Bilingual EN / AR.
   =================================================================== */

/* ---------- Local Arabic display font ---------- */
@font-face {
  font-family: "Almarai Display";
  src: url("assets/fonts/Almarai-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy-950: #060f24;
  --navy-900: #0a1733;
  --navy-850: #0d1d40;
  --navy-800: #11254f;
  --navy-700: #16315f;
  --navy-600: #1d3e74;
  --line: rgba(201, 162, 75, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);

  --gold: #c9a24b;
  --gold-light: #e8c879;
  --gold-deep: #9b7b2e;
  --gold-grad: linear-gradient(135deg, #e8c879 0%, #c9a24b 55%, #9b7b2e 100%);

  --white: #ffffff;
  --text: #eaf0fb;
  --text-soft: #b6c2dc;
  --text-mute: #8294b5;

  --paper: #f5f6fa;
  --ink: #0a1733;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --ff-en-display: "Sora", system-ui, sans-serif;
  --ff-en-body: "Inter", system-ui, sans-serif;
  --ff-ar-display: "Almarai Display", "Tajawal", sans-serif;
  --ff-ar-body: "Tajawal", system-ui, sans-serif;

  --ff-display: var(--ff-en-display);
  --ff-body: var(--ff-en-body);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[lang="ar"] {
  --ff-display: var(--ff-ar-display);
  --ff-body: var(--ff-ar-body);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--ff-body);
  background: var(--navy-950);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3, [lang="ar"] h4 { letter-spacing: 0; line-height: 1.3; }

.eyebrow {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
[lang="ar"] .eyebrow { letter-spacing: 0.05em; }
.eyebrow.gold { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  max-width: 18ch;
  margin-bottom: 6px;
}
.section-lead {
  margin-top: 22px;
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 1.08rem;
}
.sub-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 28px;
}

.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.98rem;
  padding: 14px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-gold {
  background: var(--gold-grad); color: #1a1407;
  box-shadow: 0 8px 30px rgba(201,162,75,0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,162,75,0.42); }
.btn-ghost {
  background: transparent; color: var(--text); border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 17, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 36px; width: auto; display: block; }
.footer-logo { height: 42px; width: auto; margin-bottom: 4px; }
.brand-icon { width: 34px; height: 34px; object-fit: contain; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--ff-en-display); font-weight: 800; font-size: 1.32rem; color: var(--white); letter-spacing: 0.04em; }
.brand-sub { font-family: var(--ff-en-display); font-weight: 500; font-size: 0.56rem; letter-spacing: 0.42em; color: var(--gold); margin-top: 3px; }

.nav { display: flex; gap: 34px; }
.nav a {
  font-family: var(--ff-display); font-size: 0.92rem; font-weight: 500;
  color: var(--text-soft); text-decoration: none; position: relative; padding: 6px 0;
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  font-family: var(--ff-display); font-weight: 600; font-size: 0.85rem;
  background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: all .3s;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold-light); }

.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-btn span { width: 24px; height: 2px; background: var(--white); transition: .3s; }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 76px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 0%, #16315f 0%, transparent 55%),
    radial-gradient(120% 100% at 0% 100%, #0d1d40 0%, transparent 60%),
    linear-gradient(180deg, #0a1733 0%, #060f24 100%);
}
.hero-starburst {
  position: absolute; top: 50%; left: 50%; width: min(72vw, 780px);
  transform: translate(-50%, -50%); opacity: 0.12;
  filter: drop-shadow(0 0 60px rgba(201,162,75,0.25));
  animation: spin 120s linear infinite;
}
.hero-glow {
  position: absolute; top: 50%; left: 50%; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(201,162,75,0.16), transparent 62%);
  filter: blur(24px); transform: translate(-50%, -50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 50% 45%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 45%, #000 0%, transparent 78%);
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Stage: service cards surrounding the central statement */
.hero-stage {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr minmax(auto, 580px) 1fr;
  align-items: center; gap: clamp(22px, 3vw, 52px);
  min-height: calc(100svh - 76px); padding: 90px 0 60px;
}
.hero-center { text-align: center; }
.hero-eyebrow { color: var(--gold-light); }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05; letter-spacing: -0.02em; margin-inline: auto;
}
[lang="ar"] .hero-title { line-height: 1.3; letter-spacing: 0; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero-title .line-in { display: block; }
.hero-title em { font-style: normal; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { max-width: 50ch; color: var(--text-soft); font-size: 1.06rem; margin: 24px auto 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; justify-content: center; }

/* Floating service cards */
.hero-aside { display: flex; flex-direction: column; gap: 16px; }
.float-card {
  position: relative; display: flex; align-items: center; gap: 14px;
  padding: 17px 18px; border-radius: 14px; text-decoration: none;
  background: linear-gradient(150deg, rgba(29,62,116,0.30), rgba(13,29,64,0.42));
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), border-color .4s, background .4s, box-shadow .4s;
}
.float-card:hover {
  transform: translateY(-4px); border-color: var(--line);
  background: linear-gradient(150deg, rgba(29,62,116,0.5), rgba(13,29,64,0.55));
  box-shadow: 0 18px 42px rgba(0,0,0,0.38);
}
.fc-no { font-family: var(--ff-en-display); font-weight: 800; font-size: 0.82rem; color: var(--gold); flex-shrink: 0; }
.fc-title { font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; color: var(--text); line-height: 1.3; }
.fc-arrow { margin-inline-start: auto; color: var(--gold-light); opacity: 0; transition: opacity .3s; flex-shrink: 0; font-size: 1.1rem; }
.float-card:hover .fc-arrow { opacity: 1; }
[dir="rtl"] .fc-arrow { transform: scaleX(-1); }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-mute); text-decoration: none;
}
.scroll-cue i { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue i::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--gold-light); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0%{top:-50%} 60%,100%{top:100%} }

/* ===================== ABOUT ===================== */
.about { background: linear-gradient(180deg, #060f24, #0a1733); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.about-head { position: sticky; top: 110px; }
.about-body p { color: var(--text-soft); font-size: 1.1rem; margin-bottom: 22px; }
.about-body p:first-child { color: var(--text); font-size: 1.22rem; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: clamp(48px, 7vw, 88px); padding-top: 48px; border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num { font-family: var(--ff-en-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-label { color: var(--text-mute); font-size: 0.95rem; }

/* ===================== SERVICES ===================== */
.services { background: var(--navy-950); }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
.card {
  position: relative; background: var(--navy-950); padding: 42px 32px 34px;
  display: flex; flex-direction: column; transition: background .45s var(--ease);
}
.card:hover { background: #0b1936; }
.card-rule {
  position: absolute; top: 0; inset-inline-start: 0; height: 2px; width: 0;
  background: var(--gold-grad); transition: width .55s var(--ease);
}
.card:hover .card-rule { width: 100%; }
.card-index {
  font-family: var(--ff-en-display); font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 26px;
}
.card-title { font-size: 1.34rem; line-height: 1.2; color: var(--white); margin-bottom: 14px; }
.card-desc { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 26px; }
.card-list { list-style: none; display: flex; flex-direction: column; margin-bottom: 28px; }
.card-list li {
  padding: 12px 0; border-top: 1px solid var(--line-soft);
  color: var(--text-mute); font-size: 0.9rem;
}
.card-cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem; color: var(--gold-light);
}
.card-cta i { font-style: normal; transition: transform .35s var(--ease); }
.card:hover .card-cta i { transform: translateX(5px); }
[dir="rtl"] .card-cta i { transform: scaleX(-1); }
[dir="rtl"] .card:hover .card-cta i { transform: scaleX(-1) translateX(5px); }

/* Audit band */
.audit-band {
  margin-top: 40px; border-radius: 20px; padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(120deg, #11254f, #0a1733);
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.audit-text h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--white); margin-bottom: 14px; }
.audit-text p { color: var(--text-soft); max-width: 52ch; }
.audit-links { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.audit-chip {
  display: flex; flex-direction: column; gap: 4px; text-decoration: none;
  background: var(--gold-grad); color: #1a1407; padding: 16px 26px; border-radius: 14px;
  transition: transform .35s var(--ease), box-shadow .35s; box-shadow: 0 10px 30px rgba(201,162,75,0.25);
}
.audit-chip:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,162,75,0.4); }
.audit-chip-label { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; }
.audit-chip-domain { font-size: 0.82rem; font-weight: 600; opacity: 0.8; }
.audit-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.audit-tags span { font-size: 0.82rem; color: var(--text-soft); border: 1px solid var(--line-soft); padding: 6px 14px; border-radius: 999px; }

/* ===================== APPROACH ===================== */
.approach { background: linear-gradient(180deg, #060f24, #0a1733); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: clamp(48px, 7vw, 90px); }
.vm-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 40px;
  background: linear-gradient(160deg, rgba(29,62,116,0.28), rgba(13,29,64,0.4));
}
.vm-mark { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(201,162,75,0.12); color: var(--gold-light); margin-bottom: 22px; }
.vm-mark svg { width: 26px; height: 26px; }
.vm-card h3 { font-size: 1.5rem; color: var(--gold-light); margin-bottom: 14px; }
.vm-card p { color: var(--text-soft); font-size: 1.04rem; }

.values { margin-bottom: clamp(48px, 7vw, 90px); }
.values-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value { padding-top: 24px; border-top: 2px solid var(--line); }
.value-no { font-family: var(--ff-en-display); font-weight: 800; font-size: 1rem; color: var(--gold); }
.value h4 { font-size: 1.08rem; color: var(--white); margin: 12px 0 8px; }
.value p { color: var(--text-mute); font-size: 0.9rem; }

.goals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.goal {
  display: flex; gap: 14px; align-items: flex-start; padding: 22px 20px;
  background: rgba(255,255,255,0.025); border: 1px solid var(--line-soft); border-radius: 14px;
  transition: border-color .35s, background .35s;
}
.goal:hover { border-color: var(--line); background: rgba(201,162,75,0.06); }
.goal span { font-family: var(--ff-en-display); font-weight: 800; color: var(--gold); font-size: 1.05rem; }
.goal p { font-size: 0.96rem; color: var(--text-soft); }

/* ===================== STRUCTURE ===================== */
.structure { background: var(--navy-950); }
.sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sector {
  display: flex; align-items: center; gap: 18px; padding: 28px;
  border: 1px solid var(--line-soft); border-radius: 14px;
  background: linear-gradient(160deg, rgba(29,62,116,0.25), rgba(13,29,64,0.35));
  transition: transform .35s var(--ease), border-color .35s;
}
.sector:hover { transform: translateY(-4px); border-color: var(--line); }
.sector-no { font-family: var(--ff-en-display); font-weight: 800; font-size: 1.6rem; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sector p { font-family: var(--ff-display); font-weight: 600; color: var(--white); font-size: 1.02rem; }

/* ===================== QUOTE ===================== */
.quote-band {
  padding: clamp(80px, 12vw, 150px) 0;
  background: linear-gradient(120deg, #11254f 0%, #060f24 100%);
  position: relative;
}
.quote-band blockquote { max-width: 30ch; margin: 0 auto; text-align: center; position: relative; }
.quote-mark { font-family: Georgia, serif; font-size: 6rem; color: var(--gold); line-height: 0.5; display: block; height: 40px; }
.quote-band p {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem); line-height: 1.4; color: var(--white); max-width: 24ch; margin: 0 auto;
}
[lang="ar"] .quote-band p { line-height: 1.7; }

/* ===================== CTA ===================== */
.cta { background: var(--navy-950); text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-mark { width: 64px; margin-bottom: 28px; filter: drop-shadow(0 0 30px rgba(201,162,75,0.4)); }
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; margin-bottom: 18px; }
.cta p { color: var(--text-soft); max-width: 50ch; font-size: 1.1rem; margin-bottom: 34px; }
.cta-meta { margin-top: 30px; display: flex; gap: 14px; align-items: center; font-family: var(--ff-display); font-weight: 600; }
.cta-meta a { color: var(--gold-light); text-decoration: none; transition: color .3s; }
.cta-meta a:hover { color: var(--white); }
.cta-meta .dot { color: var(--text-mute); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-950); border-top: 1px solid var(--line-soft); padding: 56px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-tag { color: var(--text-mute); margin-top: 16px; font-size: 0.95rem; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--text-soft); text-decoration: none; font-size: 0.95rem; transition: color .3s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-loc p { color: var(--text-mute); font-size: 0.9rem; margin-bottom: 8px; }
.footer-copy { color: var(--text-mute); }

/* ===================== MODAL ===================== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(4, 9, 20, 0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.modal-card {
  position: relative; z-index: 1; width: min(560px, 100%); max-height: 90vh; overflow-y: auto;
  background: linear-gradient(165deg, #11254f, #0a1733); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(28px, 5vw, 46px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  animation: modalIn .45s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 18px; inset-inline-end: 18px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; line-height: 1; transition: background .3s;
}
.modal-close:hover { background: rgba(255,255,255,0.16); }
.modal-head { text-align: center; margin-bottom: 28px; }
.modal-mark { width: 46px; margin: 0 auto 18px; }
.modal-head h3 { font-size: 1.7rem; color: var(--white); margin-bottom: 8px; }
.modal-head p { color: var(--text-soft); font-size: 0.98rem; }
.form-placeholder {
  border: 1.5px dashed var(--line); border-radius: 16px; padding: 44px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.form-placeholder p { color: var(--text-mute); }
.modal-body iframe { width: 100%; min-height: 480px; border: 0; border-radius: 12px; }

/* ===================== REVEAL ANIMATION (JS-driven) ===================== */
.js-anim [data-reveal] { opacity: 0; transform: translateY(34px); }
.js-anim .hero-title .line-in,
.js-anim [data-anim="hero"] { opacity: 0; }
.js-anim [data-fc] { opacity: 0; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero-stage {
    grid-template-columns: 1fr; min-height: auto; gap: 30px; padding: 110px 0 40px;
  }
  .hero-center { order: -1; }
  .hero-aside { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 14px; }
  .float-card { flex: 1 1 240px; max-width: 330px; }
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-head { position: static; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .goals-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .audit-band { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; inset: 76px 0 auto 0; background: rgba(8,17,38,0.98);
    backdrop-filter: blur(14px); padding: 12px var(--pad) 24px; border-bottom: 1px solid var(--line-soft);
  }
  .nav.open a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
  .header-actions .btn-gold { display: none; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-starburst { opacity: 0.08; }
}

@media (max-width: 560px) {
  .float-card { flex-basis: 100%; max-width: none; }
}

@media (max-width: 480px) {
  .values-row, .goals-grid, .sectors { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .js-anim [data-reveal], .js-anim .hero-title .line-in, .js-anim [data-anim="hero"] { opacity: 1 !important; transform: none !important; }
}
