* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #172033;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #e9edf3;
  z-index: 100;
  backdrop-filter: blur(8px);
  padding: 2px 0;
}

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

.logo {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
  color: #0d2b4c;
}

.logo img {
  max-width: 290px;
  max-height: 140px;
  height: auto;
  object-fit: contain;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: #3c485c;
  font-size: 0.95rem;
}

.nav-button {
  padding: 10px 16px;
  border: 1px solid #0d2b4c;
  border-radius: 999px;
  color: #0d2b4c;
}

.hero {
  background: linear-gradient(135deg, #071f3a 0%, #0d2b4c 60%, #163f68 100%);
  color: white;
  padding: 35px 0 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  color: #4f79a8;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin: 0 0 14px;
}

.hero .eyebrow {
  color: #b8d7f6;
}

h1, h2, h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  color: #0d2b4c;
  max-width: 880px;
}

h3 {
  font-size: 1.25rem;
  color: #0d2b4c;
}

.hero h3 {
  color: white;
}

.hero-copy {
  font-size: 1.2rem;
  color: #d7e8f8;
  max-width: 720px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: #ffffff;
  color: #0d2b4c;
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.45);
  color: white;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.hero-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #eaf4ff;
}

.section {
  padding: 86px 0;
}

.alt {
  background: #f4f7fb;
}

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

.card, .step, .contact-card {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 28px;
  background: white;
  box-shadow: 0 18px 45px rgba(13,43,76,0.06);
}

.card p, .step p {
  color: #536274;
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.split p {
  font-size: 1.06rem;
  color: #45566c;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.step span {
  display: inline-block;
  color: #4f79a8;
  font-weight: 900;
  margin-bottom: 14px;
}

.cta {
  padding-top: 0;
}

.cta-box {
  background: #0d2b4c;
  color: white;
  border-radius: 28px;
  padding: 54px;
  text-align: center;
}

.cta-box h2 {
  color: white;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  color: #d7e8f8;
  font-size: 1.1rem;
}

.contact-card a {
  color: #0d2b4c;
  font-weight: 800;
}

.small {
  font-size: 0.92rem !important;
  color: #6d7b8d !important;
}

footer {
  border-top: 1px solid #e9edf3;
  padding: 24px 0;
  color: #6d7b8d;
}

.footer {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

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

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

  .hero {
    padding: 70px 0;
  }

  .section {
    padding: 62px 0;
  }

  .cta-box {
    padding: 36px 24px;
  }
}
main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

section.hero {
  margin-top: 0 !important;
}
