:root {
  --navy: #082F63;
  --navy-2: #041C3A;
  --green: #169B52;
  --orange: #F5A21B;
  --white: #FFFFFF;
  --bg: #F5F8FB;
  --text: #15233A;
  --muted: #667085;
  --line: #DDE6EF;
  --shadow: 0 22px 55px rgba(8, 47, 99, .10);
  --shadow-sm: 0 10px 26px rgba(8, 47, 99, .08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

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

a {
  color: inherit;
  text-decoration: none
}

button,
input,
select,
textarea {
  font: inherit
}

button {
  cursor: pointer
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto
}

.section {
  padding: 88px 0
}

.section-sm {
  padding: 56px 0
}

.soft {
  background: var(--bg)
}

.navy-section {
  background: linear-gradient(135deg, #061F42, #082F63 55%, #0A3F7D);
  color: #fff
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase
}

.eyebrow:before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor
}

.navy-section .eyebrow {
  color: #6FE1A0
}

.section-title {
  max-width: 780px;
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.035em
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.07rem
}

.navy-section .section-lead {
  color: #D9E5F1
}

.accent {
  color: var(--green)
}

.orange {
  color: var(--orange)
}

.topbar {
  background: var(--navy-2);
  color: #D9E5F1;
  font-size: .78rem
}

.topbar .container {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px
}

.topbar a:hover {
  color: #fff
}

.topbar-brand {
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 230, 239, .85)
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.brand img {
  width: 245px;
  height: auto
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px
}

.main-nav>a,
.nav-drop>button {
  border: 0;
  background: transparent;
  padding: 12px 10px;
  font-size: .9rem;
  font-weight: 700;
  color: #314158
}

.main-nav>a:hover,
.nav-drop>button:hover,
.main-nav .active {
  color: var(--navy)
}

.nav-drop {
  position: relative
}

.nav-drop>button {
  display: flex;
  align-items: center;
  gap: 5px
}

.nav-drop>button:after {
  content: "⌄";
  font-size: .78rem
}

.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 290px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s
}

.drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .87rem;
  font-weight: 650;
  color: #3A4A60
}

.drop-menu a:hover {
  background: var(--bg);
  color: var(--navy)
}

.nav-drop:hover .drop-menu,
.nav-drop.open .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: none
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  color: var(--navy)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .9rem;
  transition: .2s
}

.btn-primary {
  background: var(--navy);
  color: #fff
}

.btn-primary:hover {
  background: #0B3C7A;
  transform: translateY(-1px)
}

.btn-green {
  background: var(--green);
  color: #fff
}

.btn-green:hover {
  background: #128447
}

.btn-orange {
  background: var(--orange);
  color: #1C2B3E
}

.btn-outline {
  border-color: #C8D5E4;
  background: #fff;
  color: var(--navy)
}

.btn-outline:hover {
  border-color: var(--navy)
}

.btn-white {
  background: #fff;
  color: var(--navy)
}

.btn-ghost-white {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  background: transparent
}

.btn-sm {
  min-height: 40px;
  padding: 0 15px
}

.arrow:after {
  content: "→";
  font-size: 1rem
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F6FAFF 0, #fff 100%)
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(8, 47, 99, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 47, 99, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%)
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items: center;
  min-height: 720px;
  padding: 74px 0
}

.hero-kicker {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  font-size: .8rem;
  font-weight: 850;
  color: var(--navy);
  letter-spacing: .13em;
  text-transform: uppercase
}

.hero-kicker span {
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 9px
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5.9vw, 5.75rem);
  line-height: .97;
  letter-spacing: -.055em;
  color: var(--navy)
}

.hero h1 em {
  font-style: normal;
  color: var(--green)
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0;
  color: #506178;
  font-size: 1.09rem
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line)
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .83rem;
  font-weight: 750;
  color: #44566D
}

.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 155, 82, .09)
}

.hero-visual {
  position: relative;
  min-height: 550px
}

.hero-main {
  position: absolute;
  inset: 0 72px 65px 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dbe4ef
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-main:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4, 28, 58, .68))
}

.hero-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
  color: #fff
}

.hero-caption strong {
  display: block;
  font-size: 1.08rem
}

.hero-caption small {
  opacity: .82
}

.hero-card {
  position: absolute;
  right: 0;
  width: 205px;
  height: 170px;
  border-radius: 22px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow)
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-card.one {
  top: 56px
}

.hero-card.two {
  bottom: 0
}

.sector-pill {
  position: absolute;
  left: -22px;
  bottom: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  font-size: .77rem;
  color: var(--muted)
}

.sector-pill strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: 2px
}

.sector-pill:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(var(--green), var(--orange))
}

.capability-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.capability-item {
  padding: 22px 20px;
  border-right: 1px solid var(--line)
}

.capability-item:last-child {
  border-right: 0
}

.capability-item span {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em
}

.capability-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-top: 3px
}

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

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(8, 47, 99, .02);
  transition: .25s
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #C7D6E6
}

.card-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px
}

.card-number span:first-child {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  color: #8B99AA
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #EDF4FC;
  color: var(--navy);
  font-weight: 900
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: var(--navy)
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .93rem
}

.card-link {
  font-weight: 850;
  color: var(--navy);
  font-size: .88rem
}

.card-link:hover {
  color: var(--green)
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .03em;
  margin-bottom: 15px
}

.status.current {
  background: #EAF8F0;
  color: #0C7740
}

.status.developing {
  background: #FFF5E5;
  color: #A86500
}

.status.future {
  background: #EDF4FC;
  color: #315D8D
}

.status:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center
}

.media-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  background: #DDE6EF;
  box-shadow: var(--shadow)
}

.media-frame img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover
}

.media-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 28, 58, .45))
}

.quote-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  color: var(--navy);
  font-weight: 800
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #405168
}

.check-list li:before {
  content: "✓";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #EAF8F0;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  margin-top: 1px
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 14px;
  text-align: center
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #EAF8F0, #EDF4FC);
  color: var(--navy);
  font-weight: 900
}

.value-card strong {
  display: block;
  color: var(--navy);
  font-size: .9rem
}

.value-card small {
  color: var(--muted)
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: step
}

.step {
  position: relative;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 140px;
  counter-increment: step
}

.step:before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 23px;
  font-size: .75rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: .08em
}

.step h4 {
  margin: 0;
  color: var(--navy);
  font-size: .96rem
}

.step p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .8rem
}

.process-dark .step {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .13)
}

.process-dark .step h4 {
  color: #fff
}

.process-dark .step p {
  color: #C9D7E7
}

.banner {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(120deg, var(--navy-2), var(--navy));
  padding: 48px;
  color: #fff
}

.banner:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: -80px;
  top: -160px;
  border: 55px solid rgba(245, 162, 27, .12)
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}

.banner h2 {
  margin: 0 0 9px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.12
}

.banner p {
  margin: 0;
  max-width: 680px;
  color: #D6E2EE
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #061F42, #082F63 65%, #0B427D);
  color: #fff
}

.page-hero-grid {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 45px;
  align-items: center;
  padding: 64px 0
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 12px 0 18px
}

.page-hero p {
  color: #D2DFEC;
  max-width: 700px;
  font-size: 1.05rem
}

.page-hero-media {
  height: 330px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18)
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.breadcrumb {
  font-size: .77rem;
  color: #AFC2D7
}

.breadcrumb a:hover {
  color: #fff
}

.breadcrumb span {
  opacity: .5;
  margin: 0 8px
}

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

.info-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px;
  background: #fff
}

.info-card h3 {
  margin: 0 0 9px;
  color: var(--navy)
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem
}

.list-columns {
  columns: 2;
  column-gap: 32px;
  margin: 22px 0 0;
  padding-left: 20px
}

.list-columns li {
  break-inside: avoid;
  margin: 8px 0;
  color: #4C5D72
}

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

.mini-card {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line)
}

.mini-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 5px
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem
}

.callout {
  border-left: 4px solid var(--orange);
  padding: 20px 22px;
  background: #FFF8EB;
  border-radius: 0 16px 16px 0;
  color: #5B4B2C
}

.callout strong {
  color: #6C4A00
}

.notice {
  border: 1px solid #CFE3D8;
  background: #F3FBF6;
  border-radius: 18px;
  padding: 22px;
  color: #28523B
}

.notice strong {
  color: #0C7740
}

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

.roadmap-card {
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff
}

.roadmap-card.current {
  border-top: 4px solid var(--green)
}

.roadmap-card.developing {
  border-top: 4px solid var(--orange)
}

.roadmap-card.future {
  border-top: 4px solid #7FA6D2
}

.roadmap-card h3 {
  margin: 0 0 9px;
  color: var(--navy)
}

.roadmap-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem
}

.form-wrap {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: start
}

.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-sm)
}

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

.field {
  display: grid;
  gap: 7px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: .79rem;
  font-weight: 800;
  color: #405168
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #CBD8E6;
  border-radius: 12px;
  min-height: 48px;
  padding: 11px 13px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: .18s
}

.field textarea {
  min-height: 120px;
  resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #7EA6D3;
  box-shadow: 0 0 0 4px rgba(8, 47, 99, .07)
}

.field small {
  color: var(--muted);
  font-size: .73rem
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8rem;
  color: #53647A
}

.checkbox input {
  margin-top: 4px
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important
}

.form-note {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 12px
}

.form-status {
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 700
}

.contact-card {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(145deg, #061F42, #082F63);
  color: #fff
}

.contact-card h2 {
  margin-top: 0
}

.contact-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13)
}

.contact-row:last-child {
  border-bottom: 0
}

.contact-row small {
  display: block;
  color: #9FB6CF;
  text-transform: uppercase;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .09em;
  margin-bottom: 3px
}

.contact-row a {
  font-weight: 800
}

.contact-row a:hover {
  color: #7FE0A7
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px
}

.calc-results {
  background: linear-gradient(145deg, #061F42, #082F63);
  border-radius: 24px;
  padding: 30px;
  color: #fff
}

.calc-results h3 {
  margin-top: 0
}

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

.result-card {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06)
}

.result-card small {
  display: block;
  color: #AFC2D7;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .07em
}

.result-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1.25rem
}

.disclaimer {
  font-size: .75rem;
  color: #BFD0E1;
  margin-top: 18px
}

.portfolio-empty {
  padding: 54px;
  border: 1px dashed #AEBFD1;
  border-radius: 26px;
  text-align: center;
  background: #FBFDFF
}

.portfolio-empty .large-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: #EDF4FC;
  color: var(--navy);
  font-size: 1.7rem
}

.portfolio-empty h2 {
  color: var(--navy);
  margin: 0 0 9px
}

.portfolio-empty p {
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto
}

.leadership-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background: #fff
}

.portrait-placeholder {
  aspect-ratio: 1;
  border-radius: 20px;
  background: linear-gradient(145deg, #E8EFF7, #F7FAFD);
  display: grid;
  place-items: center;
  color: #94A6B9;
  text-align: center;
  font-size: .76rem;
  border: 1px dashed #B8C7D6
}

.leadership-card h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0
}

.leadership-card .role {
  color: var(--green);
  font-weight: 850;
  margin: 3px 0 13px
}

.leadership-card p {
  color: var(--muted);
  margin: 0 0 12px
}

.leader-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .88rem;
  font-weight: 750;
  color: var(--navy)
}

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

.blog-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: #fff
}

.blog-card small {
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .07em
}

.blog-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--navy);
  margin: 10px 0 8px
}

.blog-card p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0
}

.source-note {
  font-size: .72rem;
  color: #7C8EA3;
  margin-top: 18px
}

.source-note a {
  text-decoration: underline
}

.site-footer {
  background: #04182F;
  color: #D6E2EE;
  padding: 66px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .95fr 1fr;
  gap: 35px
}

.footer-brand img {
  width: 240px;
  /* filter: brightness(0) invert(1); */
  opacity: .95
}

.footer-brand p {
  max-width: 350px;
  color: #AFC2D7;
  font-size: .9rem
}

.footer-title {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: #7FE0A7;
  font-weight: 850;
  margin-bottom: 15px
}

.footer-links {
  display: grid;
  gap: 9px
}

.footer-links a {
  color: #BBCADD;
  font-size: .86rem
}

.footer-links a:hover {
  color: #fff
}

.footer-contact {
  font-size: .86rem;
  color: #BBCADD
}

.footer-contact strong {
  display: block;
  color: #fff;
  margin-bottom: 5px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .11);
  margin-top: 40px;
  padding-top: 21px;
  font-size: .76rem;
  color: #819AB4
}

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

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 9px
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
  transition: .2s
}

.float-call {
  background: var(--navy)
}

.float-wa {
  background: #168B50
}

.float-survey {
  background: var(--orange);
  color: #1C2B3E
}

.float-btn:hover {
  transform: translateY(-2px)
}

.float-wa.disabled {
  display: none
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(max-width:1080px) {
  .main-nav {
    gap: 0
  }

  .main-nav>a,
  .nav-drop>button {
    padding: 11px 7px;
    font-size: .84rem
  }

  .header-cta .btn {
    display: none
  }

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

  .value-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .process {
    grid-template-columns: repeat(3, 1fr)
  }

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

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

  .footer-grid>div:last-child {
    grid-column: 2/4
  }
}

@media(max-width:860px) {
  .topbar .topbar-contact {
    display: none
  }

  .menu-toggle {
    display: grid;
    place-items: center
  }

  .main-nav {
    position: fixed;
    top: 110px;
    left: 18px;
    right: 18px;
    max-height: calc(100vh - 140px);
    overflow: auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 14px;
    box-shadow: var(--shadow)
  }

  .main-nav.open {
    display: flex
  }

  .main-nav>a,
  .nav-drop>button {
    width: 100%;
    text-align: left;
    padding: 12px;
    border-radius: 10px
  }

  .nav-drop>button {
    justify-content: space-between
  }

  .drop-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 8px;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none
  }

  .nav-drop.open .drop-menu {
    display: block
  }

  .header-cta .btn {
    display: inline-flex
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .form-wrap,
  .calculator {
    grid-template-columns: 1fr
  }

  .hero-grid {
    min-height: auto;
    padding: 58px 0
  }

  .hero-visual {
    min-height: 460px
  }

  .page-hero-grid {
    padding: 55px 0
  }

  .page-hero-media {
    height: 300px
  }

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

  .capability-item:nth-child(2) {
    border-right: 0
  }

  .capability-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

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

  .roadmap {
    grid-template-columns: 1fr
  }

  .banner-inner {
    align-items: flex-start;
    flex-direction: column
  }

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

  .footer-grid>div:last-child {
    grid-column: auto
  }
}

@media(max-width:620px) {
  .container {
    width: min(100% - 26px, var(--container))
  }

  .section {
    padding: 66px 0
  }

  .section-sm {
    padding: 44px 0
  }

  .topbar .container {
    justify-content: center
  }

  .brand img {
    width: 205px
  }

  .header-cta .btn {
    display: none
  }

  .nav-wrap {
    min-height: 70px
  }

  .main-nav {
    top: 106px
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem)
  }

  .hero-copy {
    font-size: 1rem
  }

  .hero-visual {
    min-height: 400px
  }

  .hero-main {
    inset: 0 35px 45px 0
  }

  .hero-card {
    width: 135px;
    height: 115px
  }

  .hero-card.one {
    top: 28px
  }

  .sector-pill {
    left: 8px;
    bottom: 4px
  }

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

  .capability-item {
    border-right: 0;
    border-bottom: 1px solid var(--line) !important
  }

  .capability-item:last-child {
    border-bottom: 0 !important
  }

  .card-grid,
  .info-grid,
  .mini-grid,
  .blog-grid,
  .form-grid,
  .result-grid {
    grid-template-columns: 1fr
  }

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

  .process {
    grid-template-columns: 1fr
  }

  .list-columns {
    columns: 1
  }

  .banner {
    padding: 32px 24px
  }

  .leadership-card {
    grid-template-columns: 1fr
  }

  .portrait-placeholder {
    max-width: 180px
  }

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

  .footer-grid>div:last-child {
    grid-column: auto
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .floating-actions {
    right: 12px;
    bottom: 12px
  }

  .float-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 12px
  }

  .float-btn span {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  .card,
  .btn,
  .float-btn {
    transition: none
  }
}


/* Production PHP additions */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: #fff;
  color: #082F63;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800
}

.skip-link:focus {
  left: 8px
}

.brand-text-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: #082F63
}

.brand-text-fallback strong {
  font-size: 1.45rem;
  letter-spacing: .08em
}

.brand-text-fallback small {
  font-size: .57rem;
  letter-spacing: .18em;
  margin-top: 6px;
  color: #667085
}

.footer-brand-name {
  font-weight: 900;
  letter-spacing: .09em;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px
}

.footer-brand-name span {
  display: block;
  font-size: .58rem;
  letter-spacing: .16em;
  color: #BBCADD;
  margin-top: 5px
}

.flash-wrap {
  padding-top: 20px
}

.flash-message {
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid
}

.flash-message.success {
  background: #ECFDF3;
  color: #087443;
  border-color: #ABEFC6
}

.flash-message.error {
  background: #FFF4F2;
  color: #B42318;
  border-color: #FECDCA
}

.nav-drop.active>button {
  color: var(--green)
}

.form-panel input[type=file] {
  padding: 10px;
  background: #fff
}

.form-panel small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.5
}

.nav-open {
  overflow: hidden
}

@media(max-width:620px) {
  .brand-text-fallback strong {
    font-size: 1.2rem
  }

  .brand-text-fallback small {
    font-size: .5rem
  }
}

.leader-monogram {
  width: 150px;
  aspect-ratio: 1;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #082F63, #0e4a91);
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: .06em
}