* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f6f8fb;
  color: #1d2b3a;
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

nav {
  background: #ffffff;
  border-bottom: 1px solid #e8eef5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.brand-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand span {
  color: #0d2c52;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: #39506a;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0d2c52;
  border-bottom-color: #0d2c52;
}

.hero {
  padding: 84px 0 72px;
  background: linear-gradient(135deg, #0d2c52 0%, #123d6f 100%);
  color: #fff;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  max-width: 860px;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 760px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.btn.primary {
  background: #ffffff;
  color: #0d2c52;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #eef4fb;
}

h2 {
  color: #0d2c52;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 820px;
  color: #4c5f73;
  font-size: 1.02rem;
  margin-bottom: 28px;
}

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

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

.trust-item,
.card {
  background: #fff;
  border: 1px solid #e4ebf3;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(13, 44, 82, 0.05);
}

.trust-item strong {
  display: block;
  color: #0d2c52;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.trust-item span,
.card p {
  color: #5a6c80;
}

.card h3 {
  color: #0d2c52;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #0d2c52;
  background: #e7f0fb;
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 12px;
}

footer {
  text-align: center;
  padding: 34px 0 40px;
  color: #617287;
  border-top: 1px solid #dce5ef;
  background: #fff;
}

footer p + p {
  margin-top: 6px;
}

@media (max-width: 960px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 14px;
  }

  .hero {
    padding: 64px 0 56px;
  }

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

  .brand span {
    font-size: 12px;
  }
}
