/* ==========================================================================
   Acquainted Capital, Premium Financial Advisory SPA
   Light 3D Theme, Navy #08192D | Gold #D4AF37 | Luminous surfaces
   Fonts: Manrope (body) | Bricolage Grotesque (headings)
   ========================================================================== */

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  --navy: #08192D;
  --navy-light: #0f2a47;
  --navy-mid: #1a3d5c;
  --gold: #D4AF37;
  --gold-light: #e8c85a;
  --gold-dark: #b8962e;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --white: #FFFFFF;
  --gray-100: #f8fafc;
  --gray-200: #334155;
  --gray-400: #64748b;
  --gray-600: #94a3b8;
  --bg: #fafbfe;
  --bg-alt: #f0f4fa;
  --bg-subtle: #e8eef6;
  --bg-surface: #ffffff;
  --text: #3d4f63;
  --text-muted: #6b7c92;
  --text-heading: #08192D;
  --border: rgba(8, 25, 45, 0.08);
  --border-subtle: rgba(8, 25, 45, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.95);
  --shadow-sm: 0 2px 8px rgba(8, 25, 45, 0.04);
  --shadow: 0 12px 40px rgba(8, 25, 45, 0.08);
  --shadow-md: 0 16px 48px rgba(8, 25, 45, 0.1);
  --shadow-lg: 0 24px 64px rgba(8, 25, 45, 0.12);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.28);
  --shadow-3d:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -1px 0 rgba(8, 25, 45, 0.04) inset,
    0 10px 30px rgba(8, 25, 45, 0.07),
    0 4px 12px rgba(8, 25, 45, 0.04);
  --shadow-3d-hover:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 50px rgba(8, 25, 45, 0.1),
    0 8px 24px rgba(212, 175, 55, 0.14);
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Bricolage Grotesque", sans-serif;
  --font-family: var(--font-body);
  --topbar-height: 50px;
  --mainbar-height-expanded: 84px;
  --mainbar-height: 68px;
  --header-height: var(--mainbar-height);
  --header-height-expanded: calc(var(--topbar-height) + var(--mainbar-height-expanded));
  --brand-logo-height: 64px;
  --brand-logo-height-scrolled: 50px;
  --footer-logo-max-width: 340px;
  --logo-radius: 15px;
  --logo-frame-radius: 20px;
  --header-gutter: clamp(16px, 2.5vw, 48px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --z-header: 1000;
  --z-mobile-menu: 9999;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(212, 175, 55, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 5%, rgba(26, 61, 92, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, #fafbfe 0%, #f4f7fc 50%, #eef2f8 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

body.menu-open { overflow: hidden; }

body.menu-open #app,
body.menu-open #footer-root {
  pointer-events: none;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold-light); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

.btn--gold {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  color: var(--navy);
  border-color: var(--gold-dark);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 4px 0 var(--gold-dark),
    0 8px 20px var(--gold-glow);
}

.btn--gold:hover {
  background: linear-gradient(145deg, #f0d46a 0%, var(--gold-light) 45%, var(--gold) 100%);
  color: var(--navy);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 2px 0 var(--gold-dark),
    0 14px 32px var(--gold-glow);
  transform: translateY(-2px);
}

.btn--gold:active {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 1px 0 var(--gold-dark),
    0 4px 12px var(--gold-glow);
}

.btn--outline {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  color: var(--navy);
  border-color: rgba(8, 25, 45, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 3px 0 rgba(8, 25, 45, 0.06),
    var(--shadow-sm);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: linear-gradient(145deg, #fffdf5 0%, rgba(212, 175, 55, 0.08) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 0 rgba(212, 175, 55, 0.2),
    0 8px 24px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.btn--sm { padding: 8px 20px; font-size: 0.75rem; }
.btn--lg { padding: 16px 36px; font-size: 0.9rem; }

/* ─── Glass Cards ───────────────────────────────────────────── */
.glass-card {
  background: linear-gradient(155deg, #ffffff 0%, #f8fafd 55%, #f2f6fb 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-3d);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-3d-hover);
  transform: translateY(-8px) rotateX(2deg);
}

/* ─── Section Utilities ─────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.12);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ─── Reveal Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Page Transitions ──────────────────────────────────────── */
#app.page-exit {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#app.page-enter {
  animation: pageEnter 0.4s ease forwards;
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Header ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 32px rgba(8, 25, 45, 0.06);
  transition: box-shadow 0.35s ease, background 0.35s ease;
  overflow: visible;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 40px rgba(8, 25, 45, 0.08);
}

.header__scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(8, 25, 45, 0.05);
  overflow: hidden;
  pointer-events: none;
}

.header__scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.12s linear;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Brand block, menubar only */
.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
  max-width: min(360px, 44vw);
  height: auto;
  overflow: visible;
  position: relative;
  z-index: 5;
  text-decoration: none;
  line-height: 0;
  transition: gap 0.35s ease;
}

.header__brand:focus-visible {
  outline: none;
}

.header__brand:focus-visible .header__brand-logo-wrap {
  box-shadow:
    0 8px 24px rgba(8, 25, 45, 0.1),
    0 0 0 3px rgba(212, 175, 55, 0.28);
}

.header__brand:hover .header__brand-name {
  color: var(--gold-dark);
}

.header__brand:hover .header__brand-logo {
  transform: scale(1.02) translateY(-1px);
  filter:
    drop-shadow(0 4px 10px rgba(8, 25, 45, 0.1))
    drop-shadow(0 8px 22px rgba(212, 175, 55, 0.28));
}

.header__brand-copy {
  display: none;
}

.header__brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--logo-frame-radius);
  padding: 5px 14px 6px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 52%, #f2f6fb 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 6px 20px rgba(8, 25, 45, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.header__brand-logo-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 35%, var(--gold-light) 50%, var(--gold) 65%, var(--navy) 100%);
  z-index: 2;
  pointer-events: none;
}

.header__brand-logo-shine {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(212, 175, 55, 0.14) 0%, transparent 62%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(8, 25, 45, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.header__brand-logo-glow {
  position: absolute;
  inset: 0 -10px -6px -10px;
  border-radius: calc(var(--logo-frame-radius) + 4px);
  background:
    radial-gradient(ellipse 90% 80% at 50% 55%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.55) 45%, transparent 72%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(212, 175, 55, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.header__brand:hover .header__brand-logo-wrap {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.44);
  box-shadow:
    0 12px 28px rgba(8, 25, 45, 0.1),
    0 0 0 1px rgba(212, 175, 55, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.header__brand:hover .header__brand-logo-glow {
  opacity: 1;
  transform: scale(1.02);
}

.header__brand-logo {
  display: block;
  width: auto;
  height: var(--brand-logo-height);
  max-height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border-radius: var(--logo-radius);
  filter:
    drop-shadow(0 2px 6px rgba(8, 25, 45, 0.08))
    drop-shadow(0 6px 18px rgba(212, 175, 55, 0.14));
  transition: height 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.header.is-scrolled .header__brand-logo {
  width: auto;
  height: var(--brand-logo-height-scrolled);
}

.header.is-scrolled .header__brand-logo-wrap {
  padding: 4px 11px 5px;
  border-radius: calc(var(--logo-frame-radius) - 3px);
}

.header__brand-copy {
  display: none;
}

.header__brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: color var(--transition), font-size 0.35s ease;
}

.header__brand-tagline {
  font-size: clamp(0.52rem, 0.75vw, 0.62rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(8, 25, 45, 0.62);
  transition: font-size 0.35s ease, opacity 0.35s ease;
}

/* Top bar, contact details */
.header__topbar {
  height: var(--topbar-height);
  background: linear-gradient(135deg, #f8fafd 0%, #eef3f9 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  position: relative;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, border-color 0.35s ease;
}

.header__topbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  animation: topbarShimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes topbarShimmer {
  0%, 100% { left: -100%; }
  50% { left: 140%; }
}

.header.is-scrolled .header__topbar {
  height: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

.header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0 var(--header-gutter);
  gap: 16px;
}

.header__topbar-left {
  display: none;
  align-items: center;
  min-width: 0;
}

.header__location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.85));
  border: 1px solid rgba(8, 25, 45, 0.06);
  border-radius: 999px;
}

.header__location-icon {
  color: var(--gold);
  font-size: 0.5rem;
  line-height: 1;
  animation: locationPulse 2.4s ease-in-out infinite;
}

@keyframes locationPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.header__topbar-right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  margin-left: auto;
  flex-shrink: 0;
}

.header__contact {
  display: none;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: nowrap;
}

.header__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.85));
  border: 1px solid rgba(8, 25, 45, 0.07);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(8, 25, 45, 0.04);
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

.header__contact-item:hover {
  color: var(--gold-dark);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.12);
  transform: translateY(-1px);
}

.header__contact-icon {
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
}

.header__social {
  display: none;
  align-items: center;
  gap: 8px;
  padding-left: clamp(12px, 1.5vw, 20px);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.header__social-link {
  width: 29px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 25, 45, 0.1);
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  box-shadow: 0 2px 6px rgba(8, 25, 45, 0.06);
  transition: all var(--transition);
}

.header__social-link svg {
  width: 12.6px;
  height: 12.6px;
  display: block;
}

.header__social-link:hover {
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  box-shadow: 0 4px 14px var(--gold-glow);
  transform: translateY(-2px);
}

/* Main menu bar */
.header__main {
  position: relative;
  height: var(--mainbar-height-expanded);
  background: transparent;
  border-bottom: 1px solid rgba(8, 25, 45, 0.06);
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.header__main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 35%, var(--gold-light) 50%, var(--gold) 65%, var(--navy) 100%);
  opacity: 0.85;
}

.header.is-scrolled .header__main {
  height: var(--mainbar-height);
}

.header.is-scrolled .header__inner {
  padding-block: 5px;
  box-sizing: border-box;
}

.header.is-scrolled .header__brand-name {
  font-size: 18px;
}

.header.is-scrolled .header__brand-tagline {
  font-size: clamp(0.45rem, 0.62vw, 0.52rem);
}

.header.is-scrolled .nav-list {
  padding: 4px 6px;
}

.header.is-scrolled .nav-link {
  padding: 7px 12px;
  font-size: 0.84rem;
}

.header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  gap: clamp(12px, 2vw, 24px);
  padding: 0 var(--header-gutter);
  overflow: visible;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  overflow: visible;
}

.header__nav {
  display: none;
  width: auto;
}

.nav-list {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 3px;
  padding: 5px 7px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 252, 0.88) 100%);
  border: 1px solid rgba(8, 25, 45, 0.07);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 4px 16px rgba(8, 25, 45, 0.05);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.nav-list.is-mega-open {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 6px 24px rgba(212, 175, 55, 0.18),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}

.nav-list__indicator {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.1) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 -1px 0 rgba(212, 175, 55, 0.08) inset,
    0 2px 10px rgba(212, 175, 55, 0.12);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.25, 0.64, 1),
    width 0.38s cubic-bezier(0.34, 1.25, 0.64, 1),
    height 0.38s cubic-bezier(0.34, 1.25, 0.64, 1),
    opacity 0.25s ease;
}

.nav-list__indicator.is-visible {
  opacity: 1;
}

.nav-list__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(8, 25, 45, 0.68);
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-link.is-active {
  color: var(--navy);
  font-weight: 700;
}

.nav-link--mega {
  padding-right: 10px;
}

.nav-link__mega-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-link__mega-badge svg {
  width: 14px;
  height: 14px;
  display: block;
}

.nav-link--mega:hover .nav-link__mega-badge,
.nav-list__item.has-mega.is-open .nav-link__mega-badge {
  opacity: 1;
  transform: scale(1.08);
}

.nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(8, 25, 45, 0.05);
  border: none;
  transform: none;
  margin-left: 0;
  opacity: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-chevron::before {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.nav-list__item.has-mega.is-open .nav-chevron {
  background: rgba(8, 25, 45, 0.08);
}

.nav-list__item.has-mega.is-open .nav-chevron::before {
  transform: rotate(-135deg) translateY(0);
}

.nav-list__item.has-mega.is-open .nav-link {
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 3px 0 var(--gold-dark),
    0 6px 18px var(--gold-glow);
  transform: translateY(-1px);
}

.nav-list__item.has-mega.is-open .nav-link::after {
  display: none;
}

.nav-list__item.has-mega::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.97);
  width: min(760px, calc(100vw - 32px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-3d-hover);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1100;
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  overflow: hidden;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
}

.mega-menu::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(8, 25, 45, 0.06);
  box-shadow: -2px -2px 6px rgba(8, 25, 45, 0.04);
}

.nav-list__item.has-mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

@keyframes megaLinkIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-list__item.has-mega.is-open .mega-menu__list li {
  animation: megaLinkIn 0.35s cubic-bezier(0.34, 1.1, 0.64, 1) backwards;
}

.nav-list__item.has-mega.is-open .mega-menu__list li:nth-child(1) { animation-delay: 0.04s; }
.nav-list__item.has-mega.is-open .mega-menu__list li:nth-child(2) { animation-delay: 0.07s; }
.nav-list__item.has-mega.is-open .mega-menu__list li:nth-child(3) { animation-delay: 0.1s; }
.nav-list__item.has-mega.is-open .mega-menu__list li:nth-child(4) { animation-delay: 0.13s; }
.nav-list__item.has-mega.is-open .mega-menu__list li:nth-child(5) { animation-delay: 0.16s; }

.mega-menu__body {
  display: grid;
  grid-template-columns: 1fr 220px;
  min-height: 100%;
}

.mega-menu__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-right: 1px solid rgba(8, 25, 45, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 253, 0.8) 100%);
}

.mega-menu__column {
  padding: 26px 24px 28px;
}

.mega-menu__column + .mega-menu__column {
  border-left: 1px solid rgba(8, 25, 45, 0.05);
}

.mega-menu__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(8, 25, 45, 0.07);
}

.mega-menu__title::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 0 8px var(--gold-glow);
  flex-shrink: 0;
}

.mega-menu__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__link {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 12px;
  margin: 0 -10px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.mega-menu__link:hover {
  background: linear-gradient(145deg, #ffffff 0%, rgba(212, 175, 55, 0.07) 100%);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 14px rgba(8, 25, 45, 0.06);
  transform: translateX(4px);
}

.mega-menu__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 253, 0.9) 100%);
  border: 1px solid rgba(8, 25, 45, 0.08);
  color: var(--navy);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 3px 8px rgba(8, 25, 45, 0.06);
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.mega-menu__link-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.mega-menu__link-icon--venture { color: #0d4f8b; background: linear-gradient(145deg, rgba(13, 79, 139, 0.1) 0%, rgba(13, 79, 139, 0.04) 100%); }
.mega-menu__link-icon--angel { color: #7a5c1e; background: linear-gradient(145deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.06) 100%); }
.mega-menu__link-icon--growth { color: #1a6b4a; background: linear-gradient(145deg, rgba(26, 107, 74, 0.12) 0%, rgba(26, 107, 74, 0.04) 100%); }
.mega-menu__link-icon--debt { color: #4a3d8f; background: linear-gradient(145deg, rgba(74, 61, 143, 0.12) 0%, rgba(74, 61, 143, 0.04) 100%); }
.mega-menu__link-icon--ipo { color: #9a3b2e; background: linear-gradient(145deg, rgba(154, 59, 46, 0.12) 0%, rgba(154, 59, 46, 0.04) 100%); }
.mega-menu__link-icon--ma { color: #2f5f7a; background: linear-gradient(145deg, rgba(47, 95, 122, 0.12) 0%, rgba(47, 95, 122, 0.04) 100%); }
.mega-menu__link-icon--fund { color: #8b6914; background: linear-gradient(145deg, rgba(212, 175, 55, 0.16) 0%, rgba(139, 105, 20, 0.06) 100%); }
.mega-menu__link-icon--valuation { color: #5c4a8a; background: linear-gradient(145deg, rgba(92, 74, 138, 0.12) 0%, rgba(92, 74, 138, 0.04) 100%); }
.mega-menu__link-icon--strategy { color: #1f4d63; background: linear-gradient(145deg, rgba(31, 77, 99, 0.12) 0%, rgba(31, 77, 99, 0.04) 100%); }
.mega-menu__link-icon--readiness { color: #2d6a4f; background: linear-gradient(145deg, rgba(45, 106, 79, 0.12) 0%, rgba(45, 106, 79, 0.04) 100%); }

.mega-menu__link:hover .mega-menu__link-icon {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 4px 14px var(--gold-glow);
  transform: translateY(-2px);
}

.mega-menu__link-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}

.mega-menu__link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 6px;
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.1);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
  flex-shrink: 0;
}

.mega-menu__link-arrow svg {
  width: 11px;
  height: 11px;
  display: block;
}

.mega-menu__link:hover .mega-menu__link-arrow {
  opacity: 1;
  transform: translateX(0);
  background: rgba(212, 175, 55, 0.2);
}

.mega-menu__link-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.mega-menu__link-desc {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(8, 25, 45, 0.5);
  line-height: 1.4;
}

.mega-menu__link:hover .mega-menu__link-label {
  color: var(--gold-dark);
}

.mega-menu__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px 22px;
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(212, 175, 55, 0.18) 0%, transparent 55%),
    linear-gradient(165deg, rgba(255, 252, 245, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  color: var(--navy);
  border-left: 1px solid rgba(212, 175, 55, 0.18);
  position: relative;
}

.mega-menu__panel-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
}

.mega-menu__panel-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.mega-menu__panel-desc {
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

.mega-menu__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 4px 0 2px;
}

.mega-menu__stat {
  padding: 10px 10px;
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f8fafd);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(8, 25, 45, 0.04);
}

.mega-menu__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.2;
}

.mega-menu__stat-label {
  display: block;
  margin-top: 2px;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mega-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(8, 25, 45, 0.03) 0%, rgba(212, 175, 55, 0.06) 100%);
  border-top: 1px solid rgba(8, 25, 45, 0.06);
}

.mega-menu__footer-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.mega-menu__footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mega-menu__footer-link {
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--navy);
  background: linear-gradient(145deg, #ffffff, #f8fafd);
  border: 1px solid rgba(8, 25, 45, 0.08);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.mega-menu__footer-link:hover {
  color: var(--gold-dark);
  border-color: rgba(212, 175, 55, 0.35);
  background: linear-gradient(145deg, #fffdf5, rgba(212, 175, 55, 0.08));
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.12);
  transform: translateY(-1px);
}

.mega-menu__panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 11px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 3px 0 var(--gold-dark),
    0 6px 16px var(--gold-glow);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-menu__panel-cta:hover {
  background: linear-gradient(145deg, #f0d46a, var(--gold-light));
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 2px 0 var(--gold-dark),
    0 10px 22px var(--gold-glow);
}

.mega-menu__panel-link {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.mega-menu__panel-link:hover {
  color: var(--gold-dark);
}

/* Header actions */
.header__cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border: 2px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 0 var(--gold-dark), 0 6px 14px var(--gold-glow);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.header__cta:hover {
  color: var(--navy);
  background: linear-gradient(145deg, #f0d46a, var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 2px 0 var(--gold-dark), 0 10px 20px var(--gold-glow);
}

/* Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  border: 1px solid rgba(8, 25, 45, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(8, 25, 45, 0.06);
}

.menu-toggle:hover {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 16px var(--gold-glow);
  transform: translateY(-1px);
}

.menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  border-radius: 1px;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle.is-active {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: rgba(212, 175, 55, 0.45);
}

/* Mobile Menu */
#mobile-menu-root {
  position: relative;
  z-index: var(--z-mobile-menu);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile-menu);
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100%;
  height: 100dvh;
  background:
    radial-gradient(ellipse 90% 50% at 100% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 0% 100%, rgba(8, 25, 45, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fcfdff 0%, #f6f9fd 48%, #ffffff 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.18);
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    -12px 0 48px rgba(8, 25, 45, 0.14),
    -2px 0 0 rgba(212, 175, 55, 0.12);
  isolation: isolate;
}

.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__panel-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mobile-menu__panel-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.mobile-menu__panel-orb--gold {
  top: -40px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: rgba(212, 175, 55, 0.28);
}

.mobile-menu__panel-orb--navy {
  bottom: 120px;
  left: -50px;
  width: 140px;
  height: 140px;
  background: rgba(8, 25, 45, 0.08);
}

.mobile-menu__panel-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  box-shadow: 0 0 16px var(--gold-glow);
}

.mobile-menu__header,
.mobile-menu__body,
.mobile-menu__footer {
  position: relative;
  z-index: 1;
}

.mobile-menu__body {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.45) transparent;
}

.mobile-menu__body::-webkit-scrollbar {
  width: 4px;
}

.mobile-menu__body::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.45);
  border-radius: 999px;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  padding-top: max(18px, env(safe-area-inset-top));
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 253, 0.88) 100%);
  border-bottom: 1px solid rgba(8, 25, 45, 0.06);
  flex-shrink: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-menu__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.mobile-menu__brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: var(--logo-frame-radius);
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  border: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: 0 4px 14px rgba(8, 25, 45, 0.07);
  position: relative;
  overflow: hidden;
}

.mobile-menu__brand-logo-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
}

.mobile-menu__brand-logo {
  position: relative;
  z-index: 1;
  width: auto;
  height: 48px;
  max-width: min(220px, 58vw);
  object-fit: contain;
  border-radius: var(--logo-radius);
}

.mobile-menu__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mobile-menu__brand-eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  line-height: 1.2;
}

.mobile-menu__brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.mobile-menu__brand-tagline {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
}

.mobile-menu__close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  border: 1px solid rgba(8, 25, 45, 0.1);
  border-radius: var(--radius-sm);
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(8, 25, 45, 0.06);
}

.mobile-menu__close svg {
  width: 18px;
  height: 18px;
  display: block;
}

.mobile-menu__close:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
  transform: rotate(90deg);
}

.mobile-menu__featured {
  flex-shrink: 0;
  margin: 10px 12px 6px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
    linear-gradient(165deg, rgba(255, 252, 245, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 4px 14px rgba(8, 25, 45, 0.05);
}

.mobile-menu__featured-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.mobile-menu__featured-copy {
  min-width: 0;
}

.mobile-menu__featured-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  margin-bottom: 4px;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
}

.mobile-menu__featured-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.mobile-menu__featured-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  box-shadow: 0 3px 0 var(--gold-dark), 0 6px 14px var(--gold-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu__featured-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.mobile-menu__featured-btn:hover {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 4px 0 var(--gold-dark), 0 10px 18px var(--gold-glow);
}

.mobile-menu__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.mobile-menu__stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
}

.mobile-menu__stat-pill strong {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: none;
  letter-spacing: 0;
}

.mobile-menu__header--minimal {
  padding: 16px 18px;
  padding-top: max(16px, env(safe-area-inset-top));
}

.mobile-menu__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0 max(16px, env(safe-area-inset-bottom));
}

.mobile-menu__nav-label,
.mobile-menu__quick-label {
  display: block;
  padding: 0 16px 8px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8, 25, 45, 0.42);
}

.mobile-menu__nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(8, 25, 45, 0.86);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.94));
  border: 1px solid rgba(8, 25, 45, 0.07);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(8, 25, 45, 0.04);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.mobile-menu.is-open .mobile-menu__nav-list > .mobile-menu__link,
.mobile-menu.is-open .mobile-menu__nav-list > .mobile-menu__item--has-sub {
  animation: mobileNavIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.mobile-menu.is-open .mobile-menu__nav-list > :nth-child(1) { animation-delay: 0.03s; }
.mobile-menu.is-open .mobile-menu__nav-list > :nth-child(2) { animation-delay: 0.06s; }
.mobile-menu.is-open .mobile-menu__nav-list > :nth-child(3) { animation-delay: 0.09s; }
.mobile-menu.is-open .mobile-menu__nav-list > :nth-child(4) { animation-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu__nav-list > :nth-child(5) { animation-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__nav-list > :nth-child(6) { animation-delay: 0.18s; }
.mobile-menu.is-open .mobile-menu__nav-list > :nth-child(7) { animation-delay: 0.21s; }
.mobile-menu.is-open .mobile-menu__nav-list > :nth-child(8) { animation-delay: 0.24s; }

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu__link-index {
  flex-shrink: 0;
  width: 28px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(212, 175, 55, 0.75);
  transition: color 0.22s ease;
}

.mobile-menu__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  color: var(--navy);
  background: linear-gradient(145deg, rgba(8, 25, 45, 0.04) 0%, rgba(212, 175, 55, 0.12) 100%);
  border: 1px solid rgba(8, 25, 45, 0.07);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.mobile-menu__link-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.mobile-menu__link-label {
  flex: 1;
  min-width: 0;
}

.mobile-menu__link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: rgba(8, 25, 45, 0.28);
  transition: color 0.22s ease, transform 0.22s ease;
}

.mobile-menu__link-arrow svg {
  width: 14px;
  height: 14px;
  display: block;
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
  color: var(--navy);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.14);
  transform: translateX(3px);
}

.mobile-menu__link.is-active {
  background: linear-gradient(145deg, rgba(8, 25, 45, 0.94), rgba(15, 42, 71, 0.98));
  border-color: rgba(212, 175, 55, 0.45);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 25, 45, 0.2);
}

.mobile-menu__link.is-active .mobile-menu__link-index {
  color: var(--gold-light);
}

.mobile-menu__link.is-active .mobile-menu__link-icon {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--navy);
}

.mobile-menu__link:hover .mobile-menu__link-icon,
.mobile-menu__link.is-active .mobile-menu__link-icon {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--navy);
}

.mobile-menu__link:hover .mobile-menu__link-index {
  color: var(--gold-dark);
}

.mobile-menu__link:hover .mobile-menu__link-arrow {
  color: var(--gold-dark);
  transform: translateX(2px);
}

.mobile-menu__link.is-active .mobile-menu__link-arrow {
  color: var(--gold-light);
  transform: translateX(2px);
}

.mobile-menu__item--has-sub {
  border: 1px solid rgba(8, 25, 45, 0.07);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(8, 25, 45, 0.04);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.94));
}

.mobile-menu__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(8, 25, 45, 0.86);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}

.mobile-menu__toggle .mobile-menu__link-label {
  flex: 1;
}

.mobile-menu__toggle:hover,
.mobile-menu__item--has-sub.is-open .mobile-menu__toggle,
.mobile-menu__item--has-sub.is-active .mobile-menu__toggle {
  color: var(--navy);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
}

.mobile-menu__item--has-sub.is-active .mobile-menu__toggle {
  background: linear-gradient(145deg, rgba(8, 25, 45, 0.94), rgba(15, 42, 71, 0.98));
  color: #ffffff;
}

.mobile-menu__item--has-sub.is-active .mobile-menu__link-index {
  color: var(--gold-light);
}

.mobile-menu__item--has-sub.is-open .mobile-menu__toggle .mobile-menu__link-icon,
.mobile-menu__item--has-sub.is-active .mobile-menu__toggle .mobile-menu__link-icon {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--navy);
}

.mobile-menu__chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  opacity: 0.65;
  flex-shrink: 0;
}

.mobile-menu__item--has-sub.is-open .mobile-menu__chevron {
  transform: rotate(-135deg);
}

.mobile-menu__subnav {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  background: rgba(8, 25, 45, 0.025);
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu__item--has-sub.is-open .mobile-menu__subnav {
  grid-template-rows: 1fr;
}

.mobile-menu__subnav-inner {
  min-height: 0;
  overflow: hidden;
  padding: 6px 0 14px;
}

.mobile-menu__subgroup {
  padding: 10px 28px 6px 36px;
}

.mobile-menu__subtitle {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(8, 25, 45, 0.45);
  margin-bottom: 6px;
}

.mobile-menu__sublinks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__sublink {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(8, 25, 45, 0.06);
  transition: color 0.2s ease;
}

.mobile-menu__sublinks li:last-child .mobile-menu__sublink {
  border-bottom: none;
}

.mobile-menu__sublink-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(8, 25, 45, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 1px solid rgba(8, 25, 45, 0.08);
  color: var(--navy);
}

.mobile-menu__sublink-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.mobile-menu__sublink-icon--venture { color: #0d4f8b; }
.mobile-menu__sublink-icon--angel { color: #7a5c1e; }
.mobile-menu__sublink-icon--growth { color: #1a6b4a; }
.mobile-menu__sublink-icon--debt { color: #4a3d8f; }
.mobile-menu__sublink-icon--ipo { color: #9a3b2e; }
.mobile-menu__sublink-icon--ma { color: #2f5f7a; }
.mobile-menu__sublink-icon--fund { color: #8b6914; }
.mobile-menu__sublink-icon--valuation { color: #5c4a8a; }
.mobile-menu__sublink-icon--strategy { color: #1f4d63; }
.mobile-menu__sublink-icon--readiness { color: #2d6a4f; }

.mobile-menu__sublink-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mobile-menu__sublink:hover .mobile-menu__sublink-icon {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-color: rgba(212, 175, 55, 0.4);
}

.mobile-menu__sublink:hover .mobile-menu__sublink-label {
  color: var(--gold-dark);
}

.mobile-menu__sublink-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.mobile-menu__sublink-desc {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(8, 25, 45, 0.48);
  line-height: 1.35;
}

.mobile-menu__sub-cta {
  display: block;
  margin: 10px 28px 4px 36px;
  padding: 11px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 0 var(--gold-dark), 0 6px 16px var(--gold-glow);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-menu__sub-cta:hover {
  background: linear-gradient(145deg, #f0d46a, var(--gold-light));
  transform: translateY(-1px);
}

.mobile-menu__footer {
  flex-shrink: 0;
  padding: 10px 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 24%, #ffffff 100%);
  border-top: 1px solid rgba(8, 25, 45, 0.06);
  box-shadow: 0 -8px 24px rgba(8, 25, 45, 0.04);
}

.mobile-menu__quick {
  padding: 10px 4px 6px;
}

.mobile-menu__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mobile-menu__quick-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--navy);
  background: linear-gradient(145deg, #ffffff, #f8fafd);
  border: 1px solid rgba(8, 25, 45, 0.08);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(8, 25, 45, 0.04);
  transition: all 0.2s ease;
}

.mobile-menu__quick-link:hover {
  color: var(--gold-dark);
  border-color: rgba(212, 175, 55, 0.35);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
  transform: translateY(-1px);
}

.mobile-menu__cta {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.mobile-menu__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-menu__contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 8px 6px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--text-muted);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.9));
  border: 1px solid rgba(8, 25, 45, 0.07);
  border-radius: 10px;
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.mobile-menu__contact-item:hover {
  color: var(--gold-dark);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.12);
  transform: translateY(-1px);
}

.mobile-menu__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  border-radius: 8px;
}

.mobile-menu__contact-text {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-menu__contact-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* ─── Hero Banner + Slider (Reference-style) ───────────────── */
.hero-banner {
  margin-top: var(--header-height-expanded);
}

.hero-slider--fullscreen {
  --hero-controls-h: 58px;
  --hero-height: clamp(
    598px,
    calc((100dvh - var(--header-height-expanded)) * 0.943),
    805px
  );
  position: relative;
  overflow: hidden;
  height: var(--hero-height);
  background: linear-gradient(160deg, #f8fafd 0%, #eef3f9 100%);
  outline: none;
}

.hero-slider__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero-slider__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slider__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-slider__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero-slider__bg--ken-burns {
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-slider__overlay {
  display: none;
}

.hero-slider__overlay--warm {
  display: none;
}

.hero-slider__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding:
    20px var(--header-gutter) calc(var(--hero-controls-h) + 12px);
  box-sizing: border-box;
}

.hero-slider__content {
  max-width: 620px;
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
  padding: clamp(20px, 2.5vw, 32px);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-3d-hover);
}

.hero-slider__slide.is-active .hero-slider__content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider__label {
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-size: clamp(11px, 1.38vw, 14px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-slider__badge-wrap {
  margin: 0 0 14px;
}

.hero-slider__badge {
  display: inline-block;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.hero-slider__title {
  font-family: var(--font-heading);
  font-size: clamp(2.13rem, 4.37vw, 3.16rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--navy);
  text-shadow: none;
}

.hero-slider__desc {
  font-size: clamp(16px, 1.73vw, 18px);
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 20px;
  max-width: 540px;
}

.hero-slider__highlights {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  max-width: 500px;
}

.hero-slider__highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 100%);
  border: 1px solid rgba(8, 25, 45, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(8, 25, 45, 0.05);
}

.hero-slider__highlight--featured {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.14) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(212, 175, 55, 0.35);
}

.hero-slider__highlight-rank {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
}

.hero-slider__highlight-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-slider__highlight-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.hero-slider__highlight-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-slider__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

.hero-slider__btn-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.hero-slider__btn-primary:hover .hero-slider__btn-icon {
  transform: translateX(3px);
}

.hero-slider__btn-outline {
  color: var(--navy) !important;
  border-color: rgba(8, 25, 45, 0.2) !important;
  background: linear-gradient(145deg, #ffffff, #f8fafd) !important;
  box-shadow: 0 2px 6px rgba(8, 25, 45, 0.06) !important;
}

.hero-slider__btn-outline:hover {
  background: linear-gradient(145deg, #fffdf5, rgba(212, 175, 55, 0.1)) !important;
  border-color: var(--gold) !important;
}

.hero-slider__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: transparent;
  pointer-events: none;
}

.hero-slider__footer .hero-slider__controls,
.hero-slider__footer .hero-slider__arrow,
.hero-slider__footer .hero-slider__dot {
  pointer-events: auto;
}

.hero-slider__progress {
  height: 3px;
  background: rgba(8, 25, 45, 0.08);
}

.hero-slider__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.hero-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 0 12px;
}

.hero-slider__arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f8fafd);
  color: var(--gold-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  padding: 0;
  box-shadow: 0 4px 12px rgba(8, 25, 45, 0.08);
}

.hero-slider__arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}

.hero-slider__arrow:hover {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: var(--navy);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px var(--gold-glow);
}

.hero-slider__dots {
  display: flex;
  gap: 10px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(8, 25, 45, 0.15);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.25s;
}

.hero-slider__dot.is-active {
  background: var(--gold);
  transform: scale(1.05);
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 991px) {
  .hero-slider--fullscreen {
    --hero-height: clamp(
      529px,
      calc((100dvh - var(--header-height-expanded)) * 0.897),
      713px
    );
  }

  .hero-slider__highlights {
    grid-template-columns: 1fr;
  }

  .hero-slider__highlight--featured {
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .hero-slider__inner {
    padding-bottom: calc(var(--hero-controls-h) + 8px);
  }

  .hero-slider__content {
    padding: 18px 16px;
  }

  .hero-slider__title {
    font-size: 1.67rem;
  }

  .hero-slider__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-slider__btn-primary,
  .hero-slider__btn-outline {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }

  .hero-slider__arrow {
    width: 34px;
    height: 34px;
  }

  .hero-slider__controls {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__bg--ken-burns {
    animation: none;
  }

  .hero-slider__content {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-slider__track {
    transition-duration: 0.01ms;
  }

  .mega-menu,
  .mobile-menu__subnav {
    transition-duration: 0.01ms;
  }

  .mobile-menu__item--has-sub.is-open .mobile-menu__subnav {
    grid-template-rows: 1fr;
  }
}

/* ─── Company Intro (Home), Contained layout ───────────────── */
.company-intro {
  background: transparent;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.company-intro__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 50%, rgba(212, 175, 55, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 92% 30%, rgba(26, 61, 92, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.company-intro.section {
  padding: clamp(52px, 5.5vw, 68px) 0;
}

.company-intro.section:has(+ .journey) {
  padding-bottom: clamp(36px, 4.5vw, 48px);
}

.company-intro.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

.company-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(28px, 3.5vw, 44px);
}

.company-intro__media {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 5 / 4;
  min-height: 0;
}

.company-intro__frame {
  position: relative;
  flex: 1;
  min-height: 0;
}

.company-intro__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-3d-hover);
  transform: perspective(900px) rotateY(-3deg);
  transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1), box-shadow 0.45s ease;
}

.company-intro__frame-accent {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 72px;
  height: 72px;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  border-radius: 0 calc(var(--radius) + 4px) 0 0;
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.company-intro__media:hover .company-intro__image-wrap {
  transform: perspective(900px) rotateY(0deg) translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.company-intro__media:hover .company-intro__frame-accent {
  opacity: 1;
}

.company-intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.company-intro__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-3d);
}

.company-intro__float-card {
  position: absolute;
  top: 24px;
  right: -12px;
  z-index: 3;
  padding: 14px 16px;
  text-align: center;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 4px 0 var(--gold-dark),
    0 10px 24px var(--gold-glow);
  animation: companyFloat 4s ease-in-out infinite;
}

@keyframes companyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.company-intro__float-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.company-intro__float-label {
  display: block;
  margin-top: 2px;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(8, 25, 45, 0.72);
}

.company-intro__badge-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.2;
}

.company-intro__badge-label {
  display: block;
  margin-top: 3px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.company-intro__content {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.company-intro__content-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  padding: clamp(22px, 2.6vw, 30px) clamp(24px, 2.8vw, 32px);
  gap: clamp(14px, 1.6vw, 18px);
  background: linear-gradient(155deg, #ffffff 0%, #f8fafd 50%, #f2f6fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-3d);
  position: relative;
}

.company-intro__content-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border-radius: 4px 0 0 4px;
}

.company-intro__head {
  flex-shrink: 0;
  margin-bottom: 0;
  padding-bottom: clamp(10px, 1.2vw, 14px);
  border-bottom: 1px solid rgba(8, 25, 45, 0.07);
}

.company-intro__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.company-intro__title {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.2;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 75%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-intro__tagline {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 12px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.1);
}

.company-intro__mission {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.88rem, 1.05vw, 0.96rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.55;
  color: var(--navy);
  margin: 0;
  padding: 12px 14px 12px 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 2px 10px rgba(8, 25, 45, 0.04);
}

.company-intro__content-inner > .company-intro__text--lead {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: clamp(0.86rem, 1vw, 0.93rem);
  line-height: 1.65;
  margin: 0;
}

.company-intro__details-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  padding-bottom: clamp(20px, 2.5vw, 28px);
  border-bottom: 1px solid rgba(8, 25, 45, 0.07);
}

.company-intro__copy--details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.company-intro__copy--details .company-intro__text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.company-intro__card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
}

.company-intro__card-stats--details {
  align-content: center;
}

.company-intro__card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 10px;
  min-height: 72px;
  text-align: center;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(8, 25, 45, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.company-intro__card-stat:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.12);
}

.company-intro__card-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.1;
}

.company-intro__card-stat-label {
  font-size: clamp(0.58rem, 0.7vw, 0.64rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.2;
}

.company-intro__text {
  color: var(--text-muted);
  margin-bottom: 0;
}

.company-intro__text--lead {
  font-weight: 500;
  color: rgba(8, 25, 45, 0.78);
}

.company-intro__details {
  width: 100%;
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(24px, 3vw, 32px);
  background: linear-gradient(155deg, #ffffff 0%, #f8fafd 55%, #f2f6fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-3d);
  position: relative;
  z-index: 1;
}

.company-intro__details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border-radius: 4px 0 0 4px;
}

.company-intro__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 16px);
  margin-bottom: clamp(22px, 2.5vw, 28px);
  list-style: none;
}

.company-intro__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 16px;
  height: auto;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 100%);
  border: 1px solid rgba(8, 25, 45, 0.06);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(8, 25, 45, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.company-intro__highlight:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: linear-gradient(145deg, #fffdf5 0%, rgba(212, 175, 55, 0.06) 100%);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.14);
}

.company-intro__highlight-num {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 44px;
  padding: 8px 6px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.company-intro__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
}

.company-intro__highlight-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.company-intro__highlight-index {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.04em;
}

.company-intro__highlight-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.company-intro__highlight-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.company-intro__highlight-detail {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
}

.company-intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: clamp(4px, 0.5vw, 8px);
  border-top: 1px solid rgba(8, 25, 45, 0.07);
}

.company-intro__cta,
.company-intro__cta-secondary {
  display: inline-flex;
  padding: 13px 24px;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .company-intro.section {
    padding: 48px 0;
  }

  .company-intro__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-intro__media {
    aspect-ratio: unset;
  }

  .company-intro__frame {
    flex: none;
  }

  .company-intro__image-wrap {
    aspect-ratio: 5 / 4;
    height: auto;
    min-height: 0;
    transform: none;
  }

  .company-intro__details-top {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .company-intro__card-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-intro__highlights {
    grid-template-columns: 1fr;
  }

  .company-intro__highlight {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px;
  }

  .company-intro__content {
    height: auto;
  }

  .company-intro__content-inner {
    height: auto;
    padding: 24px 22px;
  }

  .company-intro__content-inner > .company-intro__text--lead {
    flex: none;
    display: block;
  }

  .company-intro__details {
    padding: 22px 20px;
  }

  .company-intro__media:hover .company-intro__image-wrap {
    transform: translateY(-4px);
  }

  .company-intro__float-card {
    right: 8px;
    top: 16px;
  }

  .company-intro__image {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 520px) {

  .company-intro__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .company-intro__cta,
  .company-intro__cta-secondary {
    justify-content: center;
  }
}

/* ─── Journey Timeline ──────────────────────────────────────── */
.journey {
  --journey-bg-top: #152a3f;
  --journey-bg-mid: #1c3650;
  --journey-bg-deep: #122436;
  background: linear-gradient(165deg, var(--journey-bg-top) 0%, var(--journey-bg-mid) 48%, var(--journey-bg-deep) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.journey.section {
  padding-top: clamp(40px, 4.5vw, 52px);
  padding-bottom: clamp(40px, 4.5vw, 52px);
}

.company-intro.section + .journey.section {
  padding-top: clamp(32px, 4vw, 44px);
}

.journey.section:has(+ .services-overview) {
  padding-bottom: clamp(36px, 4vw, 48px);
}

.journey__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(212, 175, 55, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 88% 72%, rgba(90, 155, 210, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
  pointer-events: none;
}

.journey__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 15%, transparent 78%);
  pointer-events: none;
}

.journey__shine {
  position: absolute;
  inset: -20% -10%;
  background:
    conic-gradient(from 210deg at 30% 40%, transparent 0deg, rgba(212, 175, 55, 0.06) 40deg, transparent 80deg),
    conic-gradient(from 30deg at 75% 60%, transparent 0deg, rgba(255, 255, 255, 0.04) 35deg, transparent 70deg);
  pointer-events: none;
  animation: journeyShine 14s ease-in-out infinite;
}

@keyframes journeyShine {
  0%, 100% { opacity: 0.6; transform: rotate(0deg); }
  50% { opacity: 1; transform: rotate(2deg); }
}

.journey__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: journeyOrb 9s ease-in-out infinite;
}

.journey__orb--1 {
  top: 12%;
  right: -4%;
  width: 320px;
  height: 320px;
  background: rgba(212, 175, 55, 0.18);
}

.journey__orb--2 {
  bottom: 8%;
  left: -6%;
  width: 380px;
  height: 380px;
  background: rgba(74, 130, 185, 0.14);
  animation-delay: -4s;
}

.journey__orb--3 {
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  background: rgba(212, 175, 55, 0.1);
  animation-delay: -2s;
  filter: blur(80px);
}

@keyframes journeyOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 10px) scale(1.06); }
}

.journey__wrap {
  position: relative;
  z-index: 2;
}

.journey__header {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.journey__header .section-eyebrow {
  margin-bottom: 10px;
}

.journey__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 20px);
  margin-bottom: 10px;
}

.journey__title-line {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.65), transparent);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.journey__title-wrap .section-title {
  margin-bottom: 0;
  flex-shrink: 0;
}

.journey__header .section-eyebrow {
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.08) 100%);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.journey__header .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #f0e6c8 55%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.journey__header .section-desc {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-inline: auto;
  font-size: 0.98rem;
  line-height: 1.55;
}

.journey__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 6px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.journey__ribbon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.journey__board {
  position: relative;
}

.journey__board-panel {
  position: relative;
  padding: clamp(18px, 2.5vw, 28px) clamp(16px, 2.5vw, 28px) clamp(16px, 2vw, 24px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius) + 12px);
  backdrop-filter: blur(22px);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -20px 40px rgba(0, 0, 0, 0.08);
}

.journey__board-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.45), rgba(255, 255, 255, 0.1) 42%, rgba(212, 175, 55, 0.2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.journey__board-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
}

.journey__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  opacity: 0.7;
}

.journey__corner--tl {
  top: 14px;
  left: 14px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 4px 0 0 0;
}

.journey__corner--tr {
  top: 14px;
  right: 14px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 4px 0 0;
}

.journey__corner--bl {
  bottom: 14px;
  left: 14px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.5);
  border-left: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 0 0 0 4px;
}

.journey__corner--br {
  bottom: 14px;
  right: 14px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.5);
  border-right: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 0 0 4px 0;
}

.journey__track {
  display: none;
  position: relative;
  height: 5px;
  margin: 0 clamp(20px, 4%, 48px) 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
}

.journey__track-line {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: inherit;
}

.journey__track-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), #fff4d4);
  border-radius: inherit;
  box-shadow: 0 0 16px var(--gold-glow), 0 0 4px rgba(255, 255, 255, 0.4);
  transition: width 0.45s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.journey-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.journey-step {
  display: flex;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.journey-step:hover {
  transform: translateX(4px);
}

.journey-step.is-active {
  transform: translateX(6px);
}

.journey-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
  position: relative;
  z-index: 1;
}

.journey-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 0 0 4px rgba(212, 175, 55, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.28);
  transition: all 0.35s cubic-bezier(0.34, 1.1, 0.64, 1);
  position: relative;
}

.journey-step__icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.journey-step__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.journey-step__dot {
  display: none;
}

.journey-step.is-active .journey-step__icon,
.journey-step:hover .journey-step__icon {
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: #fff4d4;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 4px 0 var(--gold-dark),
    0 0 32px var(--gold-glow),
    0 14px 32px rgba(0, 0, 0, 0.38);
  transform: scale(1.12);
}

.journey-step.is-active .journey-step__icon::after,
.journey-step:hover .journey-step__icon::after {
  opacity: 1;
  transform: scale(1.08);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 20px var(--gold-glow);
}

.journey-step__line {
  width: 3px;
  flex: 1;
  min-height: 28px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.55), rgba(255, 255, 255, 0.08));
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.journey-step.is-active .journey-step__line {
  background: linear-gradient(180deg, var(--gold-light), rgba(212, 175, 55, 0.2));
  box-shadow: 0 0 10px var(--gold-glow);
}

.journey-step__content {
  flex: 1;
  margin-bottom: 14px;
  padding: 18px 20px;
  background: linear-gradient(155deg, #ffffff 0%, #f9fbfe 55%, #f2f6fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 4px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.24),
    0 2px 0 rgba(255, 255, 255, 0.85) inset;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journey-step__content::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.journey-step__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: background 0.3s ease;
}

.journey-step.is-active .journey-step__content,
.journey-step:hover .journey-step__content {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  transform: translateY(-2px);
}

.journey-step.is-active .journey-step__content::before {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}

.journey-step__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.journey-step__num {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}

.journey-step.is-active .journey-step__content::after {
  opacity: 1;
  background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.28) 0%, transparent 70%);
}

.journey-step__tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.journey-step.is-active .journey-step__tag,
.journey-step:hover .journey-step__tag {
  color: var(--navy);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.32), rgba(212, 175, 55, 0.14));
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.journey-step__label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.journey-step.is-active .journey-step__label {
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.journey-step__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 1024px) {
  .journey__track {
    display: block;
  }

  .journey-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 100%;
    margin: 0;
  }

  .journey-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transform: none;
  }

  .journey-step:hover,
  .journey-step.is-active {
    transform: translateY(-8px);
  }

  .journey-step.is-active .journey-step__content,
  .journey-step:hover .journey-step__content {
    transform: translateY(-4px);
  }

  .journey-step__marker {
    width: auto;
    flex-direction: column-reverse;
  }

  .journey-step__line {
    display: none;
  }

  .journey-step__content {
    width: 100%;
    margin-bottom: 0;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
  }

  .journey-step__content::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 3px;
  }

  .journey-step.is-active .journey-step__content::before {
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  }

  .journey-step__meta {
    justify-content: center;
  }

  .journey-step__desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 1023px) {
  .journey-step:hover {
    transform: translateX(4px);
  }

  .journey-step.is-active {
    transform: translateX(6px);
  }
}

@media (max-width: 575px) {
  .journey__title-line {
    max-width: 48px;
  }

  .journey__corner {
    width: 20px;
    height: 20px;
  }

  .journey-step__content {
    padding: 16px;
  }

  .journey-step__label {
    font-size: 1.05rem;
  }
}

/* ─── Services Grid ───────────────────────────────────────────── */
.services-overview {
  background: linear-gradient(180deg, #f6f4ef 0%, #ffffff 35%, #f8fafd 100%);
  position: relative;
  overflow: hidden;
}

.services-overview.section {
  padding-top: clamp(56px, 7vw, 80px);
  padding-bottom: clamp(56px, 7vw, 80px);
}

.journey.section + .services-overview.section {
  padding-top: clamp(48px, 6vw, 68px);
}

.services-overview__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 8% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 92% 75%, rgba(26, 61, 92, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 35% 25% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.services-overview__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(212, 175, 55, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 10%, transparent 75%);
  pointer-events: none;
}

.services-overview__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-overview__wrap {
  position: relative;
  z-index: 1;
}

.services-overview__header {
  margin-bottom: clamp(36px, 4vw, 52px);
}

.services-overview__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 24px);
  margin-bottom: 12px;
}

.services-overview__title-wrap .section-title {
  margin-bottom: 0;
  flex-shrink: 0;
}

.services-overview__title-line {
  flex: 1;
  max-width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
  border-radius: 999px;
}

.services-overview__header .section-desc {
  max-width: 580px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 2.5vw, 24px);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 24px;
  background: linear-gradient(155deg, #ffffff 0%, #fafcfe 55%, #f4f7fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 4px);
  box-shadow:
    0 10px 28px rgba(8, 25, 45, 0.07),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  transition:
    opacity 0.65s ease calc(var(--card-index, 0) * 0.07s),
    transform 0.65s ease calc(var(--card-index, 0) * 0.07s),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 20px 44px rgba(8, 25, 45, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    0 2px 0 rgba(255, 255, 255, 0.95) inset;
}

.service-card:hover .service-card__accent {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
  background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
}

.service-card__num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(212, 175, 55, 0.1);
  pointer-events: none;
  transition: color 0.35s ease;
}

.service-card:hover .service-card__num {
  color: rgba(212, 175, 55, 0.18);
}

.service-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.service-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--gold-dark);
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 16px rgba(8, 25, 45, 0.08);
  transition: all 0.35s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.service-card:hover .service-card__icon-wrap {
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: var(--gold-dark);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 4px 0 var(--gold-dark),
    0 10px 24px var(--gold-glow);
  transform: scale(1.08);
}

.service-card__tag {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-card__tag {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(212, 175, 55, 0.12));
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card__desc {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: auto;
  transition: color 0.3s ease, gap 0.3s ease;
}

.service-card__link:hover {
  color: var(--navy);
}

.service-card__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__arrow,
.service-card__link:hover .service-card__arrow {
  transform: translateX(4px);
}

.services-overview__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 4vw, 48px);
}

.services-overview__cta {
  min-width: 220px;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .services-overview__title-line {
    max-width: 40px;
  }

  .service-card {
    padding: 22px 20px 20px;
  }

  .service-card__icon-wrap {
    width: 46px;
    height: 46px;
  }
}

/* ─── Stats Grid ──────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Why Us (Home) ───────────────────────────────────────────── */
.why-us {
  --why-bg-top: #dce5ef;
  --why-bg-mid: #d0dbe8;
  --why-bg-deep: #e4ebf3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--why-bg-top) 0%, var(--why-bg-mid) 50%, var(--why-bg-deep) 100%);
}

.why-us.section {
  padding-top: clamp(56px, 7vw, 80px);
  padding-bottom: clamp(56px, 7vw, 80px);
}

.services-overview.section + .why-us.section {
  padding-top: clamp(48px, 6vw, 68px);
}

.why-us__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 25%, rgba(26, 61, 92, 0.08) 0%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 90% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
    linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, 0.25) 50%, transparent 58%);
  pointer-events: none;
}

.why-us__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(26, 61, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 61, 92, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 15%, transparent 78%);
  pointer-events: none;
}

.why-us__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.why-us__orb--1 {
  top: 10%;
  left: -5%;
  width: 340px;
  height: 340px;
  background: rgba(26, 61, 92, 0.1);
}

.why-us__orb--2 {
  bottom: 5%;
  right: -4%;
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.12);
}

.why-us__wrap {
  position: relative;
  z-index: 1;
}

.why-us__header {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.why-us__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 24px);
  margin-bottom: 12px;
}

.why-us__title-wrap .section-title {
  margin-bottom: 0;
  flex-shrink: 0;
}

.why-us__title-line {
  flex: 1;
  max-width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26, 61, 92, 0.35), transparent);
  border-radius: 999px;
}

.why-us__header .section-desc {
  max-width: 560px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.6;
}

.why-us__stats-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
}

.why-us .why-us__stat {
  position: relative;
  text-align: center;
  padding: clamp(28px, 3vw, 36px) clamp(18px, 2.5vw, 24px);
  background: linear-gradient(155deg, #ffffff 0%, #f8fafd 55%, #f2f6fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 4px);
  box-shadow:
    0 10px 28px rgba(8, 25, 45, 0.07),
    0 2px 0 rgba(255, 255, 255, 0.88) inset;
  overflow: hidden;
  transition:
    opacity 0.65s ease calc(var(--stat-index, 0) * 0.08s),
    transform 0.65s ease calc(var(--stat-index, 0) * 0.08s),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.why-us .why-us__stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-mid), var(--gold-dark), var(--navy-mid));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-us .why-us__stat::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.why-us .why-us__stat:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow:
    0 18px 40px rgba(8, 25, 45, 0.1),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    0 2px 0 rgba(255, 255, 255, 0.95) inset;
}

.why-us .why-us__stat:hover::before {
  opacity: 1;
}

.why-us .why-us__stat:hover::after {
  opacity: 1;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.why-us__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--navy-mid);
  background: linear-gradient(145deg, #ffffff, #eef2f8);
  border: 2px solid rgba(26, 61, 92, 0.1);
  box-shadow: 0 4px 14px rgba(8, 25, 45, 0.07);
  transition: all 0.35s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.why-us__stat-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.why-us .why-us__stat:hover .why-us__stat-icon {
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: var(--gold-dark);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 4px 0 var(--gold-dark),
    0 8px 22px var(--gold-glow);
  transform: scale(1.08);
}

.why-us .stat-card__value {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 8px;
  line-height: 1.1;
}

.why-us .stat-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-us__stat-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 1024px) {
  .why-us__stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 575px) {
  .why-us__title-line {
    max-width: 40px;
  }

  .why-us__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Home: Market Beyond ───────────────────────────────────── */
.home-market {
  position: relative;
  overflow: hidden;
}

.home-market.section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.services-overview.section + .home-market.section {
  padding-top: clamp(40px, 5vw, 56px);
}

.home-market__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(8, 25, 45, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.home-market__wrap {
  position: relative;
  z-index: 1;
}

.home-market__inner {
  padding: clamp(28px, 4vw, 44px);
  border-left: 4px solid var(--gold);
}

.home-market__title {
  max-width: 18ch;
  margin-bottom: 16px;
}

.home-market__desc {
  max-width: 62ch;
  margin-bottom: 20px;
}

.home-market__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.home-market__highlight {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

.home-market__highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.home-market__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Home: Why Choose ────────────────────────────────────────── */
.home-why-choose {
  position: relative;
  overflow: hidden;
}

.home-why-choose.section {
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.home-why-choose__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
  pointer-events: none;
}

.home-why-choose__header {
  position: relative;
  z-index: 1;
}

.home-why-choose__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.home-why-card {
  padding: clamp(20px, 2.5vw, 26px);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-why-card:hover {
  transform: translateY(-4px);
}

.home-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
}

.home-why-card__icon svg {
  width: 22px;
  height: 22px;
}

.home-why-card__title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.35;
}

.home-why-card__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Home: How It Works ─────────────────────────────────────── */
.home-process.section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
}

.home-process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.8vw, 18px);
}

.home-process-step {
  padding: clamp(18px, 2.2vw, 24px);
  height: 100%;
}

.home-process-step__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.home-process-step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.35;
}

.home-process-step__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Home: FAQ ───────────────────────────────────────────────── */
.home-faq {
  position: relative;
  overflow: hidden;
}

.home-faq.section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(56px, 7vw, 80px);
}

.home-faq__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(212, 175, 55, 0.07) 0%, transparent 58%);
  pointer-events: none;
}

.home-faq__header,
.home-faq__list,
.home-faq__footer {
  position: relative;
  z-index: 1;
}

.home-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-faq__item {
  background: #ffffff;
  border: 1px solid rgba(8, 25, 45, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(8, 25, 45, 0.04);
}

.home-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.home-faq__question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.home-faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
}

.home-faq__item.is-open .home-faq__chevron {
  transform: rotate(180deg);
}

.home-faq__answer {
  padding: 0 20px 18px;
}

.home-faq__answer p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.home-faq__footer {
  margin-top: 28px;
  text-align: center;
}

.industries.section + .home-process.section {
  padding-top: clamp(40px, 5vw, 56px);
}

.home-process.section + .home-faq.section {
  padding-top: clamp(32px, 4vw, 48px);
}

/* ─── Industries Grid ───────────────────────────────────────── */
.industries {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf8f4 0%, #ffffff 40%, #f6f8fc 100%);
}

.industries.section {
  padding-top: clamp(56px, 7vw, 80px);
  padding-bottom: clamp(56px, 7vw, 80px);
}

.why-us.section + .industries.section {
  padding-top: clamp(48px, 6vw, 68px);
}

.industries__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 85% 75%, rgba(26, 61, 92, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.industries__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, #000 10%, transparent 75%);
  pointer-events: none;
}

.industries__wrap {
  position: relative;
  z-index: 1;
}

.industries__header {
  margin-bottom: clamp(36px, 4vw, 52px);
}

.industries__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 24px);
  margin-bottom: 12px;
}

.industries__title-wrap .section-title {
  margin-bottom: 0;
  flex-shrink: 0;
}

.industries__title-line {
  flex: 1;
  max-width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
  border-radius: 999px;
}

.industries__header .section-desc {
  max-width: 580px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 20px);
}

.industry-card {
  position: relative;
  text-align: center;
  padding: clamp(22px, 3vw, 28px) clamp(14px, 2vw, 18px);
  background: linear-gradient(155deg, #ffffff 0%, #fafcfe 55%, #f4f7fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 2px);
  box-shadow:
    0 8px 22px rgba(8, 25, 45, 0.06),
    0 2px 0 rgba(255, 255, 255, 0.88) inset;
  overflow: hidden;
  transition:
    opacity 0.65s ease calc(var(--ind-index, 0) * 0.06s),
    transform 0.65s ease calc(var(--ind-index, 0) * 0.06s),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow:
    0 16px 36px rgba(8, 25, 45, 0.1),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    0 2px 0 rgba(255, 255, 255, 0.95) inset;
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: var(--gold-dark);
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 14px rgba(8, 25, 45, 0.06);
  transition: all 0.35s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.industry-card__icon-wrap svg {
  width: 22px;
  height: 22px;
  display: block;
}

.industry-card:hover .industry-card__icon-wrap {
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-color: var(--gold-dark);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 4px 0 var(--gold-dark),
    0 8px 20px var(--gold-glow);
  transform: scale(1.08);
}

.industry-card__name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-card__name {
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 575px) {
  .industries__title-line {
    max-width: 40px;
  }
}

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef2f7 0%, #f4f7fc 100%);
}

.cta-banner.section {
  padding-top: clamp(36px, 4.5vw, 52px);
  padding-bottom: clamp(36px, 4.5vw, 52px);
}

.industries.section + .cta-banner.section {
  padding-top: clamp(28px, 3.5vw, 40px);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 20% 30%, rgba(26, 61, 92, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner__inner {
  text-align: center;
  padding: clamp(36px, 4vw, 48px) clamp(28px, 3vw, 36px);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 40%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.cta-banner__inner::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.25;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 22px;
}

@media (max-width: 575px) {
  .cta-banner__inner {
    padding: 28px 22px;
  }

  .cta-banner__desc {
    margin-bottom: 18px;
  }
}

/* ─── Page Hero (Inner Pages) ───────────────────────────────── */
.page-hero {
  padding: calc(var(--header-height-expanded) + 56px) 0 72px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
    linear-gradient(160deg, #ffffff 0%, #f4f7fc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  display: inline-flex;
  justify-content: flex-start;
  margin: 0;
}

.breadcrumb__list {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 5px 6px 5px 14px;
  background: linear-gradient(135deg, rgba(8, 25, 45, 0.96) 0%, rgba(14, 38, 64, 0.94) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(8, 25, 45, 0.12);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
}

.breadcrumb__icon {
  flex-shrink: 0;
  color: var(--gold-light);
}

.breadcrumb__text {
  font-weight: 500;
}

.breadcrumb__sep {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 6px;
  color: rgba(212, 175, 55, 0.65);
  line-height: 0;
}

.breadcrumb__chevron {
  display: block;
}

.breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb__link:hover {
  color: var(--gold-light);
}

.breadcrumb__link:hover .breadcrumb__icon {
  color: var(--gold-light);
}

.breadcrumb__item--current {
  display: flex;
  align-items: center;
}

.breadcrumb__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.page-hero--consulting {
  background: linear-gradient(160deg, var(--white) 0%, #f0f4f8 50%, var(--bg-alt) 100%);
}

/* ─── Banner Page Hero (Inner Pages) ──────────────────────────── */
.page-hero--banner {
  padding: var(--header-height-expanded) 0 0;
  min-height: 0;
  background: transparent;
}

.page-hero--banner .page-hero__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  min-height: clamp(208px, 27vw, 304px);
  padding: clamp(32px, 4vw, 51px) 0 clamp(28px, 3.6vw, 42px);
  background-color: var(--navy);
  background-image: url('../images/breadcrumb-bg.png');
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero--banner .page-hero__inner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 25, 45, 0.75) 0%, rgba(8, 25, 45, 0.28) 35%, transparent 60%),
    linear-gradient(90deg, rgba(8, 25, 45, 0.55) 0%, rgba(8, 25, 45, 0.15) 28%, transparent 55%);
  pointer-events: none;
}

.page-hero--banner .page-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 0 var(--header-gutter);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.page-hero--banner .page-hero__content {
  position: relative;
  width: auto;
  max-width: min(720px, calc(100vw - var(--header-gutter) - 24px));
  margin: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.page-hero--banner .page-hero__content::before,
.page-hero--banner .page-hero__content::after {
  display: none;
}

.page-hero--banner .page-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.page-hero--banner .page-hero__glow--1 {
  bottom: -35%;
  left: -6%;
  width: min(300px, 38vw);
  height: min(300px, 38vw);
  background: rgba(212, 175, 55, 0.18);
}

.page-hero--banner .page-hero__glow--2 {
  top: 0;
  right: -6%;
  width: min(260px, 32vw);
  height: min(260px, 32vw);
  background: rgba(212, 175, 55, 0.1);
}

.page-hero--banner .page-hero__content.reveal {
  opacity: 1;
  transform: none;
}

.page-hero--banner .page-hero__breadcrumb-wrap .breadcrumb {
  margin: 0;
}

.page-hero--banner .page-hero__breadcrumb-wrap .breadcrumb__list {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 6px 22px rgba(8, 25, 45, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.14) inset;
}

.page-hero--banner .page-hero__eyebrow {
  display: inline-block;
  margin: 0 0 clamp(8px, 1vw, 12px);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.12);
}

.page-hero--banner .page-hero__kicker::after {
  display: none;
}

.page-hero--banner .page-hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 5px 14px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.24) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.18);
}

.page-hero--banner .page-hero__tagline::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 6px var(--gold-glow);
  flex-shrink: 0;
}

.page-hero--banner .page-hero__breadcrumb-wrap {
  margin: 0 0 clamp(12px, 1.4vw, 16px);
}

.page-hero--banner .page-hero__title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 1vw, 12px);
}

.page-hero--banner .page-hero__kicker {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-align: left;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 45%, var(--gold-light) 88%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(8, 25, 45, 0.65));
}

.page-hero--banner .page-hero__desc {
  max-width: 100%;
  margin: clamp(12px, 1.4vw, 16px) 0 0;
  padding: 0;
  text-align: left;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(8, 25, 45, 0.55);
  border-left: none;
}

.page-hero--banner .page-hero__gold-rule {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 3px;
  margin: 0;
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    rgba(212, 175, 55, 0.12) 100%
  );
  box-shadow: 0 1px 10px rgba(212, 175, 55, 0.35);
  overflow: hidden;
}

.page-hero--banner .page-hero__gold-rule::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  background-size: 30% 100%;
  background-repeat: no-repeat;
  animation: bannerRuleShine 5s ease-in-out infinite;
}

@keyframes bannerRuleShine {
  0%, 100% { background-position: -30% 0; }
  50% { background-position: 130% 0; }
}

.page-hero--banner::before {
  display: none;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

.page-hero--banner .page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(8, 25, 45, 0.06);
}

.page-hero--banner .page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(8, 25, 45, 0.08);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(8, 25, 45, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-hero--banner .page-hero__badge:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.12);
}

@media (max-width: 575px) {
  .page-hero--banner .page-hero__inner {
    min-height: clamp(176px, 40vw, 240px);
    padding: clamp(26px, 4vw, 32px) 0 clamp(22px, 3.2vw, 28px);
  }

  .page-hero--banner .page-hero__container {
    padding-left: var(--header-gutter);
  }

  .page-hero--banner .page-hero__content {
    max-width: 100%;
    padding: 0;
  }

  .page-hero--banner .page-hero__kicker {
    font-size: clamp(1.55rem, 6.5vw, 1.95rem);
  }

  .page-hero--banner .page-hero__gold-rule::after {
    animation: none;
  }

  .breadcrumb__list {
    padding: 4px 5px 4px 12px;
  }

  .breadcrumb__pill {
    padding: 6px 12px;
    font-size: 0.6875rem;
  }

  .breadcrumb__item {
    font-size: 0.75rem;
  }
}

/* ─── About Page ────────────────────────────────────────────── */
.page--about .section {
  padding: 0;
}

.page--about .about-intro {
  padding: 0 0 clamp(24px, 3vw, 32px);
  margin-top: clamp(-28px, -2.5vw, -20px);
  position: relative;
  z-index: 2;
}

.page--about .about-purpose,
.page--about .about-values,
.page--about .about-metrics,
.page--about .about-leadership,
.page--about .about-approach {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--about .about-purpose {
  padding-top: 0;
}

.page--about .about-cta {
  padding: clamp(28px, 3.5vw, 44px) 0 clamp(48px, 5vw, 64px);
}

.page--about .about-approach + .about-cta {
  padding-top: 0;
}

.about-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.about-intro__media {
  position: relative;
}

.about-intro__frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-3d-hover);
}

.about-intro__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}

.about-intro__frame-accent {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 64px;
  height: 64px;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  border-radius: 0 calc(var(--radius) + 4px) 0 0;
  pointer-events: none;
}

.about-intro__float {
  position: absolute;
  left: 16px;
  bottom: -14px;
  padding: 12px 16px;
  text-align: center;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 0 var(--gold-dark), 0 10px 24px var(--gold-glow);
}

.about-intro__float-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.about-intro__float-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(8, 25, 45, 0.72);
}

.about-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  color: var(--navy);
  margin: 12px 0 8px;
}

.about-intro__tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.about-intro__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.about-intro__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-intro__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(145deg, #ffffff, #f8fafd);
  border: 1px solid rgba(8, 25, 45, 0.07);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.about-intro__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold-dark);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 10px;
}

.about-intro__highlight-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.about-intro__highlight-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.about-purpose__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.about-purpose-card {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  overflow: hidden;
}

.about-purpose-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.about-purpose-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--gold-dark);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
}

.about-purpose-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.about-purpose-card__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.about-purpose-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.about-purpose-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.about-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(24px, 3vw, 32px);
}

.about-section-head .section-eyebrow {
  margin-bottom: 12px;
}

.about-section-head .section-title {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.about-section-head__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.about-section-head--light .section-title {
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section-head--light .section-eyebrow {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}

.about-section-head--light .about-section-head__desc {
  color: rgba(255, 255, 255, 0.78);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
}

.about-beliefs .about-values__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-philosophy__quote {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 40px);
  border-left: 4px solid var(--gold);
}

.about-philosophy__quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-heading);
  font-style: italic;
}

.about-value {
  padding: clamp(22px, 2.5vw, 28px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-value:hover {
  transform: translateY(-4px);
}

.about-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 11px;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.about-value__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.about-value__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-value__desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.about-metrics {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy-mid) 100%);
}

.about-metrics__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(212, 175, 55, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-metrics .container {
  position: relative;
  z-index: 1;
}

.about-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
}

.about-metric {
  padding: clamp(20px, 2.5vw, 26px);
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-metric__value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.about-metric__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about-leadership {
  position: relative;
  overflow: hidden;
}

.about-leadership__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #f8fafd 0%, #ffffff 35%, #f6f8fc 100%);
  pointer-events: none;
}

.about-leadership__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 10% 20%, rgba(212, 175, 55, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(8, 25, 45, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.about-leadership__container {
  position: relative;
  z-index: 1;
}

.about-leadership__wrap {
  width: 100%;
}

.about-leader {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
  align-items: stretch;
  width: 100%;
}

.about-leader__profile {
  position: relative;
}

.about-leader__profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  border-top: 4px solid var(--gold);
}

.about-leader__main {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 3.5vw, 40px);
  border-top: 4px solid var(--navy);
  position: relative;
  overflow: hidden;
}

.about-leader__main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: min(42%, 320px);
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-leader__header,
.about-leader__body,
.about-leader__meta {
  position: relative;
  z-index: 1;
}

.about-leader__avatar {
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  border: 3px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 8px 28px rgba(8, 25, 45, 0.12);
}

.about-leader__avatar--person {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: rgba(212, 175, 55, 0.5);
}

.about-leader__initials {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
  text-transform: uppercase;
}

.about-leader__logo {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--logo-radius);
}

.about-leader__brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.9));
  border: 1px solid rgba(8, 25, 45, 0.08);
  border-radius: var(--logo-frame-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.about-leader__badge {
  padding: 7px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
}

.about-leader__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.about-leader__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 253, 0.85));
  border: 1px solid rgba(8, 25, 45, 0.07);
  border-radius: var(--radius-sm);
}

.about-leader__stat-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.about-leader__stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.about-leader__institutions {
  width: 100%;
  padding-top: 8px;
  border-top: 1px solid rgba(8, 25, 45, 0.08);
}

.about-leader__institutions-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-leader__institutions-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-leader__institution {
  display: block;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(8, 25, 45, 0.04);
  border: 1px solid rgba(8, 25, 45, 0.07);
  border-radius: var(--radius-sm);
}

.about-leader__eyebrow {
  margin-bottom: 10px;
}

.about-leader__header {
  margin-bottom: clamp(20px, 2.5vw, 28px);
  padding-bottom: clamp(18px, 2vw, 24px);
  border-bottom: 1px solid rgba(8, 25, 45, 0.08);
}

.about-leader__name {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 10px;
  max-width: 20ch;
}

.about-leader__role {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  box-shadow: 0 3px 0 var(--gold-dark), 0 6px 14px var(--gold-glow);
}

.about-leader__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 24px);
}

.about-leader__bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-heading);
  margin: 0;
}

.about-leader__bio--lead {
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  max-width: 72ch;
}

.about-leader__content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.about-leader__content-grid .about-leader__paragraph:nth-child(3) {
  grid-column: 1 / -1;
}

.about-leader__paragraph {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

.about-leader__firm-note {
  margin: 0;
  padding: clamp(18px, 2.2vw, 22px) clamp(20px, 2.5vw, 24px);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
}

.about-leader__firm-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-heading);
  font-style: italic;
}

.about-leader__highlights-wrap {
  padding-top: 4px;
}

.about-leader__highlights-title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.about-leader__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-leader__highlight {
  position: relative;
  padding: 12px 14px 12px 34px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
  background: rgba(8, 25, 45, 0.03);
  border: 1px solid rgba(8, 25, 45, 0.06);
  border-radius: var(--radius-sm);
}

.about-leader__highlight::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 1.15em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.about-leader__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(8, 25, 45, 0.08);
}

.about-leader__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
}

.about-leader__location svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-dark);
}

.about-leader__cta {
  padding: 11px 22px;
  font-size: 0.78rem;
}

.about-approach__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
}

.about-step {
  padding: clamp(20px, 2.5vw, 26px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-step:hover {
  transform: translateY(-4px);
}

.about-step__num {
  display: inline-flex;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}

.about-step__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-step__desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1024px) {
  .about-values__grid,
  .about-metrics__grid,
  .about-approach__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-intro__inner,
  .about-purpose__grid {
    grid-template-columns: 1fr;
  }

  .about-leader {
    grid-template-columns: 1fr;
  }

  .about-leader__profile-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .about-leader__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-leader__institutions-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-leader__institution {
    flex: 1 1 calc(50% - 4px);
  }

  .about-leader__name {
    max-width: none;
  }

  .about-leader__content-grid,
  .about-leader__highlights {
    grid-template-columns: 1fr;
  }

  .about-leader__content-grid .about-leader__paragraph:nth-child(3) {
    grid-column: auto;
  }

  .about-leader__meta {
    flex-direction: column;
    align-items: stretch;
  }

  .about-leader__cta {
    width: 100%;
    justify-content: center;
  }

  .about-values__grid,
  .about-metrics__grid,
  .about-approach__grid {
    grid-template-columns: 1fr;
  }

  .about-intro__float {
    left: auto;
    right: 16px;
  }
}

/* Legacy about classes (other pages may reference) */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.about-block__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.value-card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.value-card__desc { font-size: 0.9rem; color: var(--text-muted); }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.leader-card { text-align: center; }

.leader-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 6px 0 var(--gold-dark),
    0 10px 24px var(--gold-glow);
}

.leader-card__name { font-size: 1.1rem; margin-bottom: 4px; }

.leader-card__role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.leader-card__bio { font-size: 0.85rem; color: var(--text-muted); }

.approach-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.approach-step { position: relative; padding-left: 20px; }

.approach-step__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.2);
  display: block;
  margin-bottom: 8px;
}

.approach-step__title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.approach-step__desc { font-size: 0.9rem; color: var(--text-muted); }

/* ─── Capital Solutions ───────────────────────────────────────── */
.page--capital .section {
  padding: 0;
}

.page--capital .capital-highlights {
  padding: 0 0 clamp(24px, 3vw, 36px);
  margin-top: clamp(-28px, -2.5vw, -20px);
  position: relative;
  z-index: 2;
}

.page--capital .capital-toolbar {
  padding: 0 0 clamp(20px, 2.5vw, 28px);
}

.page--capital .capital-highlights + .capital-toolbar {
  padding-top: 0;
}

.page--capital .capital-approach {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--capital .capital-outcomes {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--capital .capital-approach + .capital-outcomes {
  padding-top: 0;
}

.page--capital .capital-cta {
  padding: clamp(28px, 3.5vw, 44px) 0 clamp(48px, 5vw, 64px);
}

.page--capital .capital-outcomes + .capital-cta {
  padding-top: 0;
}

.page--capital .section-header {
  margin-bottom: 0;
}

.capital-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.capital-highlight {
  padding: clamp(18px, 2.5vw, 22px) clamp(16px, 2vw, 20px);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.capital-highlight:hover {
  transform: translateY(-4px);
}

.capital-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.capital-highlight__icon svg {
  width: 22px;
  height: 22px;
}

.capital-highlight__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.capital-highlight__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.capital-toolbar__panel {
  padding: clamp(24px, 3vw, 32px);
}

.capital-toolbar__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.capital-toolbar__header .section-desc {
  max-width: 640px;
}

.capital-toolbar__count {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.capital-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(16px, 2vw, 20px);
}

.capital-filter {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(8, 25, 45, 0.08);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.capital-filter:hover,
.capital-filter.is-active {
  color: var(--navy);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.12);
}

.capital-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: clamp(14px, 2vw, 18px);
  border-top: 1px solid rgba(8, 25, 45, 0.06);
}

.capital-jump__link {
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.capital-jump__link:hover,
.capital-jump__link.is-active {
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.22);
}

.capital-solutions__list {
  display: flex;
  flex-direction: column;
}

.capital-solution {
  padding: clamp(36px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--border-subtle);
  scroll-margin-top: calc(var(--header-height-expanded) + 24px);
}

.capital-solution.is-hidden {
  display: none;
}

.capital-solution--alt {
  background: var(--bg-alt);
}

.capital-solution__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.capital-solution--alt .capital-solution__inner {
  direction: rtl;
}

.capital-solution--alt .capital-solution__inner > * {
  direction: ltr;
}

.capital-solution__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.capital-solution__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.capital-solution__icon svg {
  width: 26px;
  height: 26px;
}

.capital-solution__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.capital-solution__tag {
  display: inline-flex;
  padding: 5px 12px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
}

.capital-solution__stage {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
}

.capital-solution__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
  color: var(--text-heading);
}

.capital-solution__desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

.capital-solution__features {
  margin-bottom: 28px;
}

.capital-solution__features li {
  padding: 7px 0 7px 20px;
  font-size: 0.875rem;
  color: var(--text);
  position: relative;
}

.capital-solution__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.capital-solution__process {
  padding: clamp(24px, 3vw, 32px);
  position: sticky;
  top: calc(var(--header-height-expanded) + 20px);
}

.capital-solution__process-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.capital-solution__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.capital-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.capital-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.capital-step__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
}

.capital-empty {
  padding: clamp(40px, 5vw, 64px) 24px;
  text-align: center;
  color: var(--text-muted);
}

.capital-empty__reset {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--gold-dark);
  cursor: pointer;
  text-decoration: underline;
}

.capital-approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.capital-approach-step {
  padding: clamp(20px, 2.5vw, 24px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.capital-approach-step:hover {
  transform: translateY(-3px);
}

.capital-approach-step__num {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}

.capital-approach-step__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.capital-approach-step__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.capital-outcomes__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: clamp(32px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 254, 0.92) 100%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.capital-outcomes__content .section-eyebrow {
  margin-bottom: 10px;
}

.capital-outcomes__content .section-title {
  margin-bottom: 12px;
}

.capital-outcomes__content p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.capital-outcomes__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.capital-outcome {
  text-align: center;
  padding: clamp(16px, 2vw, 20px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 25, 45, 0.06);
}

.capital-outcome__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.1;
}

.capital-outcome__label {
  display: block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* Legacy process diagram (home/other) */
.process-diagram__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.process-diagram__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-heading);
  white-space: nowrap;
}

.process-step__arrow {
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.5;
}

/* ─── Capital Solutions Catalog (Hub) ─────────────────────────── */
.capital-catalog {
  padding-top: 0;
}

.capital-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 24px);
}

.capital-catalog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.capital-catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 48px rgba(8, 25, 45, 0.12);
}

.capital-catalog-card.is-hidden {
  display: none;
}

.capital-catalog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.capital-catalog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.capital-catalog-card:hover .capital-catalog-card__image {
  transform: scale(1.06);
}

.capital-catalog-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 45, 0.02) 30%, rgba(8, 25, 45, 0.55) 100%);
  pointer-events: none;
}

.capital-catalog-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: clamp(20px, 2.5vw, 26px);
}

.capital-catalog-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.capital-catalog-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.capital-catalog-card__icon svg {
  width: 24px;
  height: 24px;
}

.capital-catalog-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.capital-catalog-card__tag {
  display: inline-flex;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.14);
  border-radius: 999px;
}

.capital-catalog-card__stage {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
}

.capital-catalog-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.capital-catalog-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 16px;
  flex-grow: 1;
}

.capital-catalog-card__features {
  margin-bottom: 20px;
}

.capital-catalog-card__features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 6px;
}

.capital-catalog-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.capital-catalog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition), color var(--transition);
}

.capital-catalog-card__link:hover {
  gap: 12px;
  color: var(--navy);
}

.capital-catalog-card__arrow {
  transition: transform var(--transition);
}

.capital-catalog-card__link:hover .capital-catalog-card__arrow {
  transform: translateX(3px);
}

/* ─── Capital Solution Detail Page ────────────────────────────── */
.page--solution-detail .section {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--solution-detail .solution-detail__stats {
  padding-top: 0;
  margin-top: clamp(-32px, -3vw, -24px);
  position: relative;
  z-index: 2;
}

.page--tx-mandate-detail .section {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--tx-mandate-detail .solution-detail__stats {
  padding-top: 0;
  margin-top: clamp(-32px, -3vw, -24px);
  position: relative;
  z-index: 2;
}

.solution-detail__hero-media {
  padding-top: 0;
  margin-top: clamp(-20px, -2vw, -12px);
  position: relative;
  z-index: 2;
}

.solution-detail__hero {
  position: relative;
  margin: 0;
  border-radius: clamp(16px, 2vw, 20px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8, 25, 45, 0.14);
}

.solution-detail__hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.solution-detail__hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: clamp(16px, 2.5vw, 24px);
  background: linear-gradient(180deg, transparent, rgba(8, 25, 45, 0.82));
}

.solution-detail__hero-tag {
  display: inline-flex;
  padding: 5px 12px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
}

.solution-detail__hero-stage {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.solution-detail__stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(20px, 2.5vw, 28px);
}

.solution-detail__stat {
  text-align: center;
  padding: clamp(12px, 1.5vw, 16px);
  border-right: 1px solid var(--border-subtle);
}

.solution-detail__stat:last-child {
  border-right: none;
}

.solution-detail__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.2;
  margin-bottom: 4px;
}

.solution-detail__stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.solution-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}

.solution-detail__overview {
  padding: clamp(24px, 3vw, 32px);
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.solution-detail__overview-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.solution-detail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.22);
  flex-shrink: 0;
}

.solution-detail__icon svg {
  width: 28px;
  height: 28px;
}

.solution-detail__tag {
  display: inline-flex;
  padding: 4px 12px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.14);
  border-radius: 999px;
  margin-right: 8px;
}

.solution-detail__stage {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.solution-detail__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.solution-detail__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.solution-detail__features {
  padding: clamp(24px, 3vw, 32px);
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.solution-detail__section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.solution-detail__features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.solution-detail__feature {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
}

.solution-detail__feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.solution-detail__dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 20px);
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.solution-detail__panel {
  padding: clamp(22px, 2.5vw, 28px);
}

.solution-detail__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 10px;
}

.solution-detail__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.solution-detail__process {
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.solution-detail__process-head {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.solution-detail__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 8px;
}

.solution-detail__step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: clamp(16px, 2vw, 20px) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.solution-detail__step:last-child {
  border-bottom: none;
}

.solution-detail__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.solution-detail__step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.solution-detail__step-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.solution-detail__why {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.solution-detail__why-head {
  margin-bottom: clamp(18px, 2vw, 24px);
}

.solution-detail__why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 18px);
}

.solution-detail__why-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(16px, 2vw, 20px);
}

.solution-detail__why-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

.solution-detail__why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  flex-shrink: 0;
}

.solution-detail__why-icon svg {
  width: 16px;
  height: 16px;
}

.solution-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.solution-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 20px);
  position: sticky;
  top: calc(var(--header-offset, var(--header-height)) + 24px);
}

.solution-detail__sidebar-card {
  padding: clamp(20px, 2.5vw, 24px);
}

.solution-detail__sidebar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.solution-related__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-related {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition);
}

.solution-related__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.solution-related__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.solution-related:hover .solution-related__image {
  transform: scale(1.05);
}

.solution-related__icon,
.solution-related__tag,
.solution-related__title,
.solution-related__stage {
  padding-left: clamp(14px, 1.5vw, 16px);
  padding-right: clamp(14px, 1.5vw, 16px);
}

.solution-related__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 12px;
  margin-bottom: 4px;
  border-radius: 10px;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.1);
}

.solution-related__icon svg {
  width: 18px;
  height: 18px;
}

.solution-related__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.solution-related__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
}

.solution-related__stage {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-bottom: clamp(14px, 1.5vw, 16px);
}

.solution-related:hover {
  transform: translateX(4px);
  border-color: rgba(212, 175, 55, 0.35);
}

.solution-detail__sidebar-cta {
  padding: clamp(20px, 2.5vw, 24px);
  text-align: center;
  background: linear-gradient(160deg, rgba(8, 25, 45, 0.04), rgba(212, 175, 55, 0.06));
}

.solution-detail__sidebar-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.solution-detail__sidebar-cta p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.solution-detail__sidebar-cta .btn {
  margin-bottom: 10px;
}

.solution-detail__sidebar-cta .btn:last-child {
  margin-bottom: 0;
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.page--solution-detail .solution-detail-cta {
  padding-bottom: clamp(48px, 5vw, 64px);
}

@media (max-width: 1024px) {
  .capital-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-detail__layout {
    grid-template-columns: 1fr;
  }

  .solution-detail__sidebar {
    position: static;
  }

  .solution-detail__why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .capital-catalog__grid {
    grid-template-columns: 1fr;
  }

  .solution-detail__stats-inner {
    grid-template-columns: 1fr;
  }

  .solution-detail__stat {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .solution-detail__stat:last-child {
    border-bottom: none;
  }

  .solution-detail__features-list,
  .solution-detail__dual {
    grid-template-columns: 1fr;
  }

  .solution-detail__hero-image {
    aspect-ratio: 16 / 10;
  }
}

/* ─── Growth Studio ───────────────────────────────────────────── */
.page--growth .section {
  padding: 0;
}

.page--growth .growth-highlights {
  padding: 0 0 clamp(24px, 3vw, 36px);
  margin-top: clamp(-28px, -2.5vw, -20px);
  position: relative;
  z-index: 2;
}

.page--growth .growth-services {
  padding: clamp(28px, 3.5vw, 40px) 0;
}

.page--growth .growth-highlights + .growth-services {
  padding-top: 0;
}

.page--growth .growth-approach {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--growth .growth-services + .growth-approach {
  padding-top: clamp(16px, 2vw, 24px);
}

.page--growth .growth-outcomes {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--growth .growth-approach + .growth-outcomes {
  padding-top: 0;
}

.page--growth .growth-cta {
  padding: clamp(28px, 3.5vw, 44px) 0 clamp(48px, 5vw, 64px);
}

.page--growth .growth-outcomes + .growth-cta {
  padding-top: 0;
}

.page--growth .section-header {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.growth-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.growth-highlight {
  padding: clamp(18px, 2.5vw, 22px) clamp(16px, 2vw, 20px);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.growth-highlight:hover {
  transform: translateY(-4px);
}

.growth-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.growth-highlight__icon svg {
  width: 22px;
  height: 22px;
}

.growth-highlight__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.growth-highlight__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}

.growth-card {
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}

.growth-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--gold);
  box-shadow: var(--shadow-3d-hover);
}

.growth-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.growth-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.growth-card__icon svg {
  width: 24px;
  height: 24px;
}

.growth-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.growth-card__index {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(8, 25, 45, 0.08);
}

.growth-card__tag {
  display: inline-flex;
  padding: 5px 12px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
}

.growth-card__title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.growth-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.growth-card__features {
  margin-bottom: 24px;
  flex-grow: 1;
}

.growth-card__features li {
  padding: 6px 0 6px 20px;
  font-size: 0.875rem;
  color: var(--text);
  position: relative;
}

.growth-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.growth-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

.growth-card__link:hover {
  color: var(--navy);
}

.growth-approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.growth-step {
  padding: clamp(20px, 2.5vw, 24px);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}

.growth-step:hover {
  transform: translateY(-3px);
}

.growth-step__num {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}

.growth-step__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.growth-step__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.growth-outcomes__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: clamp(32px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 254, 0.92) 100%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.growth-outcomes__content .section-eyebrow {
  margin-bottom: 10px;
}

.growth-outcomes__content .section-title {
  margin-bottom: 12px;
}

.growth-outcomes__content p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.growth-outcomes__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.growth-outcome {
  text-align: center;
  padding: clamp(16px, 2vw, 20px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 25, 45, 0.06);
}

.growth-outcome__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.1;
}

.growth-outcome__label {
  display: block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.consulting-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
}

.consulting-banner__content p {
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.7;
}

.consulting-banner__metrics {
  display: flex;
  gap: 32px;
}

.consulting-metric { text-align: center; }

.consulting-metric__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.consulting-metric__label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Readiness Hub ───────────────────────────────────────────── */
.page--readiness .section {
  padding: 0;
}

.page--readiness .readiness-highlights {
  padding: 0 0 clamp(24px, 3vw, 36px);
  margin-top: clamp(-28px, -2.5vw, -20px);
  position: relative;
  z-index: 2;
}

.page--readiness .readiness-dimensions {
  padding: clamp(28px, 3.5vw, 40px) 0;
}

.page--readiness .readiness-highlights + .readiness-dimensions {
  padding-top: 0;
}

.page--readiness .readiness-assessment {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--readiness .readiness-dimensions + .readiness-assessment {
  padding-top: clamp(16px, 2vw, 24px);
}

.page--readiness .readiness-process {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--readiness .readiness-assessment + .readiness-process {
  padding-top: 0;
}

.page--readiness .readiness-tips {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--readiness .readiness-process + .readiness-tips {
  padding-top: 0;
}

.page--readiness .readiness-cta {
  padding: clamp(28px, 3.5vw, 44px) 0 clamp(48px, 5vw, 64px);
}

.page--readiness .readiness-tips + .readiness-cta {
  padding-top: 0;
}

.page--readiness .section-header {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.readiness-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.readiness-highlight {
  padding: clamp(18px, 2.5vw, 22px) clamp(16px, 2vw, 20px);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.readiness-highlight:hover {
  transform: translateY(-4px);
}

.readiness-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.16) 0%, rgba(45, 106, 79, 0.06) 100%);
  border: 1px solid rgba(45, 106, 79, 0.22);
  color: #2d6a4f;
}

.readiness-highlight__icon svg {
  width: 22px;
  height: 22px;
}

.readiness-highlight__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.readiness-highlight__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.readiness-dimensions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.readiness-dimension {
  padding: clamp(20px, 2.5vw, 24px);
}

.readiness-dimension__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 11px;
  background: rgba(8, 25, 45, 0.04);
  color: #2d6a4f;
}

.readiness-dimension__icon svg {
  width: 20px;
  height: 20px;
}

.readiness-dimension__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.readiness-dimension__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.readiness-dimension__signals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.readiness-dimension__signals li {
  position: relative;
  padding-left: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.readiness-dimension__signals li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2d6a4f;
}

.readiness-assessment__panel {
  width: 100%;
  padding: clamp(24px, 3vw, 36px) 0;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 55%, rgba(45, 106, 79, 0.05) 100%);
  border-top: 3px solid #2d6a4f;
  border-bottom: 1px solid rgba(45, 106, 79, 0.14);
  box-shadow: 0 -4px 24px rgba(8, 25, 45, 0.04);
}

.readiness-assessment__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--header-gutter);
}

.readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 3vw, 32px);
  align-items: start;
}

.assessment-form {
  padding: clamp(22px, 2.5vw, 28px);
}

.assessment-form__head {
  margin-bottom: 20px;
}

.assessment-form__title {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.assessment-form__intro {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.assessment-progress {
  margin-bottom: 22px;
}

.assessment-progress__track {
  height: 6px;
  border-radius: 999px;
  background: rgba(8, 25, 45, 0.08);
  overflow: hidden;
  margin-bottom: 8px;
}

.assessment-progress__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #2d6a4f, #40916c);
  transition: width 0.35s ease;
}

.assessment-progress__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.assessment-form__fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.assessment-field {
  margin-bottom: 16px;
}

.assessment-field__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.assessment-field__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 8px;
  background: rgba(45, 106, 79, 0.1);
  color: #2d6a4f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.assessment-field__select,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.assessment-field__select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.assessment-field__select option {
  background: var(--white);
  color: var(--text-heading);
}

.assessment-form__submit {
  width: 100%;
  margin-top: 8px;
}

.assessment-form__privacy {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.readiness-scores {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.readiness-scores__intro {
  padding: clamp(18px, 2.5vw, 22px);
}

.readiness-scores__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.readiness-scores__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.readiness-scores.has-results .readiness-scores__desc {
  display: none;
}

.score-card {
  text-align: center;
  padding: clamp(20px, 2.5vw, 24px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.score-card.has-result {
  border-color: rgba(45, 106, 79, 0.22);
}

.score-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.score-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(45, 106, 79, 0.08);
  color: #2d6a4f;
}

.score-card__icon svg {
  width: 17px;
  height: 17px;
}

.score-card__title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d6a4f;
  margin: 0;
}

.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring__bg {
  fill: none;
  stroke: rgba(8, 25, 45, 0.1);
  stroke-width: 8;
}

.score-ring__fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
}

.score-ring__fill--investment { stroke: var(--gold); }
.score-ring__fill--growth { stroke: #2563eb; }
.score-ring__fill--ipo { stroke: #2d6a4f; }

.score-ring__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
}

.score-card__band {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.score-card__insight {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  min-height: 0;
}

.score-card:not(.has-result) .score-card__insight {
  display: none;
}

.readiness-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.readiness-step {
  padding: clamp(20px, 2.5vw, 24px);
}

.readiness-step__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #2d6a4f;
  margin-bottom: 12px;
}

.readiness-step__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.readiness-step__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.readiness-tips__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.readiness-tip {
  padding: clamp(20px, 2.5vw, 24px);
  border-left: 3px solid #2d6a4f;
}

.readiness-tip__title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.readiness-tip__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Transaction Centre ──────────────────────────────────────── */
.page--transactions .section {
  padding: 0;
}

.page--transactions .tx-highlights {
  padding: 0 0 clamp(24px, 3vw, 36px);
  margin-top: clamp(-28px, -2.5vw, -20px);
  position: relative;
  z-index: 2;
}

.page--transactions .tx-pillars {
  padding: clamp(28px, 3.5vw, 40px) 0;
}

.page--transactions .tx-highlights + .tx-pillars {
  padding-top: 0;
}

.page--transactions .tx-focus {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--transactions .tx-pillars + .tx-focus {
  padding-top: clamp(16px, 2vw, 24px);
}

.page--transactions .tx-process {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--transactions .tx-focus + .tx-process {
  padding-top: 0;
}

.page--transactions .tx-cta {
  padding: clamp(28px, 3.5vw, 44px) 0 clamp(48px, 5vw, 64px);
}

.page--transactions .tx-process + .tx-cta {
  padding-top: 0;
}

.page--transactions .section-header {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.tx-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.tx-highlight {
  padding: clamp(18px, 2.5vw, 22px) clamp(16px, 2vw, 20px);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tx-highlight:hover {
  transform: translateY(-4px);
}

.tx-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-dark);
}

.tx-highlight__icon svg {
  width: 22px;
  height: 22px;
}

.tx-highlight__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.tx-highlight__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tx-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.tx-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tx-pillar__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.tx-pillar__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tx-pillar:hover .tx-pillar__image {
  transform: scale(1.05);
}

.tx-pillar__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 25, 45, 0.55) 100%);
  pointer-events: none;
}

.tx-pillar__icon,
.tx-pillar__label,
.tx-pillar__desc,
.tx-pillar__cta {
  margin-inline: clamp(18px, 2.5vw, 24px);
}

.tx-pillar__icon {
  margin-top: clamp(14px, 1.8vw, 18px);
}

.tx-pillar__cta {
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.tx-pillar:hover,
.tx-pillar.is-active {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-3d-hover);
}

.tx-pillar.is-active {
  background: linear-gradient(145deg, #ffffff 0%, rgba(212, 175, 55, 0.08) 100%);
}

.tx-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(8, 25, 45, 0.04);
  color: var(--gold-dark);
}

.tx-pillar__icon svg {
  width: 20px;
  height: 20px;
}

.tx-pillar__label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-heading);
}

.tx-pillar__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tx-pillar__cta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.tx-detail-focus-section {
  margin-top: clamp(24px, 3vw, 32px);
}

.tx-detail-focus-section__head {
  margin-bottom: clamp(16px, 2vw, 24px);
}

.tx-detail-focus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 18px);
}

.tx-detail-focus {
  padding: clamp(16px, 2vw, 20px);
}

.tx-detail-focus__stage {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.tx-detail-focus__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.tx-detail-focus__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tx-focus__panel {
  width: 100%;
  padding: clamp(24px, 3vw, 36px) 0;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 55%, rgba(212, 175, 55, 0.05) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 -4px 24px rgba(8, 25, 45, 0.04);
}

.tx-focus__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--header-gutter);
}

.tx-focus__toolbar {
  margin-bottom: clamp(20px, 2.5vw, 28px);
  padding-bottom: clamp(16px, 2vw, 20px);
  border-bottom: 1px solid rgba(8, 25, 45, 0.06);
}

.tx-focus__toolbar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tx-focus__filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-heading);
}

.tx-focus__count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.tx-focus__empty {
  text-align: center;
  padding: clamp(32px, 4vw, 48px) 16px;
}

.tx-focus__empty p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.tx-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tx-filter {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.tx-filter:hover,
.tx-filter.is-active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.tx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.tx-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.5vw, 24px);
  overflow: hidden;
}

.tx-card.is-hidden {
  display: none;
}

.tx-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.tx-card__accent--capital { background: var(--gold); }
.tx-card__accent--ma { background: #2563eb; }
.tx-card__accent--partnership { background: #16a34a; }

.tx-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.tx-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(8, 25, 45, 0.04);
  color: var(--gold-dark);
}

.tx-card__icon svg {
  width: 18px;
  height: 18px;
}

.tx-card__badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
}

.tx-card__badge--capital { background: rgba(212, 175, 55, 0.15); color: var(--gold); }
.tx-card__badge--ma { background: rgba(37, 99, 235, 0.12); color: #2563eb; }
.tx-card__badge--partnership { background: rgba(22, 163, 74, 0.12); color: #16a34a; }

.tx-card__title {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.tx-card__desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.tx-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(8, 25, 45, 0.06);
}

.tx-card__stage {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
}

.tx-card__status {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.tx-card__deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tx-card__deliverables li {
  position: relative;
  padding-left: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.tx-card__deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.tx-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.tx-card__sector {
  font-size: 0.72rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tx-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.tx-card__link:hover {
  color: var(--gold);
}

.tx-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.tx-process-step {
  padding: clamp(20px, 2.5vw, 24px);
  text-align: left;
}

.tx-process-step__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.tx-process-step__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.tx-process-step__desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Insights Magazine ─────────────────────────────────────── */
.page--insights .section {
  padding: 0;
}

.page--insights .insight-highlights {
  padding: 0 0 clamp(24px, 3vw, 36px);
  margin-top: clamp(-28px, -2.5vw, -20px);
  position: relative;
  z-index: 2;
}

.page--insights .insight-topics {
  padding: clamp(28px, 3.5vw, 40px) 0;
}

.page--insights .insight-highlights + .insight-topics {
  padding-top: 0;
}

.page--insights .insight-articles {
  padding: clamp(28px, 3.5vw, 44px) 0;
}

.page--insights .insight-topics + .insight-articles {
  padding-top: clamp(16px, 2vw, 24px);
}

.page--insights .insight-cta {
  padding: clamp(28px, 3.5vw, 44px) 0 clamp(48px, 5vw, 64px);
}

.page--insights .insight-articles + .insight-cta {
  padding-top: 0;
}

.page--insights .section-header {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.insight-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.insight-highlight {
  padding: clamp(18px, 2.5vw, 22px) clamp(16px, 2vw, 20px);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.insight-highlight:hover {
  transform: translateY(-4px);
}

.insight-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-dark);
}

.insight-highlight__icon svg {
  width: 22px;
  height: 22px;
}

.insight-highlight__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.insight-highlight__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.insight-topics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.insight-topic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: clamp(18px, 2.5vw, 24px);
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.insight-topic:hover,
.insight-topic.is-active {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-3d-hover);
}

.insight-topic.is-active {
  background: linear-gradient(145deg, #ffffff 0%, rgba(212, 175, 55, 0.08) 100%);
}

.insight-topic__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(8, 25, 45, 0.04);
  color: var(--gold-dark);
}

.insight-topic__icon svg {
  width: 20px;
  height: 20px;
}

.insight-topic__label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-heading);
}

.insight-topic__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.insight-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insight-articles__panel {
  width: 100%;
  padding: clamp(24px, 3vw, 36px) 0;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 55%, rgba(212, 175, 55, 0.05) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 -4px 24px rgba(8, 25, 45, 0.04);
}

.insight-articles__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--header-gutter);
}

.insight-articles__toolbar {
  margin-bottom: clamp(20px, 2.5vw, 28px);
  padding-bottom: clamp(16px, 2vw, 20px);
  border-bottom: 1px solid rgba(8, 25, 45, 0.06);
}

.insight-articles__toolbar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.insight-articles__filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-heading);
}

.insight-articles__count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.insight-filter {
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.insight-filter:hover,
.insight-filter.is-active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.12);
}

.insight-filter.is-active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.insights-magazine {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 28px);
}

.insight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.insight-card:not(.insight-card--featured) .insight-card__head,
.insight-card:not(.insight-card--featured) .insight-card__title,
.insight-card:not(.insight-card--featured) .insight-card__excerpt,
.insight-card:not(.insight-card--featured) .insight-card__footer {
  margin-left: clamp(18px, 2.5vw, 24px);
  margin-right: clamp(18px, 2.5vw, 24px);
}

.insight-card:not(.insight-card--featured) .insight-card__head {
  margin-top: 14px;
}

.insight-card:not(.insight-card--featured) .insight-card__footer {
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.insight-card[data-category='capital-insights'] {
  --insight-accent: var(--gold);
  --insight-accent-soft: rgba(212, 175, 55, 0.12);
}

.insight-card[data-category='market-trends'] {
  --insight-accent: #2563eb;
  --insight-accent-soft: rgba(37, 99, 235, 0.1);
}

.insight-card[data-category='funding-news'] {
  --insight-accent: #16a34a;
  --insight-accent-soft: rgba(22, 163, 74, 0.1);
}

.insight-card[data-category='sme-ipo-guide'] {
  --insight-accent: #7c3aed;
  --insight-accent-soft: rgba(124, 58, 237, 0.1);
}

.insight-card:not(.insight-card--featured):hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.28);
}

.insight-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--insight-accent, var(--gold)), transparent);
}

.insight-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.insight-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--insight-accent-soft, rgba(212, 175, 55, 0.1));
  color: var(--insight-accent, var(--gold-dark));
  flex-shrink: 0;
}

.insight-card__icon svg {
  width: 18px;
  height: 18px;
}

.insight-card__category-pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--insight-accent, var(--gold-dark));
  background: var(--insight-accent-soft, rgba(212, 175, 55, 0.1));
  border: 1px solid color-mix(in srgb, var(--insight-accent, var(--gold)) 25%, transparent);
}

.insight-card--featured {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) 1.18fr;
  padding: 0;
  overflow: hidden;
}

.insight-card__featured-visual {
  position: relative;
  min-height: clamp(220px, 28vw, 320px);
  overflow: hidden;
}

.insight-card__featured-image {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 28vw, 320px);
  object-fit: cover;
  display: block;
}

.insight-card__featured-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 28px);
  background: linear-gradient(180deg, rgba(8, 25, 45, 0.08) 0%, rgba(8, 25, 45, 0.55) 55%, rgba(8, 25, 45, 0.88) 100%);
  color: #ffffff;
}

.insight-card__media {
  display: block;
  overflow: hidden;
  line-height: 0;
}

.insight-card__image {
  width: 100%;
  height: clamp(160px, 18vw, 190px);
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.insight-card:hover .insight-card__image {
  transform: scale(1.04);
}

.insight-card__featured-badge {
  position: absolute;
  top: clamp(18px, 2vw, 24px);
  left: clamp(18px, 2vw, 24px);
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-light);
}

.insight-card__featured-icon {
  display: none;
}

.insight-card__featured-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.insight-card__featured-read {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.insight-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
}

.insight-card__meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--gray-600);
}

.insight-card__meta-row time {
  font-weight: 600;
  color: var(--text-heading);
}

.insight-card__author {
  position: relative;
  padding-left: 16px;
}

.insight-card__author::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.insight-card--featured .insight-card__title {
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  margin-bottom: 12px;
}

.insight-card--featured .insight-card__excerpt {
  font-size: 0.94rem;
  margin-bottom: 20px;
  flex: 0;
}

.insight-card__cta {
  align-self: flex-start;
  margin-top: auto;
}

.insights-magazine__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.insight-card.is-hidden { display: none; }

.insight-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text-heading);
}

.insight-card__excerpt {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.insight-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 25, 45, 0.06);
}

.insight-card__meta-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.insight-card__read,
.insight-card__date {
  font-size: 0.74rem;
  color: var(--gray-600);
}

.insight-card__date {
  font-weight: 600;
  color: var(--text-heading);
}

.insight-card__link {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
  transition: color var(--transition);
}

.insight-card__link:hover {
  color: var(--gold);
}

.insight-articles__empty {
  margin-top: 24px;
  padding: 32px 24px;
  text-align: center;
  border-radius: 12px;
  background: rgba(8, 25, 45, 0.03);
  border: 1px dashed rgba(8, 25, 45, 0.12);
}

.insight-articles__empty p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.insight-articles__reset {
  margin-inline: auto;
}

/* ─── Insight Article Detail ──────────────────────────────────── */
.page--insight-detail .insight-article {
  padding: clamp(28px, 3.5vw, 44px) 0 clamp(48px, 5vw, 64px);
}

.insight-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.75fr);
  gap: clamp(20px, 2.5vw, 28px);
  align-items: start;
}

.insight-article__content {
  padding: 0;
  overflow: hidden;
}

.insight-article__hero {
  margin: 0;
  line-height: 0;
}

.insight-article__hero-image {
  width: 100%;
  min-height: clamp(220px, 32vw, 360px);
  max-height: clamp(260px, 38vw, 420px);
  object-fit: cover;
  display: block;
}

.insight-article__meta-bar,
.insight-article__intro,
.insight-article__section,
.insight-article__takeaways,
.insight-article__actions {
  margin-left: clamp(24px, 3vw, 36px);
  margin-right: clamp(24px, 3vw, 36px);
}

.insight-article__meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(8, 25, 45, 0.08);
  font-size: 0.82rem;
  color: var(--gray-600);
}

.insight-article__meta-bar time {
  font-weight: 700;
  color: var(--text-heading);
}

.insight-article__intro {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: clamp(24px, 3vw, 32px);
}

.insight-article__section + .insight-article__section {
  margin-top: clamp(24px, 3vw, 32px);
}

.insight-article__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text-heading);
  margin-bottom: 12px;
}

.insight-article__text {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.insight-article__list {
  margin: 12px 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.insight-article__list li {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.insight-article__takeaways {
  margin-top: clamp(28px, 3vw, 36px);
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.insight-article__takeaways-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.insight-article__takeaways-list {
  margin: 0;
  padding-left: 1.2rem;
}

.insight-article__takeaways-list li {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 8px;
}

.insight-article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 32px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.insight-article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-article__sidebar-card {
  padding: clamp(18px, 2.5vw, 22px);
}

.insight-article__sidebar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.insight-related__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-related {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition);
}

.insight-related__media {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.insight-related__image {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.insight-related:hover .insight-related__image {
  transform: scale(1.04);
}

.insight-related__category,
.insight-related__title,
.insight-related__meta {
  padding-left: 14px;
  padding-right: 14px;
}

.insight-related__meta {
  padding-bottom: 14px;
}

.insight-related:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.35);
}

.insight-related__category {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-top: 12px;
}

.insight-related__title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-heading);
}

.insight-related__meta {
  font-size: 0.74rem;
  color: var(--gray-600);
}

@media (max-width: 1023px) {
  .insight-article__layout {
    grid-template-columns: 1fr;
  }
}

/* ─── Contact Page ──────────────────────────────────────────── */
.page--contact .section {
  padding: 0;
}

.page--contact .contact-highlights {
  padding: 0 0 clamp(24px, 3vw, 36px);
  margin-top: clamp(-28px, -2.5vw, -20px);
  position: relative;
  z-index: 2;
}

.page--contact .contact-main {
  padding: clamp(28px, 3.5vw, 40px) 0;
}

.page--contact .contact-highlights + .contact-main {
  padding-top: 0;
}

.page--contact .contact-main + .contact-map-section {
  padding-top: clamp(16px, 2vw, 24px);
  padding-bottom: 0;
}

.page--contact .contact-map-section__header {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.contact-map-section__embed {
  width: 100%;
  line-height: 0;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(8, 25, 45, 0.06);
}

.contact-map-section__embed iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  border: 0;
}

.page--contact .section-header {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.contact-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.contact-highlight {
  padding: clamp(18px, 2.5vw, 22px) clamp(16px, 2vw, 20px);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-highlight:hover {
  transform: translateY(-4px);
}

.contact-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-dark);
}

.contact-highlight__icon svg {
  width: 22px;
  height: 22px;
}

.contact-highlight__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.contact-highlight__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-main__header {
  text-align: left;
  max-width: none;
  margin: 0 0 clamp(20px, 2.5vw, 28px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 2.5vw, 28px);
  align-items: stretch;
}

.contact-form-wrapper {
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page--contact .contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page--contact .contact-form .form-group:has(textarea) {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.page--contact .contact-form .form-group:has(textarea) textarea {
  flex: 1;
  min-height: 120px;
}

.page--contact .form-group {
  margin-bottom: 16px;
}

.page--contact .form-row {
  gap: 16px;
}

.contact-form__submit {
  width: 100%;
  margin-top: 4px;
}

.contact-form__privacy {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.55;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-feedback {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
}

.form-feedback--success {
  display: block;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #15803d;
}

.form-feedback--error {
  display: block;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.22);
  color: #b91c1c;
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea,
.assessment-field.is-invalid .assessment-field__select {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.field-error {
  margin: 8px 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #b91c1c;
}

.btn.is-loading {
  opacity: 0.75;
  cursor: wait;
}

.assessment-form__contact {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(8, 25, 45, 0.08);
}

.assessment-form__contact-title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-heading);
}

.assessment-form__contact-intro {
  margin: 0 0 16px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.contact-info__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
}

.contact-info__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(8, 25, 45, 0.06);
  transition: color var(--transition);
}

.contact-info__list li:last-child .contact-info__item {
  border-bottom: none;
  padding-bottom: 0;
}

a.contact-info__item:hover {
  color: var(--gold-dark);
}

.contact-info__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(8, 25, 45, 0.04);
  color: var(--gold-dark);
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-info__text strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-heading);
}

.contact-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(8, 25, 45, 0.06);
}

.contact-hours__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-hours__days {
  font-weight: 600;
  color: var(--text-heading);
}

.contact-hours__time {
  color: var(--text-muted);
  text-align: right;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #f8fafd 0%, #eef3f9 100%);
  border-top: 3px solid var(--gold);
  padding-top: clamp(48px, 6vw, 64px);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 90% 100%, rgba(26, 61, 92, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: clamp(28px, 3vw, 40px);
  padding-bottom: clamp(36px, 4vw, 48px);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.4vw, 26px);
  background: linear-gradient(145deg, #ffffff 0%, #f6f9fd 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--logo-frame-radius);
  box-shadow:
    0 8px 24px rgba(8, 25, 45, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.footer__logo-shine {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 50% -15%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(8, 25, 45, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer__logo-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 35%, var(--gold-light) 50%, var(--gold) 65%, var(--navy) 100%);
  opacity: 0.9;
}

.footer__logo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.footer__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: var(--footer-logo-max-width);
  height: auto;
  object-fit: contain;
  background: transparent;
  border-radius: var(--logo-radius);
  filter:
    drop-shadow(0 2px 8px rgba(8, 25, 45, 0.07))
    drop-shadow(0 6px 20px rgba(212, 175, 55, 0.12));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.footer__logo-link:hover .footer__logo-wrap,
.footer__logo-link:focus-visible .footer__logo-wrap {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: var(--shadow-3d-hover);
}

.footer__logo-link:hover .footer__logo,
.footer__logo-link:focus-visible .footer__logo {
  filter:
    drop-shadow(0 4px 12px rgba(8, 25, 45, 0.1))
    drop-shadow(0 10px 28px rgba(212, 175, 55, 0.24));
}

.footer__logo-link:focus-visible {
  outline: none;
}

.footer__logo-link:focus-visible .footer__logo-wrap {
  box-shadow:
    var(--shadow-3d-hover),
    0 0 0 3px rgba(212, 175, 55, 0.28);
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--gold-dark);
  margin: 0 0 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.footer__positioning {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: rgba(8, 25, 45, 0.68);
  margin: 0 0 18px;
  max-width: 320px;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(8, 25, 45, 0.1);
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  box-shadow: 0 2px 6px rgba(8, 25, 45, 0.06);
  transition: all var(--transition);
}

.footer__social-link svg {
  width: 12.6px;
  height: 12.6px;
  display: block;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: linear-gradient(145deg, #fffdf5, rgba(212, 175, 55, 0.12));
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.18);
  transform: translateY(-1px);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: none;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.footer__list li {
  margin-bottom: 9px;
}

.footer__list a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: rgba(8, 25, 45, 0.68);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer__list a:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.footer__contact-list {
  list-style: none;
}

.footer__contact-list li {
  margin-bottom: 10px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: rgba(8, 25, 45, 0.68);
  transition: color 0.25s ease, transform 0.25s ease;
}

a.footer__contact-item:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.footer__contact-item--static {
  cursor: default;
}

.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 0;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  border: 1px solid rgba(8, 25, 45, 0.1);
  box-shadow: 0 2px 6px rgba(8, 25, 45, 0.05);
}

.footer__contact-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}

.footer__bottom {
  border-top: 1px solid rgba(8, 25, 45, 0.08);
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.65);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__copy,
.footer__credit {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: rgba(8, 25, 45, 0.68);
  margin: 0;
}

.footer__credit a {
  color: var(--gold-dark);
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer__credit a:hover {
  color: var(--navy);
}

@media (min-width: 1024px) {
  .footer__title,
  .footer__list a,
  .footer__contact-item,
  .footer__tagline,
  .footer__positioning,
  .footer__copy,
  .footer__credit {
    font-size: 0.9rem;
  }
}

@media (min-width: 1280px) {
  .footer__title,
  .footer__list a,
  .footer__contact-item,
  .footer__tagline,
  .footer__positioning,
  .footer__copy,
  .footer__credit {
    font-size: 0.92rem;
  }
}

@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer__logo-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__positioning {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social {
    justify-content: center;
    width: 100%;
  }
}

/* ─── Responsive Breakpoints ──────────────────────────────────── */
@media (min-width: 768px) {
  .header__contact { display: flex; }
  .header__social { display: flex; }
  .header__topbar-left { display: flex; }
}

@media (min-width: 1024px) {
  .header__nav { display: block; }
  .menu-toggle { display: none; }

  .nav-link { padding: 9px 12px; font-size: 0.86rem; }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .mega-menu {
    left: auto;
    right: -12px;
    transform: translateY(12px) scale(0.97);
  }

  .mega-menu::after {
    left: auto;
    right: 48px;
    transform: rotate(45deg);
  }

  .nav-list__item.has-mega.is-open .mega-menu {
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 1280px) {
  .header__inner { gap: 20px; }
  .header__contact { gap: 28px; }
  .nav-link { padding: 9px 14px; font-size: 0.9rem; }
  .nav-list { gap: 4px; padding: 6px 8px; }
}

@media (min-width: 1440px) {
  .nav-link { padding: 9px 15px; font-size: 0.92rem; }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .header__brand-tagline {
    display: none;
  }

  .header__brand {
    max-width: 308px;
  }
}

@media (max-width: 1023px) {
  .mega-menu { display: none; }

  :root {
    --topbar-height: 44px;
    --mainbar-height-expanded: 80px;
    --mainbar-height: 64px;
    --header-height-expanded: calc(var(--topbar-height) + var(--mainbar-height-expanded));
    --brand-logo-height: 58px;
    --brand-logo-height-scrolled: 46px;
  }

  .header.is-scrolled .header__inner {
    padding-block: 6px;
  }

  .header__brand {
    display: inline-flex;
    align-items: center;
    max-width: min(calc(100vw - 108px), 280px);
    gap: 8px;
    overflow: visible;
  }

  .header__brand-logo-wrap {
    padding: 4px 10px 5px;
    border-radius: calc(var(--logo-frame-radius) - 3px);
  }

  .header__brand-copy {
    display: none;
  }

  .header__brand-name {
    font-size: 15px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header__brand-tagline {
    display: block;
    font-size: 9px;
    letter-spacing: 0.05em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header.is-scrolled .header__brand-name {
    font-size: 15px;
  }

  .header.is-scrolled .header__brand-tagline {
    font-size: 9px;
  }

  .header__contact-item span:not(.header__contact-icon) {
    display: none;
  }

  .header__social {
    display: flex;
    border-left: none;
    padding-left: 0;
  }

  .mobile-menu__panel {
    width: min(380px, 92vw);
  }

  .mobile-menu__featured {
    margin-inline: 10px;
  }

  .mobile-menu__nav-list {
    padding-inline: 10px;
  }

  .mobile-menu__subgroup {
    padding-inline: 20px 16px;
    padding-left: 28px;
  }

  .mobile-menu__sub-cta {
    margin-inline: 20px 16px;
    margin-left: 28px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .contact-highlights__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .insight-highlights__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tx-highlights__grid,
  .tx-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .readiness-highlights__grid,
  .readiness-dimensions__grid,
  .readiness-tips__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tx-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .readiness-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-market__highlights {
    grid-template-columns: 1fr;
  }

  .growth-approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capital-approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-topics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-magazine__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-card--featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --topbar-height: 40px;
    --mainbar-height-expanded: 76px;
    --mainbar-height: 60px;
    --header-height: var(--mainbar-height);
    --header-height-expanded: calc(var(--topbar-height) + var(--mainbar-height-expanded));
    --brand-logo-height: 50px;
    --brand-logo-height-scrolled: 40px;
  }

  .header.is-scrolled .header__inner {
    padding-block: 5px;
  }

  .header__brand {
    max-width: min(calc(100vw - 92px), 294px);
    gap: 7px;
    overflow: visible;
  }

  .header__contact-item {
    font-size: 0.74rem;
  }

  .section { padding: 60px 0; }

  .solution-section__inner,
  .capital-solution__inner,
  .capital-outcomes__inner,
  .capital-outcomes__metrics,
  .capital-highlights__grid,
  .capital-approach__grid,
  .consulting-banner__inner,
  .readiness-layout,
  .contact-layout,
  .contact-highlights__grid,
  .insight-highlights__grid,
  .insight-topics__grid,
  .tx-highlights__grid,
  .tx-pillars__grid,
  .tx-detail-focus__grid,
  .tx-process__grid,
  .readiness-highlights__grid,
  .readiness-dimensions__grid,
  .readiness-process__grid,
  .readiness-tips__grid,
  .home-why-choose__grid,
  .home-process__grid,
  .readiness-layout,
  .about-grid,
  .growth-highlights__grid,
  .growth-approach__grid,
  .growth-outcomes__inner,
  .growth-outcomes__metrics {
    grid-template-columns: 1fr;
  }

  .insight-card--featured {
    grid-template-columns: 1fr;
  }

  .insight-card__featured-visual {
    min-height: 160px;
  }

  .insights-magazine__grid {
    grid-template-columns: 1fr;
  }

  .insight-articles__toolbar-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tx-focus__toolbar-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tx-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .insight-articles__panel {
    padding: 20px 0;
  }

  .insight-articles__inner {
    padding: 0 20px;
  }

  .growth-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrapper,
  .contact-info {
    height: auto;
  }

  .page--contact .contact-form {
    display: block;
  }

  .page--contact .contact-form .form-group:has(textarea) {
    display: block;
    flex: none;
  }

  .page--contact .contact-form .form-group:has(textarea) textarea {
    flex: none;
    min-height: 120px;
  }

  .contact-info__card {
    flex: none;
    display: block;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__brand,
  .footer__col--contact {
    grid-column: 1 / -1;
  }

  .footer__brand {
    align-items: center;
    text-align: center;
  }

  .footer__logo-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__positioning {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social {
    justify-content: center;
    width: 100%;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .capital-toolbar__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .capital-solution--alt .capital-solution__inner {
    direction: ltr;
  }

  .capital-solution__process {
    position: static;
  }

  .consulting-banner__metrics,
  .growth-outcomes__metrics,
  .capital-outcomes__metrics { justify-content: center; }

  .process-diagram__steps { flex-direction: column; align-items: flex-start; }

  .process-step__arrow { display: none; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }

  .stats-grid,
  .industries-grid { grid-template-columns: 1fr 1fr; }

  .mobile-menu__panel {
    width: 100vw;
    max-width: 100%;
  }

  .mobile-menu__featured {
    margin-inline: 10px;
    padding: 14px 14px;
  }

  .mobile-menu__featured-title {
    font-size: 0.88rem;
  }

  .mobile-menu__nav-list {
    padding-inline: 8px;
  }

  .mobile-menu__contact {
    grid-template-columns: 1fr;
  }

  .mobile-menu__contact-item {
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
    padding: 10px 12px;
    text-align: left;
  }

  .mobile-menu__contact-text {
    white-space: normal;
  }

  .mobile-menu__brand-name {
    font-size: 0.92rem;
  }

  .mobile-menu__brand-tagline {
    font-size: 0.5rem;
  }
}

/* ─── Why Us + Light Theme Accents ──────────────────────────── */
.why-us .container,
.journey__wrap,
.industries .container,
.company-intro__wrap {
  position: relative;
  z-index: 1;
}

.stats-grid {
  perspective: 1000px;
}

@media (prefers-reduced-motion: reduce) {
  .glass-card:hover,
  .service-card:hover,
  .why-us .why-us__stat:hover,
  .stat-card:hover,
  .industry-card:hover,
  .company-intro__media:hover .company-intro__image-wrap,
  .nav-link:hover,
  .mega-menu__link:hover,
  .mega-menu__footer-link:hover {
    transform: none;
  }

  .nav-list__item.has-mega.is-open .mega-menu__list li {
    animation: none;
  }

  .mega-menu,
  .nav-list__item.has-mega.is-open .mega-menu {
    transition-duration: 0.01ms;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .nav-list__indicator {
    transition-duration: 0.01ms;
  }

  .header__location-icon,
  .header__topbar::after {
    animation: none;
  }

  .company-intro__float-card {
    animation: none;
  }

  .journey__orb {
    animation: none;
  }

  .journey__shine {
    animation: none;
  }

  .journey-step:hover,
  .journey-step.is-active {
    transform: none;
  }

  .header__scroll-progress-bar {
    transition: none;
  }

  .mobile-menu__link,
  .mobile-menu__item--has-sub,
  .mobile-menu.is-open .mobile-menu__nav-list > .mobile-menu__link,
  .mobile-menu.is-open .mobile-menu__nav-list > .mobile-menu__item--has-sub {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .mobile-menu__close:hover {
    transform: none;
  }

  .page-hero--banner .page-hero__gold-rule::after {
    animation: none;
  }
}
