:root {
  --navy: #0f172a;
  --teal: #0f766e;
  --ink: #222222;
  --muted: #5d6875;
  --line: #dbe5e3;
  --soft: #f6faf9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 10;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: block;
  min-width: 150px;
}

.brand-picture,
.brand-logo {
  display: block;
}

.brand-logo {
  width: 150px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

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

.button.secondary {
  border-color: var(--teal);
  color: var(--teal);
  background: #fff;
}

.button.light {
  border-color: rgba(255, 255, 255, .85);
  color: #fff;
  background: transparent;
}

.menu-button {
  display: none;
  background: #fff;
  color: var(--navy);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
}

.mobile-panel nav {
  display: grid;
  gap: 4px;
  padding: 14px 0 18px;
}

.mobile-panel a {
  padding: 10px 0;
  color: var(--navy);
  font-weight: 750;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(15, 23, 42, .96), rgba(15, 118, 110, .82)),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, .2), transparent 30%);
  color: #fff;
}

.hero .wrap {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  align-items: center;
  gap: 48px;
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #c7fff2;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
}

.lead {
  color: #42515c;
  font-size: 20px;
  line-height: 1.55;
}

.hero .lead {
  max-width: 760px;
  color: #effffb;
  font-size: 22px;
}

.hero p:not(.eyebrow):not(.lead) {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  padding: 28px;
}

.hero-card h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
}

.capability-map {
  display: grid;
  gap: 10px;
}

.capability-map span {
  border: 1px solid rgba(255, 255, 255, .22);
  border-left: 4px solid #8af4de;
  padding: 11px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.section {
  padding: 82px 0;
}

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

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

.section.navy h2,
.section.navy .lead {
  color: #fff;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.split h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.testimonial,
.stat-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.card {
  padding: 24px;
}

.card h3 {
  margin: 8px 0 10px;
  font-size: 22px;
}

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

.small-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.badge-grid span {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.note {
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.testimonial {
  padding: 24px;
}

.testimonial blockquote {
  margin: 0;
  color: #344150;
  font-size: 17px;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-style: normal;
  font-weight: 850;
}

.page-hero {
  padding: 82px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(40px, 5vw, 64px);
}

.page-hero p {
  max-width: 780px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  border-left: 4px solid var(--teal);
  background: #fff;
  padding: 22px 24px;
  border-radius: 0 8px 8px 0;
}

.timeline-item h3 {
  font-size: 22px;
}

.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 24px;
}

.contact-details,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

form {
  display: grid;
  gap: 14px;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 190px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .header-cta,
  .nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-panel.open {
    display: block;
  }

  .hero .wrap,
  .split,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .brand {
    min-width: 132px;
  }

  .brand-logo {
    width: 132px;
    height: 33px;
  }

  .hero .wrap {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-card {
    padding: 20px;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .grid.two,
  .grid.three,
  .stats-grid,
  .badge-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

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