@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ==========================================================================
   MIGO AXIS EXECUTIVE CONSULTING DESIGN SYSTEM — HANWHA-TIER CINEMATIC EDITION
   Brand Palette: Deep Obsidian (#060B13, #0A111E), Oxford Navy (#101A2E), 
   Champagne Gold (#C59B27, #E5C05B), and Platinum Slate (#CBD5E1, #94A3B8)
   ========================================================================== */

:root {
  --navy-dark: #060B13;
  --navy-deep: #0A111E;
  --navy-primary: #101A2E;
  --navy-surface: #162238;
  --navy-elevated: #1D2D4A;
  --navy-glass: rgba(16, 26, 46, 0.75);
  --navy-panel: rgba(12, 20, 35, 0.82);
  --gold-primary: #C59B27;
  --gold-light: #E5C05B;
  --gold-glow: rgba(197, 155, 39, 0.25);
  --gold-subtle: rgba(197, 155, 39, 0.12);
  --gold-soft: rgba(229, 192, 91, 0.08);
  --cyan-accent: #38BDF8;
  --text-white: #FFFFFF;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-gold: rgba(197, 155, 39, 0.35);
  --surface-strong: rgba(15, 23, 42, 0.9);
  --surface-soft: rgba(17, 25, 39, 0.72);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Lora', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Lora', 'Georgia', 'Times New Roman', serif;
  --font-serif: 'Lora', 'Georgia', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, Monaco, monospace;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-luxe: 0 18px 52px rgba(3, 8, 17, 0.72);
  --radius-soft: 12px;
  --radius-card: 16px;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

button,
a {
  touch-action: manipulation;
}

table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.container {
  width: min(100% - 2rem, 1320px);
}

@media (min-width: 1800px) {
  body {
    font-size: 1.08rem;
  }

  .container {
    width: min(100% - 5rem, 1600px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, 1320px);
  }

  .section {
    padding-top: clamp(3.5rem, 12vw, 5.5rem);
    padding-bottom: clamp(3.5rem, 12vw, 5.5rem);
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }
}

/* Executive polish and shared capability detail system */
body {
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

p,
li {
  max-width: 72ch;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
  font-weight: 700;
}

.section-title-large {
  max-width: 18ch;
  line-height: 1.08;
}

.homepage-about-final {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-about-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
}

.homepage-about-final-copy {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.6;
  margin: 0 0 1.75rem;
}

.capability-navbar .nav-container {
  min-height: 76px;
}

.capability-top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.75rem);
  flex: 1;
  margin: 0 1.5rem;
}

.capability-top-nav a {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.capability-top-nav a:hover,
.capability-top-nav a:focus-visible {
  color: var(--gold-light);
}

/* Shared navigation guardrails: keep the six-area shell stable at every width. */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  min-width: 0;
}

.nav-links .nav-link-dropdown {
  color: var(--text-muted);
  font-size: clamp(0.68rem, 0.72vw, 0.8rem);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links .nav-link-dropdown:hover,
.nav-links .nav-link-dropdown:focus-visible {
  color: var(--gold-light);
}

.nav-links .btn {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .nav-links {
    display: none !important;
  }
}

.capability-detail-page {
  background: var(--navy-dark);
}

.capability-detail-hero {
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.capability-detail-hero .container {
  max-width: 1240px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--gold-light);
}

.capability-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.capability-detail-grid h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 0.98;
  margin: 0.6rem 0 1rem;
}

.capability-detail-lead {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.capability-detail-grid > div > p:not(.capability-detail-lead) {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: 1.75rem;
}

.capability-detail-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--card-border-gold);
  background: var(--navy-surface);
}

.capability-detail-media img,
.capability-detail-media video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.capability-detail-media figcaption {
  padding: 0.8rem 1rem;
  color: var(--text-dim);
  font-size: 0.75rem;
}

.capability-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.capability-detail-content h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 1.25rem;
}

.capability-detail-content p,
.capability-detail-content li {
  color: var(--text-muted);
  line-height: 1.75;
}

.capability-detail-content ul {
  padding-left: 1.15rem;
}

.capability-detail-aside {
  padding: 1.5rem;
  border-top: 1px solid var(--gold-primary);
  background: var(--navy-surface);
}

.capability-detail-aside strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.capability-detail-aside a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
}

.industry-name a {
  color: inherit;
  text-decoration: none;
}

.industry-card-cta {
  display: inline-flex;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.capability-portfolio-section {
  position: relative;
}

.capability-portfolio-grid,
.capability-portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.capability-portfolio-grid-reverse {
  align-items: center;
}

.capability-portfolio-kicker {
  margin: 0 0 0.9rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.capability-portfolio-heading {
  margin-bottom: 2.5rem;
  align-items: end;
}

.capability-portfolio-heading h2,
.capability-portfolio-grid h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  line-height: 1.05;
}

.capability-portfolio-heading > p,
.capability-portfolio-grid > div > p:not(.capability-portfolio-kicker) {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.capability-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
}

.capability-work-grid article {
  min-height: 220px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--navy-deep);
}

.capability-work-grid article span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-work-grid h3 {
  margin: 2.8rem 0 0.65rem;
  font-size: 1.25rem;
}

.capability-work-grid p,
.capability-proof-panel p {
  color: var(--text-muted);
  line-height: 1.7;
}

.practice-narrative-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
}

.practice-narrative-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--navy-deep);
}

.practice-narrative-index {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.practice-narrative-card h3 {
  margin: 2.4rem 0 0.8rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.practice-narrative-card p,
.practice-narrative-card li {
  color: var(--text-muted);
  line-height: 1.65;
}

.practice-narrative-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 1.2rem 0 1.5rem;
  padding-left: 1.15rem;
}

.practice-narrative-card a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--card-border);
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
}

.practice-metrics {
  display: grid;
  gap: 1rem;
}

.practice-metric {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--card-border);
}

.practice-metric strong {
  color: var(--text-white);
  font-size: 1.5rem;
  line-height: 1.1;
}

.practice-metric span {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.capability-proof-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--card-border-gold);
  background: var(--navy-surface);
}

.capability-proof-panel span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.capability-proof-panel a,
.capability-related-links a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
}

.capability-related {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}

.capability-related-links {
  display: grid;
  gap: 0.9rem;
}

.capability-related-links a {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--card-border);
}

.industry-portfolio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
}

.industry-portfolio-capability {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding: 1.25rem 1.4rem;
  color: var(--text-main);
  background: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.industry-portfolio-capability:hover,
.industry-portfolio-capability:focus-visible {
  color: var(--gold-light);
  background: var(--navy-surface);
}

@media (max-width: 900px) {
  .capability-top-nav {
    gap: 0.7rem;
    margin: 0 0.75rem;
  }

  .capability-top-nav a {
    font-size: 0.68rem;
  }

  .capability-detail-grid,
  .capability-detail-content,
  .homepage-about-final-grid,
  .capability-portfolio-grid,
  .capability-portfolio-heading,
  .capability-related {
    grid-template-columns: 1fr;
  }

  .capability-detail-grid h1 {
    max-width: 16ch;
  }
}

@media (max-width: 640px) {
  .capability-navbar .nav-container {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .capability-top-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    margin: 0;
  }

  .capability-top-nav a {
    flex: 0 0 auto;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .capability-detail-hero {
    padding-top: 4rem;
  }

  .capability-detail-grid h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .capability-work-grid,
  .industry-portfolio-list,
  .practice-narrative-grid {
    grid-template-columns: 1fr;
  }

  .homepage-about-final {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--navy-dark);
}

body {
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top left, rgba(197, 155, 39, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.08), transparent 22%),
    linear-gradient(180deg, #040912 0%, var(--navy-dark) 100%);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Background Glow (Subtle, non-floating) */
body::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  width: 420px;
  height: 420px;
  background: rgba(197, 155, 39, 0.15);
  top: 4%;
  right: 8%;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.015em;
}

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Top Announcement Utility Bar — Compact & Balanced */
.top-bar {
  background: linear-gradient(180deg, rgba(4, 11, 18, 0.98) 0%, rgba(6, 11, 19, 0.96) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.42rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  position: relative;
  z-index: 101;
  box-shadow: inset 0 -1px 0 rgba(197, 155, 39, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-announce {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.top-bar-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem; /* Generous breathing room between hub info and CTA */
  font-size: 0.72rem;
}

.top-bar-link {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.72rem;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-bar-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
  transform: translateX(2px);
}

/* ==========================================================================
   DYNAMIC SMART NAVBAR & SCROLL-DRIVEN NAVIGATION SYSTEM
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 11, 19, 0.88);
  background-image: linear-gradient(180deg, rgba(16, 26, 46, 0.96), rgba(6, 11, 19, 0.86));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.95rem 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              padding 0.25s ease, 
              background 0.25s ease, 
              box-shadow 0.25s ease, 
              border-color 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  will-change: transform;
}

/* Dynamic elevation and compact height when scrolling */
.navbar.navbar-scrolled {
  padding: 0.62rem 0;
  background: rgba(5, 9, 18, 0.95);
  background-image: linear-gradient(180deg, rgba(10, 18, 34, 0.98), rgba(5, 9, 18, 0.92));
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom-color: rgba(197, 155, 39, 0.25);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}

/* Auto-hide smoothly on scroll down to maximize viewport space */
.navbar.navbar-hidden {
  transform: translateY(-105%);
}

/* Auto-reveal instantly on scroll up for effortless navigation */
.navbar.navbar-visible {
  transform: translateY(0);
}

/* Real-Time Dynamic Scroll Progress Bar */
.nav-scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, #C59B27 0%, #38BDF8 60%, #FFFFFF 100%);
  transition: width 0.05s ease-out;
  pointer-events: none;
  z-index: 1001;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* Floating Quick Navigator (Effortless 1-tap Return to Top Across All Screens) */
.floating-quick-nav {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6, 11, 21, 0.9);
  border: 1px solid rgba(197, 155, 39, 0.35);
  color: var(--gold-light, #E5C05B);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s, background 0.2s, border-color 0.2s;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.floating-quick-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-quick-nav:hover {
  background: #0B1324;
  border-color: var(--gold-primary, #C59B27);
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 30px rgba(197, 155, 39, 0.3);
}

.floating-quick-nav svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.floating-quick-nav:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .floating-quick-nav {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2.5rem);
  width: min(100% - 2.5rem, 1480px);
  max-width: 1480px;
}

.nav-left-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
  min-width: max-content;
  z-index: 5;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.35rem, 0.85vw, 1.15rem);
  min-width: 0;
  flex: 1 1 auto;
  margin-left: auto;
}

.nav-links a {
  font-size: clamp(0.66rem, 0.68vw, 0.76rem);
  font-weight: 700;
  color: rgba(226, 232, 240, 0.82);
  position: relative;
  padding: 0.35rem 0.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transition: transform var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #060B13;
  box-shadow: 0 10px 24px rgba(197, 155, 39, 0.32);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #D7AF48 0%, #F1D377 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 155, 39, 0.45);
}

.btn-gold-sm {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #060B13;
  padding: 0.55rem 1.25rem;
  font-size: 0.84rem;
}

.btn-gold-sm:hover {
  background: linear-gradient(135deg, #D7AF48 0%, #F1D377 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: rgba(197, 155, 39, 0.7);
  color: var(--gold-light);
  background: rgba(197, 155, 39, 0.06);
  transform: translateY(-2px);
}

.btn-navy-sm {
  background: var(--navy-surface);
  color: var(--text-white);
  border: 1px solid var(--card-border-gold);
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
}

.btn-navy-sm:hover {
  background: var(--navy-elevated);
  border-color: var(--gold-primary);
}

.btn-block { width: 100%; }

/* Kicker Badge */
.kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-subtle);
  border: 1px solid var(--card-border-gold);
  padding: 0.35rem 0.85rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   HANWHA-STYLE FULL-BLEED CINEMATIC HERO SLIDER
   ========================================================================== */
.hanwha-hero-slider {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 640px;
  max-height: 940px;
  overflow: hidden;
  background: #040810;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-media-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 10s ease-out;
  z-index: 1;
}

.hero-slide.active .hero-video {
  transform: scale(1);
}

/* Fallback Animated Gradient if video is pending upload */
.hero-media-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-media-fallback.fallback-1 {
  background: radial-gradient(circle at 70% 30%, rgba(197, 155, 39, 0.18) 0%, transparent 60%),
              linear-gradient(135deg, #0A1424 0%, #040810 100%);
}
.hero-media-fallback.fallback-2 {
  background: radial-gradient(circle at 30% 40%, rgba(56, 189, 248, 0.16) 0%, transparent 60%),
              linear-gradient(135deg, #061122 0%, #03060B 100%);
}
.hero-media-fallback.fallback-3 {
  background: radial-gradient(circle at 60% 70%, rgba(197, 155, 39, 0.15) 0%, transparent 55%),
              linear-gradient(135deg, #0B172C 0%, #040810 100%);
}
.hero-media-fallback.fallback-4 {
  background: radial-gradient(circle at 80% 50%, rgba(148, 163, 184, 0.15) 0%, transparent 60%),
              linear-gradient(135deg, #08101E 0%, #02050A 100%);
}

.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.65) 0%, rgba(6, 11, 19, 0.85) 60%, #060B13 100%),
              linear-gradient(90deg, rgba(6, 11, 19, 0.92) 0%, rgba(6, 11, 19, 0.5) 65%, transparent 100%);
}

.hero-slide-inner {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
}

.hero-slide-kicker {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-slide-kicker::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
}

.hero-slide-title {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.06;
  max-width: 960px;
  letter-spacing: -0.045em;
  margin-bottom: 1.5rem;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-slide-desc {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(226, 232, 240, 0.92);
  max-width: 760px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.hero-cta-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Hanwha Bottom Slider Control Bar */
.hero-bottom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 11, 19, 0.95) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.hero-controls-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hero-nav-tabs {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-grow: 1;
}

.hero-nav-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  padding: 0.5rem 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  transition: color var(--transition-fast);
}

.hero-nav-tab span.tab-num {
  font-size: 0.75rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.hero-nav-tab:hover {
  color: var(--text-white);
}

.hero-nav-tab.active {
  color: var(--text-white);
}

.tab-progress-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.tab-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold-primary);
  transition: none;
}

.hero-nav-tab.active .tab-progress-fill {
  width: 100%;
}

.hero-playback-control {
  display: none !important;
}

.btn-play-pause {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

.btn-play-pause:hover {
  background: var(--gold-primary);
  color: #060B13;
  border-color: var(--gold-primary);
}

.hero-counter-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   METRICS RIBBON STRIP
   ========================================================================== */
.metrics-ribbon-strip {
  background: linear-gradient(180deg, rgba(7, 12, 20, 1) 0%, rgba(10, 17, 30, 1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0;
}

.metrics-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metric-strip-card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.78), rgba(10, 17, 30, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid var(--gold-primary);
  border-radius: var(--radius-soft);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.metric-strip-card .metric-stat {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.metric-strip-card .metric-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.metric-strip-card .metric-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   PREMIUM GRAPHIC CAPABILITY RAIL
   ========================================================================== */
.capability-visual-strip {
  position: relative;
  padding: 5.5rem 0 4rem;
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.98) 0%, rgba(11, 17, 29, 1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.capability-visual-wrap {
  position: relative;
  z-index: 1;
}

.capability-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.capability-intro .section-title-large {
  max-width: 760px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.capability-card {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.78) 0%, rgba(10, 16, 27, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.5rem 1.5rem 1.75rem;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 18px 42px rgba(2, 6, 12, 0.34);
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(197, 155, 39, 0.22), transparent 38%);
  pointer-events: none;
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 39, 0.42);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.capability-number {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.capability-visual {
  position: relative;
  z-index: 1;
  height: 170px;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(10, 17, 30, 0.92), rgba(18, 26, 43, 0.82));
}

.capability-visual img,
.capability-visual video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.78) contrast(1.06);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 300ms ease;
}

.capability-visual::after {
  z-index: 1;
}

.capability-visual::before {
  z-index: 2;
}

.capability-visual::marker {
  display: none;
}

.capability-media-label {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  z-index: 3;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.capability-card:hover .capability-visual img,
.capability-card:hover .capability-visual video {
  transform: scale(1.06);
  opacity: 0.72;
}

.capability-card:hover .capability-visual {
  border-color: rgba(229, 192, 91, 0.4);
}

@keyframes capability-media-drift {
  0%, 100% { transform: scale(1.02) translate3d(0, 0, 0); }
  50% { transform: scale(1.06) translate3d(-1%, -1%, 0); }
}

.capability-visual img,
.capability-visual video {
  animation: capability-media-drift 14s ease-in-out infinite;
}

.capability-visual::before,
.capability-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.capability-strategy .capability-visual {
  background: linear-gradient(135deg, rgba(12, 20, 35, 1) 0%, rgba(14, 23, 41, 0.78) 40%, rgba(197, 155, 39, 0.12) 100%);
}

.capability-strategy .capability-visual::before {
  width: 210px;
  height: 210px;
  right: -32px;
  top: -42px;
  background: radial-gradient(circle, rgba(229, 192, 91, 0.7), rgba(229, 192, 91, 0) 58%);
}

.capability-strategy .capability-visual::after {
  width: 170px;
  height: 170px;
  left: 28px;
  bottom: -38px;
  border: 1px solid rgba(197, 155, 39, 0.35);
  box-shadow: inset 0 0 0 20px rgba(197, 155, 39, 0.04);
}

.capability-ai .capability-visual {
  background: linear-gradient(135deg, rgba(9, 17, 26, 1) 0%, rgba(17, 27, 45, 0.82) 45%, rgba(56, 189, 248, 0.12) 100%);
}

.capability-ai .capability-visual::before {
  width: 220px;
  height: 220px;
  left: 18px;
  top: -45px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45) 0%, rgba(56, 189, 248, 0) 62%);
}

.capability-ai .capability-visual::after {
  width: 160px;
  height: 160px;
  right: 18px;
  bottom: -28px;
  border: 1px solid rgba(56, 189, 248, 0.32);
  transform: rotate(22deg);
  box-shadow: inset 0 0 0 18px rgba(56, 189, 248, 0.04);
}

.capability-integration .capability-visual {
  background: linear-gradient(135deg, rgba(8, 14, 26, 1) 0%, rgba(18, 27, 46, 0.85) 32%, rgba(197, 155, 39, 0.08) 100%);
}

.capability-integration .capability-visual::before {
  width: 190px;
  height: 190px;
  left: 42px;
  top: -30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.capability-integration .capability-visual::after {
  width: 130px;
  height: 130px;
  right: 32px;
  bottom: -18px;
  background: linear-gradient(135deg, rgba(197, 155, 39, 0.8), rgba(56, 189, 248, 0.22));
  box-shadow: 0 16px 38px rgba(197, 155, 39, 0.15);
}

.capability-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.capability-card p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   HANWHA-STYLE PURPOSE & MANIFESTO SECTION
   ========================================================================== */
.purpose-section {
  padding: 7rem 0 6rem;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: center;
}

.purpose-lead-text {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.purpose-highlight {
  color: var(--gold-light);
}

.purpose-body {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.purpose-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.purpose-pillar-row {
  background: var(--navy-primary);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  transition: all var(--transition-smooth);
}

.purpose-pillar-row:hover {
  border-color: var(--card-border-gold);
  transform: translateX(6px);
  background: var(--navy-surface);
}

.purpose-pillar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.purpose-pillar-title {
  font-size: 1.15rem;
  color: var(--text-white);
}

.purpose-pillar-arrow {
  color: var(--gold-primary);
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.purpose-pillar-row:hover .purpose-pillar-arrow {
  transform: translateX(4px);
}

.purpose-pillar-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   HANWHA-STYLE PRACTICE SHOWCASE (CINEMATIC CARDS)
   ========================================================================== */
.practices-showcase-section {
  padding: 7rem 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section {
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.015), transparent 25%, transparent 75%, rgba(197,155,39,0.02));
  pointer-events: none;
}

.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.section-head-desc {
  max-width: 520px;
  color: rgba(148, 163, 184, 0.95);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.section-kicker-alt {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: block;
  opacity: 0.95;
}

.section-title-large {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
  text-wrap: balance;
}

.practices-4-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.practice-cinematic-card {
  position: relative;
  min-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.75rem;
  background: #08101E;
  transition: all var(--transition-smooth);
}

.practice-cinematic-card:hover {
  border-color: var(--card-border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(-4px);
}

.practice-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.35;
}

.practice-cinematic-card:hover .practice-bg-image {
  transform: scale(1.06);
  opacity: 0.45;
}

.practice-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.2) 0%, rgba(8, 16, 30, 0.85) 60%, #08101E 100%);
  z-index: 1;
}

.practice-card-content {
  position: relative;
  z-index: 2;
}

.practice-card-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.practice-card-title {
  font-size: 1.85rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.practice-card-summary {
  font-size: 0.96rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.practice-card-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.deliverable-chip {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.practice-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.practice-card-link span {
  transition: transform var(--transition-fast);
}

.practice-cinematic-card:hover .practice-card-link span {
  transform: translateX(5px);
}

/* ==========================================================================
   GLOBAL REACH / SOVEREIGN IMPACT DASHBOARD (HANWHA STYLE)
   ========================================================================== */
.global-reach-section {
  padding: 7rem 0;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.global-reach-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.global-hub-card {
  background: var(--navy-surface);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border-top: 2px solid var(--gold-primary);
  transition: all var(--transition-smooth);
}

.global-hub-card:hover {
  border-color: var(--card-border-gold);
  transform: translateX(4px);
  background: var(--navy-elevated);
}

.global-hub-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.global-hub-title {
  font-size: 1.15rem;
  color: var(--text-white);
}

.global-hub-cities {
  font-size: 0.82rem;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.global-hub-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   FEATURED INTELLIGENCE & NEWSROOM (HANWHA STYLE)
   ========================================================================== */
.newsroom-section {
  padding: 7rem 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.newsroom-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.newsroom-card {
  background: var(--navy-primary);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.newsroom-card:hover {
  border-color: var(--card-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.newsroom-thumb-wrap {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #070E1A;
}

.newsroom-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.newsroom-card:hover .newsroom-thumb {
  transform: scale(1.05);
}

.newsroom-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(6, 11, 19, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  border: 1px solid var(--card-border-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.newsroom-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.newsroom-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.newsroom-title {
  font-size: 1.25rem;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.newsroom-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.newsroom-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-primary);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

/* ==========================================================================
   AUDIO BRIEFING MEDIA STRIP (HANWHA MEDIA BAR)
   ========================================================================== */
.audio-media-bar {
  background: linear-gradient(90deg, #070E1A 0%, #101A2E 100%);
  border: 1px solid var(--card-border-gold);
  border-radius: 8px;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
}

.audio-media-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.audio-play-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #060B13;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: all var(--transition-fast);
}

.audio-play-circle:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.audio-media-text h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.audio-media-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   EXECUTIVE BRIEFING GATEWAY (CTA CALLOUT)
   ========================================================================== */
.executive-gateway-section {
  padding: 6rem 0;
  background: radial-gradient(circle at 20% 50%, rgba(197, 155, 39, 0.1) 0%, transparent 70%), var(--navy-dark);
  text-align: left;
}

.gateway-box {
  max-width: 860px;
  margin: 0 auto 0 0;
}

.gateway-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--text-white);
  margin-bottom: 1rem;
}

.gateway-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   FOOTER (HANWHA-STYLE GLOBAL DIRECTORY) — STABLE & BALANCED
   ========================================================================== */
.footer {
  background: #03060B;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.5rem 0 2rem;
  font-size: 0.88rem;
}

/* 2-Column Desktop Grid: Brand on Left, 3 Nav Columns on Right */
.footer-content {
  display: grid !important;
  grid-template-columns: 1.3fr 2.7fr !important;
  gap: 3.5rem !important;
  padding-bottom: 3.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.footer-brand .footer-logo-img,
.footer-brand .brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 1.25rem;
}

/* 3 Equal Horizontal Columns for Navigation */
.footer-nav {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2.5rem !important;
}

.footer-col h4,
.footer-col .footer-col-title {
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col h4 {
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col span {
  display: block !important;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.45;
}

.footer-col a:hover {
  color: var(--text-white);
}

/* Bottom Legal & Copyright Bar */
.footer-bottom {
  padding-top: 1.5rem !important;
  margin-top: 1.5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1.25rem !important;
  font-size: 0.75rem !important;
  color: var(--text-dim) !important;
}

.footer-bottom p {
  margin: 0 !important;
  font-size: 0.75rem !important;
  line-height: 1.5 !important;
  color: var(--text-dim) !important;
}

/* Legal Links: Strictly Horizontal Row with Clean Spacing */
.footer-legal-links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
}

.footer-legal-links a {
  display: inline-block !important; /* Prevents vertical stacking */
  font-size: 0.75rem !important;
  color: var(--text-dim) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  margin: 0 !important;
  line-height: 1 !important;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--gold-light) !important;
  text-decoration: underline !important;
}

.doc-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.doc-modal-header h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--gold-primary);
}

.doc-modal-body {
  padding: 2.5rem 2rem;
  color: var(--text-main);
  line-height: 1.7;
}

.doc-modal-body h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.doc-modal-body h3 {
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin: 1.5rem 0 0.5rem;
}

.doc-modal-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   PAGE HEADER FOR SUBPAGES
   ========================================================================== */
.page-header {
  background: radial-gradient(circle at 80% 20%, rgba(197, 155, 39, 0.12) 0%, transparent 60%), #08101E;
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .purpose-grid, .global-reach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .practices-4-grid {
    grid-template-columns: 1fr;
  }
  .newsroom-3-grid, .metrics-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #060B13;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-bottom-controls {
    display: none;
  }
  .metrics-4-grid, .newsroom-3-grid {
    grid-template-columns: 1fr;
  }
}

/* Robust Logo Fallback */
.brand-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--text-white);
  text-transform: uppercase;
}
.brand-logo-text span {
  color: var(--gold-primary);
}

/* ==========================================================================
   SUBPAGE ARCHITECTURAL LAYOUTS & PROPORTIONAL ALIGNMENT
   Restoring full styling for Practices, Case Studies, Insights, About & Contact
   ========================================================================== */

/* Practices Page Deep Dive Cards */
.practice-deep-dive {
  background: var(--navy-surface);
  border: 1px solid var(--card-border-gold);
  border-radius: 8px;
  padding: 3rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-fast);
}

.practice-deep-dive:hover {
  border-color: var(--gold-light);
}

.p-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.75rem;
}

.p-header h2 {
  font-size: 1.95rem;
  color: var(--text-white);
  line-height: 1.25;
  margin-top: 0.25rem;
}

.p-num {
  font-size: 2.75rem;
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}

.p-explain-box {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold-primary);
  padding: 1.5rem 1.75rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.p-explain-box h4 {
  font-size: 0.85rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.p-explain-box p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-white);
  line-height: 1.6;
}

.p-grid-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.p-grid-cols h3 {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.deliverable-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.d-tag {
  background: var(--navy-dark);
  border: 1px solid var(--card-border-gold);
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-main);
  border-radius: 3px;
  font-weight: 500;
}

/* Case Studies Full Cards */
.case-full-grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.case-full-card {
  background: var(--navy-surface);
  border: 1px solid var(--card-border-gold);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  box-shadow: var(--shadow-md);
}

.case-full-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.case-full-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-meta {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.case-full-content h2 {
  font-size: 1.85rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.case-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--navy-dark);
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: 1.75rem 0;
}

.case-stat-item .stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.case-stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  display: block;
}

/* Insights / White Papers Hub */
.insights-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.doc-card {
  background: var(--navy-surface);
  border: 1px solid var(--card-border-gold);
  border-radius: 8px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.doc-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
}

.doc-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.doc-card h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 0.85rem;
}

.doc-card p {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.doc-actions {
  display: flex;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  align-items: center;
}

/* About Us Layouts */
.about-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-quote-box {
  background: var(--navy-surface);
  border: 1px solid var(--card-border-gold);
  border-radius: 8px;
  padding: 2.5rem;
  border-top: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.about-quote-box blockquote {
  font-size: 1.2rem;
  color: var(--text-white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.principle-card {
  background: var(--navy-surface);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 2rem;
  transition: all var(--transition-fast);
}

.principle-card:hover {
  border-color: var(--card-border-gold);
  transform: translateY(-3px);
}

.principle-card h4 {
  color: var(--gold-primary);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.principle-card p {
  font-size: 0.92rem;
  color: var(--text-main);
  margin: 0;
  line-height: 1.6;
}

/* Contact Page Form Grid */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: flex-start;
}

.executive-form {
  background: var(--navy-surface);
  border: 1px solid var(--card-border-gold);
  border-radius: 8px;
  padding: 2.5rem;
}

.executive-form .form-group { margin-bottom: 1.25rem; }
.executive-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.executive-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-white); margin-bottom: 0.4rem; }
.executive-form input,
.executive-form select,
.executive-form textarea {
  width: 100%;
  background: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
}
.executive-form input:focus,
.executive-form select:focus,
.executive-form textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

@media (max-width: 1024px) {
  .p-grid-cols, .case-full-card, .about-split, .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .case-full-img {
    min-height: auto;
    aspect-ratio: 16 / 9;
    max-height: 280px;
  }
}


/* ==========================================================================
   SIDE NAVIGATION DRAWER & NAVIGATION TREE (LUXURY EXECUTIVE EDITION)
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 13, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #070D18;
  border-right: 1px solid var(--card-border-gold);
  border-left: none;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.95);
  padding: 2.25rem 2rem;
}
.nav-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.75rem;
}

.drawer-close-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: var(--text-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.drawer-close-btn:hover {
  background: rgba(197, 155, 39, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: rotate(90deg);
}

.drawer-section-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
}

.drawer-nav-tree {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 0.85rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}
.drawer-link:hover, .drawer-link.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  padding-left: 1.15rem;
  border-left: 2px solid var(--gold-primary);
}


/* ==========================================================================
   SYMMETRICAL CAREERS DIRECTORY GRID & CARDS
   ========================================================================== */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.25rem;
  margin: 3.5rem 0;
}

.career-card {
  background: var(--navy-surface);
  border: 1px solid var(--card-border-gold);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.career-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.career-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid rgba(197, 155, 39, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.career-title {
  font-size: 1.45rem;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.career-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0.85rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.career-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.career-summary {
  font-size: 0.96rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.career-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   DEDICATED ROLE DETAIL PAGE (SEPARATE PAGE FOR EACH ROLE)
   ========================================================================== */
.job-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  margin: 3.5rem 0;
}
@media (max-width: 960px) {
  .job-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.job-sidebar-card {
  background: var(--navy-surface);
  border: 1px solid var(--card-border-gold);
  border-radius: 8px;
  padding: 2.25rem;
  position: sticky;
  top: 110px;
}

.job-fact-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.job-fact-item:last-of-type {
  border-bottom: none;
}
.job-fact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: block;
}
.job-fact-val {
  font-size: 1.05rem;
  color: var(--text-white);
  font-weight: 600;
  margin-top: 0.25rem;
  display: block;
}

.breadcrumbs-bar {
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs-bar a {
  color: var(--gold-light);
  text-decoration: none;
}
.breadcrumbs-bar a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   INSTITUTIONAL LEGAL & GOVERNANCE LAYOUT (PRIVACY & ENGAGEMENT)
   ========================================================================== */
.legal-page-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  margin: 4rem auto;
  max-width: 1200px;
}
@media (max-width: 860px) {
  .legal-page-container {
    grid-template-columns: 1fr;
  }
}

.legal-toc {
  background: var(--navy-surface);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.75rem;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.legal-toc-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}
.legal-toc-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.legal-toc-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.legal-toc-link:hover {
  color: var(--gold-light);
}

.legal-article-card {
  background: var(--navy-surface);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 3rem;
  margin-bottom: 2.5rem;
}
.legal-article-card h2 {
  font-size: 1.75rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}
.legal-article-card p, .legal-article-card li {
  color: var(--text-main);
  line-height: 1.75;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}
.legal-article-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}


/* ==========================================================================
   ADVANCED MULTI-SCREEN COMPATIBILITY: MOBILE, TABLET & 4K/TV SCREEN ENGINE
   ========================================================================== */

/* Side Nav Toggle Button */
.side-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border-gold);
  border-radius: 6px;
  cursor: pointer;
  padding: 0.65rem 0.75rem;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.side-nav-toggle:hover {
  background: rgba(197, 155, 39, 0.15);
  border-color: var(--gold-primary);
  transform: scale(1.05);
}
.side-nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Footer Bottom-Left Logo Styling */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* TABLET & INTERMEDIATE BREAKPOINT (<= 1240px) */
@media (max-width: 1240px) {
  .nav-links {
    display: none !important; /* Hide crowded desktop links to avoid collision */
  }
  .side-nav-toggle {
    display: flex !important; /* Show luxury side drawer button */
  }
  .top-bar-announce {
    display: none;
  }
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  .top-bar-meta {
    font-size: 0.76rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .purpose-grid, .global-reach-grid, .job-detail-layout, .legal-page-container, .about-split {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  .practices-cinematic-grid, .newsroom-3-grid, .careers-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.75rem;
  }
  .client-sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
  }
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2.25rem 1.75rem !important;
  }
}

/* SMARTPHONE & NARROW MOBILE BREAKPOINT (<= 640px) */
@media (max-width: 640px) {
  .top-bar {
    display: none !important; /* Maximizes vertical viewport on smartphones */
  }
  .navbar {
    top: 0 !important;
    padding: 0.65rem 0;
  }
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .brand-logo-img {
    height: 34px !important;
  }
  .page-header {
    padding: 3.5rem 0 2rem !important;
  }
  .page-header h1 {
    font-size: 1.95rem !important;
    line-height: 1.25 !important;
  }
  .page-header p {
    font-size: 0.95rem !important;
  }
  .hanwha-hero-slider {
    min-height: 560px;
  }
  .hero-slide-inner {
    padding: 4.5rem 1rem 2.5rem !important;
  }
  .hero-slide-title {
    font-size: 1.95rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.85rem !important;
  }
  .hero-slide-desc {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.75rem !important;
  }
  .hero-cta-row {
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100%;
  }
  .hero-cta-row .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.25rem !important;
  }
  .hero-bottom-controls {
    display: none !important;
  }
  .practices-cinematic-grid, .newsroom-3-grid, .careers-grid, .testimonials-grid, .metrics-4-grid, .principles-grid {
    grid-template-columns: 1fr !important;
    gap: 1.35rem;
  }
  .client-sectors-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.85rem;
  }
  .footer-nav {
    grid-template-columns: 1fr !important;
    gap: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .career-card, .testimonial-card, .practice-cinematic-card, .newsroom-card, .pillar-card {
    padding: 1.65rem 1.25rem !important;
  }
  .career-title {
    font-size: 1.25rem !important;
  }
  .nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #070D18;
  border-right: 1px solid var(--card-border-gold);
  border-left: none;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.95);
  padding: 2.25rem 2rem;
}
}

/* 4K TELEVISION & ULTRA-WIDE BOARDROOM DISPLAYS (>= 1800px & >= 2500px) */
@media (min-width: 1800px) {
  html {
    font-size: 18px; /* Fluid rem scaling */
  }
  .container {
    max-width: 1560px;
  }
  .hanwha-hero-slider {
    min-height: 780px;
  }
  .hero-slide-title {
    font-size: 3.8rem;
  }
}

@media (min-width: 2500px) {
  /* 4K UHD Presentation / Smart TV displays */
  html {
    font-size: 23px;
  }
  .container {
    max-width: 2100px;
  }
  .hanwha-hero-slider {
    min-height: 900px;
  }
  .hero-slide-title {
    font-size: 4.4rem;
    line-height: 1.15;
  }
  .hero-slide-desc {
    font-size: 1.3rem;
    max-width: 960px;
  }
}


/* ==========================================================================
   MCKINSEY-TIER TOP-TO-DOWN MEGA MENU & HIERARCHICAL NAVIGATION
   ========================================================================== */
.nav-left-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
}

/* ==========================================================================
   HEADER NAVIGATION & MEGA MENU UX REFACTOR (Phase 9)
   - Debounced hover & click-to-expand behavior
   - Safe hover zone (no accidental closure on micro-gaps)
   - Premium ease-in-out opening & closing animation
   ========================================================================== */

.nav-item-dropdown {
  position: static;
}

.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  user-select: none;
  padding: 0.5rem 0.2rem;
  transition: color var(--transition-fast);
}

.dropdown-chevron {
  display: inline-block;
  font-size: 0.85rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  line-height: 1;
  pointer-events: none;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown.is-active .dropdown-chevron,
.nav-item-dropdown.open .dropdown-chevron {
  transform: rotate(90deg);
  color: var(--gold-primary);
}

.nav-item-dropdown.is-active > .nav-link-dropdown,
.nav-item-dropdown.open > .nav-link-dropdown {
  color: var(--text-white);
}

.nav-item-dropdown.is-active > .nav-link-dropdown::after,
.nav-item-dropdown.open > .nav-link-dropdown::after {
  width: 100%;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #060C17;
  border-top: 1px solid rgba(197, 155, 39, 0.25);
  border-bottom: 2px solid var(--gold-primary);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  /* Smooth deliberate ease-in-out closing transition */
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

/* Invisible safe-hover bridge: prevents pointer events drop between navbar and mega menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
  background: transparent;
  pointer-events: auto;
}

/* Active / Open state: driven by debounced JS with CSS focus fallback */
.nav-item-dropdown.is-active .mega-menu,
.nav-item-dropdown.open .mega-menu,
.nav-item-dropdown:focus-within .mega-menu,
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  /* Deliberate ease-in-out opening transition */
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle content reveal for inner columns */
.nav-item-dropdown.is-active .mega-menu-grid,
.nav-item-dropdown.open .mega-menu-grid {
  animation: megaMenuContentFade 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes megaMenuContentFade {
  from {
    opacity: 0.85;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu-container {
  width: min(100% - 2.5rem, 1320px);
  margin: 0 auto;
  padding: 2.25rem 0 2.75rem 0;
}

/* Shared top-level navigation contract across every page variant. */
.top-bar {
  min-height: 34px;
}

.navbar {
  min-height: 78px;
}

.brand-logo {
  flex: 0 0 auto;
}

.brand-logo-img {
  max-width: 190px;
}

.work-page-lead {
  max-width: 720px;
  margin-top: 1.25rem;
  color: var(--text-main);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.work-page-note {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.work-page-note a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.work-with-us-page .page-header {
  padding-bottom: 4rem;
}

.work-with-us-page .page-header .btn {
  min-width: 190px;
}

.work-with-us-page .pillar-card,
.work-with-us-page .editorial-featured-card,
.work-with-us-page .thrive-card {
  height: 100%;
}

.work-with-us-page .pillar-desc,
.work-with-us-page .editorial-featured-card > p,
.work-with-us-page .thrive-card > p {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.work-with-us-page .pillar-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.work-with-us-page .editorial-featured-card > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.work-with-us-page .thrive-card > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media (max-width: 1240px) {
  .nav-links {
    display: none !important;
  }

  .side-nav-toggle {
    display: flex !important;
  }
}

@media (min-width: 1241px) and (max-width: 1360px) {
  .nav-links {
    display: flex !important;
    gap: clamp(0.35rem, 0.6vw, 0.75rem);
  }
  .nav-link-dropdown {
    font-size: 0.68rem !important;
    padding: 0.25rem 0.2rem;
  }
  .nav-links .btn {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.74rem !important;
  }
  .side-nav-toggle {
    display: none !important;
  }
  .mega-menu-grid {
    gap: 1.5rem;
  }
  .mega-menu-container {
    padding: 1.5rem 0 2rem 0;
  }
}

.mega-overview-bar {
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-overview-link {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.mega-overview-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

.mega-section-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(197, 155, 39, 0.15);
  padding-bottom: 0.45rem;
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mega-list li a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  display: block;
  line-height: 1.45;
}

.mega-list li a:hover {
  color: var(--gold-light);
  padding-left: 0.35rem;
}

.mega-featured-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(197, 155, 39, 0.2);
  border-radius: 6px;
  padding: 1.35rem;
  transition: border-color var(--transition-fast);
}

.mega-featured-card:hover {
  border-color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.03);
}

.mega-featured-card h4 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.mega-featured-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.mega-read-link {
  color: var(--gold-primary);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mega-read-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Side Drawer Typography Enhancements (Zero Emojis, Pure McKinsey Editorial) */
.drawer-section-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(197, 155, 39, 0.15);
  padding-bottom: 0.35rem;
}

.drawer-nav-tree {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drawer-link {
  display: block;
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
  line-height: 1.4;
}

.drawer-link:hover, .drawer-link.active {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold-primary);
}

.drawer-link-overview {
  color: var(--gold-primary);
  font-weight: 700;
}

/* Hide mega menus on mobile/tablet */
@media (max-width: 1024px) {
  .mega-menu {
    display: none !important;
  }
}

/* ==========================================================================
   PHASE 10: EQUAL AUTHORITY LEADERSHIP GRID & COMPONENT STYLES
   - Exact 2-column side-by-side grid on desktop
   - Identical photo dimensions, monogram fallbacks, and text containers
   - Graceful single-column stacking on mobile viewports
   ========================================================================== */

.leadership-equal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  align-items: stretch;
}

.leader-card-equal {
  display: flex;
  flex-direction: column;
  background: rgba(14, 25, 45, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.35s ease;
  height: 100%;
}

.leader-card-equal:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 155, 39, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
}

/* Identical Portrait Frame */
.leader-equal-photo-box {
  position: relative;
  width: 100%;
  height: 360px;
  background: #040810;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.leader-equal-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.leader-card-equal:hover .leader-equal-photo-img {
  transform: scale(1.03);
}

.leader-equal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0e1c33 0%, #060c16 100%);
}

.leader-equal-initials {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(197, 155, 39, 0.85);
  letter-spacing: 0.05em;
}

.leader-equal-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(14, 25, 45, 1) 0%, transparent 100%);
  pointer-events: none;
}

/* Identical Text Container */
.leader-equal-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.leader-equal-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leader-equal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.leader-equal-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.leader-equal-designation {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.leader-equal-bio {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.leader-equal-bio p {
  margin-bottom: 1rem;
}

.leader-equal-bio p:last-child {
  margin-bottom: 0;
}

/* "Talk to me about" Topic Matrix */
.leader-topics-box {
  background: rgba(6, 11, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.75rem;
}

.leader-topics-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.leader-topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.leader-topic-item {
  font-size: 0.86rem;
  color: #CBD5E1;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.leader-topic-item .bullet-icon {
  color: var(--gold-primary);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Pinned Contact Bar */
.leader-equal-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.leader-equal-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: #CBD5E1;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.leader-equal-contact-link:hover {
  color: var(--gold-primary);
}

.leader-equal-contact-link.linkedin:hover {
  color: #38BDF8;
}

/* Graceful Responsive Stacking on Mobile/Tablet */
@media (max-width: 960px) {
  .leadership-equal-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .leader-equal-photo-box {
    height: 320px;
  }
  
  .leader-equal-content {
    padding: 1.75rem 1.5rem;
  }
}


/* ==========================================================================
   HIGH-RES MEDIA, PERFORMANCE OPTIMIZATIONS & CMS PLACEHOLDER SUBSYSTEM
   ========================================================================== */

/* Responsive Picture Wrapper */
.migo-picture {
  display: block;
  width: 100%;
  height: 100%;
}
.migo-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Luxury Visible Media Placeholder Block (When Asset Awaiting Upload) */
.media-placeholder-block {
  width: 100%;
  min-height: 260px;
  background: rgba(10, 17, 30, 0.88);
  border: 1.5px dashed var(--gold-primary);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.25rem 1.75rem;
  box-shadow: inset 0 0 30px rgba(197, 155, 39, 0.06);
  position: relative;
  z-index: 2;
  transition: all var(--transition-fast);
}

.media-placeholder-block:hover {
  border-color: var(--gold-light);
  background: rgba(16, 26, 46, 0.94);
  box-shadow: inset 0 0 40px rgba(197, 155, 39, 0.12);
}

.placeholder-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--card-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
}

.placeholder-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid var(--card-border-gold);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.placeholder-dim {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}
.placeholder-dim span {
  color: var(--gold-light);
}

.placeholder-category {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 360px;
  margin-bottom: 0.75rem;
}
.placeholder-category span {
  color: var(--text-white);
  font-weight: 600;
  display: block;
  margin-top: 0.2rem;
}

.placeholder-guide {
  font-size: 0.75rem;
  color: var(--gold-primary);
  letter-spacing: 0.04em;
  font-weight: 600;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   PRODUCT SHOWCASE PORTFOLIO GRID COMPONENT
   ========================================================================== */
.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.portfolio-filter-btn {
  background: var(--navy-surface);
  color: var(--text-muted);
  border: 1px solid var(--card-border);
  padding: 0.55rem 1.35rem;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: var(--gold-primary);
  color: #060B13;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px var(--gold-glow);
  transform: translateY(-1px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.25rem;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--navy-surface);
  border: 1px solid var(--card-border-gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg);
}

.portfolio-media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #040810;
}

.portfolio-img,
.portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-overlay-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(6, 11, 19, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  border: 1px solid var(--card-border-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.play-triangle {
  font-size: 0.65rem;
  color: var(--gold-primary);
}

.portfolio-badge-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-primary);
  color: #060B13;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  z-index: 5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-cat-label {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.portfolio-title {
  font-size: 1.35rem;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.portfolio-tagline {
  font-size: 0.92rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1rem;
}

.portfolio-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.portfolio-capabilities-box {
  background: rgba(6, 11, 19, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.5rem;
}

.capabilities-title {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.capabilities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-main);
  line-height: 1.6;
}

.capabilities-list li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.cap-check {
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 0.9rem;
}

.portfolio-card-actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.portfolio-btn-primary {
  flex: 1;
  background: var(--gold-primary);
  color: #060B13;
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.portfolio-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.portfolio-btn-secondary {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.portfolio-btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* ==========================================================================
   OPTIMIZED CORPORATE GALLERY GRID COMPONENT
   ========================================================================== */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: var(--navy-surface);
  color: var(--text-muted);
  border: 1px solid var(--card-border);
  padding: 0.55rem 1.35rem;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold-primary);
  color: #060B13;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px var(--gold-glow);
  transform: translateY(-1px);
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.85rem;
}

.gallery-item-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: #08101E;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.gallery-item-card:hover {
  border-color: var(--card-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-aspect-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #040810;
}

.gallery-item-card.aspect-wide .gallery-aspect-box {
  aspect-ratio: 16/9;
}
.gallery-item-card.aspect-square .gallery-aspect-box {
  aspect-ratio: 1/1;
}
.gallery-item-card.aspect-portrait .gallery-aspect-box {
  aspect-ratio: 2/3;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-card:hover .gallery-item-img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.15) 0%, rgba(6, 11, 19, 0.8) 55%, rgba(6, 11, 19, 0.98) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.65rem;
  z-index: 3;
}

.gallery-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-category-pill {
  background: rgba(6, 11, 19, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  border: 1px solid var(--card-border-gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-date-pill {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.gallery-meta-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gallery-location-tag {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
}

.gallery-title {
  font-size: 1.18rem;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.gallery-caption {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.gallery-expand-hint {
  font-size: 0.75rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.02em;
}

/* Lightbox Modal */
.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 13, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-content {
  background: var(--navy-primary);
  border: 1px solid var(--card-border-gold);
  border-radius: 10px;
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 60vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 60vh;
}

.lightbox-details {
  padding: 1.75rem 2rem;
  background: var(--navy-surface);
}

.lightbox-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(6, 11, 19, 0.85);
  border: 1px solid var(--card-border-gold);
  color: var(--gold-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--gold-primary);
  color: #060B13;
}


/* Hero Video Poster Picture & Responsive Loading */
.hero-poster-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ==========================================================================
   CLIENTS CONTINUOUS MOVING MARQUEE TICKER STRIP
   ========================================================================== */
.clients-marquee-section {
  padding: 4.5rem 0 5rem;
  background: #040810;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.clients-marquee-header {
  margin-bottom: 2.5rem;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.25rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  animation: marqueeScroll 55s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-logo-card {
  flex-shrink: 0;
  width: 190px;
  height: 85px;
  background: var(--navy-surface);
  border: 1px solid var(--card-border-gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.marquee-logo-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-3px);
  background: var(--navy-elevated);
  box-shadow: 0 8px 24px rgba(197, 155, 39, 0.2);
}

.marquee-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.7) contrast(1.2);
  opacity: 0.75;
  transition: all var(--transition-fast);
}

.marquee-logo-card:hover .marquee-logo-img {
  filter: grayscale(0%) brightness(1.1);
  opacity: 1;
}

.marquee-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
}

.placeholder-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
}

.placeholder-acronym {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

.placeholder-sector {
  font-size: 0.7rem;
  color: var(--gold-light);
  text-transform: uppercase;
}



/* =========================================================================
   MIGO AXIS BRAND TEXT-MARKER HIGHLIGHT TAGLINE ("Incept. Innovate. Integrate.")
   Strict adherence to Migo Axis brand palette:
   - Deep Obsidian (#060B13) dark text
   - Vibrant Champagne Gold (#E5C05B / #D4AF37) solid text-marker highlight
   - Inline padding on <mark> tag hugging text tightly like a highlighter pen
   - Non-button aesthetic: flat rectangular edges, no border-radius, no border, no shadow
   ========================================================================= */

:root {
  --highlight-gold: #E5C05B;       /* Migo Axis Champagne Gold highlight */
  --highlight-gold-hover: #FCDA83; /* Warm luminous gold hover */
  --highlight-text-dark: #060B13;  /* Migo Axis Deep Obsidian dark text */
}

html {
  scroll-behavior: smooth;
}

#what-we-incept,
#what-we-innovate,
#what-we-integrate,
#industries-section,
#verticals-section {
  scroll-margin-top: 5.5rem;
}

.hero-tagline-wrapper {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
  position: relative;
}

.hero-intro-lead {
  margin: 0 0 0.65rem 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted, #94A3B8);
  display: inline-block;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.hero-tagline-highlight {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero-tagline-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.hero-tagline-link:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-tagline-link:focus-visible {
  outline: 2px solid var(--highlight-gold);
  outline-offset: 4px;
}

/* The exact text-marker highlight element in Migo Axis brand gold */
mark.hero-highlight-mark {
  background-color: var(--highlight-gold);
  color: var(--highlight-text-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  padding: 0.14em 0.38em;
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-color 0.15s ease, filter 0.15s ease;
}

.hero-tagline-link:hover mark.hero-highlight-mark {
  background-color: var(--highlight-gold-hover);
  filter: brightness(1.06);
}

mark.section-title-mark {
  background-color: var(--highlight-gold);
  color: var(--highlight-text-dark);
  font-style: italic;
  font-weight: 800;
  padding: 0.08em 0.32em;
  border-radius: 0;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* =========================================================================
   WHAT WE INCEPT / INNOVATE / INTEGRATE SECTIONS
   ========================================================================= */

.what-we-section {
  padding: 6.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.what-we-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.what-we-card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.82) 0%, rgba(10, 16, 27, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 42px rgba(5, 10, 18, 0.32);
  overflow: hidden;
  min-height: 100%;
}

.what-we-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 155, 39, 0.9), rgba(197, 155, 39, 0));
  opacity: 0.9;
}

.what-we-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 155, 39, 0.45);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

.what-we-card-num {
  font-family: var(--font-display, monospace);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.what-we-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.what-we-card-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.what-we-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.what-we-card-list li {
  font-size: 0.88rem;
  color: #cbd5e1;
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.4;
}

.what-we-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold-primary);
}

.what-we-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.what-we-link:hover {
  gap: 0.7rem;
  color: #ffffff;
}

/* Products Showcase in Innovate */
.products-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.product-feature-card {
  background: linear-gradient(180deg, rgba(11, 18, 31, 0.9) 0%, rgba(8, 13, 22, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 42px rgba(4, 9, 16, 0.35);
  position: relative;
  overflow: hidden;
}

.product-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 155, 39, 0.9), rgba(197, 155, 39, 0));
  opacity: 0.9;
}

.product-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 155, 39, 0.45);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

.product-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.product-pill-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  background: var(--gold-subtle);
  border: 1px solid rgba(197, 155, 39, 0.25);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.product-kicker-code {
  font-family: monospace;
  font-size: 0.75rem;
  color: #64748b;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.product-summary {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-specs-list {
  background: rgba(11, 20, 38, 0.5);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}

.spec-label {
  color: #64748b;
}

.spec-val {
  color: #cbd5e1;
  font-weight: 600;
}

.product-metric-callout {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.metric-big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  font-family: var(--font-display, sans-serif);
}

.metric-caption {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.3;
}

/* =========================================================================
   TASK 3: INDUSTRIES & VERTICALS DISTINCT BLOCKS
   ========================================================================= */

.industries-distinct-section {
  padding: 6.5rem 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(197, 155, 39, 0.2);
}

.section-head-centered {
  text-align: left;
  max-width: 800px;
  margin: 0 0 3.5rem 0;
}

.industries-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.industry-card {
  background: linear-gradient(180deg, rgba(14, 22, 37, 0.84) 0%, rgba(8, 13, 22, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(5, 10, 18, 0.25);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 155, 39, 0.9), rgba(197, 155, 39, 0));
  opacity: 0.9;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 155, 39, 0.45);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.content-media {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  margin: -1.5rem -1.5rem 1.5rem;
  background: #0a111e;
  border-bottom: 1px solid rgba(197, 155, 39, 0.22);
}

.content-media .migo-picture,
.content-media-image,
.content-media video {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.content-media-motion .content-media-image,
.content-media-video video {
  animation: content-media-drift 14s ease-in-out infinite alternate;
  transform-origin: center;
}

.content-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 16, 0.02) 35%, rgba(4, 8, 16, 0.82) 100%);
  pointer-events: none;
}

.content-media-label {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 0.85rem;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.industry-capability-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  gap: 0.35rem;
  align-items: flex-start;
}

.industry-capability-link:hover {
  color: var(--gold-light);
}

@keyframes content-media-drift {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .content-media-motion .content-media-image,
  .content-media-video video {
    animation: none;
  }
}

.industry-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-primary);
}

.industry-svg {
  width: 22px;
  height: 22px;
}

.industry-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.industry-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.industry-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.industry-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.industry-feature-list li {
  font-size: 0.8rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.industry-feature-list a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.industry-feature-list a:hover,
.industry-feature-list a:focus-visible {
  color: var(--gold-primary);
}

.industry-feature-list li::before {
  content: "›";
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 1rem;
}

.drawer-industry-group {
  margin-bottom: 0.8rem;
}

.drawer-industry-title {
  font-weight: 700;
}

.drawer-capability-tree {
  gap: 0.1rem;
  margin: 0.15rem 0 0.5rem 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-capability-tree .drawer-link {
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  color: var(--text-muted);
}

/* Verticals Section */
.verticals-distinct-section {
  padding: 6.5rem 0;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.verticals-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.vertical-card {
  background: linear-gradient(180deg, rgba(10, 18, 31, 0.82) 0%, rgba(6, 11, 18, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(5, 10, 18, 0.25);
  position: relative;
  overflow: hidden;
}

.vertical-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 155, 39, 0.9), rgba(197, 155, 39, 0));
  opacity: 0.9;
}

.vertical-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 155, 39, 0.45);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.vertical-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light, #f3d887);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.vertical-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.vertical-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.vertical-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vertical-metric {
  font-family: monospace;
  font-size: 0.78rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

@media (max-width: 1200px) {
  .industries-4-grid,
  .verticals-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .what-we-grid,
  .products-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .industries-4-grid,
  .verticals-4-grid {
    grid-template-columns: 1fr;
  }
  .hero-tagline-wrapper {
    margin-bottom: 1.25rem;
  }
  .hero-intro-lead {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    margin-bottom: 0.5rem;
  }
  mark.hero-highlight-mark {
    font-size: 1.35rem;
    padding: 0.12em 0.3em;
  }
}
/* ==========================================================================
   TAILORED INDUSTRY CAPABILITIES BULLETS
   ========================================================================== */
.tailored-caps-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.tailored-caps-list li {
  position: relative !important;
  padding-left: 1.15rem !important;
  margin-bottom: 0.4rem !important;
  color: var(--text-main) !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
}

.tailored-caps-list li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: var(--gold-primary) !important;
  font-size: 1.1rem !important;
  line-height: 1.3 !important;
}

/* ==========================================================================
   SITEWIDE DEVICE ADAPTATION & MEDIA SYSTEM
   ========================================================================== */
img,
video,
svg,
canvas {
  max-width: 100%;
}

img {
  height: auto;
}

video {
  display: block;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 9, 18, 0.98) 0%, rgba(4, 9, 18, 0.82) 48%, rgba(4, 9, 18, 0.48) 100%),
    url("hero_composable_poster.jpg") center / cover no-repeat,
    #08101e;
}

.page-header[style] {
  background:
    linear-gradient(90deg, rgba(4, 9, 18, 0.98) 0%, rgba(4, 9, 18, 0.82) 48%, rgba(4, 9, 18, 0.48) 100%),
    url("hero_composable_poster.jpg") center / cover no-repeat !important;
}

.page-header::after {
  content: "";
  position: absolute;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  right: -10vw;
  top: -35%;
  border: 1px solid rgba(229, 192, 91, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(229, 192, 91, 0.04), 0 0 0 70px rgba(56, 189, 248, 0.025);
  pointer-events: none;
  z-index: -1;
}

.page-header > .container {
  position: relative;
  z-index: 1;
}

.page-header-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .container {
    padding-left: clamp(1.25rem, 4vw, 2rem);
    padding-right: clamp(1.25rem, 4vw, 2rem);
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2.25rem 1.75rem !important;
  }

  .case-full-card {
    grid-template-columns: 1fr;
  }

  .case-full-img {
    min-height: 280px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }

  body {
    min-width: 320px;
  }

  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .side-nav-toggle,
  .mobile-toggle,
  .drawer-close-btn,
  .btn,
  .nav-link-dropdown {
    min-width: 44px;
    min-height: 44px;
  }

  .nav-container {
    gap: 0.75rem;
  }

  .brand-logo-img {
    max-width: min(52vw, 190px);
  }

  .hanwha-hero-slider {
    height: auto;
    min-height: 620px;
  }

  .hero-slide-inner {
    justify-content: flex-start;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero-media-fallback,
  .hero-video {
    object-position: 58% center;
  }

  .hero-tagline-highlight {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .hero-slide-title {
    max-width: 16ch;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .metrics-ribbon-strip,
  .purpose-section,
  .practices-showcase-section,
  .global-reach-section,
  .what-we-section,
  .industries-distinct-section,
  .capability-visual-strip {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .capability-intro {
    display: block;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card:last-child {
    grid-column: auto;
  }

  .capability-card {
    min-height: 0;
  }

  .capability-visual {
    height: clamp(145px, 42vw, 190px);
  }

  .section-head-split,
  .p-header {
    display: block;
  }

  .section-head-desc {
    margin-top: 1.25rem;
  }

  .p-num {
    margin-top: 1rem;
    font-size: 2rem;
  }

  .p-grid-cols,
  .executive-form .form-row,
  .case-stats-row {
    grid-template-columns: 1fr;
  }

  .practice-deep-dive,
  .case-full-content,
  .doc-card {
    padding: 1.5rem;
  }

  .page-header {
    padding: 4rem 0 3rem !important;
    background-position: 64% center;
  }

  .page-header::after {
    width: 280px;
    height: 280px;
    right: -120px;
    top: -60px;
  }

  .page-header-video {
    object-position: 62% center;
    opacity: 0.22;
  }

  .footer-nav {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .footer-bottom,
  .footer-legal-links {
    align-items: flex-start !important;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column !important;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .hero-slide-inner {
    padding-top: 6rem;
  }

  .hero-slide-title {
    font-size: clamp(1.8rem, 9vw, 2.35rem) !important;
  }

  .hero-slide-desc {
    font-size: 0.96rem !important;
  }

  .metric-strip-card {
    padding: 1.25rem;
  }

  .metric-strip-card .metric-stat {
    font-size: 2.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  .page-header-video {
    display: none;
  }

  .capability-visual video {
    display: none;
  }

  .capability-visual img {
    animation: none;
    transform: none;
  }
}

.section-kicker, .kicker, .hero-kicker { letter-spacing: 0.14em !important; }

/* --- NEW COMPONENT CLASSES --- */

/* Breadcrumbs */
.breadcrumb-nav { padding: 1rem 0; font-size: 0.82rem; color: var(--text-dim); }
.breadcrumb-nav a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb-nav a:hover { color: var(--gold-primary); }
.breadcrumb-nav .breadcrumb-sep { margin: 0 0.5rem; color: var(--text-dim); opacity: 0.5; }
.breadcrumb-nav .breadcrumb-current { color: var(--gold-light); font-weight: 600; }

/* Narrative Page Hero */
.narrative-hero { position: relative; padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem); background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy-deep) 40%, var(--navy-primary) 100%); overflow: hidden; }
.narrative-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 20% 50%, rgba(197,155,39,0.06) 0%, transparent 60%); pointer-events: none; }
.narrative-hero .hero-kicker { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-primary); background: rgba(197,155,39,0.1); border: 1px solid rgba(197,155,39,0.2); padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 1.5rem; font-family: var(--font-display); }
.narrative-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.015em; color: var(--text-white); margin-bottom: 1.5rem; max-width: 820px; }
.narrative-hero .hero-subtitle { font-size: clamp(1.05rem, 1.8vw, 1.22rem); color: var(--text-muted); line-height: 1.72; max-width: 680px; margin-bottom: 2rem; }

/* Problem Landscape Section (the 'Why') */
.problem-landscape { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.04); }
.problem-landscape .section-lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--text-main); line-height: 1.72; max-width: 780px; margin-bottom: 3rem; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.problem-card { background: var(--navy-primary); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; padding: 2rem; transition: border-color 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.problem-card:hover { border-color: rgba(197,155,39,0.25); transform: translateY(-2px); }
.problem-card .problem-num { font-size: 0.72rem; font-weight: 700; color: var(--gold-primary); letter-spacing: 0.1em; font-family: var(--font-display); margin-bottom: 0.75rem; }
.problem-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.75rem; line-height: 1.25; }
.problem-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Capabilities Grid (the 'What') */
.capabilities-section { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--navy-dark); }
.capabilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.capability-route-card { display: flex; flex-direction: column; justify-content: space-between; background: var(--navy-primary); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; padding: 2rem; text-decoration: none; color: inherit; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; min-height: 240px; }
.capability-route-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-primary), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.capability-route-card:hover { border-color: rgba(197,155,39,0.3); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.capability-route-card:hover::before { transform: scaleX(1); }
.capability-route-card .cap-number { font-size: 0.7rem; font-weight: 700; color: var(--gold-primary); letter-spacing: 0.12em; font-family: var(--font-display); margin-bottom: 1rem; }
.capability-route-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.75rem; line-height: 1.25; }
.capability-route-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex-grow: 1; }
.capability-route-card .cap-arrow { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--gold-primary); margin-top: 1.25rem; transition: gap 0.3s; }
.capability-route-card:hover .cap-arrow { gap: 0.85rem; }

/* Methodology Section (the 'How') */
.methodology-section { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--navy-surface); border-top: 1px solid rgba(255,255,255,0.04); }
.methodology-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; counter-reset: method-counter; }
.method-card { padding: 2rem; background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.05); border-radius: 6px; position: relative; counter-increment: method-counter; }
.method-card::before { content: counter(method-counter, decimal-leading-zero); position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2.5rem; font-weight: 800; color: rgba(197,155,39,0.08); font-family: var(--font-display); line-height: 1; }
.method-card h4 { font-size: 1rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.75rem; font-family: var(--font-display); }
.method-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* Evidence & Proof Section (the 'Who') */
.proof-section { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--navy-deep); }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.proof-card { background: var(--navy-primary); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; padding: 2rem; }
.proof-card .proof-metric { font-size: 2.2rem; font-weight: 800; color: var(--gold-primary); font-family: var(--font-display); margin-bottom: 0.5rem; }
.proof-card .proof-title { font-size: 1rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.proof-card .proof-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.proof-card .proof-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-accent); background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.15); padding: 0.25rem 0.6rem; border-radius: 2px; margin-top: 1rem; }

/* Compact Homepage Sections */
.compact-practices-strip { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--navy-surface); }
.compact-practices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.compact-practice-card { display: block; padding: 1.5rem; background: var(--navy-primary); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; text-decoration: none; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.compact-practice-card:hover { border-color: rgba(197,155,39,0.3); transform: translateY(-2px); }
.compact-practice-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.4rem; }
.compact-practice-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

.compact-industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.compact-industry-tile { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: var(--navy-primary); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; text-decoration: none; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.compact-industry-tile:hover { border-color: rgba(197,155,39,0.25); transform: translateY(-1px); }
.compact-industry-tile .ind-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(197,155,39,0.08); border: 1px solid rgba(197,155,39,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.7rem; font-weight: 700; color: var(--gold-primary); font-family: var(--font-display); }
.compact-industry-tile h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-white); margin: 0; }
.compact-industry-tile p { font-size: 0.78rem; color: var(--text-muted); margin: 0.2rem 0 0; line-height: 1.4; }

/* Mega Menu Dropdown */
.mega-menu { position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-deep); border-top: 1px solid rgba(197,155,39,0.15); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); z-index: 1000; }
.mega-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.mega-menu-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-primary); margin-bottom: 1rem; font-family: var(--font-display); }
.mega-menu-col a { display: block; font-size: 0.88rem; color: var(--text-muted); text-decoration: none; padding: 0.4rem 0; transition: color 0.2s, padding-left 0.2s; }
.mega-menu-col a:hover { color: var(--text-white); padding-left: 0.3rem; }

/* Sub-page Deep Content Layout */
.deep-content-section { padding: clamp(4rem, 8vw, 6rem) 0; }
.deep-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.deep-content-grid.reverse { direction: rtl; }
.deep-content-grid.reverse > * { direction: ltr; }
.deep-content-text h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; color: var(--text-white); margin-bottom: 1rem; line-height: 1.2; }
.deep-content-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 1rem; }
.deep-content-visual { border-radius: 6px; overflow: hidden; }
.deep-content-visual img { width: 100%; height: auto; display: block; }

.deliverables-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.deliverables-list li { position: relative; padding: 0.6rem 0 0.6rem 1.5rem; font-size: 0.9rem; color: var(--text-main); line-height: 1.6; border-bottom: 1px solid rgba(255,255,255,0.04); }
.deliverables-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--gold-primary); font-weight: 600; }

@media (max-width: 900px) {
  .deep-content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .deep-content-grid.reverse { direction: ltr; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .methodology-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .compact-practices-grid { grid-template-columns: repeat(2, 1fr); }
  .compact-industries-grid { grid-template-columns: 1fr; }
  .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .compact-practices-grid { grid-template-columns: 1fr; }
  .mega-menu-grid { grid-template-columns: 1fr; }
}


/* Ensure footer logo does not render duplicate text when image is present */
.footer-logo-link .brand-logo-text {
  display: none;
}

/* ==========================================================================
   MOBILE & COMPONENT REFINEMENTS: INDUSTRY HERO, ACCORDION DRAWER, GRIDS
   ========================================================================== */

/* 1. Responsive Industry Page Hero */
.industry-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.industry-hero-media {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background: var(--navy-surface);
}
.industry-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .industry-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .industry-hero-media {
    max-height: 280px !important;
    order: -1;
  }
  .industry-hero-media img {
    max-height: 280px !important;
  }
}

/* 2. Responsive Mobile Breadcrumbs */
.breadcrumb-nav {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0.4rem !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
  word-break: break-word !important;
  margin-bottom: 1.75rem !important;
}
@media (max-width: 640px) {
  .breadcrumb-nav {
    font-size: 0.76rem !important;
    gap: 0.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

/* 3. Side Drawer: Sleek McKinsey Executive Edition */
.drawer-logo .brand-logo-text {
  display: none !important;
}
.drawer-accordion {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.drawer-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  color: #F1F5F9;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: left;
}
.drawer-accordion-header:hover,
.drawer-accordion.active .drawer-accordion-header {
  color: var(--gold-light);
}
.drawer-accordion-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #94A3B8;
  stroke: #94A3B8;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease, color 0.3s ease;
}
.drawer-accordion.active .drawer-accordion-chevron {
  transform: rotate(90deg);
  color: var(--gold-primary);
  stroke: var(--gold-primary);
}
.drawer-accordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, padding 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 1.15rem;
  border-left: none;
  margin-bottom: 0;
}
.drawer-accordion.active .drawer-accordion-body {
  max-height: 700px;
  opacity: 1;
  padding-top: 0.25rem;
  padding-bottom: 0.85rem;
}
.drawer-accordion-link {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.5rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.drawer-accordion-link:last-child {
  border-bottom: none;
}
.drawer-accordion-link:hover,
.drawer-accordion-link:focus {
  color: #FFFFFF;
  transform: translateX(4px);
}
.drawer-direct-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  color: #F1F5F9;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease;
}
.drawer-direct-link svg {
  color: #94A3B8;
  stroke: #94A3B8;
  transition: transform 0.2s ease, stroke 0.2s ease;
}
.drawer-direct-link:hover {
  color: var(--gold-light);
}
.drawer-direct-link:hover svg {
  stroke: var(--gold-primary);
  transform: translateX(3px);
}

/* 4. High-Resolution Visual Practice Cards */
.practices-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.practice-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-primary);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.practice-image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 155, 39, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.practice-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-surface);
}
.practice-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.practice-image-card:hover .practice-card-media img {
  transform: scale(1.05);
}
.practice-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.08) 0%, rgba(6, 11, 19, 0.75) 100%);
  pointer-events: none;
}
.practice-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  background: var(--navy-primary);
}
.practice-card-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.practice-card-body h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.practice-card-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.practice-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: auto;
  transition: gap 0.2s;
}
.practice-image-card:hover .practice-card-arrow {
  gap: 0.75rem;
}

/* 5. High-Resolution Visual Industry Cards */
.industries-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.industry-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-deep);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.industry-image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 155, 39, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.industry-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-surface);
}
.industry-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.industry-image-card:hover .industry-card-media img {
  transform: scale(1.05);
}
.industry-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.12) 0%, rgba(6, 11, 19, 0.75) 100%);
  pointer-events: none;
}
.industry-card-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: var(--gold-primary);
  padding: 0.22rem 0.55rem;
  border-radius: 3px;
  font-family: var(--font-display);
}
.industry-card-body {
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  background: var(--navy-primary);
}
.industry-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.industry-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* 6. Targeted Value Realization Capability Cards */
.capability-route-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--navy-surface);
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-main);
  min-height: 90px;
}
.capability-route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 155, 39, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: var(--navy-primary);
}

/* 7. Clickable Metrics Ribbon Strip (Target Values Realization) */
.metric-strip-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.metric-strip-card-link:hover .metric-strip-card {
  transform: translateY(-3px);
  border-color: rgba(197, 155, 39, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* 8. Global Responsive Breakpoints for All Cards & Heroes */
@media (max-width: 1200px) {
  .industries-image-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 1100px) {
  .practices-image-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}
@media (max-width: 900px) {
  .industries-image-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
  .industry-hero-grid,
  .narrative-hero .container,
  .narrative-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .industry-hero-media {
    aspect-ratio: 16 / 9 !important;
    max-height: 320px !important;
    order: -1;
  }
  .narrative-hero img {
    aspect-ratio: 16 / 9 !important;
    max-height: 280px !important;
    margin-top: 1.25rem !important;
  }
}
@media (max-width: 640px) {
  .industries-image-grid {
    grid-template-columns: 1fr !important;
    gap: 1.15rem !important;
  }
  .practices-image-grid {
    grid-template-columns: 1fr !important;
    gap: 1.15rem !important;
  }
  .practice-card-media,
  .industry-card-media {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
  }
  .industry-hero-media {
    aspect-ratio: 16 / 9 !important;
    max-height: 220px !important;
    border-radius: 6px;
  }
  .capabilities-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }
  .capability-route-card {
    padding: 1.15rem 1.25rem !important;
    min-height: auto !important;
  }
}

/* ==========================================================================
   CONSULTING VISUALS & EXECUTIVE FRAMEWORKS SHOWCASE (MCKINSEY STANDARD)
   ========================================================================== */
.consulting-frameworks-section {
  position: relative;
  background: var(--navy-dark);
}
.framework-tabs-nav {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) transparent;
}
.framework-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.framework-tab-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border-color: rgba(197, 155, 39, 0.3);
}
.framework-tab-btn.active {
  background: rgba(197, 155, 39, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(197, 155, 39, 0.15);
}
.framework-panel {
  display: none;
  animation: frameworkFadeIn 0.35s ease forwards;
}
.framework-panel.active {
  display: block;
}
@keyframes frameworkFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.framework-visual-frame {
  position: relative;
  width: 100%;
  background: #0A111E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  padding: 1rem;
}
.framework-visual-frame img,
.framework-visual-frame svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.framework-visual-frame iframe {
  width: 100%;
  max-width: 100%;
  display: block;
  border: none;
  border-radius: 8px;
}
@media (max-width: 640px) {
  .framework-visual-frame iframe {
    min-height: 440px !important;
  }
}
.framework-meta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .framework-meta-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .framework-visual-frame {
    padding: 0.6rem;
  }
}


/* ==========================================================================
   TIER-1 CONSULTING MOBILE DRAWER (MCKINSEY ACCORDION STANDARD)
   ========================================================================== */
.nav-drawer {
  background: #060B13 !important;
  border-right: 1px solid rgba(197, 155, 39, 0.25) !important;
  padding: 1.75rem 1.5rem !important;
}
.drawer-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin: 0 !important;
  padding: 0 !important;
}
.drawer-accordion-header {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: 100% !important;
  padding: 1.15rem 0.25rem !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  color: #F8FAFC !important;
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  text-align: left !important;
  line-height: 1.2 !important;
  transition: color 0.2s ease !important;
}
.drawer-accordion-header:hover,
.drawer-accordion.active .drawer-accordion-header {
  color: #E5C05B !important;
}
.drawer-accordion-chevron {
  width: 18px !important;
  height: 18px !important;
  stroke: #94A3B8 !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.2s ease !important;
  flex-shrink: 0 !important;
}
.drawer-accordion.active .drawer-accordion-chevron {
  transform: rotate(90deg) !important;
  stroke: #C59B27 !important;
}
.drawer-accordion-body {
  display: none !important;
  flex-direction: column !important;
  background: rgba(10, 18, 32, 0.75) !important;
  border-radius: 8px !important;
  border-left: 2px solid #C59B27 !important;
  margin: 0 0 1rem 0 !important;
  padding: 0.5rem 0 0.5rem 0.5rem !important;
}
.drawer-accordion.active .drawer-accordion-body {
  display: flex !important;
}
.drawer-accordion-link {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  color: #94A3B8 !important;
  text-decoration: none !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  padding: 0.65rem 0.85rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  transition: all 0.2s ease !important;
}
.drawer-accordion-link:last-child {
  border-bottom: none !important;
}
.drawer-accordion-link:hover,
.drawer-accordion-link:focus {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding-left: 1.1rem !important;
}
.drawer-direct-link {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 1.15rem 0.25rem !important;
  color: #F8FAFC !important;
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: color 0.2s ease !important;
}
.drawer-direct-link:hover {
  color: #E5C05B !important;
}

/* ==========================================================================
   STRATEGIC FRAMEWORKS CONTINUOUS VISUAL REEL (CAROUSEL / SLIDER)
   ========================================================================== */
.framework-reel-timeline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) transparent;
}
.framework-step-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.framework-step-btn .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: var(--text-white);
}
.framework-step-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border-color: rgba(197, 155, 39, 0.3);
}
.framework-step-btn.active {
  background: rgba(197, 155, 39, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 4px 18px rgba(197, 155, 39, 0.15);
}
.framework-step-btn.active .step-num {
  background: var(--gold-primary);
  color: #050B14;
  font-weight: 800;
}
.step-connector {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  user-select: none;
  flex-shrink: 0;
}

/* Framework Reel Wrapper & Viewport */
.framework-reel-wrapper {
  position: relative;
  width: 100%;
}
.framework-reel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.framework-reel-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.framework-reel-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  opacity: 0.35;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.framework-reel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.reel-slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.25rem 1rem;
}
.reel-slide-badge {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  font-family: var(--font-display);
}
.reel-slide-category {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Framework Top Middle Navigation Bar with Squeezed Executive Finding */
.framework-top-middle-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto 2.25rem auto;
  max-width: 920px;
  width: 100%;
}

.framework-middle-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 23, 42, 0.9);
  border: 1px solid rgba(197, 155, 39, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.framework-middle-arrow-btn:hover {
  background: var(--gold-primary, #C59B27);
  color: #060B13;
  border-color: var(--gold-light, #E5C05B);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.35);
}

.framework-squeezed-finding {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(90deg, rgba(14, 23, 42, 0.95) 0%, rgba(20, 32, 54, 0.95) 100%);
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: 40px;
  padding: 0.45rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  max-width: 720px;
  flex: 1;
  min-width: 0;
  transition: all 0.3s ease;
}

.finding-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #060B13;
  background: var(--gold-primary);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.finding-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .framework-top-middle-nav {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
  .framework-middle-arrow-btn {
    width: 38px;
    height: 38px;
  }
  .framework-squeezed-finding {
    padding: 0.35rem 0.75rem;
    gap: 0.5rem;
  }
  .finding-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
  }
  .finding-text {
    font-size: 0.78rem;
  }
}

/* Floating Navigation Arrows - Shifted to top middle */
.reel-nav-arrow {
  display: none !important;
}

/* Bottom Controls */
.framework-reel-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1.25rem;
}
.reel-counter {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-family: var(--font-display);
}
.reel-counter strong {
  color: var(--gold-light);
}
.reel-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.reel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.reel-dot:hover {
  background: rgba(197, 155, 39, 0.5);
}
.reel-dot.active {
  background: var(--gold-primary);
  width: 28px;
  border-radius: 12px;
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(197, 155, 39, 0.4);
}
.reel-bottom-nav {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .reel-nav-arrow {
    display: none;
  }
  .framework-reel-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .reel-bottom-nav {
    width: 100%;
    justify-content: space-between;
  }
  .framework-step-btn {
    padding: 0.6rem 0.95rem;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   CLIENT MARQUEE REEL (CONTINUOUS INFINITE TICKER)
   ========================================================================== */
.client-reel-section {
  position: relative;
}
.client-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  padding: 1rem 0;
}
.client-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: clientMarqueeScroll 65s linear infinite;
  will-change: transform;
}
.client-marquee-container:hover .client-marquee-track {
  animation-play-state: paused;
}
.client-logo-card {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.client-logo-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 155, 39, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(197, 155, 39, 0.12);
}
.client-logo-img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.92) contrast(1.05);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.client-logo-card:hover .client-logo-img {
  filter: brightness(1.15) contrast(1.1);
  transform: scale(1.06);
}

@keyframes clientMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   TIER-1 MCKINSEY CINEMATIC REELS (OFFERINGS & INDUSTRIES)
   ========================================================================== */
.cinematic-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cinematic-section-header .cinematic-reel-controls {
  display: flex !important;
}

.cinematic-reel-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cinematic-counter {
  display: none !important;
}

.cinematic-arrows {
  display: flex;
  gap: 0.6rem;
}

.cinematic-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cinematic-arrow-btn:hover {
  background: var(--gold-primary, #C59B27);
  color: #060B13;
  border-color: var(--gold-primary, #C59B27);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.35);
}

.cinematic-arrow-btn:active {
  transform: scale(0.96);
}

/* Cinematic Viewport & Track */
.cinematic-reel-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  padding: 0.5rem 0 1.25rem 0;
  cursor: grab;
}

.cinematic-reel-viewport::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.cinematic-reel-viewport:active {
  cursor: grabbing;
}

.cinematic-reel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 4px;
}

/* Cinematic Card with Overlaid Text */
.cinematic-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: clamp(410px, 48vh, 470px);
  width: 380px;
  flex: 0 0 380px;
  scroll-snap-align: start;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #090E17;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.cinematic-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 39, 0.5);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.6), 0 0 24px rgba(197, 155, 39, 0.15);
}

.cinematic-card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.cinematic-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.cinematic-card:hover .cinematic-card-media img {
  transform: scale(1.08);
  filter: brightness(0.95);
}

/* Executive Gradient Scrim for 100% Legibility */
.cinematic-card-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.38) 0%, rgba(6, 11, 19, 0.15) 28%, rgba(6, 11, 19, 0.85) 68%, rgba(6, 11, 19, 0.98) 100%);
  transition: opacity 0.4s ease;
}

.cinematic-card:hover .cinematic-card-scrim {
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.25) 0%, rgba(6, 11, 19, 0.1) 28%, rgba(6, 11, 19, 0.88) 66%, rgba(6, 11, 19, 1) 100%);
}

/* Overlaid Content Architecture */
.cinematic-card-overlay {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.75rem;
}

.cinematic-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.cinematic-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light, #E5C05B);
  background: rgba(6, 11, 19, 0.82);
  border: 1px solid rgba(197, 155, 39, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.cinematic-index,
.sector-matrix-index {
  display: none !important;
}

.cinematic-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cinematic-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.cinematic-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.cinematic-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light, #E5C05B);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.cinematic-card:hover .cinematic-action {
  gap: 0.75rem;
  color: #FFFFFF;
}

.cinematic-arrow {
  transition: transform 0.3s ease;
}

.cinematic-card:hover .cinematic-arrow {
  transform: translateX(4px);
}

/* Progress Indicator */
.cinematic-progress-bar {
  width: 100%;
  max-width: 320px;
  margin: 1.75rem auto 0 auto;
}

.cinematic-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.cinematic-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary, #C59B27), var(--gold-light, #E5C05B));
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive Cinematic Styles */
@media (max-width: 1024px) {
  .cinematic-card {
    width: 320px;
    flex: 0 0 320px;
    height: 420px;
  }
}

@media (max-width: 768px) {
  .cinematic-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .cinematic-card {
    width: 82vw;
    flex: 0 0 82vw;
    height: 410px;
  }
  .cinematic-card-overlay {
    padding: 1.35rem;
  }
  .cinematic-title {
    font-size: 1.22rem;
  }
  .cinematic-desc {
    font-size: 0.84rem;
  }
}

/* ==========================================================================
   HERO TRINITY BANNER & PILLAR CINEMATIC CARDS
   ========================================================================== */
.hero-trinity-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1rem;
  background: rgba(6, 11, 19, 0.75);
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.trinity-word {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.trinity-word.active {
  color: var(--gold-light, #E5C05B);
  text-shadow: 0 0 12px rgba(229, 192, 91, 0.4);
}

.trinity-sep {
  color: rgba(197, 155, 39, 0.5);
  font-size: 0.85rem;
}

.hero-gold-glow {
  color: var(--gold-light, #E5C05B);
  background: linear-gradient(135deg, #FFFFFF 30%, #E5C05B 80%, #C59B27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3-PILLAR FULL CINEMATIC CARDS (INCEPT, INNOVATE, INTEGRATE) */
.capability-cinematic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}

.pillar-cinematic-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: clamp(450px, 52vh, 520px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #070D18;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.pillar-cinematic-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 155, 39, 0.6);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.65), 0 0 28px rgba(197, 155, 39, 0.2);
}

.pillar-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.pillar-media-wrap img,
.pillar-media-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  filter: brightness(0.9);
}

.pillar-cinematic-card:hover .pillar-media-wrap img,
.pillar-cinematic-card:hover .pillar-media-wrap video {
  transform: scale(1.08);
  filter: brightness(0.98);
}

.pillar-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.38) 0%, rgba(6, 11, 19, 0.15) 25%, rgba(6, 11, 19, 0.85) 68%, rgba(6, 11, 19, 0.98) 100%);
  transition: opacity 0.4s ease;
}

.pillar-cinematic-card:hover .pillar-scrim {
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.25) 0%, rgba(6, 11, 19, 0.1) 25%, rgba(6, 11, 19, 0.88) 66%, rgba(6, 11, 19, 1) 100%);
}

.pillar-overlay {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
}

.pillar-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.pillar-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light, #E5C05B);
  background: rgba(6, 11, 19, 0.85);
  border: 1px solid rgba(197, 155, 39, 0.4);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.pillar-index {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

.pillar-overlay-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.pillar-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.pillar-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light, #E5C05B);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.pillar-cinematic-card:hover .pillar-action {
  gap: 0.75rem;
  color: #FFFFFF;
}

.pillar-arrow {
  transition: transform 0.3s ease;
}

.pillar-cinematic-card:hover .pillar-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   VERIFIED TRANSFORMATION OUTCOMES SECTION (RELOCATED NUMBERS)
   ========================================================================== */
.impact-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.impact-metric-card {
  background: linear-gradient(180deg, rgba(14, 22, 36, 0.75) 0%, rgba(8, 14, 24, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid var(--gold-primary);
  border-radius: 12px;
  padding: 1.85rem 1.65rem 1.6rem 1.65rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.impact-metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 39, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 155, 39, 0.12);
}

.impact-stat-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.impact-stat {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
}

.impact-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-light, #E5C05B);
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid rgba(197, 155, 39, 0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

.impact-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.4rem 0;
}

.impact-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
}

.impact-action {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-primary, #C59B27);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.impact-metric-card:hover .impact-action {
  color: #FFFFFF;
}

/* RESPONSIVE BREAKPOINTS FOR PILLARS AND METRICS */
@media (max-width: 1024px) {
  .capability-cinematic-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pillar-cinematic-card {
    height: 400px;
  }
  .impact-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .pillar-cinematic-card {
    height: 420px;
  }
  .pillar-overlay {
    padding: 1.35rem;
  }
  .pillar-title {
    font-size: 1.55rem;
  }
  .impact-metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-trinity-banner {
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
  }
  .trinity-word {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   TIER-1 MCKINSEY TOP-DOWN CAREERS LIST
   ========================================================================== */
.careers-top-down-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem auto 3.5rem auto;
  max-width: 1080px;
}

.career-row-card {
  background: linear-gradient(180deg, rgba(14, 22, 36, 0.75) 0%, rgba(8, 14, 24, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold-primary, #C59B27);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.career-row-card:hover {
  transform: translateX(6px);
  border-color: rgba(197, 155, 39, 0.5);
  background: linear-gradient(180deg, rgba(18, 28, 46, 0.85) 0%, rgba(10, 18, 30, 0.98) 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 155, 39, 0.1);
}

.career-row-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.career-row-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.career-row-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light, #E5C05B);
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid rgba(197, 155, 39, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.career-row-meta {
  display: flex;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.career-row-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.career-row-summary {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
  max-width: 780px;
}

.career-row-action {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .career-row-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .career-row-action {
    width: 100%;
  }
  .career-row-action .btn {
    width: 100%;
    text-align: center;
    display: block;
  }
}



/* ==========================================================================
   MCKINSEY MINIMALIST DESIGN SYSTEM & COMPACT EXECUTIVE CONTROLS
   ========================================================================== */

/* Universal Section Vertical Rhythm */
.section {
  padding: clamp(3rem, 5vw, 4.5rem) 0 !important;
}

/* Restrained, Minimalist Button System (More With Less) */
.btn {
  border-radius: 6px !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif) !important;
  font-weight: 600 !important;
  font-size: 0.86rem !important;
  letter-spacing: 0.02em !important;
  padding: 0.65rem 1.45rem !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

.btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.btn-gold {
  background: var(--gold-primary, #C59B27) !important;
  color: #060B13 !important;
  border: 1px solid var(--gold-primary, #C59B27) !important;
}

.btn-gold:hover {
  background: var(--gold-light, #E5C05B) !important;
  border-color: var(--gold-light, #E5C05B) !important;
  color: #060B13 !important;
}

.btn-gold-sm {
  background: var(--gold-primary, #C59B27) !important;
  color: #060B13 !important;
  padding: 0.45rem 1rem !important;
  font-size: 0.8rem !important;
  border-radius: 4px !important;
  border: 1px solid var(--gold-primary, #C59B27) !important;
}

.btn-gold-sm:hover {
  background: var(--gold-light, #E5C05B) !important;
  border-color: var(--gold-light, #E5C05B) !important;
}

.btn-outline {
  background: transparent !important;
  color: #E2E8F0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--gold-primary, #C59B27) !important;
  color: var(--gold-light, #E5C05B) !important;
}

.btn-navy-sm {
  background: rgba(10, 18, 32, 0.8) !important;
  color: #CBD5E1 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 0.45rem 1rem !important;
  font-size: 0.8rem !important;
  border-radius: 4px !important;
}

.btn-navy-sm:hover {
  background: rgba(15, 25, 45, 1) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

/* Minimalist Card Action Links (Replaces Noisy Hover Buttons) */
.cinematic-action {
  font-size: 0.76rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 700 !important;
  color: var(--gold-light, #E5C05B) !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  transition: color 0.25s ease, gap 0.25s ease !important;
}

.cinematic-card:hover .cinematic-action {
  color: #FFFFFF !important;
  gap: 0.65rem !important;
}

/* Subtle, Understated Card Hovering (No Jarring Jumping) */
.cinematic-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.cinematic-card:hover {
  border-color: rgba(197, 155, 39, 0.45) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45) !important;
  transform: none !important;
}

/* Segmented Executive Navigator Controls (Space Optimization) */
.segmented-nav-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  scrollbar-width: none;
}

.segmented-nav-bar::-webkit-scrollbar {
  display: none;
}

.segmented-nav-btn {
  background: transparent;
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.segmented-nav-btn:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.segmented-nav-btn.active {
  background: rgba(197, 155, 39, 0.1);
  color: var(--gold-light, #E5C05B);
  border-color: var(--gold-primary, #C59B27);
}

/* Tab Panels */
.segmented-panel {
  display: none;
  animation: segmentedFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.segmented-panel.active {
  display: block;
}

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

/* Executive Research Index Table (Space Optimization for Insights) */
.research-archive-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-surface, #0A111E);
}

.research-archive-table th {
  background: rgba(6, 11, 19, 0.8);
  color: var(--gold-primary, #C59B27);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.research-archive-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #CBD5E1;
  font-size: 0.88rem;
  vertical-align: middle;
}

.research-archive-table tr:last-child td {
  border-bottom: none;
}

.research-archive-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: #FFFFFF;
}

/* Tier-1 Consulting Evidence Rail & KPI Stat Badges */
.consulting-evidence-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2.25rem 0 0 0;
  padding: 1.5rem 1.75rem;
  background: rgba(10, 18, 32, 0.65);
  border: 1px solid rgba(197, 155, 39, 0.25);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}
.consulting-evidence-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-left: 2px solid var(--gold-primary);
  padding-left: 1rem;
}
.consulting-evidence-metric {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.consulting-evidence-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ==========================================================================
   TOP-TIER CONSULTING MINIMALIST BUTTON SYSTEM (SLEEK & REFINED)
   ========================================================================== */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-main) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.035em !important;
  padding: 0.52rem 1.35rem !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  line-height: 1.25 !important;
}

.btn-gold {
  background: var(--gold-primary, #C59B27) !important;
  color: #060B13 !important;
  border-color: #C59B27 !important;
}

.btn-gold:hover {
  background: #D4AF37 !important;
  border-color: #D4AF37 !important;
  color: #060B13 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.25) !important;
}

.btn-gold-sm {
  background: var(--gold-primary, #C59B27) !important;
  color: #060B13 !important;
  border-color: #C59B27 !important;
  padding: 0.38rem 0.95rem !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  border-radius: 3px !important;
}

.btn-gold-sm:hover {
  background: #D4AF37 !important;
  border-color: #D4AF37 !important;
  color: #060B13 !important;
  transform: translateY(-1px) !important;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03) !important;
  color: #F8FAFC !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(8px) !important;
}

.btn-outline:hover {
  border-color: rgba(197, 155, 39, 0.6) !important;
  color: var(--gold-light, #E5C05B) !important;
  background: rgba(197, 155, 39, 0.06) !important;
  transform: translateY(-1px) !important;
}

.btn-navy-sm {
  background: rgba(10, 18, 32, 0.85) !important;
  color: #F8FAFC !important;
  border: 1px solid rgba(197, 155, 39, 0.3) !important;
  padding: 0.38rem 0.95rem !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  border-radius: 3px !important;
}

.btn-navy-sm:hover {
  background: rgba(15, 25, 45, 1) !important;
  border-color: rgba(197, 155, 39, 0.6) !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
}

/* ==========================================================================
   VARIATION 1: EXECUTIVE SECTOR ARCHITECTURE MATRIX (HOMEPAGE)
   ========================================================================== */
.sector-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 1100px) {
  .sector-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sector-matrix-grid {
    grid-template-columns: 1fr;
  }
}

.sector-matrix-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  overflow: hidden;
  background: #060B15;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-matrix-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.sector-matrix-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.68) contrast(1.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.sector-matrix-card:hover .sector-matrix-img {
  transform: scale(1.06);
  filter: brightness(0.82) contrast(1.15);
}

.sector-matrix-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg, 
    rgba(6, 11, 21, 0.55) 0%, 
    rgba(6, 11, 21, 0.82) 45%, 
    rgba(6, 11, 21, 0.98) 100%
  );
  transition: background 0.3s ease;
  pointer-events: none;
}

.sector-matrix-card:hover .sector-matrix-scrim {
  background: linear-gradient(
    180deg, 
    rgba(6, 11, 21, 0.42) 0%, 
    rgba(6, 11, 21, 0.74) 45%, 
    rgba(6, 11, 21, 0.96) 100%
  );
}

.sector-matrix-content {
  position: relative;
  z-index: 3;
  padding: 1.85rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.sector-matrix-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 4;
}

.sector-matrix-card:hover {
  border-color: rgba(197, 155, 39, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.sector-matrix-card:hover::before {
  background: var(--gold-primary, #C59B27);
}

.sector-matrix-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.85rem;
}

.sector-matrix-num {
  display: none !important;
}

.sector-matrix-index {
  color: var(--gold-light, #E5C05B);
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid rgba(197, 155, 39, 0.25);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sector-matrix-title {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.sector-matrix-kpi {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--cyan-accent, #38BDF8);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.sector-matrix-desc {
  color: #CBD5E1;
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.sector-matrix-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-light, #E5C05B);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.sector-matrix-card:hover .sector-matrix-link {
  color: #FFFFFF;
  gap: 0.65rem;
}

/* ==========================================================================
   VARIATION 2: CHRONOLOGICAL MILESTONE HORIZON (ABOUT.HTML TIMELINE)
   ========================================================================== */
.timeline-horizon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.timeline-horizon-grid::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 155, 39, 0.3) 0%, rgba(197, 155, 39, 0.7) 50%, rgba(56, 189, 248, 0.5) 100%);
  z-index: 1;
}

@media (max-width: 980px) {
  .timeline-horizon-grid {
    grid-template-columns: 1fr;
  }
  .timeline-horizon-grid::before {
    display: none;
  }
}

.timeline-milestone-node {
  position: relative;
  z-index: 2;
  background: #080E1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1.85rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.timeline-milestone-node:hover {
  border-color: rgba(197, 155, 39, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.timeline-node-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #040810;
  border: 2px solid var(--gold-primary, #C59B27);
  color: var(--gold-light, #E5C05B);
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.timeline-node-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.timeline-node-phase {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary, #C59B27);
  margin-bottom: 0.85rem;
}

.timeline-node-title {
  color: #F8FAFC;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.timeline-node-desc {
  color: var(--text-muted, #94A3B8);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   VARIATION 3: PRINCIPLES MONOGRAPH GRID (CAREERS.HTML)
   ========================================================================== */
.principles-monograph-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .principles-monograph-grid {
    grid-template-columns: 1fr;
  }
}

.principles-monograph-card {
  background: #070E1A;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--gold-primary, #C59B27);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.principles-monograph-card:hover {
  background: #0B1324;
  border-color: rgba(197, 155, 39, 0.4);
  border-left-color: var(--gold-light, #E5C05B);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.monograph-index {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary, #C59B27);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.monograph-title {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.monograph-quote {
  font-family: var(--font-main, sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-light, #E5C05B);
  line-height: 1.45;
  margin-bottom: 0.85rem;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(197, 155, 39, 0.4);
}

.monograph-desc {
  color: var(--text-muted, #94A3B8);
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   VARIATION 4: TECHNICAL BLUEPRINT SPECIFICATION REEL (INDUSTRY PAGES)
   ========================================================================== */
.cinematic-capability-reel-section .cinematic-card {
  height: clamp(340px, 40vh, 380px) !important;
  width: 420px !important;
  flex: 0 0 420px !important;
  border-radius: 8px !important;
}

.cinematic-capability-reel-section .cinematic-card-scrim {
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.4) 0%, rgba(6, 11, 19, 0.75) 50%, rgba(6, 11, 19, 0.98) 100%) !important;
}

/* ==========================================================================
   EXECUTIVE SPLIT SHOWCASE (FORCEPOINT-STYLE ASYMMETRIC 3D DATA CONDUIT)
   ========================================================================== */
.executive-split-showcase-section {
  background: #060B15;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.executive-split-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 10%;
  width: 55vw;
  height: 100%;
  background: radial-gradient(circle at 65% 45%, rgba(0, 180, 255, 0.07) 0%, rgba(197, 155, 39, 0.04) 35%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.executive-split-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
  min-height: 520px;
  position: relative;
  z-index: 2;
}

.split-showcase-content {
  padding: clamp(3rem, 5.5vw, 5.5rem) clamp(1.75rem, 4vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.split-showcase-kicker {
  font-family: var(--font-mono, monospace);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary, #C59B27);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.split-showcase-kicker::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E5FF;
  box-shadow: 0 0 10px #00E5FF;
}

.split-showcase-title {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem 0;
}

.split-showcase-subtitle {
  color: var(--gold-light, #E5C05B);
  font-family: var(--font-main);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  max-width: 620px;
}

.split-showcase-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.split-spec-item {
  display: flex;
  flex-direction: column;
}

.split-spec-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #F8FAFC;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.split-spec-desc {
  font-family: var(--font-main, sans-serif);
  font-size: 0.8rem;
  color: var(--text-muted, #94A3B8);
  line-height: 1.4;
}

.split-showcase-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.split-showcase-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060B15;
}

.split-showcase-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.85) 28%, black 45%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.85) 28%, black 45%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.executive-split-showcase-section:hover .split-showcase-media,
.page-header.split-hero:hover .split-showcase-media {
  transform: scale(1.02);
}

.split-showcase-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    linear-gradient(90deg, #060B15 0%, rgba(6, 11, 21, 0) 22%),
    linear-gradient(180deg, #060B15 0%, transparent 10%, transparent 90%, #060B15 100%);
}

/* Page Header Split Hero Variation */
.page-header.split-hero {
  padding: 0 !important;
  background: #060B15 !important;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header.split-hero .page-header-video {
  display: none !important;
}

.page-header.split-hero .split-showcase-content {
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 3.5vw, 3.5rem);
}

@media (max-width: 992px) {
  .executive-split-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-showcase-visual {
    min-height: 320px;
    max-height: 420px;
    order: -1;
  }
  .split-showcase-media {
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  }
  .split-showcase-visual::after {
    background: linear-gradient(180deg, rgba(6, 11, 21, 0) 60%, #060B15 100%);
  }
  .split-showcase-content {
    padding: 2.5rem 1.5rem 3.5rem;
  }
}

/* ==========================================================================
   CINEMATIC PAGE ENTRANCE & SCROLL-DELAYED OPENING SYSTEM
   Top-Tier McKinsey Quiet Luxury & Hanwha Cinematic Motion Experience
   ========================================================================== */

/* 1. Cinematic Opening Shutter / Atmospheric Lens Beam */
.cinematic-opening-beam {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 155, 39, 0.4) 15%, #E5C05B 50%, rgba(56, 189, 248, 0.9) 85%, transparent 100%);
  box-shadow: 0 0 16px rgba(229, 192, 91, 0.75), 0 0 32px rgba(56, 189, 248, 0.45);
  z-index: 10005;
  pointer-events: none;
  transform-origin: center;
  animation: cinematicBeamSweep 2.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cinematicBeamSweep {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  30% {
    transform: scaleX(0.7);
    opacity: 1;
  }
  75% {
    transform: scaleX(1);
    opacity: 0.85;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

/* 2. Initial Page Open Sequence */
body {
  opacity: 1 !important;
}

body.cinematic-loaded {
  opacity: 1;
}

/* Hero Cinematic Stagger on Open */
body.cinematic-loaded .hero-kicker,
body.cinematic-loaded .hero-tagline,
body.cinematic-loaded .hero-badge,
body.cinematic-loaded .hero-eyebrow,
body.cinematic-loaded .narrative-hero .hero-kicker {
  animation: cinematicFadeDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
}

body.cinematic-loaded .hero-title,
body.cinematic-loaded h1,
body.cinematic-loaded .narrative-hero h1,
body.cinematic-loaded .hanwha-slide-title,
body.cinematic-loaded .page-header-title {
  animation: cinematicFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

body.cinematic-loaded .hero-description,
body.cinematic-loaded .hero-lead,
body.cinematic-loaded .hero-subtitle,
body.cinematic-loaded .narrative-hero p,
body.cinematic-loaded .hanwha-slide-desc,
body.cinematic-loaded .page-header-subtitle {
  animation: cinematicFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.05s both;
}

body.cinematic-loaded .hero-actions,
body.cinematic-loaded .hero-cta,
body.cinematic-loaded .hero-meta-bar,
body.cinematic-loaded .hero-stats,
body.cinematic-loaded .hero-cta-group {
  animation: cinematicFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.45s both;
}

@keyframes cinematicFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes cinematicFadeUp {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.985);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* 3. Scroll-Driven Cinematic Delayed Opening System */
.cinematic-scroll-item {
  opacity: 0.15;
  transform: translateY(26px) scale(0.985);
  filter: blur(2px);
  transition: 
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  transition-delay: var(--item-delay, 0.25s);
  will-change: opacity, transform, filter;
  position: relative;
}

.cinematic-scroll-item.is-opened {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Subtle luxury edge shimmer on delayed open */
.cinematic-scroll-item.is-opened::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 155, 39, 0.6) 50%, transparent 100%);
  opacity: 0;
  animation: luxuryShimmerOpen 1.8s cubic-bezier(0.16, 1, 0.3, 1) var(--item-delay, 0.25s) forwards;
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}

@keyframes luxuryShimmerOpen {
  0% {
    opacity: 0;
    transform: scaleX(0.1);
  }
  40% {
    opacity: 1;
    transform: scaleX(0.9);
  }
  100% {
    opacity: 0.35;
    transform: scaleX(1);
  }
}

/* Section Header Crisp Luminous Presentation (Zero Fade/Blur) */
.cinematic-section-header {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: opacity 0.3s ease;
}

.cinematic-section-header.is-opened {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Accessibility: Full Respect for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  body,
  .cinematic-scroll-item,
  .cinematic-section-header,
  body.cinematic-loaded .hero-kicker,
  body.cinematic-loaded .hero-title,
  body.cinematic-loaded .hero-description,
  body.cinematic-loaded .hero-actions {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
  .cinematic-opening-beam {
    display: none !important;
  }
}

/* ==========================================================================
   COMBINED & SHUFFLED KNOWLEDGE REEL (Whitepapers, Case Studies, Insights)
   ========================================================================== */
.combined-knowledge-reel-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #060B14;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.reel-asset-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary, #C59B27);
  background: rgba(10, 18, 32, 0.9);
  border: 1px solid rgba(197, 155, 39, 0.45);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.reel-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  background: rgba(197, 155, 39, 0.22);
  border: 1px solid var(--gold-primary, #C59B27);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  margin-top: 0.5rem;
  align-self: flex-start;
}

.reel-download-btn:hover {
  background: var(--gold-primary, #C59B27);
  color: #060B13;
  box-shadow: 0 6px 18px rgba(197, 155, 39, 0.35);
  transform: translateY(-2px);
}

.reel-bottom-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
}
