.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e5e7;
  backdrop-filter: blur(12px);
}
.nav-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: #6e6e73;
  padding: 7px 12px;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: #1a3fad;
  background: #f0f5ff;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 13px;
  font-weight: 800;
  color: #1a3fad;
  text-decoration: none;
  white-space: nowrap;
}
.btn-link {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #e5e5e7;
  color: #1a1f36;
  text-decoration: none;
  background: #fff;
}
.btn-cta {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  background: #e8232a;
  color: #fff;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1f36;
  margin: 5px 0;
  border-radius: 2px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding: 10px 5%;
  background: #f4f7ff;
  border-bottom: 1px solid #e5e5e7;
  font-size: 12px;
  font-weight: 700;
  color: #1a3fad;
}
.checkout-footer {
  text-align: center;
  padding: 28px 5% 36px;
  color: #6e6e73;
  font-size: 13px;
  border-top: 1px solid #e5e5e7;
  background: #fff;
  line-height: 1.7;
}
.checkout-footer strong {
  color: #1a1f36;
}
.checkout-footer a {
  color: #1a3fad;
  font-weight: 700;
  text-decoration: none;
}
.result-main {
  max-width: 520px;
  margin: 48px auto 64px;
  padding: 0 5%;
}
.result-card {
  background: #fff;
  border: 1px solid #e5e5e7;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26, 63, 173, 0.08);
}
.result-card h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  margin: 16px 0 8px;
}
.result-card p {
  color: #6e6e73;
  line-height: 1.7;
  font-size: 15px;
}
.result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.result-actions a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 11px;
  font-weight: 700;
  text-decoration: none;
}
.result-card .btn-primary {
  background: #1a3fad;
  color: #fff;
}
.result-card .btn-secondary {
  background: #f5f5f7;
  color: #1a1f36;
  border: 1px solid #e5e5e7;
}
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e7;
    padding: 16px 5%;
    gap: 4px;
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open a {
    padding: 10px 14px;
    width: 100%;
  }
  .nav-hamburger {
    display: block;
  }
  .nav-phone {
    display: none;
  }
}
