/* ===== RLI Group — Corporate Real Estate Theme ===== */
:root {
  --rli-dark: #0a0a0a;
  --rli-dark-soft: #141414;
  --rli-light: #f8f7f4;
  --rli-white: #ffffff;
  --rli-gold: #ecc46d;
  --rli-gold-hover: #f0d080;
  --rli-gold-dim: rgba(236, 196, 109, 0.14);
  --rli-gold-border: rgba(236, 196, 109, 0.35);
  --text: #161616;
  --muted: #5a5a5a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
  --font-head: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--rli-light);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, .h1, .h2, .h3, .brand b {
  font-family: var(--font-head);
  letter-spacing: -0.025em;
}

.site { min-height: 100svh; display: flex; flex-direction: column; }
.site main { flex: 1; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}
.navwrap {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 11px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }
.brand b { font-size: 17px; font-weight: 800; letter-spacing: 0.04em; }
.nav { display: none; gap: 6px; font-weight: 600; font-size: 14px; align-items: center; }
@media (min-width: 960px) { .nav { display: flex; } }
.nav a {
  position: relative; display: inline-flex; align-items: center;
  height: 40px; padding: 0 14px; color: var(--text);
  transition: color 0.25s;
}
.nav a::after {
  content: ""; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--rli-gold); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover, .nav a.active { color: #8a6d2a; }
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 22px; border-radius: 999px;
  background: var(--rli-gold); color: var(--rli-dark);
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 20px rgba(236, 196, 109, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.cta:hover { background: var(--rli-gold-hover); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(236, 196, 109, 0.4); }

.mbtn { border: none; background: transparent; padding: 8px; cursor: pointer; font-size: 22px; color: var(--text); }
@media (min-width: 960px) { .mbtn { display: none; } }

.backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 60; }
.backdrop.show { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(90vw, 380px);
  background: var(--rli-white); box-shadow: -16px 0 48px rgba(0, 0, 0, 0.15);
  transform: translateX(100%); transition: transform 0.32s var(--ease);
  z-index: 70; display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.drawer .brand img { width: 38px; height: 38px; }
.closebtn { border: none; background: var(--rli-light); border-radius: 10px; padding: 8px 12px; font-size: 16px; cursor: pointer; }
.drawer-nav { display: grid; padding: 16px; gap: 6px; }
.drawer-nav a {
  padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 600;
  font-family: var(--font-head); background: var(--rli-light); display: block; text-align: center;
}
.drawer-nav a.cta { background: var(--rli-gold); color: var(--rli-dark); }
.drawer-foot { margin-top: auto; padding: 18px 20px; border-top: 1px solid rgba(0, 0, 0, 0.06); font-size: 13px; color: var(--muted); line-height: 1.8; }
.drawer-foot a { color: var(--text); font-weight: 500; }

/* ===== Footer ===== */
.footer { background: var(--rli-dark); color: rgba(255, 255, 255, 0.88); margin-top: auto; }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 56px 24px 40px; display: grid; gap: 36px; }
@media (min-width: 640px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; } }

.fbrand { display: flex; gap: 14px; align-items: flex-start; }
.fbrand img { width: 48px; height: 48px; border-radius: 11px; flex-shrink: 0; }
.fbrand-name { font-family: var(--font-head); font-weight: 800; font-size: 17px; letter-spacing: 0.04em; }
.fbrand-tag { opacity: 0.65; font-size: 13px; margin-top: 4px; line-height: 1.5; }
.fbrand-desc { margin-top: 14px; font-size: 13px; line-height: 1.75; opacity: 0.72; max-width: 300px; }

.fcol-title {
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--rli-gold);
  margin: 0 0 16px;
}
.fcol-links { list-style: none; margin: 0; padding: 0; font-size: 14px; line-height: 2; }
.fcol-links a { opacity: 0.82; transition: opacity 0.2s, color 0.2s; }
.fcol-links a:hover { opacity: 1; color: var(--rli-gold); }

.footer-ecosystem {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 28px;
}
.eco-note { font-size: 13px; line-height: 1.75; opacity: 0.65; max-width: 900px; }
.eco-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.eco-tag {
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.social-link {
  font-size: 13px; font-weight: 500; padding: 6px 12px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, border-color 0.2s;
}
.social-link:hover { background: rgba(236, 196, 109, 0.12); border-color: var(--rli-gold-border); color: var(--rli-gold); }

.fline { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.copy {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  text-align: center; color: rgba(255, 255, 255, 0.45); font-size: 12px;
}

/* ===== Hero ===== */
.hero { position: relative; min-height: min(88vh, 900px); display: flex; align-items: center; overflow: hidden; background: #0a0a0a; }
@media (max-width: 640px) { .hero { min-height: 72vh; } }
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  background: #0a0a0a; opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.hero.video-active video { opacity: 1; }
.hero .overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.4) 45%, rgba(10,10,10,0.65) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(236,196,109,0.08) 0%, transparent 55%);
}
.hero .inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 56px 24px; }
.herocard { max-width: 680px; animation: heroFade 1s var(--ease) both; }
@keyframes heroFade { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(236, 196, 109, 0.12); color: var(--rli-gold);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
  border: 1px solid rgba(236, 196, 109, 0.2);
}
.h1 { color: #fff; font-weight: 800; font-size: clamp(34px, 5.5vw, 60px); margin: 0 0 20px; line-height: 1.06; }
.h1 em { font-style: normal; color: var(--rli-gold); }
.hsub { color: rgba(255, 255, 255, 0.88); font-size: clamp(16px, 2vw, 19px); margin: 0 0 32px; max-width: 540px; line-height: 1.65; font-weight: 400; }

.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn.gold { background: var(--rli-gold); color: var(--rli-dark); box-shadow: 0 8px 28px rgba(236, 196, 109, 0.35); }
.btn.outline { border: 1.5px solid rgba(255, 255, 255, 0.7); color: #fff; background: transparent; }
.btn.outline:hover { background: rgba(255, 255, 255, 0.08); }
.btn.outline-dark { border: 1.5px solid rgba(0, 0, 0, 0.15); color: var(--text); background: transparent; }
.btn.outline-dark:hover { border-color: var(--rli-gold); color: #8a6d2a; }
.btn.dark { background: var(--rli-dark); color: #fff; }
.btn.wa { background: #1fa855; color: #fff; box-shadow: 0 8px 24px rgba(31, 168, 85, 0.3); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat strong {
  display: block; color: var(--rli-gold);
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
}
.hero-stat span { color: rgba(255, 255, 255, 0.7); font-size: 13px; }

/* ===== Intro splash ===== */
.intro-mask {
  position: fixed; inset: 0; background: var(--rli-dark); display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.intro-mask.intro-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-card { display: flex; flex-direction: column; align-items: center; gap: 14px; animation: introPop 0.9s var(--ease) forwards; }
.intro-card img { width: 100px; height: 100px; border-radius: 18px; box-shadow: 0 20px 60px rgba(236, 196, 109, 0.25); }
.intro-name { color: #fff; font-family: var(--font-head); font-weight: 800; letter-spacing: 0.1em; font-size: 20px; }
.intro-tag { color: rgba(255, 255, 255, 0.55); font-size: 13px; letter-spacing: 0.05em; }
@keyframes introPop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* ===== Sections ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.container.tight { padding-top: 48px; padding-bottom: 48px; }
.section-dark { background: var(--rli-dark); color: #fff; }
.section-dark .p { color: rgba(255, 255, 255, 0.72); }
.section-alt { background: var(--rli-white); }
.section-muted { background: var(--rli-light); }

.section-divider {
  height: 1px; max-width: 1200px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(236,196,109,0.35), transparent);
}

.h2 { font-weight: 800; font-size: clamp(28px, 3.6vw, 42px); margin: 0 0 14px; line-height: 1.12; }
.h3 { font-weight: 700; font-size: 19px; margin: 0 0 8px; }
.p { color: var(--muted); line-height: 1.75; margin: 0; }
.lead { font-size: 17px; max-width: 620px; line-height: 1.7; }

.section-head { margin-bottom: 44px; max-width: 680px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rli-gold-dim); color: #7a6020;
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px; padding: 7px 14px; margin-bottom: 14px;
}

.grid { display: grid; gap: 22px; }
@media (min-width: 640px) { .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Cards ===== */
.card {
  background: var(--rli-white); border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(236, 196, 109, 0.2);
}
.card .title { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 0 0 10px; }
.card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--rli-gold-dim); border: 1px solid var(--rli-gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 13px; color: #8a6d2a;
  margin-bottom: 16px;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.03); border-color: rgba(255, 255, 255, 0.07); color: #fff;
}
.section-dark .card:hover { border-color: rgba(236, 196, 109, 0.25); }
.section-dark .card .p { color: rgba(255, 255, 255, 0.68); }

.pillar-grid .card { border-top: 2px solid var(--rli-gold); }

/* ===== Group / ecosystem ===== */
.group-card { position: relative; overflow: hidden; }
.group-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rli-gold), transparent);
}
.group-card .group-url { font-size: 13px; color: #8a6d2a; font-weight: 600; margin-top: 12px; display: inline-block; }
.group-card .group-url:hover { color: var(--rli-gold); }

.ecosystem-band {
  background: linear-gradient(135deg, var(--rli-dark-soft) 0%, var(--rli-dark) 100%);
  border-top: 1px solid rgba(236, 196, 109, 0.15);
  border-bottom: 1px solid rgba(236, 196, 109, 0.15);
}

/* ===== Metrics ===== */
.metrics-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(236, 196, 109, 0.2); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--rli-gold-border);
}
@media (min-width: 768px) { .metrics-row { grid-template-columns: repeat(4, 1fr); } }
.metric {
  background: var(--rli-white); padding: 28px 24px; text-align: center;
}
.metric strong {
  display: block; font-family: var(--font-head); font-size: 28px; font-weight: 800;
  color: var(--rli-dark); margin-bottom: 4px;
}
.metric span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ===== Sharjah section ===== */
.sharjah-panel {
  display: grid; gap: 32px; align-items: center;
  background: var(--rli-white); border-radius: var(--radius);
  padding: 40px; border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: var(--shadow);
}
@media (min-width: 768px) { .sharjah-panel { grid-template-columns: 1fr 1fr; padding: 48px; } }
.sharjah-list { list-style: none; margin: 20px 0 0; padding: 0; }
.sharjah-list li {
  padding: 12px 0 12px 28px; position: relative; color: var(--muted); font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.sharjah-list li:last-child { border-bottom: none; }
.sharjah-list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--rli-gold);
}

/* ===== Projects ===== */
.project-card { padding: 0; overflow: hidden; }
.project-card .project-img {
  height: 200px;
  background: linear-gradient(145deg, #1e1e1e 0%, #2d2d2d 50%, #1a1a1a 100%);
  display: flex; align-items: flex-end; padding: 20px; position: relative;
}
.project-card .project-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.project-card .project-img span {
  position: relative; z-index: 1;
  background: var(--rli-gold); color: var(--rli-dark);
  font-family: var(--font-head); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 6px;
}
.project-card .project-body { padding: 24px; }
.project-meta { font-size: 12px; color: var(--muted); margin-top: 8px; font-weight: 500; }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--rli-dark) 0%, #181818 100%);
  border-radius: var(--radius); padding: 56px 36px; text-align: center;
  border: 1px solid var(--rli-gold-border);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(236,196,109,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255, 255, 255, 0.75); max-width: 520px; margin: 0 auto 28px; position: relative; }
.cta-band .btns { justify-content: center; position: relative; }

/* ===== Steps ===== */
.steps { counter-reset: step; }
.step {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--rli-gold); color: var(--rli-dark);
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

.section-dark .step { border-bottom-color: rgba(255, 255, 255, 0.08); }
.section-alt .step, .section-muted .step { border-bottom-color: rgba(0, 0, 0, 0.06); }

/* ===== Leadership (founder) ===== */
.leadership-hero {
  background: linear-gradient(180deg, var(--rli-white) 0%, var(--rli-light) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.leadership-intro { max-width: 720px; }
.leadership-role {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: #8a6d2a; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px;
}

.leadership-quote {
  position: relative; padding: 36px 36px 36px 48px; margin: 0;
  background: var(--rli-dark); color: #fff; border-radius: var(--radius);
  border-left: 4px solid var(--rli-gold);
}
.leadership-quote::before {
  content: "\201C"; position: absolute; top: 12px; left: 16px;
  font-family: Georgia, serif; font-size: 56px; line-height: 1; color: var(--rli-gold); opacity: 0.5;
}
.leadership-quote p { font-size: 18px; line-height: 1.65; color: rgba(255, 255, 255, 0.92); margin: 0; font-style: italic; }
.leadership-quote cite {
  display: block; margin-top: 20px; font-style: normal;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--rli-gold);
}

.highlight-grid .card { border-left: 3px solid var(--rli-gold); }

.vision-panel {
  background: linear-gradient(135deg, var(--rli-dark) 0%, #151515 100%);
  border-radius: var(--radius); padding: 40px;
  border: 1px solid var(--rli-gold-border); color: #fff;
}
.vision-panel .h3 { color: var(--rli-gold); margin-bottom: 12px; }
.vision-panel .p { color: rgba(255, 255, 255, 0.75); }

/* ===== Investor strip ===== */
.investor-strip { display: grid; gap: 20px; }
@media (min-width: 768px) { .investor-strip { grid-template-columns: repeat(3, 1fr); } }
.investor-item {
  padding: 24px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
}
.investor-item strong {
  display: block; font-family: var(--font-head); font-size: 15px;
  color: var(--rli-gold); margin-bottom: 8px;
}

/* ===== Page hero ===== */
.page-hero {
  padding: 48px 24px 24px;
  background: linear-gradient(180deg, var(--rli-white) 0%, var(--rli-light) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.page-hero .container { padding-top: 16px; padding-bottom: 16px; }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1fa855; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(31, 168, 85, 0.4);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .herocard { animation: none; }
  .intro-card { animation: none; }
}

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .container { padding: 56px 20px; }
  .btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .cta-band { padding: 40px 24px; }
  .leadership-quote { padding: 28px 24px 28px 36px; }
  .leadership-quote p { font-size: 16px; }
}
