/* ============================================
   BNLV GROUP — BMS Enterprise Platform
   Main CSS · v1.0 · May 2026
   Design Tokens & Global Layout
   ============================================ */

/* === DESIGN TOKENS === */
:root {
  /* BNLV Brand Colours */
  --navy:          #0D1B2A;
  --navy-mid:      #12243A;
  --navy-light:    #162D47;
  --gold:          #B8960C;
  --gold-light:    #D4AF37;
  --gold-pale:     #F5EBC8;
  --cream:         #F8F5EE;
  --body-text:     #2C3A4A;
  --muted:         #6B7A8D;
  --ash:           #C8D0DA;
  --ash-light:     #E8EBF0;

  /* Company Brand Colours */
  --bms:           #1A6B5A;
  --bms-light:     #E6F4F1;
  --bms-dark:      #0E4038;
  --nid:           #7C3D8C;
  --nid-light:     #F3EDF6;
  --nid-dark:      #4A2353;
  --lim:           #C47A1A;
  --lim-light:     #FBF2E3;
  --lim-dark:      #7A4A0A;
  --vih:           #1A5C99;
  --vih-light:     #E6EEF7;
  --vih-dark:      #0E3A63;

  /* Semantic */
  --success:       #1A6B5A;
  --warning:       #C47A1A;
  --danger:        #A32D2D;
  --info:          #1A5C99;

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs:      4px;
  --space-sm:      8px;
  --space-md:      16px;
  --space-lg:      24px;
  --space-xl:      40px;
  --space-2xl:     64px;
  --space-3xl:     96px;

  /* Radii */
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --radius-pill:   100px;

  /* Shadows */
  --shadow-sm:     0 1px 4px rgba(13,27,42,0.08);
  --shadow-md:     0 4px 16px rgba(13,27,42,0.10);
  --shadow-lg:     0 8px 32px rgba(13,27,42,0.14);
  --shadow-xl:     0 16px 56px rgba(13,27,42,0.18);
  --shadow-gold:   0 4px 24px rgba(184,150,12,0.15);

  /* Layout */
  --container-max: 1200px;
  --nav-height:    64px;

  /* Transitions */
  --ease-fast:     0.15s ease;
  --ease-med:      0.25s ease;
  --ease-slow:     0.4s ease;
  --ease-spring:   0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-text);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === ACCESSIBILITY === */
.skip-nav {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: 12px 24px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-nav:focus { top: 0; }

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }
h5 { font-size: 15px; font-family: var(--font-body); font-weight: 600; }
h6 { font-size: 13px; font-family: var(--font-body); font-weight: 600; }

p { line-height: 1.7; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-fast);
}

em { font-style: italic; }

strong { font-weight: 600; }

code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--ash-light);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

/* === LAYOUT === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--space-3xl) 0;
}

.bg-cream { background: var(--cream); }
.bg-navy  { background: var(--navy); }
.bg-ash   { background: var(--ash-light); }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: linear-gradient(90deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-bottom: 1px solid rgba(184,150,12,0.2);
  padding: 10px 32px;
  position: relative;
  z-index: 200;
}
.announcement-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.announcement-inner i { color: var(--gold-light); font-size: 15px; }
.ann-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ann-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--ease-fast);
}
.ann-close:hover { color: rgba(255,255,255,0.8); }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 150;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--nav-height);
  transition: box-shadow var(--ease-med);
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.logo-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  animation: shimmer 3s ease-in-out infinite;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-brand-primary {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
.nav-brand-secondary {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--ease-fast);
  border: none;
  background: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: #ffffff; background: rgba(255,255,255,0.07); }

/* Dropdown */
.nav-dropdown-group { position: relative; }
.nav-chevron { font-size: 12px; transition: transform var(--ease-fast); }
.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--ash-light);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-dropdown-group:hover .nav-dropdown,
.nav-has-dropdown[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background var(--ease-fast);
}
.nav-dropdown-item:hover { background: var(--cream); }

.ndi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ndi-icon.bms { background: var(--bms-light); color: var(--bms); }
.ndi-icon.nid { background: var(--nid-light); color: var(--nid); }
.ndi-icon.lim { background: var(--lim-light); color: var(--lim); }
.ndi-icon.vih { background: var(--vih-light); color: var(--vih); }

.ndi-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.ndi-tag  { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-link-app {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 7px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all var(--ease-fast);
}
.nav-link-app:hover { color: #fff; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--ease-fast);
  letter-spacing: 0.2px;
}
.btn-nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-nav-cta i { font-size: 14px; }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all var(--ease-fast);
}
.nav-mobile-toggle:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 140;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner { padding: 24px 24px 48px; }
.mobile-section-label { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 0 12px; margin-bottom: 6px; }
.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--ease-fast);
}
.mobile-link i { font-size: 18px; }
.mobile-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.mobile-cta-group { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-cta-primary { display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--navy); font-weight: 700; padding: 14px; border-radius: var(--radius-md); font-size: 14px; text-decoration: none; }
.mobile-cta-secondary { display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); padding: 13px; border-radius: var(--radius-md); font-size: 14px; text-decoration: none; }

/* === SCROLL PROGRESS === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  z-index: 999;
  transition: width 0.05s linear;
}

/* === HERO === */
.hero {
  background: var(--navy);
  padding: var(--space-3xl) 0 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 { top: -100px; right: -80px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(184,150,12,0.07) 0%, transparent 70%); }
.hero-orb-2 { bottom: -60px; left: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(26,107,90,0.07) 0%, transparent 70%); }
.hero-orb-3 { top: 40%; left: 40%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(26,92,153,0.05) 0%, transparent 70%); }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding-bottom: var(--space-2xl);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184,150,12,0.1);
  border: 1px solid rgba(184,150,12,0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-heading {
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.5px;
}
.hero-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subheading {
  font-size: 16px;
  color: rgba(255,255,255,0.58);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--ease-med);
  letter-spacing: 0.2px;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  transition: all var(--ease-fast);
}
.btn-hero-secondary:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); color: #fff; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.trust-item i { color: var(--gold); font-size: 14px; }
.trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }

/* Hero visual */
.hero-visual { display: flex; justify-content: flex-end; position: relative; }
.hero-card-stack { position: relative; width: 100%; max-width: 480px; }

.hc-card {
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 24px;
}
.hc-card-main { position: relative; z-index: 3; }
.hc-card-back-1 {
  position: absolute;
  inset: 0;
  transform: rotate(2deg) translate(6px, 6px);
  z-index: 2;
  border-color: rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
}
.hc-card-back-2 {
  position: absolute;
  inset: 0;
  transform: rotate(4deg) translate(12px, 12px);
  z-index: 1;
  border-color: rgba(255,255,255,0.03);
  background: rgba(255,255,255,0.015);
}

.hc-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hc-logo-mark { width: 36px; height: 36px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--navy); }
.hc-company { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.hc-subtitle { font-size: 11px; color: rgba(255,255,255,0.35); }
.hc-live { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4); }
.live-dot { width: 6px; height: 6px; background: #2ecc71; border-radius: 50%; animation: pulse-dot 1.5s ease-in-out infinite; }

.hc-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.hc-metric { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 12px; border: 1px solid rgba(255,255,255,0.06); }
.hcm-val { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: #fff; line-height: 1; }
.hcm-label { font-size: 10px; color: rgba(255,255,255,0.35); margin: 4px 0; }
.hcm-change { font-size: 10px; font-weight: 600; display: flex; align-items: center; gap: 3px; }
.hcm-change.up { color: #52d08e; }
.hcm-change i { font-size: 10px; }

.hc-chart-preview { display: flex; align-items: flex-end; gap: 4px; height: 72px; background: rgba(255,255,255,0.03); border-radius: 10px; padding: 10px 12px; margin-bottom: 16px; }
.hcp-bar { flex: 1; border-radius: 3px 3px 0 0; opacity: 0.75; transition: opacity 0.2s; min-height: 6px; }
.hcp-bar:hover { opacity: 1; }

.hc-companies-row { display: flex; gap: 8px; flex-wrap: wrap; }
.hcc-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; padding: 5px 10px; border-radius: var(--radius-pill); }
.hcc-badge.bms { background: rgba(26,107,90,0.2); color: #5fd8b8; border: 1px solid rgba(26,107,90,0.3); }
.hcc-badge.nid { background: rgba(124,61,140,0.2); color: #d4a0e0; border: 1px solid rgba(124,61,140,0.3); }
.hcc-badge.lim { background: rgba(196,122,26,0.2); color: #f0c070; border: 1px solid rgba(196,122,26,0.3); }
.hcc-badge.vih { background: rgba(26,92,153,0.2); color: #80b8f0; border: 1px solid rgba(26,92,153,0.3); }

/* Stats band */
.hero-stats-band {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; flex: 1; min-width: 100px; }
.stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* === MARQUEE === */
.marquee-band {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--navy);
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-sep { margin: 0 24px; opacity: 0.5; }

/* === SECTION HEADERS === */
.section-header { margin-bottom: var(--space-2xl); max-width: 680px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-eyebrow.gold { color: var(--gold-light); }

.section-title { margin-bottom: 12px; }
.section-title.light { color: #ffffff; }
.section-title em { font-style: italic; color: var(--gold-light); }

.section-desc { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 580px; }
.section-desc.light { color: rgba(255,255,255,0.5); }

.section-header.light .section-desc { color: rgba(255,255,255,0.5); }

/* === COMPANIES GRID === */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.company-card {
  border: 1px solid var(--ash-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--ease-med);
  background: #fff;
}
.company-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--ash);
}

.cc-accent {
  height: 4px;
}
.cc-accent.bms { background: var(--bms); }
.cc-accent.nid { background: var(--nid); }
.cc-accent.lim { background: var(--lim); }
.cc-accent.vih { background: var(--vih); }

.cc-body { padding: 24px; flex: 1; }

.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.cc-icon.bms { background: var(--bms-light); color: var(--bms); }
.cc-icon.nid { background: var(--nid-light); color: var(--nid); }
.cc-icon.lim { background: var(--lim-light); color: var(--lim); }
.cc-icon.vih { background: var(--vih-light); color: var(--vih); }

.cc-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 6px; }
.cc-eyebrow.bms { color: var(--bms); }
.cc-eyebrow.nid { color: var(--nid); }
.cc-eyebrow.lim { color: var(--lim); }
.cc-eyebrow.vih { color: var(--vih); }

.cc-name { font-size: 17px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.cc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

.cc-services { display: flex; flex-wrap: wrap; gap: 6px; }
.cc-service-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  background: var(--ash-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}

.cc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--ash-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all var(--ease-fast);
  background: #fff;
}
.cc-footer:hover { background: var(--cream); }
.cc-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ash-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: all var(--ease-med);
}
.company-card:hover .cc-arrow { background: var(--navy); color: #fff; transform: translateX(3px); }

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.svc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--ash-light);
  transition: all var(--ease-med);
}
.svc-card:hover { border-color: var(--gold); box-shadow: 0 4px 24px rgba(184,150,12,0.1); transform: translateY(-2px); }
.svc-icon-wrap { font-size: 24px; margin-bottom: 12px; }
.svc-icon-wrap.bms { color: var(--bms); }
.svc-icon-wrap.nid { color: var(--nid); }
.svc-icon-wrap.lim { color: var(--lim); }
.svc-icon-wrap.vih { color: var(--vih); }
.svc-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.svc-co { font-size: 10px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; margin-bottom: 10px; }
.svc-co.bms { color: var(--bms); }
.svc-co.nid { color: var(--nid); }
.svc-co.lim { color: var(--lim); }
.svc-co.vih { color: var(--vih); }
.svc-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* === WHY GRID === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--ease-med);
}
.why-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(184,150,12,0.2); }
.why-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: rgba(184,150,12,0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.why-icon { font-size: 24px; color: var(--gold); margin-bottom: 12px; }
.why-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.why-desc { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; }

/* === PROCESS === */
.process-timeline { position: relative; }
.process-line {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--ash) 100%);
  opacity: 0.3;
}
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.process-step { flex: 1; display: flex; flex-direction: column; align-items: center; }
.ps-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.ps-content { text-align: center; padding: 0 12px; }
.ps-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.ps-desc { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.ps-duration { font-size: 11px; color: var(--gold); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 4px; }

/* === PORTFOLIO === */
.portfolio-filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pf-tab {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ash);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--ease-fast);
}
.pf-tab.active, .pf-tab:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.port-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--ash-light);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: all var(--ease-med);
}
.port-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.port-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.port-visual.bms { background: var(--bms-light); color: rgba(26,107,90,0.35); }
.port-visual.nid { background: var(--nid-light); color: rgba(124,61,140,0.3); }
.port-visual.lim { background: var(--lim-light); color: rgba(196,122,26,0.3); }
.port-visual.vih { background: var(--vih-light); color: rgba(26,92,153,0.3); }

.port-body { padding: 20px 20px 16px; flex: 1; }
.port-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; margin-bottom: 8px; }
.port-badge.bms { color: var(--bms); }
.port-badge.nid { color: var(--nid); }
.port-badge.lim { color: var(--lim); }
.port-badge.vih { color: var(--vih); }
.port-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.port-desc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.port-metrics { display: flex; gap: 20px; margin-bottom: 8px; }
.port-metric { display: flex; flex-direction: column; gap: 2px; }
.pm-val { font-family: var(--font-display); font-size: 20px; font-weight: 400; }
.pm-val.bms { color: var(--bms); }
.pm-val.nid { color: var(--nid); }
.pm-val.lim { color: var(--lim); }
.pm-val.vih { color: var(--vih); }
.pm-label { font-size: 10px; color: var(--muted); }

.port-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--ash-light);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background var(--ease-fast);
}
.port-cta:hover { background: var(--cream); }
.port-cta i { font-size: 14px; color: var(--muted); }

/* === LEADERSHIP === */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.leader-card {
  background: #fff;
  border: 1px solid var(--ash-light);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--ease-med);
}
.leader-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.leader-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid var(--gold-pale);
}
.leader-avatar.bms { background: linear-gradient(135deg, var(--bms-dark), var(--bms)); color: rgba(255,255,255,0.9); }
.leader-avatar.nid { background: linear-gradient(135deg, var(--nid-dark), var(--nid)); color: rgba(255,255,255,0.9); }
.leader-avatar.lim { background: linear-gradient(135deg, var(--lim-dark), var(--lim)); color: rgba(255,255,255,0.9); }
.leader-name { font-size: 16px; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.leader-role { font-size: 11px; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.leader-bio { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.leader-social a { color: var(--muted); font-size: 20px; transition: color var(--ease-fast); }
.leader-social a:hover { color: var(--vih); }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--ease-med);
}
.testi-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(184,150,12,0.2); }
.testi-stars { font-size: 14px; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-family: var(--font-display); font-size: 16px; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 20px; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(184,150,12,0.15);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-avatar.nid { background: rgba(124,61,140,0.2); color: #d4a0e0; }
.testi-avatar.lim { background: rgba(196,122,26,0.2); color: #f0c070; }
.testi-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); font-style: normal; display: block; }
.testi-role { font-size: 11px; color: rgba(255,255,255,0.4); }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-desc { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.contact-details { margin-bottom: 28px; }
.cd-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.cd-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--gold); flex-shrink: 0; }
.cd-label { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.cd-val { font-size: 14px; color: var(--navy); font-weight: 500; }
.cd-val a { color: var(--navy); }
.cd-val a:hover { color: var(--bms); }

.contact-accreditations { display: flex; flex-wrap: wrap; gap: 8px; }
.accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--body-text);
  background: var(--ash-light);
  border: 1px solid var(--ash);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.accred-badge i { color: var(--gold); }

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--ash-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.form-label span { color: var(--danger); }

.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 15px;
  border: 1px solid var(--ash);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--body-text);
  outline: none;
  transition: all var(--ease-fast);
  width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: var(--ash); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,12,0.1);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(163,45,45,0.08); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 11px; color: var(--danger); font-weight: 500; min-height: 16px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; }
.form-consent a { color: var(--bms); text-decoration: underline; text-underline-offset: 2px; }

.form-submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--ease-med);
}
.btn-form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.form-note i { color: var(--gold); }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bms-light);
  border: 1px solid rgba(26,107,90,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--bms-dark);
}
.form-success i { font-size: 22px; color: var(--bms); flex-shrink: 0; margin-top: 1px; }
.form-success strong { display: block; font-size: 14px; margin-bottom: 3px; }

.spin { animation: spin 1s linear infinite; }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(13,27,42,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(13,27,42,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-title { font-size: clamp(26px, 3.5vw, 40px); color: var(--navy); margin-bottom: 8px; }
.cta-desc { font-size: 15px; color: rgba(13,27,42,0.6); }
.cta-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--ease-fast);
  white-space: nowrap;
}
.btn-cta-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,27,42,0.3); }

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(13,27,42,0.25);
  text-decoration: none;
  transition: all var(--ease-fast);
  white-space: nowrap;
}
.btn-cta-secondary:hover { border-color: var(--navy); background: rgba(13,27,42,0.06); }

/* === STICKY CTA === */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 120;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--ease-med);
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  transition: all var(--ease-fast);
}
.sticky-cta-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }
.sticky-cta-btn i { font-size: 18px; }

/* === FOOTER === */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-mark { width: 32px; height: 32px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--navy); }
.footer-brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: #fff; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer-socials { display: flex; gap: 8px; margin-bottom: 20px; }
.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 16px;
  transition: all var(--ease-fast);
}
.footer-social:hover { background: rgba(255,255,255,0.12); color: #fff; }
.footer-contact-mini a { font-size: 12px; color: rgba(255,255,255,0.38); display: flex; align-items: center; gap: 6px; text-decoration: none; }
.footer-contact-mini a:hover { color: var(--gold-light); }
.footer-contact-mini i { font-size: 14px; }
.footer-col-heading { font-size: 11px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.42); margin-bottom: 8px; text-decoration: none; transition: color var(--ease-fast); }
.footer-link:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer-doc-ref { margin-left: 16px; color: rgba(255,255,255,0.18); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 11px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color var(--ease-fast); }
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 700px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 16px 20px;
  z-index: 999;
  box-shadow: var(--shadow-xl);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); flex: 1; min-width: 260px; }
.cookie-text i { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.cookie-text a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-primary { background: var(--gold); color: var(--navy); font-size: 12px; font-weight: 700; padding: 9px 18px; border-radius: var(--radius-md); border: none; cursor: pointer; transition: background var(--ease-fast); }
.cookie-btn-primary:hover { background: var(--gold-light); }
.cookie-btn-secondary { background: transparent; color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 600; padding: 9px 16px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.12); cursor: pointer; transition: all var(--ease-fast); }
.cookie-btn-secondary:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }

/* === UTILITY === */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--ease-fast);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.section-cta-row { text-align: center; margin-top: 40px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .companies-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 64px; }
  .container { padding: 0 20px; }
  .nav-center { display: none; }
  .nav-link-app { display: none; }
  .nav-mobile-toggle { display: flex; }
  .mobile-menu { display: block; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 10px; }
  .stat-divider { display: none; }
  .hero-stats-band { padding: 20px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .process-line { display: none; }
  .announcement-bar { padding: 10px 48px 10px 16px; }
  .announcement-inner { justify-content: flex-start; font-size: 12px; }
}

@media (max-width: 480px) {
  .companies-grid, .services-grid, .why-grid, .portfolio-grid, .leadership-grid { grid-template-columns: 1fr; }
  .hero-heading { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .trust-divider { display: none; }
  .contact-form-wrap { padding: 24px 20px; }
}

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