/*
Theme Name: Six Link Solutions
Theme URI: https://sixlinksolutions.com
Author: Six Link Solutions
Description: Custom consulting theme for Six Link Solutions — cybersecurity, cloud, IT advisory, and GRC.
Version: 2.0.0
Text Domain: sixlink
*/

/* ==========================================================================
   CSS Custom Properties — Design System
   ========================================================================== */
:root {
  --navy-900: #0F2240;
  --navy-800: #14294C;
  --navy: #1A375D;
  --navy-500: #2A4E8A;
  --green: #3E8E47;
  --green-600: #347A3D;
  --gold: #D4A12C;
  --gold-300: #E6B93A;
  --ink: #16233B;
  --muted: #5C6B82;
  --line: #E4E9F0;
  --bg: #F4F7FA;
  --bg-2: #EDF2F7;
  --white: #FFFFFF;
  --shadow: 0 18px 40px -18px rgba(15, 34, 64, .22);
  --shadow-sm: 0 8px 22px -12px rgba(15, 34, 64, .18);
  --radius: 14px;
  --maxw: 1200px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: #E4E9F0;
  /* Darker background outside the box */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#page {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 50px rgba(15, 34, 64, .15);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.01em
}

p {
  margin-bottom: 1rem
}

/* Admin bar support */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .01em;
  padding: 13px 26px;
  border-radius: 9px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap
}

.btn svg {
  width: 17px;
  height: 17px
}

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

.btn--primary:hover {
  background: var(--green-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -12px rgba(62, 142, 71, .6)
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-900)
}

.btn--gold:hover {
  background: var(--gold-300);
  color: var(--navy-900);
  transform: translateY(-2px)
}

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

.btn--ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: translateY(-2px)
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line)
}

.btn--outline:hover {
  border-color: var(--navy);
  transform: translateY(-2px)
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px
}

.nav__logo svg {
  height: 40px;
  width: auto
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .94rem;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  transition: color .15s, background .15s;
  cursor: pointer
}

.nav__link:hover {
  background: var(--bg);
  color: var(--navy)
}

.nav__link.is-active {
  color: var(--green)
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--green)
}

.nav__cta {
  margin-left: 14px
}

.nav__dl {
  margin-left: 14px
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--navy)
}

.nav__toggle svg {
  width: 28px;
  height: 28px
}

/* ==========================================================================
   Generic Sections
   ========================================================================== */
.sec {
  padding: 96px 0
}

.sec--tight {
  padding: 72px 0;
  margin-top: 72px;
}

.sec--tint {
  background: var(--bg)
}

.sec--ink {
  background: var(--navy-900);
  color: #fff
}

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

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block
}

.eyebrow--center {
  justify-content: center
}

.sec-head {
  max-width: 720px
}

.sec-head--center {
  margin: 0 auto;
  text-align: center
}

.sec-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  margin: 16px 0 14px
}

.sec-head p {
  color: var(--muted);
  font-size: 1.06rem
}

.sec--ink .sec-head h2,
.sec--ink h2,
.sec--ink h3 {
  color: #fff
}

.sec--ink .sec-head p {
  color: #C3D0E2
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy) 55%, #1d3f6e 100%);
  color: #fff;
  overflow: hidden
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none
}

.hero__glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .32;
  pointer-events: none
}

.hero__glow--g {
  background: var(--green);
  top: -160px;
  right: -80px
}

.hero__glow--y {
  background: var(--gold);
  bottom: -200px;
  left: -120px;
  opacity: .2
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 120px;
}

.hero__eyebrow {
  color: var(--gold-300)
}

.hero__eyebrow::before {
  background: var(--gold)
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 5vw, 3.45rem);
  line-height: 1.08;
  margin: 20px 0 22px
}

.hero h1 .accent {
  color: var(--gold-300)
}

.hero__text {
  color: #CBD8EA;
  font-size: 1.14rem;
  max-width: 560px
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.hero__tag {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .74rem;
  color: #9FB4D1;
  text-transform: uppercase
}

.hero__tag span {
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.hero__tag span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold)
}

/* Hero credential card */
.hero__card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px)
}

.hero__card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 6px
}

.hero__card p {
  color: #AFC1DC;
  font-size: .92rem;
  margin-bottom: 22px
}

.cred-list {
  display: grid;
  gap: 14px
}

.cred {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  color: #E7EEF8;
  font-weight: 500
}

.cred .tick {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(62, 142, 71, .22);
  color: #7FD08A
}

.cred .tick svg {
  width: 16px;
  height: 16px
}

/* ==========================================================================
   Credential Strip
   ========================================================================== */
.strip {
  background: var(--navy-800);
  color: #fff
}

.strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .02em;
  color: #DCE6F3
}

.strip__item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-300)
}

/* ==========================================================================
   Mission
   ========================================================================== */
.mission {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: start
}

.mission__text p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 16px
}

.mission__text .big {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.55
}

.belief {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm)
}

.belief h3 {
  font-size: 1.12rem;
  margin-bottom: 18px
}

.belief ul {
  list-style: none;
  display: grid;
  gap: 15px
}

.belief li {
  display: flex;
  gap: 13px;
  font-size: .98rem;
  color: var(--ink)
}

.belief li svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--green);
  margin-top: 2px
}

/* ==========================================================================
   Cards Grid
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 46px
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--navy), var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.card:hover::before {
  transform: scaleX(1)
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(150deg, #EAF1FB, #E5F2E8);
  color: var(--navy)
}

.card__icon svg {
  width: 26px;
  height: 26px
}

.card__num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  color: var(--line)
}

.card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.25
}

.card__text {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.55
}

.card__more {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .84rem
}

.card__more svg {
  width: 15px;
  height: 15px;
  transition: transform .2s
}

.card:hover .card__more svg {
  transform: translateX(4px)
}

/* ==========================================================================
   Why / Differentiators
   ========================================================================== */
.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 46px
}

.why__item {
  padding: 4px
}

.why__ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--navy);
  color: var(--gold-300)
}

.why__ic svg {
  width: 26px;
  height: 26px
}

.why__item h3 {
  font-size: 1.08rem;
  margin-bottom: 10px
}

.why__item p {
  color: var(--muted);
  font-size: .95rem
}

.sec--ink .why__item p {
  color: #B9C7DC
}

.sec--ink .why__ic {
  background: rgba(255, 255, 255, .08)
}

/* ==========================================================================
   Connected Band (Signature)
   ========================================================================== */
.band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center
}

.band__art {
  position: relative
}

.band h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 14px 0 16px
}

.band p {
  color: #C3D0E2;
  font-size: 1.05rem;
  margin-bottom: 14px
}

.band__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px
}

.band__list li {
  display: flex;
  gap: 12px;
  color: #E7EEF8;
  font-size: .98rem
}

.band__list li svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--gold-300);
  margin-top: 2px
}

/* ==========================================================================
   Procurement Strip
   ========================================================================== */
.proc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px
}

.proc__cell {
  background: var(--white);
  padding: 26px 24px
}

.proc__cell .k {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px
}

.proc__cell .v {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5
}

/* ==========================================================================
   CTA Band
   ========================================================================== */
.cta {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-500) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 56px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden
}

.cta__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--green);
  filter: blur(110px);
  opacity: .3;
  right: -80px;
  top: -120px
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  position: relative
}

.cta p {
  color: #CBD8EA;
  margin-top: 10px;
  position: relative;
  max-width: 520px
}

.cta__actions {
  position: relative;
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

/* ==========================================================================
   Slim Page Hero
   ========================================================================== */
.phead {
  background: linear-gradient(150deg, var(--navy-900), var(--navy) 70%);
  color: #fff;
  position: relative;
  overflow: hidden
}

.phead__pattern {
  position: absolute;
  inset: 0;
  opacity: .45
}

.phead__inner {
  position: relative;
  padding: 90px 0 80px
}

.phead h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 16px 0 14px
}

.phead p {
  color: #C7D4E8;
  font-size: 1.1rem;
  max-width: 680px
}

.phead__eyebrow {
  color: var(--gold-300)
}

.phead__eyebrow::before {
  background: var(--gold)
}

/* ==========================================================================
   Capability Chips Nav
   ========================================================================== */
.capnav {
  position: sticky;
  top: 74px;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line)
}

.capnav__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.chip {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--navy);
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: .15s;
  cursor: pointer
}

.chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.chip b {
  color: var(--green)
}

.chip:hover b {
  color: var(--gold-300)
}

/* Admin bar sticky offset */
.admin-bar .capnav {
  top: 106px;
}

@media (max-width: 782px) {
  .admin-bar .capnav {
    top: 120px;
  }
}

/* ==========================================================================
   Capability Blocks
   ========================================================================== */
.cap {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 170px
}

.cap:nth-child(even) {
  background: var(--bg)
}

.cap__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px
}

.cap__head {
  display: flex;
  gap: 22px;
  align-items: flex-start
}

.cap__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--green);
  flex: none
}

.cap__titles .cap__eyebrow {
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase
}

.cap__titles h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 8px 0 6px
}

.cap__titles .tagline {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem
}

.cap__intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 880px
}

.cap__body {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 40px;
  align-items: start
}

.cap__body--wide {
  grid-template-columns: 1fr
}

.comp-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px
}

.comp-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line)
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px
}

.comp {
  display: flex;
  gap: 13px
}

.comp svg {
  flex: none;
  width: 19px;
  height: 19px;
  color: var(--green);
  margin-top: 3px
}

.comp b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 2px
}

.comp span {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5
}

.cap__side {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm)
}

.cap:nth-child(even) .cap__side {
  background: var(--white)
}

.cap__side h4 {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px
}

.cap__side ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 24px
}

.cap__side li {
  display: flex;
  gap: 11px;
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.5
}

.cap__side li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--gold);
  margin-top: 2px
}

.naics {
  border-top: 1px solid var(--line);
  padding-top: 18px
}

.naics .k {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600
}

.naics__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.naics__chips span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 10px
}

.cap-dl {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
}

.cap__side .cap-dl svg {
  width: 16px;
  height: 16px;
}

/* IT illustration block */
.cap__illus {
  margin-top: 8px
}

.it-figure {
  background: linear-gradient(155deg, #0F2240, #1a3a66);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .08)
}

.it-figure svg {
  width: 100%;
  height: auto;
  display: block
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 54px;
  align-items: start
}

.about-grid p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-top: 16px
}

.about-grid .big {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.55
}

.stat-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  position: relative;
  overflow: hidden
}

.stat-card .glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--green);
  filter: blur(90px);
  opacity: .3;
  top: -100px;
  right: -80px
}

.stat-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  position: relative
}

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

.stat-row .k {
  color: #AFC1DC;
  font-size: .9rem
}

.stat-row .v {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem
}

.stat-row .v.green {
  color: #7FD08A
}

.stat-row .v.gold {
  color: var(--gold-300)
}

.frameworks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px
}

.fw {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 15px;
  box-shadow: var(--shadow-sm)
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 46px
}

.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: left
}

.value__ic {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(150deg, #EAF1FB, #E5F2E8);
  color: var(--navy)
}

.value__ic svg {
  width: 24px;
  height: 24px
}

.value h3 {
  font-size: 1.02rem;
  margin-bottom: 8px
}

.value p {
  color: var(--muted);
  font-size: .92rem
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: start
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow-sm)
}

.form h3 {
  font-size: 1.25rem;
  margin-bottom: 6px
}

.form .sub {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 24px
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--navy);
  margin-bottom: 7px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  transition: .15s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(62, 142, 71, .12)
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px
}

.form__note {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px
}

.info-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  position: relative;
  overflow: hidden
}

.info-card .glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(100px);
  opacity: .22;
  bottom: -120px;
  left: -80px
}

.info-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 6px;
  position: relative
}

.info-card .lead2 {
  color: #B9C7DC;
  font-size: .95rem;
  margin-bottom: 26px;
  position: relative
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  position: relative
}

.info-row:last-of-type {
  border-bottom: 0
}

.info-row .ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: var(--gold-300)
}

.info-row .ic svg {
  width: 20px;
  height: 20px
}

.info-row .k {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9FB4D1;
  margin-bottom: 3px
}

.info-row .v {
  font-size: 1rem;
  color: #fff;
  font-weight: 500
}

.info-row .v a {
  color: #fff
}

.info-row .v a:hover {
  color: var(--gold-300)
}

/* Capability statement download */
.btn .dlic {
  width: 16px;
  height: 16px
}

.dlband {
  padding-top: 0
}

.dl-card {
  display: flex;
  align-items: center;
  gap: 34px;
  background: linear-gradient(120deg, #ffffff, #f5f9fd);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 40px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden
}

.dl-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--navy), var(--green), var(--gold))
}

.dl-doc {
  flex: none;
  width: 96px;
  height: 122px;
  border-radius: 10px;
  position: relative;
  background: linear-gradient(160deg, var(--navy), var(--navy-500));
  box-shadow: var(--shadow-sm);
  overflow: hidden
}

.dl-doc::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 24px 24px 0;
  border-style: solid;
  border-color: #f5f9fd #f5f9fd transparent transparent
}

.dl-doc .pg {
  position: absolute;
  left: 14px;
  right: 16px;
  height: 3px;
  background: rgba(255, 255, 255, .32);
  border-radius: 2px
}

.dl-doc .badge {
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--gold-300);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .14em
}

.dl-info {
  flex: 1;
  min-width: 280px
}

.dl-info .eyebrow {
  margin-bottom: 12px
}

.dl-info h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 9px;
  line-height: 1.2
}

.dl-info p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px
}

.dl-meta {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
  margin: 15px 0 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  color: var(--muted)
}

.dl-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.dl-meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green)
}

/* Procurement quick reference */
.procref {
  margin-top: 50px
}

.procref__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden
}

.procref__cell {
  background: var(--white);
  padding: 24px
}

.procref__cell .k {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px
}

.procref__cell .v {
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.55
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy-900);
  color: #fff;
  padding-top: 80px
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer__mark {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px
}

.footer__mark .wm {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: .01em
}

.footer__mark .wm small {
  display: block;
  color: var(--green);
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 700
}

.footer__about {
  color: #A9BAD2;
  font-size: .92rem;
  max-width: 330px
}

.footer__brandline {
  margin-top: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--gold-300);
  text-transform: uppercase
}

.footer__col h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px
}

.footer__col ul {
  list-style: none;
  display: grid;
  gap: 11px
}

.footer__col li a,
.footer__col li span {
  color: #A9BAD2;
  font-size: .92rem;
  cursor: pointer;
  transition: color .15s
}

.footer__col li a:hover {
  color: var(--gold-300)
}

.footer__contact div {
  color: #A9BAD2;
  font-size: .92rem;
  margin-bottom: 12px;
  display: flex;
  gap: 11px
}

.footer__contact svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--gold-300);
  margin-top: 2px
}

.footer__contact a {
  color: #A9BAD2
}

.footer__contact a:hover {
  color: var(--gold-300)
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 22px 0 30px
}

.footer__codes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: .78rem;
  color: #8DA0BD;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600
}

.footer__codes b {
  color: #C3D0E2;
  font-weight: 700
}

.footer__copy {
  font-size: .82rem;
  color: #8DA0BD
}

.markmini {
  width: 40px;
  height: 40px;
  flex: none
}

/* ==========================================================================
   Reveal Animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease
}

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

/* ==========================================================================
   Success Message (Contact Form)
   ========================================================================== */
.submission-success {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: var(--radius)
}

.submission-success h3 {
  color: var(--navy);
  margin-bottom: .5rem
}

.submission-success p {
  color: var(--muted)
}

/* ==========================================================================
   WordPress Compatibility
   ========================================================================== */
.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1024px) {
  .container {
    padding: 0 32px;
  }

  .strip__row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 24px;
    padding-bottom: 24px;
  }

  .strip__row::-webkit-scrollbar {
    display: none;
  }

  .strip__item {
    font-size: .86rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .cards,
  .why,
  .values {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero__card {
    max-width: 520px
  }

  .band {
    grid-template-columns: 1fr;
    gap: 36px
  }

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

  .mission,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px
  }

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

  .nav__links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .3s ease;
    margin-left: 0;
    z-index: 50
  }

  .nav__links.open {
    transform: translateY(0)
  }

  .nav__link {
    padding: 14px 16px
  }

  .nav__link.is-active::after {
    display: none
  }

  .nav__cta {
    margin: 8px 0 0
  }

  .nav__dl {
    margin: 0
  }

  .nav__toggle {
    display: block
  }

  .btn {
    white-space: normal;
    padding: 12px 18px;
    font-size: .88rem;
    line-height: 1.4;
  }

  .dl-card {
    padding: 28px;
    gap: 24px;
  }
}

@media (max-width:760px) {
  .container {
    padding: 0 24px
  }

  .sec {
    padding: 64px 0
  }

  .sec--tight {
    padding: 48px 0;
    margin-top: 48px;
  }

  .hero__inner {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .phead__inner {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .cards,
  .why,
  .values,
  .field-row,
  .proc,
  .comp-grid {
    grid-template-columns: 1fr
  }

  .cta {
    padding: 40px 30px
  }

  .cta__actions .btn,
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .dl-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 20px;
  }

  .dl-meta {
    justify-content: center;
  }

  .dl-info .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-card,
  .info-card {
    padding: 24px;
  }

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

  .capnav__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0px;
    /* space for touch scrolling */
  }

  .capnav__row::-webkit-scrollbar {
    display: none;
  }

  .chip {
    white-space: nowrap;
  }

  .cap__head {
    gap: 14px
  }

  .cap__num {
    font-size: 1.8rem
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }

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