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

  :root {
    --navy: #0A1F3D;
    --navy-mid: #0F2D58;
    --navy-light: #163568;
    --gold: #C9A84C;
    --gold-light: #E2C06A;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --gray-100: #F0F2F5;
    --gray-300: #D1D5DB;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --text: #111827;
    --max: 1280px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--navy);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav-inner {
    max-width: var(--max); margin: 0 auto; padding: 0 40px;
    height: 72px; display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-mark {
    width: 38px; height: 38px; background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px;
    color: var(--navy); letter-spacing: -0.5px; flex-shrink: 0;
  }
  .logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); line-height: 1.2; letter-spacing: 0.02em; }
  .logo-text span { display: block; font-weight: 400; font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.12em; text-transform: uppercase; }
  .nav-right { display: flex; align-items: center; gap: 28px; }
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--gold); color: var(--navy) !important;
    font-weight: 600 !important; padding: 10px 22px; font-size: 13px !important;
    letter-spacing: 0.04em; text-decoration: none; transition: background 0.2s; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }

  /* ── HAMBURGER ── */
  .hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
  }
  .hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.75); transition: background 0.2s; }
  .hamburger:hover span { background: var(--white); }

  /* ── SIDEBAR OVERLAY ── */
  .sidebar-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(5,15,30,0.65); backdrop-filter: blur(3px);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .sidebar-overlay.open { opacity: 1; pointer-events: all; }

  /* ── SIDEBAR DRAWER ── */
  .sidebar {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
    width: 400px; max-width: 92vw;
    background: var(--navy);
    border-left: 1px solid rgba(201,168,76,0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto; display: flex; flex-direction: column;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0;
  }
  .sidebar-header-label { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; }
  .sidebar-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.4); font-size: 24px; line-height: 1; padding: 4px; transition: color 0.2s; }
  .sidebar-close:hover { color: var(--white); }
  .sidebar-body { padding: 8px 0 40px; flex: 1; }
  .sidebar-section { padding: 24px 28px 16px; }
  .sidebar-section-title {
    font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.28);
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .sidebar-links { list-style: none; }
  .sidebar-links li { margin-bottom: 1px; }
  .sidebar-links a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 12px; text-decoration: none; transition: background 0.15s;
  }
  .sidebar-links a:hover { background: rgba(255,255,255,0.04); }
  .sidebar-link-left {}
  .sidebar-link-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.82); display: block; }
  .sidebar-link-sub { font-size: 11px; color: rgba(255,255,255,0.32); margin-top: 2px; display: block; }
  .sidebar-link-arrow { font-size: 10px; color: rgba(255,255,255,0.18); transition: color 0.2s; }
  .sidebar-links a:hover .sidebar-link-arrow { color: var(--gold); }
  .sidebar-links a:hover .sidebar-link-name { color: var(--white); }
  .sidebar-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 8px 0; }
  .sidebar-cta-block {
    margin: 16px 28px 0;
    padding: 22px; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.18);
  }
  .sidebar-cta-block p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 14px; }
  .sidebar-cta-btn {
    display: block; text-align: center; background: var(--gold); color: var(--navy);
    font-size: 13px; font-weight: 700; padding: 12px 20px; text-decoration: none;
    letter-spacing: 0.04em; transition: background 0.2s;
  }
  .sidebar-cta-btn:hover { background: var(--gold-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
  }

  /* Subtle geometric background */
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 50%),
      linear-gradient(to bottom, #0A1F3D 0%, #071630 100%);
  }
  .hero-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: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 70%, transparent 100%);
  }
  .hero-accent {
    position: absolute;
    top: 15%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 40px 80px;
    width: 100%;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
  }
  .hero-eyebrow-line {
    width: 32px; height: 1px; background: var(--gold);
  }
  .hero-eyebrow-text {
    font-size: 11px; font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .hero-headline {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1.04;
    color: var(--white);
    max-width: 820px;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
  }
  .hero-headline em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 18px; font-weight: 400;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 44px;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 14px; font-weight: 600;
    padding: 16px 32px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost {
    color: rgba(255,255,255,0.8);
    font-size: 14px; font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); border-color: var(--white); }

  /* ── METRICS BAR ── */
  .metrics-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
  }
  .metrics-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .metric-item {
    padding: 36px 24px;
    border-right: 1px solid var(--gray-100);
    position: relative;
  }
  .metric-item:last-child { border-right: none; }
  .metric-item::before {
    content: '';
    position: absolute; top: 0; left: 24px; right: 24px;
    height: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .metric-item:hover::before { opacity: 1; }
  .metric-number {
    font-family: 'Syne', sans-serif;
    font-size: 42px; font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .metric-number span { color: var(--gold); }
  .metric-label {
    font-size: 13px; font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.02em;
    line-height: 1.4;
  }

  /* ── SECTIONS SHARED ── */
  section { padding: 96px 40px; }
  .section-inner { max-width: var(--max); margin: 0 auto; }

  .section-eyebrow {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
  }
  .section-eyebrow-line { width: 24px; height: 2px; background: var(--gold); }
  .section-eyebrow-text {
    font-size: 11px; font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 560px;
  }

  /* ── ABOUT / VALUE PROP ── */
  .value-section { background: var(--off-white); }
  .value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .value-left {}
  .value-quote {
    font-family: 'Syne', sans-serif;
    font-size: 22px; font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    margin: 36px 0;
  }
  .value-body {
    font-size: 15px; color: var(--gray-700);
    line-height: 1.8; margin-bottom: 16px;
  }
  .value-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .value-card {
    background: var(--white);
    padding: 32px 28px;
    position: relative;
    transition: box-shadow 0.2s;
  }
  .value-card:hover { box-shadow: 0 4px 24px rgba(10,31,61,0.08); }
  .value-card-icon {
    width: 40px; height: 40px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
  }
  .value-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .value-card-text {
    font-size: 13px; color: var(--gray-500);
    line-height: 1.6;
  }

  /* ── VERTICALS ── */
  .verticals-section { background: var(--white); }
  .verticals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--gray-100);
    margin-top: 56px;
    border: 1px solid var(--gray-100);
  }
  .vertical-card {
    background: var(--white);
    padding: 32px 24px;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
    position: relative;
  }
  .vertical-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s;
    transform-origin: left;
  }
  .vertical-card:hover { background: var(--off-white); }
  .vertical-card:hover::after { transform: scaleX(1); }
  .vertical-icon { font-size: 24px; margin-bottom: 14px; display: block; }
  .vertical-name {
    font-family: 'Syne', sans-serif;
    font-size: 14px; font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .vertical-desc {
    font-size: 12px; color: var(--gray-500);
    line-height: 1.5;
  }

  /* ── SOLUTIONS ── */
  .solutions-section { background: var(--navy); }
  .solutions-section .section-title { color: var(--white); }
  .solutions-section .section-sub { color: rgba(255,255,255,0.55); }
  .solutions-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    margin-top: 56px;
  }
  .solution-item {
    padding: 36px 32px;
    background: rgba(255,255,255,0.02);
    text-decoration: none;
    display: block;
    transition: background 0.2s;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .solution-item:hover { background: rgba(255,255,255,0.05); }
  .solution-num {
    font-family: 'Syne', sans-serif;
    font-size: 11px; font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    display: block;
  }
  .solution-name {
    font-family: 'Syne', sans-serif;
    font-size: 16px; font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .solution-desc {
    font-size: 13px; color: rgba(255,255,255,0.45);
    line-height: 1.6;
  }
  .solution-arrow {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.06em;
    font-weight: 500;
    transition: transform 0.2s;
  }
  .solution-item:hover .solution-arrow { transform: translateX(4px); }

  /* ── ECOSYSTEM TICKER ── */
  .ecosystem-section { background: var(--off-white); overflow: hidden; }
  .ticker-label {
    text-align: center;
    margin-bottom: 48px;
  }
  .ticker-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -40px;
  }
  .ticker-wrapper::before,
  .ticker-wrapper::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
    pointer-events: none;
  }
  .ticker-wrapper::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
  .ticker-wrapper::after { right: 0; background: linear-gradient(to left, var(--off-white), transparent); }

  .ticker-row { display: flex; margin-bottom: 12px; }
  .ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .ticker-track-2 {
    animation: ticker 38s linear infinite reverse;
  }
  .ticker-tag {
    display: inline-flex; align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--navy);
    font-size: 12px; font-weight: 500;
    padding: 8px 18px;
    margin-right: 10px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    flex-shrink: 0;
  }
  .ticker-tag.gold-tag {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
    font-weight: 600;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── GLOBAL ── */
  .global-section { background: var(--navy); }
  .global-section .section-eyebrow-text { color: var(--gold); }
  .global-section .section-eyebrow-line { background: var(--gold); }
  .global-section .section-title { color: var(--white); }
  .global-section .section-sub { color: rgba(255,255,255,0.55); }
  .regions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    margin-top: 56px;
  }
  .region-card {
    padding: 36px 28px;
    background: rgba(255,255,255,0.02);
  }
  .region-tag {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(201,168,76,0.1);
    padding: 4px 10px;
    margin-bottom: 16px;
  }
  .region-name {
    font-family: 'Syne', sans-serif;
    font-size: 16px; font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .region-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
  }

  /* ── CASE STUDIES ── */
  .cases-section { background: var(--white); }
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-100);
    margin-top: 56px;
    border: 1px solid var(--gray-100);
  }
  .case-card {
    background: var(--white);
    padding: 40px 36px;
    transition: box-shadow 0.25s;
    cursor: pointer;
  }
  .case-card:hover { box-shadow: 0 8px 40px rgba(10,31,61,0.1); }
  .case-tag {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    padding: 4px 10px;
    margin-bottom: 20px;
  }
  .case-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px; font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 14px;
  }
  .case-desc {
    font-size: 14px; color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .case-stat {
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
    display: flex; align-items: baseline; gap: 8px;
  }
  .case-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 32px; font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  .case-stat-num span { color: var(--gold); }
  .case-stat-label { font-size: 13px; color: var(--gray-500); }

  /* ── PROCESS ── */
  .process-section { background: var(--off-white); }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .process-step {
    background: var(--white);
    padding: 48px 36px;
    position: relative;
  }
  .process-step-num {
    font-family: 'Syne', sans-serif;
    font-size: 64px; font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
  }
  .process-step-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px; font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
  }
  .process-step-text {
    font-size: 14px; color: var(--gray-500);
    line-height: 1.7;
  }
  .process-step-bar {
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
  }

  /* ── CTA STRIP ── */
  .cta-strip {
    background: var(--navy);
    padding: 80px 40px;
    text-align: center;
  }
  .cta-strip-inner { max-width: 640px; margin: 0 auto; }
  .cta-strip h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .cta-strip h2 em { font-style: normal; color: var(--gold); }
  .cta-strip p {
    font-size: 16px; color: rgba(255,255,255,0.6);
    line-height: 1.6; margin-bottom: 36px;
  }

  /* ── FOOTER ── */
  footer {
    background: #050F1E;
    padding: 64px 40px 36px;
  }
  .footer-inner {
    max-width: var(--max);
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 36px;
  }
  .footer-brand p {
    font-size: 13px; color: rgba(255,255,255,0.4);
    line-height: 1.7; margin-top: 16px;
    max-width: 300px;
  }
  .footer-col-title {
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul a {
    font-size: 13px; color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
  .footer-contact { font-size: 12px; color: rgba(255,255,255,0.35); }
  .footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; }
  .footer-contact a:hover { color: var(--white); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .verticals-grid { grid-template-columns: repeat(3, 1fr); }
    .solutions-list { grid-template-columns: repeat(2, 1fr); }
    .regions-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .value-grid { grid-template-columns: 1fr; gap: 48px; }
  }
  @media (max-width: 768px) {
    section { padding: 64px 24px; }
    .nav-inner { padding: 0 24px; }
    .nav-links { display: none; }
    .hero-content { padding: 0 24px 60px; }
    .metrics-inner { grid-template-columns: repeat(2, 1fr); }
    .metric-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
    .verticals-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-list { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .value-right { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    .ticker-track, .ticker-track-2 { animation: none; }
  }

  /* ── CASE READ CTA ── */
  .case-card { cursor: pointer; }
  .case-read-cta {
    margin-top: 20px; font-size: 13px; font-weight: 600;
    color: var(--navy); letter-spacing: 0.03em;
    border-top: 1px solid var(--gray-100); padding-top: 16px;
    transition: color 0.2s;
  }
  .case-card:hover .case-read-cta { color: var(--gold); }

  /* ── LEAD GEN MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(5,15,30,0.7); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal-box {
    background: var(--white); max-width: 480px; width: 100%;
    padding: 44px 40px; position: relative;
    transform: translateY(12px); transition: transform 0.3s;
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }
  .modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; font-size: 20px;
    color: var(--gray-500); cursor: pointer; transition: color 0.2s;
  }
  .modal-close:hover { color: var(--navy); }
  .modal-eyebrow {
    font-size: 10px; font-weight: 700; color: var(--gold);
    letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px;
  }
  .modal-title {
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
    color: var(--navy); line-height: 1.3; margin-bottom: 10px;
  }
  .modal-sub { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 24px; }
  .modal-form {}
  .modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .modal-input {
    width: 100%; padding: 12px 14px; font-size: 14px; font-family: 'Inter', sans-serif;
    border: 1px solid var(--gray-300); color: var(--text);
    outline: none; transition: border-color 0.2s;
  }
  .modal-input:focus { border-color: var(--navy); }
  .modal-input-full { display: block; margin-bottom: 12px; }
  .modal-submit {
    width: 100%; padding: 15px; background: var(--navy); color: var(--white);
    font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif;
    border: none; cursor: pointer; letter-spacing: 0.04em;
    margin-top: 4px; transition: background 0.2s;
  }
  .modal-submit:hover { background: var(--navy-light); }
  .modal-fine { font-size: 11px; color: var(--gray-500); margin-top: 12px; line-height: 1.5; text-align: center; }
  .modal-thanks { display: none; text-align: center; padding: 20px 0; }
  .modal-thanks.show { display: block; }
  .modal-thanks-icon {
    width: 52px; height: 52px; background: var(--navy);
    color: var(--gold); font-size: 22px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .modal-thanks-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .modal-thanks-text { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
/* ══════════════════════════════════════════════
   ADDITIONAL: Leadership photos, forms, Turnstile
   ══════════════════════════════════════════════ */

/* Circular leadership photos */
.leader-avatar-photo {
  width: 88px; height: 88px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  margin-bottom: 24px; border: 2px solid var(--gray-100);
  box-shadow: 0 4px 16px rgba(10,31,61,0.08);
  display: block;
}
.leader-card:hover .leader-avatar-photo {
  border-color: var(--gold);
  transition: border-color 0.25s;
}
.leader-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 12px; font-weight: 600;
  color: var(--gray-500); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.2s;
}
.leader-linkedin:hover { color: var(--navy); }
.leader-linkedin svg { flex-shrink: 0; }

/* Contact / lead forms (real pages, not just modal) */
.form-page-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
}
.form-box {
  background: var(--off-white); padding: 48px 44px; border: 1px solid var(--gray-100);
}
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600; color: var(--navy);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; font-size: 14px; font-family: 'Inter', sans-serif;
  border: 1px solid var(--gray-300); background: var(--white); color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--navy); color: var(--white);
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  letter-spacing: 0.04em; margin-top: 8px; transition: background 0.2s;
}
.form-submit:hover { background: var(--navy-light); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-error {
  background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.2);
  color: #b91c1c; font-size: 13px; padding: 12px 16px; margin-bottom: 16px;
}
.form-thanks {
  text-align: center; padding: 40px 20px;
}
.form-thanks-icon {
  width: 56px; height: 56px; background: var(--navy); color: var(--gold);
  font-size: 24px; font-weight: 700; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 22px;
}
.form-thanks-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.form-thanks-text { font-size: 14px; color: var(--gray-500); line-height: 1.7; max-width: 360px; margin: 0 auto; }

/* Turnstile widget container */
.turnstile-wrap { margin: 18px 0; min-height: 65px; }

/* Contact info card (right column on contact page) */
.contact-info-card {
  background: var(--navy); color: var(--white); padding: 44px 40px;
}
.contact-info-card .section-eyebrow-text { color: var(--gold); }
.contact-info-item { margin-bottom: 28px; }
.contact-info-item:last-of-type { margin-bottom: 0; }
.contact-info-label {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px;
}
.contact-info-value { font-size: 15px; color: rgba(255,255,255,0.85); }
.contact-info-value a { color: rgba(255,255,255,0.85); text-decoration: none; }
.contact-info-value a:hover { color: var(--gold); }
.contact-info-note {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6;
}

/* Interior page hero (shared across all 25 pages) */
.page-hero {
  background: var(--navy); padding: 140px 40px 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%),
              linear-gradient(to bottom, #0A1F3D 0%, #071630 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-glow {
  position: absolute; top: 10%; right: -8%; width: 560px; height: 560px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }
.page-hero-label {
  font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.page-hero-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Syne', sans-serif; font-size: clamp(34px, 4.5vw, 58px); font-weight: 800;
  color: var(--white); line-height: 1.1; letter-spacing: -0.02em; max-width: 720px; margin-bottom: 22px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.7; }

/* Generic content sections used across vertical/solution templates */
.content-section { padding: 96px 40px; }
.content-section.bg-off { background: var(--off-white); }
.content-section.bg-white { background: var(--white); }
.content-section.bg-navy { background: var(--navy); }
.content-section.bg-navy .section-title { color: var(--white); }
.content-section.bg-navy .section-sub { color: rgba(255,255,255,0.55); }
.content-inner { max-width: var(--max); margin: 0 auto; }
.content-body { max-width: 760px; }
.content-body p { font-size: 16px; color: var(--gray-700); line-height: 1.85; margin-bottom: 22px; }
.content-body p:last-child { margin-bottom: 0; }

.outcome-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--gray-100); margin-top: 48px; }
.outcome-item { background: var(--white); padding: 32px 28px; }
.outcome-item-icon { color: var(--gold); font-size: 20px; margin-bottom: 14px; display: block; }
.outcome-item-text { font-size: 15px; color: var(--gray-700); line-height: 1.7; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); margin-top: 48px; }
.related-card {
  padding: 32px 28px; background: rgba(255,255,255,0.02); text-decoration: none; display: block;
  transition: background 0.2s;
}
.related-card:hover { background: rgba(255,255,255,0.05); }
.related-card-label { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.related-card-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.related-card-arrow { font-size: 12px; color: var(--gold); font-weight: 500; }

/* Overview landing page (verticals/index, solutions/index) full grid */
.overview-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--gray-100); margin-top: 56px; border: 1px solid var(--gray-100); }
.overview-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); margin-top: 56px; }

@media (max-width: 1024px) {
  .form-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .overview-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .overview-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 24px 56px; }
  .content-section { padding: 64px 24px; }
  .form-box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .overview-grid-5 { grid-template-columns: 1fr 1fr; }
  .overview-grid-3 { grid-template-columns: 1fr; }
}

/* Logo image override (replaces old text "BH" mark) */
.logo-mark-img { border-radius: 4px; }

/* 7-person leadership grid override (3-col, last row centers naturally) */
.leadership-grid { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 1024px) { .leadership-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 768px) { .leadership-grid { grid-template-columns: 1fr !important; } }
