:root {
  --navy: #0d274d;
  --blue: #163d72;
  --gold: #d3a64f;
  --text: #1c2430;
  --muted: #5c6775;
  --bg: #f5f8fc;
  --white: #ffffff;
  --border: #dbe4f0;
  --shadow: 0 20px 45px rgba(10, 34, 66, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.nav-cta {
  font-weight: 600;
  color: var(--blue);
}

.hero {
  background:
    linear-gradient(135deg, rgba(13, 39, 77, 0.96), rgba(22, 61, 114, 0.86)),
    radial-gradient(circle at top right, rgba(211, 166, 79, 0.28), transparent 35%);
  color: var(--white);
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-tag,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  color: #b9d2ff;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.hero-text {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #11253d;
  box-shadow: 0 12px 30px rgba(211, 166, 79, 0.26);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero-card .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0.35rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg);
}

.section-accent {
  background: linear-gradient(180deg, #f9fbff 0%, #edf3fa 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.section-tag {
  color: var(--blue);
  margin-bottom: 0.9rem;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.14;
  color: var(--navy);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.feature-card,
.benefit,
.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 1.6rem;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.benefit {
  padding: 1.4rem;
}

.benefit strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-size: 1.03rem;
}

.benefit span {
  color: var(--muted);
}

.cta-section {
  background: var(--white);
}

.cta-box {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-actions {
  text-align: right;
}

.btn-large {
  padding-inline: 1.8rem;
}

.small-note {
  font-size: 0.92rem;
  margin-top: 0.8rem;
}

.contact-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 39, 77, 0.12);
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-details strong {
  color: var(--navy);
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo,
.footer-email {
  color: var(--white);
}

.email-display {
  cursor: default;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .three-up,
  .benefits-grid,
  .cta-box,
  .footer-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero {
    padding-top: 72px;
  }

  .cta-actions,
  .footer-contact {
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 68px;
  }

  .hero h1 {
    max-width: none;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
