:root {
  --navy: #04112a;
  --navy-soft: #0a1c3f;
  --text: #f2f7ff;
  --muted: #bdc9dd;
  --line: #27406f;
  --orange: #ff4d0f;
  --orange-soft: #ff6d38;
  --card: #0b1a38;
  --paper: #f7f9fc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, sans-serif;
  background: var(--paper);
  color: #101a2e;
}

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

.hero {
  background:
    radial-gradient(700px 450px at 20% 50%, rgba(255, 77, 15, 0.17), transparent 65%),
    radial-gradient(700px 450px at 80% 40%, rgba(255, 255, 255, 0.1), transparent 65%),
    var(--navy);
  padding: 0 0 64px;
}

.meta-bar {
  background: #030b1f;
  color: var(--muted);
  border-bottom: 1px solid #17294d;
  font-size: 12px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 36px;
  flex-wrap: wrap;
}

.brand {
  font-family: Sora, sans-serif;
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 25px;
  color: #121a2f;
}

.meta-row a {
  color: #d7e6ff;
  text-decoration: none;
}

.main-nav {
  background: #ffffff;
  border-bottom: 1px solid #e9eef7;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #29334f;
  font-size: 14px;
  font-weight: 700;
}

.quote-btn {
  text-decoration: none;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 13px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 30px;
  padding-top: 56px;
  color: var(--text);
}

.kicker {
  color: var(--orange-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: Sora, sans-serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.13;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff7d43);
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 77, 15, 0.14), rgba(8, 21, 45, 0.7));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.hero-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 56px 0;
}

.section-kicker {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 8px;
}

.section-alt {
  background: #eaf0f9;
  border-top: 1px solid #d7e0ee;
  border-bottom: 1px solid #d7e0ee;
}

.cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid #dce6f7;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(9, 30, 66, 0.07);
}

.card p {
  margin: 0;
  color: #5f6f89;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.contact-box {
  border: 1px solid #ccdaef;
  border-radius: 14px;
  padding: 18px;
  background: #ffffff;
}

a {
  color: #0d63ce;
}

.footer {
  padding: 22px 0 32px;
  background: #07152f;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #a3b7d6;
  font-size: 14px;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  gap: 16px;
}

.legal-links a {
  text-decoration: none;
  color: #d8e6ff;
}

.doc {
  padding: 28px 0 54px;
}

.doc article {
  background: #fff;
  border: 1px solid #dce6f7;
  border-radius: 14px;
  padding: 22px;
}

.doc p,
.doc li {
  color: #5f6f89;
}

@media (max-width: 900px) {
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .nav-links {
    gap: 10px;
  }

  .hero-grid,
  .cards,
  .two-col {
    grid-template-columns: 1fr;
  }
}