/* INFOCUS GROUP — Shared Stylesheet */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --navy: #0E1A28;
  --navy2: #1A2D3F;
  --slate: #3A4F60;
  --muted: #6B8294;
  --teal: #167B7D;
  --teal2: #156082;
  --gold: #C8A96A;
  --stone: #D9D2C5;
  --paper: #F5F2EC;
  --paleblu: #F2F6F9;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;

  /* Upgraded Visual Tokens */
  --glow-x: 50%;
  --glow-y: 50%;
  --gradient-navy: linear-gradient(135deg, #0E1A28 0%, #070D15 100%);
  --gradient-dark-glass: linear-gradient(135deg, rgba(26, 45, 63, 0.4) 0%, rgba(14, 26, 40, 0.6) 100%);
  --gradient-light-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(245, 242, 236, 0.45) 100%);
  --gradient-teal: linear-gradient(135deg, #167B7D 0%, #0f5859 100%);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-glass-light: 1px solid rgba(14, 26, 40, 0.06);
  --shadow-premium: 0 20px 40px rgba(7, 13, 21, 0.06);
  --shadow-neon: 0 0 25px rgba(22, 123, 125, 0.25);
  --shadow-glow: 0 0 30px rgba(200, 169, 106, 0.2);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

/* UTILITIES */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal)
}

.eyebrow-gold {
  color: var(--gold)
}

.eyebrow-muted {
  color: var(--muted)
}

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0
}

.gold-rule-sm {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 14px 0
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px
}

.container-sm {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 26, 40, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 106, .1)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px
}

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

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--teal);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.nav-logo-mark span {
  color: white;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px
}

.nav-logo-text {
  display: flex;
  flex-direction: column
}

.nav-logo-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

.nav-logo-tag {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none
}

.nav-links a:not(.nav-cta) {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .3s;
  padding: 6px 0;
  position: relative
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

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

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

.nav-cta {
  background: var(--gradient-teal);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-bottom: none !important;
  border: 1px solid rgba(22, 123, 125, 0.2);
  display: inline-block
}

.nav-cta:hover {
  background: var(--teal) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon)
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, .7);
  transition: all .25s
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 16px 0
}

.nav-mobile.open {
  display: flex
}

.nav-mobile a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding: 12px 48px;
  transition: color .2s;
  text-align: center
}

.nav-mobile a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .04)
}

.nav-mobile a.active {
  color: var(--teal)
}

@media(min-width:1151px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center
  }

  .nav-logo {
    justify-self: start;
    grid-column: 1
  }

  .nav-links {
    justify-self: center;
    grid-column: 2;
    transform: translateX(-25px)
  }

  .nav-cta {
    justify-self: end;
    grid-column: 3
  }
}


/* SECTION BASE */
.section {
  padding: 96px 0
}

.section-dark {
  background: var(--navy)
}

.section-paper {
  background: var(--paper)
}

.section-navy2 {
  background: var(--navy2)
}

.section-white {
  background: var(--white)
}

.section-teal {
  background: var(--teal)
}

/* PAGE HERO */
.page-hero {
  padding: 140px 0 96px;
  background: linear-gradient(160deg, #0E1A28 0%, #070d15 100%);
  position: relative;
  overflow: hidden;
  transition: background 0.15s ease-out;
}

.contact-hero {
  padding-bottom: 120px
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x, 60%) var(--glow-y, 45%), rgba(22, 123, 125, 0.2) 0%, transparent 40%),
    radial-gradient(circle at calc(100% - var(--glow-x, 60%)) calc(100% - var(--glow-y, 45%)), rgba(200, 169, 106, 0.08) 0%, transparent 30%);
  transition: background 0.15s ease-out;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 740px;
  margin-top: 20px;
  margin-bottom: 24px
}

.page-hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, .58);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 300
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x, 65%) var(--glow-y, 40%), rgba(22, 123, 125, 0.32) 0%, transparent 30%),
    radial-gradient(circle at calc(100% - var(--glow-x, 65%)) calc(100% - var(--glow-y, 40%)), rgba(200, 169, 106, 0.14) 0%, transparent 30%),
    linear-gradient(160deg, #0E1A28 0%, #070d15 100%);
  transition: background 0.15s ease-out;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: rotateX(25deg) translateY(-50px) translateZ(-50px);
  transform-origin: top center;
  opacity: 0.8;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 90%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 80px
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: pulseGlow 2s infinite
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.025em;
  max-width: 800px;
  margin-bottom: 28px
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(200, 169, 106, 0.25)
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255, 255, 255, .62);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 300
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 72px;
  flex-wrap: wrap
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 40px;
  max-width: 780px
}

.hero-stat {
  padding-right: 32px
}

.hero-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .08);
  margin-right: 32px
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff, #c8a96a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.6;
    box-shadow: 0 0 4px var(--teal);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 12px var(--teal);
  }
}

/* SECTION HEADER */
.section-header {
  margin-bottom: 56px
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  max-width: 680px;
  margin-top: 4px
}

.section-title-dark {
  color: var(--navy)
}

.section-title-md {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 4px
}

.section-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.75;
  font-weight: 300
}

.section-sub-dark {
  color: var(--slate)
}

/* BUTTONS */
.btn-primary {
  background: var(--gradient-teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 13px 44px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 14px rgba(22, 123, 125, 0.2);
  border: 1px solid rgba(22, 123, 125, 0.2);
}

.btn-primary:hover {
  background: var(--teal);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px) scale(1.02);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 12px 44px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(200, 169, 106, 0.06);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline-teal {
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(22, 123, 125, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline-teal::after {
  content: '→';
  transition: transform 0.25s ease;
}

.btn-outline-teal:hover::after {
  transform: translateX(4px);
}

.btn-outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(14, 26, 40, 0.15);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline-navy::after {
  content: '→';
  transition: transform 0.25s ease;
}

.btn-outline-navy:hover::after {
  transform: translateX(4px);
}

/* GRIDS */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

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

.two-col-60 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start
}

/* THREE COL (in one sentence) */
.three-col-item {
  padding-top: 24px;
  border-top: 2px solid var(--navy)
}

.three-col-item-light {
  border-top-color: rgba(255, 255, 255, .15)
}

.three-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block
}

.three-col-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25
}

.three-col-title-light {
  color: var(--white)
}

.three-col-body {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300
}

.three-col-body-light {
  color: rgba(255, 255, 255, .52)
}

/* CAPABILITY CARDS */
.cap-card {
  background: var(--gradient-dark-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass);
  padding: 38px 34px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 169, 106, 0.08) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

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

.cap-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(200, 169, 106, 0.45);
  box-shadow: 0 20px 45px rgba(7, 13, 21, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cap-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 16px;
  display: block
}

.cap-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25
}

.cap-body {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px
}

.cap-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s
}

.cap-link:hover {
  gap: 10px
}

.cap-link::after {
  content: '→'
}

/* CAPABILITY DETAIL CARD */
.cap-detail {
  background: var(--white);
  border: var(--border-glass-light);
  border-top: 3px solid var(--teal);
  padding: 40px 36px;
  border-radius: 6px;
  box-shadow: var(--shadow-premium);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.cap-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(22, 123, 125, 0.06) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.cap-detail:hover::before {
  opacity: 1;
}

.cap-detail:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(14, 26, 40, 0.08);
  border-color: rgba(14, 26, 40, 0.15);
}

.cap-detail-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block
}

.cap-detail-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2
}

.cap-detail-body {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px
}

.cap-detail-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  margin-top: 20px
}

.cap-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.cap-detail-list li {
  font-size: 14px;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
  font-weight: 300;
  line-height: 1.5
}

.cap-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--teal)
}

/* TILE CARDS */
.tile-card {
  background: var(--navy2);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 36px 32px;
  border-top: 2px solid var(--teal);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.tile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(22, 123, 125, 0.08) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

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

.tile-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(22, 123, 125, 0.35);
  box-shadow: 0 20px 45px rgba(7, 13, 21, 0.45);
}

.tile-num {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 14px;
  display: block
}

.tile-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25
}

.tile-body {
  font-size: 14px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300
}

.tile-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.tile-bullets li {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  padding-left: 14px;
  position: relative;
  font-weight: 300
}

.tile-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--teal)
}

/* INFO CARDS (paper bg) */
.info-card {
  background: var(--white);
  border: 1px solid rgba(14, 26, 40, .07);
  padding: 36px 32px;
  border-top: 2px solid var(--navy);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(14, 26, 40, 0.04) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

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

.info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(14, 26, 40, 0.08);
  border-color: rgba(14, 26, 40, 0.15);
}

.info-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block
}

.info-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25
}

.info-card-body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 18px
}

.info-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.info-card-list li {
  font-size: 13px;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
  font-weight: 300
}

.info-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--navy)
}

/* FEATURE SECTION */
.feature-section {
  background: var(--paper);
  padding: 96px 0;
  border-top: 1px solid rgba(14, 26, 40, 0.06);
  border-bottom: 1px solid rgba(14, 26, 40, 0.06);
}

.feature-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  max-width: 680px;
  margin-top: 4px;
}

.feature-sub {
  font-size: 16px;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
  margin: 16px 0 48px;
}

.feature-col {
  background: var(--gradient-light-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 36px 30px;
  border: var(--border-glass-light);
  border-top: 3px solid var(--teal);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(14, 26, 40, 0.02);
  position: relative;
  overflow: hidden;
}

.feature-col:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 106, 0.4);
  border-top-color: var(--gold);
  box-shadow: 0 20px 40px rgba(14, 26, 40, 0.06), var(--shadow-glow);
}

.feature-col-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.feature-col:hover .feature-col-title {
  transform: scale(1.02);
}

.feature-col-body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
}

/* STAT ROW */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(14, 26, 40, .1);
  border-bottom: 1px solid rgba(14, 26, 40, .1);
  padding: 40px 0
}

.stat-row-dark {
  border-color: rgba(255, 255, 255, .1)
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(14, 26, 40, .08)
}

.stat-item:last-child {
  border-right: none
}

.stat-item-dark {
  border-color: rgba(255, 255, 255, .08)
}

.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--navy);
  display: block;
  line-height: 1
}

.stat-num-light {
  color: var(--white)
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 6px;
  display: block
}

/* CASE STUDIES */
.case-card {
  background: var(--gradient-light-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 38px 34px;
  border: var(--border-glass-light);
  border-top: 3px solid var(--navy);
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(14, 26, 40, 0.03);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(22, 123, 125, 0.04) 0%, transparent 35%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

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

.case-card.accent-teal {
  border-top-color: var(--teal)
}

.case-card.accent-navy {
  border-top-color: var(--navy)
}

.case-card.accent-gold {
  border-top-color: var(--gold)
}

.case-card.even-card {
  background: var(--gradient-dark-glass);
  border: var(--border-glass);
  border-top: 3px solid var(--gold);
}

.case-card.even-card .case-title {
  color: var(--white)
}

.case-card.even-card .case-text {
  color: rgba(255, 255, 255, .55)
}

.outcomes-box {
  padding: 36px 32px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .07)
}

.section-paper .outcomes-box {
  background: var(--navy)
}

.section-dark .outcomes-box {
  background: rgba(255, 255, 255, .04)
}

.case-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(14, 26, 40, 0.08);
  border-color: rgba(14, 26, 40, 0.18);
}

.case-card.even-card:hover {
  border-color: rgba(200, 169, 106, 0.45);
  box-shadow: 0 20px 45px rgba(7, 13, 21, 0.4);
}

.case-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
  display: block
}

.case-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25
}

.case-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px
}

.case-text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 300
}

.case-outcomes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid rgba(14, 26, 40, .08)
}

.case-outcomes li {
  font-size: 13px;
  color: var(--slate);
  padding-left: 18px;
  position: relative;
  font-weight: 400
}

.case-outcomes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal)
}

/* SECTOR CARDS */
.sector-card {
  background: var(--white);
  padding: 28px 24px;
  border-bottom: 2px solid transparent;
  border: 1px solid rgba(14, 26, 40, .06);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(22, 123, 125, 0.05) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

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

.sector-card:hover {
  border-bottom-color: var(--teal);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(14, 26, 40, 0.08);
  border-color: rgba(14, 26, 40, 0.15);
}

.sector-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px
}

.sector-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

/* WHY CARDS */
.why-card {
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 169, 106, 0.08) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(200, 169, 106, 0.35);
  box-shadow: 0 20px 45px rgba(7, 13, 21, 0.45);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent)
}

.why-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: rgba(200, 169, 106, .15);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1
}

.why-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px
}

.why-body {
  font-size: 14px;
  color: rgba(255, 255, 255, .48);
  line-height: 1.75;
  font-weight: 300
}

/* ENGAGE CARDS */
.engage-card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid rgba(14, 26, 40, .07);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
}

.engage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(22, 123, 125, 0.05) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

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

.engage-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(14, 26, 40, 0.08);
  border-color: rgba(14, 26, 40, 0.15);
}

.engage-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px
}

.engage-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block
}

.engage-card-type {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px
}

.engage-card-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(14, 26, 40, .08);
  border-bottom: 1px solid rgba(14, 26, 40, .08)
}

.engage-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline
}

.engage-meta-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

.engage-meta-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy)
}

.engage-body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 300
}

.engage-best {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  font-style: italic
}

/* PLATFORM CARDS */
.platform-card {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid rgba(14, 26, 40, .07);
  border-bottom: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(22, 123, 125, 0.05) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

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

.platform-card:hover {
  border-bottom-color: var(--teal);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(14, 26, 40, 0.08);
  border-color: rgba(14, 26, 40, 0.15);
}

.platform-num {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 10px;
  display: block
}

.platform-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px
}

.platform-tags {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5
}

/* CHANGE SECTION */
.journey {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 48px
}

.journey-step {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .32)
}

.journey-step.active {
  color: var(--teal);
  background: rgba(22, 123, 125, .1)
}

.change-col {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-top: 2px solid var(--gold);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.change-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 169, 106, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.change-col:hover::before {
  opacity: 1;
}

.change-col:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(200, 169, 106, 0.35);
  box-shadow: 0 20px 45px rgba(7, 13, 21, 0.45);
}

.change-col-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px
}

.change-col-body {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  font-weight: 300
}

/* CTA BAND */
.cta-band {
  background:
    radial-gradient(circle at var(--glow-x, 65%) var(--glow-y, 40%), rgba(22, 123, 125, 0.18) 0%, transparent 30%),
    radial-gradient(circle at calc(100% - var(--glow-x, 65%)) calc(100% - var(--glow-y, 40%)), rgba(200, 169, 106, 0.06) 0%, transparent 40%),
    linear-gradient(160deg, #0E1A28 0%, #070d15 100%);
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  overflow: hidden;
  transition: background 0.15s ease-out;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto
}

.cta-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px
}

.cta-body {
  font-size: 16px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300
}

.cta-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 760px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.cta-contact-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: var(--border-glass);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 16px rgba(7, 13, 21, 0.15);
}

.cta-contact-item:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 106, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 25px rgba(7, 13, 21, 0.3), var(--shadow-glow);
}

.cta-contact-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block
}

.cta-contact-val {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400
}

.cta-contact-val a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-contact-val a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-contact-val a:hover {
  color: var(--teal);
}

.cta-contact-val a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* CONTENT PROSE */
.prose {
  max-width: 700px
}

.prose p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px
}

.prose h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 32px 0 12px
}

.prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px
}

.prose ul li {
  font-size: 15px;
  color: var(--slate);
  padding-left: 18px;
  position: relative;
  font-weight: 300;
  line-height: 1.6
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--teal)
}

/* DIVIDER */
.divider {
  height: 1px;
  background: rgba(14, 26, 40, .08);
  margin: 0
}

.divider-light {
  background: rgba(255, 255, 255, .07)
}

/* CONTACT FORM */
.contact-form {
  background: var(--white);
  padding: 48px 44px;
  border: 1px solid rgba(14, 26, 40, 0.05);
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-form:hover {
  box-shadow: 0 30px 60px rgba(14, 26, 40, 0.08);
  border-color: rgba(14, 26, 40, 0.08);
  transform: translateY(-4px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  margin-top: 0;
  position: relative;
  z-index: 2
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy)
}

.form-input,
.form-textarea,
.form-select {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--navy);
  background: var(--paleblu);
  border: 1px solid rgba(14, 26, 40, 0.08);
  padding: 12px 16px;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22, 123, 125, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6
}

.form-submit {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(14, 26, 40, 0.15);
}

.form-submit:hover {
  background: var(--teal);
  box-shadow: 0 6px 20px rgba(22, 123, 125, 0.25);
  transform: translateY(-3px) scale(1.02);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5
}

/* CONTACT SIDEBAR CARDS */
.contact-sidebar-dark {
  background: var(--gradient-navy) !important;
  border: var(--border-glass);
  padding: 40px 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(7, 13, 21, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-sidebar-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 169, 106, 0.08) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.contact-sidebar-dark:hover::before {
  opacity: 1;
}

.contact-sidebar-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 106, 0.25);
  box-shadow: 0 20px 40px rgba(7, 13, 21, 0.45);
}

.contact-sidebar-light {
  background: var(--gradient-light-glass) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: var(--border-glass-light);
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.contact-sidebar-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(22, 123, 125, 0.04) 0%, transparent 35%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.contact-sidebar-light:hover::before {
  opacity: 1;
}

.contact-sidebar-light:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 26, 40, 0.12);
  box-shadow: 0 20px 45px rgba(14, 26, 40, 0.08);
}

/* FOOTER */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 56px 0 32px
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-logo-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 210px;
  margin-bottom: 20px;
  font-weight: 300
}

.footer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, .32);
  line-height: 1.85;
  font-weight: 300;
  font-style: normal
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-weight: 300;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--white)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  font-weight: 300
}

.footer-legal {
  display: flex;
  gap: 24px
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  text-decoration: none;
  transition: color .2s
}

.footer-legal a:hover {
  color: var(--muted)
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.breadcrumb a {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  font-weight: 400;
  transition: color .2s
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, .7)
}

.breadcrumb-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, .2)
}

.breadcrumb-current {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  font-weight: 400
}

/* ACCORDION */
.accordion-item {
  border-bottom: 1px solid rgba(14, 26, 40, .08)
}

.accordion-item-dark {
  border-color: rgba(255, 255, 255, .07)
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left
}

.accordion-question {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3
}

.accordion-question-light {
  color: var(--white)
}

.accordion-icon {
  font-size: 20px;
  color: var(--teal);
  font-weight: 300;
  transition: transform .25s;
  flex-shrink: 0
}

.accordion-answer {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  padding-bottom: 20px;
  font-weight: 300;
  display: none
}

.accordion-answer-light {
  color: rgba(255, 255, 255, .52)
}

.accordion-item.open .accordion-answer {
  display: block
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg)
}

/* RESPONSIVE */
@media(max-width:1150px) {
  .nav-links {
    display: none
  }

  .nav-cta {
    display: none
  }

  .nav-hamburger {
    display: flex
  }
}

@media(max-width:1024px) {

  .container,
  .container-sm {
    padding: 0 32px
  }

  .nav-inner {
    padding: 0 32px
  }

  .hero-content {
    padding: 90px 32px 70px
  }

  .four-col {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {

  .container,
  .container-sm {
    padding: 0 24px
  }

  .nav-inner {
    padding: 0 24px
  }

  .hero-content {
    padding: 80px 24px 60px
  }

  .contact-hero {
    padding-bottom: 56px
  }

  .hero-stats,
  .stat-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-stat:not(:last-child) {
    border-right: none;
    margin-right: 0
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .08);
    margin-right: 32px
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(14, 26, 40, .08)
  }

  .stat-item:nth-child(even) {
    border-right: none
  }

  .three-col,
  .six-grid,
  .two-col,
  .two-col-60,
  .four-col {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cta-contact {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 0
  }
}

@media(max-width:600px) {
  .section {
    padding: 64px 0
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    text-align: center;
    width: 100%
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .07);
    margin-right: 16px;
    padding-right: 16px
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center
  }

  .contact-form {
    padding: 28px 24px
  }
}