﻿* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #102a43;
  background: #eef5f8;
}
a { color: inherit; text-decoration: none; }
.nav {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #d9e6ef;
}
.nav-inner {
  max-width: 1180px;
  height: 82px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: #0b2744;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}
.logo img { width: 90px; display: block; }
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #0b2744;
  font-size: 14px;
  font-weight: 800;
}
.quote {
  padding: 14px 22px;
  background: #0b63ce;
  color: #fff;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero {
  padding: 42px 0 30px;
  background: #fff;
  border-bottom: 1px solid #d9e6ef;
}
.kicker {
  margin-bottom: 10px;
  color: #0b63ce;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
h1 {
  margin: 0 0 12px;
  color: #0b2744;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
}
.hero p {
  max-width: 780px;
  margin: 0;
  color: #587089;
  font-size: 17px;
  line-height: 1.65;
}
.products {
  padding: 38px 0 52px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.card {
  border: 1px solid #d9e6ef;
  background: #fff;
}
.card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  display: block;
  padding: 22px;
  background: #fff;
}
.copy {
  padding: 22px;
  border-top: 1px solid #d9e6ef;
}
.meta {
  margin-bottom: 10px;
  color: #22aa76;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.card h2 {
  margin: 0 0 12px;
  color: #0b2744;
  font-size: 22px;
  line-height: 1.22;
}
.card p {
  margin: 0 0 18px;
  color: #587089;
  line-height: 1.65;
}
.link {
  color: #0b63ce;
  font-weight: 900;
}
.cta {
  padding: 34px 0;
  background: #0b2744;
  color: #fff;
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta h2 { margin: 0 0 8px; }
.cta p { margin: 0; color: #d9e8f4; }
@media (max-width: 900px) {
  .nav-inner { height: auto; padding: 16px 20px; align-items: flex-start; flex-direction: column; }
  .menu { flex-wrap: wrap; }
  .grid { grid-template-columns: 1fr; }
  .cta .wrap { align-items: flex-start; flex-direction: column; }
}

