:root {
  --blue-950: #06152f;
  --blue-900: #001b4d;
  --blue-700: #0057a8;
  --orange: #f58220;
  --green: #18964c;
  --gray-100: #f4f7fb;
  --gray-200: #e5edf6;
  --gray-700: #4a5568;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(0, 27, 77, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 140px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 800;
}

.main-nav a {
  color: var(--blue-900);
  text-decoration: none;
}

.nav-cta {
  color: var(--white) !important;
  background: var(--orange);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 38px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 900;
}

.section-label.light {
  color: #ffd5a0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.hero-copy p:not(.eyebrow),
.section-intro {
  max-width: 680px;
  font-size: 18px;
}

.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}

.section-intro {
  color: var(--gray-700);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-banner {
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.hero-banner img,
.banner-card img {
  border-radius: 18px;
  width: 100%;
}

.section {
  padding: 76px 0;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.banner-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.banner-card figcaption {
  padding: 12px 6px 4px;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 700;
}

.section-blue {
  background: var(--blue-900);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta {
  background: var(--gray-100);
}

.cta-box {
  text-align: center;
  padding: 48px 28px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.cta-box p {
  max-width: 720px;
  margin: 14px auto 24px;
  color: var(--gray-700);
}

.site-footer {
  padding: 30px 0;
  background: #07172d;
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  display: grid;
  gap: 8px;
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

.footer-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

@media (max-width: 920px) {
  .header-inner,
  .main-nav {
    flex-direction: column;
  }

  .header-inner {
    padding: 16px 0;
  }

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

  .hero,
  .section {
    padding: 54px 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .main-nav {
    gap: 12px;
    font-size: 14px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .step {
    grid-template-columns: 1fr;
  }
}
