:root {
  --navy: #06324b;
  --navy-dark: #03283f;
  --teal: #1897ad;
  --teal-light: #27b4c8;
  --text: #0d2f45;
  --muted: #34495a;
  --white: #ffffff;
  --soft: #f5f9fb;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

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

.container {
  width: min(var(--max), calc(100% - 70px));
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
  padding: 34px 0 10px;
}

.nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}

.logo img {
  width: 292px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-top: 32px;
}

.nav a {
  color: #172f43;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .02em;
  padding-bottom: 15px;
  border-bottom: 3px solid transparent;
}

.nav a.active,
.nav a:hover {
  color: var(--navy);
  border-bottom-color: var(--teal);
}

.hero {
  background: linear-gradient(180deg, #f9fcfd 0%, #eef5f7 100%);
  padding: 45px 0 58px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  align-items: center;
  gap: 46px;
}

.hero-copy h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-copy h2 {
  margin: 0 0 28px;
  color: var(--teal);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.15;
  font-weight: 800;
}

.hero-copy p {
  max-width: 440px;
  margin: 0 0 34px;
  color: #182c3f;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  height: 55px;
  border-radius: 7px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-light), #12819a);
  box-shadow: 0 8px 20px rgba(15, 120, 146, .22);
}

.hero-image {
  margin-right: -40px;
}

.hero-image {
  margin-right: -80px;
}

.solutions {
  background:
    radial-gradient(circle at top center, rgba(40, 181, 202, .18), transparent 45%),
    linear-gradient(135deg, #042d47 0%, #05273f 50%, #063a55 100%);
  color: #fff;
  padding: 26px 0 58px;
}

.section-center {
  text-align: center;
}

.eyebrow {
  color: var(--teal-light);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.section-center h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.small-line {
  width: 42px;
  height: 3px;
  background: var(--teal-light);
  margin: 18px auto 18px;
}

.section-center p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .92);
  font-size: 17px;
  line-height: 1.55;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  margin-top: 30px;
}

.solution-card {
  min-height: 258px;
  padding: 28px 22px 24px;
  text-align: center;
  border-radius: 6px;
  background: rgba(24, 92, 123, .56);
  border: 1px solid rgba(255,255,255,.04);
  box-shadow: inset 0 0 35px rgba(255,255,255,.03);
}

.solution-card img {
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
}

.solution-card h3 {
  margin: 0 0 17px;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;
}

.solution-card p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.55;
}

.about {
  position: relative;
  background: #fff;
  padding: 48px 0 62px;
  overflow: hidden;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 80px;
  align-items: start;
}

.eyebrow.left {
  margin-bottom: 12px;
}

.about-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.left-line {
  margin: 24px 0 28px;
}

.about-copy p {
  max-width: 445px;
  margin: 0;
  color: #263c4c;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
}

.benefits {
  padding-top: 4px;
  display: grid;
  gap: 35px;
}

.benefit {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: start;
  gap: 22px;
}

.benefit img {
  width: 62px;
  height: 62px;
}

.benefit h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.benefit p {
  max-width: 410px;
  margin: 0;
  color: #263c4c;
  font-size: 16px;
  line-height: 1.55;
}

.watermark {
  position: absolute;
  right: -35px;
  bottom: -40px;
  width: 280px;
  opacity: .08;
  pointer-events: none;
}

.contact-band {
  background: linear-gradient(135deg, #1595ac 0%, #0a5c79 100%);
  color: #fff;
  padding: 35px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr auto;
  align-items: center;
  gap: 34px;
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: 26px;
}

.contact-brand img {
  width: 92px;
  height: 92px;
}

.contact-brand h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.contact-brand p,
.contact-details p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.contact-details span {
  margin-left: 10px;
}

.btn-light {
  min-width: 170px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

.nowrap {
  white-space: nowrap;
}

footer {
  background: #062b43;
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 24px 0;
  font-size: 15px;
}


@media (max-width: 980px) {
  .container {
    width: min(var(--max), calc(100% - 36px));
  }

  .site-header {
    padding-top: 22px;
  }

  .nav-wrap {
    align-items: center;
  }

  .logo img {
    width: 235px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    margin: 0;
  }

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

  .contact-grid {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .logo img {
    width: 215px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 16px;
  }

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

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

  .contact-brand {
    align-items: flex-start;
  }

  .contact-brand img {
    width: 70px;
    height: 70px;
  }

  .btn {
    width: 100%;
  }
}
