:root {
  --ink: #102033;
  --muted: #5d6d7f;
  --navy: #07182f;
  --blue: #004c9f;
  --green: #7abc2e;
  --teal: #1a8c86;
  --line: #dce5ee;
  --soft: #f4f8fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(220, 229, 238, 0.88);
  background: var(--white);
  padding: 0 5vw;
}

.brand {
  display: inline-flex;
  width: 190px;
  min-width: 190px;
  align-items: center;
  align-self: stretch;
  background: var(--white);
  padding: 6px 0;
}

.brand img {
  width: 100%;
  height: auto;
  background: var(--white);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #405268;
  font-size: 0.92rem;
  font-weight: 750;
}

nav a:hover {
  color: var(--blue);
}

.nav-action {
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
}

.nav-action:hover {
  color: var(--white);
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 28, 0.9) 0%, rgba(5, 20, 40, 0.72) 38%, rgba(5, 20, 40, 0.18) 78%),
    linear-gradient(180deg, rgba(4, 13, 28, 0.1) 0%, rgba(4, 13, 28, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 720px;
  width: min(1160px, 90vw);
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 104px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.7vw, 6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 1.06;
}

h3 {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 830;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 32px;
  color: #e4edf6;
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1.2;
}

.button.primary {
  background: var(--green);
  color: #07190b;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.intro-section,
.solutions-section,
.vendor-section,
.approach-section,
.contact-section,
.outcomes-section {
  padding: 92px 5vw;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: start;
}

.lead {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.solutions-section {
  background: var(--soft);
}

.section-heading {
  width: min(1160px, 100%);
  margin: 0 auto 34px;
}

.section-heading .lead {
  max-width: 720px;
}

.section-minor {
  margin: -6px 0 18px;
  color: var(--blue);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 850;
  line-height: 1.28;
}

.solution-grid {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-card,
.approach-grid article {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.solution-card p {
  margin-bottom: 26px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin-bottom: 12px;
}

.solution-card span,
.approach-grid p {
  color: var(--muted);
  font-size: 0.96rem;
}

.solution-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 20px;
  color: #405268;
  font-size: 0.88rem;
  line-height: 1.48;
}

.solution-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.outcomes-panel {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: start;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 76, 159, 0.1), rgba(122, 188, 46, 0.12)),
    #f8fbfd;
  padding: 42px;
}

.outcome-list {
  display: grid;
  gap: 12px;
}

.outcome-row {
  display: flex;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
}

.outcome-row span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 6px;
  background: var(--green);
  color: #07190b;
  font-weight: 900;
}

.outcome-row strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

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

.vendor-panel {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 42px;
}

.vendor-panel h2 {
  color: var(--white);
}

.vendor-panel .lead {
  color: #d9e6f2;
}

.vendor-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.vendor-card img {
  width: min(100%, 360px);
  height: auto;
  display: block;
  background: var(--white);
}

.vendor-card p {
  margin: 18px 0 0;
  color: #405268;
  font-size: 0.96rem;
}

.approach-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.compact {
  margin-bottom: 30px;
}

.approach-grid {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.approach-grid article {
  min-height: 230px;
}

.approach-grid strong {
  display: block;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 1.28rem;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  width: min(1160px, 90vw);
  margin: 0 auto 72px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 92, 173, 0.16), rgba(122, 188, 46, 0.12)),
    #f8fbfd;
}

.contact-content .button {
  margin-top: 12px;
}

address {
  display: grid;
  align-content: center;
  gap: 10px;
  border-left: 1px solid var(--line);
  padding-left: 36px;
  font-style: normal;
}

address span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

address strong {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.55;
}

.address-line {
  display: block;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  background: #061326;
  color: #c4d1dd;
  padding: 28px 5vw;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .section-grid,
  .vendor-panel,
  .outcomes-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  address {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 28px;
    padding-left: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    width: 146px;
    min-width: 0;
  }

  nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero,
  .hero-content {
    min-height: 650px;
  }

  .hero-content {
    width: min(100% - 36px, 1160px);
    padding-bottom: 82px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 13, 28, 0.93) 0%, rgba(4, 13, 28, 0.72) 68%, rgba(4, 13, 28, 0.42) 100%),
      linear-gradient(180deg, rgba(4, 13, 28, 0.18), rgba(4, 13, 28, 0.72));
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.65rem);
  }

  .intro-section,
  .solutions-section,
  .outcomes-section,
  .vendor-section,
  .approach-section,
  .contact-section {
    padding: 68px 18px;
  }

  .solution-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .vendor-panel,
  .outcomes-panel {
    padding: 28px;
  }

  .button {
    width: 100%;
  }
}
