:root {
  --ink: #101828;
  --muted: #596579;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --navy: #073763;
  --blue: #0b67b2;
  --green: #2d7d67;
  --gold: #c99119;
  --coral: #d8664b;
  --line: #dde5e3;
  --shadow: 0 18px 48px rgba(16, 24, 40, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(17, 25, 35, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
}

.brand img,
.site-footer img {
  width: 150px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a,
.site-footer nav a {
  text-decoration: none;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: #f5c051;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button.primary {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(7, 55, 99, 0.22);
}

.header-cta {
  color: #111923;
  background: #f5c051;
  box-shadow: 0 10px 22px rgba(245, 192, 81, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.42);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: 82svh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(4, 22, 43, 0.84), rgba(8, 55, 99, 0.66) 46%, rgba(12, 103, 178, 0.24)),
    url("./assets/Banner-3-1.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 80px clamp(20px, 6vw, 72px);
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: -44px auto 0;
  padding: 0 clamp(16px, 4vw, 24px);
  position: relative;
  z-index: 4;
}

.metrics div {
  min-height: 108px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metrics strong {
  display: block;
  color: var(--green);
  font-size: 2.15rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 94px clamp(18px, 4vw, 24px);
}

.section.tinted {
  max-width: none;
  background: #eef6f2;
}

.section.tinted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.intro-copy p,
.feature-card p,
.product-card p,
.promise-card p,
.testimonial-card p,
.contact-copy p,
.office-card p,
.content-body p {
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.intro .section-heading {
  display: block;
  margin: 0;
}

.intro-copy h4 {
  margin: 0 0 18px;
  font-size: 1.4rem;
}

.intro-copy p {
  margin: 0 0 18px;
  font-size: 1.04rem;
}

.promises {
  padding-top: 46px;
}

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

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

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

.promise-card,
.feature-card,
.office-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
}

.promise-card {
  padding: 24px;
}

.promise-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 20px;
}

.promise-card h3,
.feature-card h3,
.product-card h3,
.office-card h3,
.testimonial-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.promise-card p,
.feature-card p,
.product-card p {
  margin: 14px 0 0;
}

.feature-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.feature-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #344054;
}

.feature-card li + li {
  margin-top: 6px;
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link,
.source-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.source-link:hover {
  color: var(--green);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid #dce6ef;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #e8eef4;
}

.product-card div {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.careers {
  padding-top: 36px;
}

.testimonials {
  max-width: none;
  background: #172f39;
  color: #ffffff;
}

.testimonials > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.testimonials .section-heading h2,
.contact h2 {
  color: inherit;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.testimonial-card {
  min-height: 320px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0;
}

.testimonial-card h3 {
  margin-top: 22px;
  color: #ffffff;
}

.content-library {
  padding-bottom: 60px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.content-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
}

.content-panel summary::marker {
  color: var(--blue);
}

.content-panel small {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.content-body {
  display: grid;
  gap: 22px;
  padding: 0 22px 24px;
}

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

.copied-section h4 {
  margin: 18px 0 8px;
  font-size: 1.06rem;
  line-height: 1.3;
}

.copied-section h4:first-child {
  margin-top: 0;
}

.copied-section p {
  margin: 8px 0;
}

.contact {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 520px);
  gap: 46px;
  align-items: start;
  background: var(--navy);
  color: #ffffff;
}

.contact > * {
  max-width: var(--max);
}

.contact-copy {
  justify-self: end;
  width: min(100%, 570px);
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.demo-form {
  width: min(100%, 520px);
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.demo-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(5, 19, 35, 0.28);
  font: inherit;
}

.demo-form textarea {
  resize: vertical;
}

.demo-form .check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 600;
}

.demo-form .check input {
  min-height: auto;
  margin-top: 4px;
}

.demo-form .button {
  width: 100%;
  border: 0;
  background: var(--gold);
}

.offices {
  padding-top: 74px;
}

.office-grid {
  grid-template-columns: repeat(5, 1fr);
}

.office-card {
  padding: 22px;
}

.office-card p {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.office-card strong {
  display: block;
  color: var(--ink);
}

.office-card a {
  color: var(--blue);
  text-decoration: none;
}

.site-footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 46px 18px;
  color: #d8e4ea;
  text-align: center;
  background: #111923;
}

.site-footer p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #ffffff;
  font-weight: 800;
}

.site-footer small {
  max-width: 760px;
  color: #aebbc8;
}

.site-footer small a {
  color: #ffffff;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .metrics,
  .promise-grid,
  .card-grid,
  .product-grid,
  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 120px;
  }

  .brand img {
    width: 120px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 590px;
    padding: 38px 18px 64px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
    margin-top: -26px;
  }

  .metrics div {
    min-height: 96px;
    padding: 18px;
  }

  .metrics strong {
    font-size: 1.78rem;
  }

  .section {
    padding: 68px 18px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 26px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.18rem;
  }

  .promise-grid,
  .card-grid,
  .card-grid.two,
  .product-grid,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .product-card img {
    height: 180px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .testimonial-card {
    min-height: auto;
  }

  .content-panel summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact {
    padding-top: 66px;
    padding-bottom: 66px;
  }
}
