:root {
  --blue: #0787f2;
  --blue-dark: #10294f;
  --green: #22b978;
  --ink: #10233f;
  --muted: #5f7188;
  --line: #dce9f6;
  --soft: #f4f9ff;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(44, 94, 145, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdff;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 66, 118, 0.1);
  box-shadow: 0 10px 32px rgba(43, 84, 125, 0.06);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 178px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #334b68;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0a6ed5);
  box-shadow: 0 10px 22px rgba(7, 135, 242, 0.22);
}

.button-secondary {
  color: #0867c7;
  background: #fff;
  border-color: #b9d8f4;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 74% 34%, rgba(7, 135, 242, 0.12), transparent 31%),
    radial-gradient(circle at 14% 18%, rgba(34, 185, 120, 0.12), transparent 25%),
    linear-gradient(145deg, #ffffff 0%, #f8fcff 58%, #eef8ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 135, 242, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 135, 242, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid #c9eee0;
  border-radius: 999px;
  color: #168d72;
  background: #f2fffa;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #0e2141;
  font-size: clamp(2.75rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: #4a6078;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-point {
  padding: 14px;
  border-radius: 14px;
  background: #f5faff;
  color: #526981;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-point strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1rem;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: #f5faff;
}

.narrow {
  max-width: 850px;
}

.section h2 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section p {
  color: var(--muted);
}

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

.card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(44, 94, 145, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  color: #183452;
  font-size: 1.22rem;
  line-height: 1.25;
}

.card p {
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 900;
}

.step h3 {
  margin: 0 0 8px;
  color: #183452;
}

.step p {
  margin: 0;
  font-size: 0.96rem;
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid #78bff1;
  border-radius: 16px;
  background: #fff;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: #176ab0;
  font-size: 1.08rem;
}

.faq-item p {
  margin: 0;
}

.cta-band {
  padding: 54px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #0787f2, #0768c4);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  max-width: 680px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.related-links a {
  padding: 10px 14px;
  border: 1px solid #cfe5f8;
  border-radius: 999px;
  color: #0867c7;
  background: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-footer {
  padding: 38px 0;
  color: #d5e2ef;
  background: #102943;
}

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

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

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

  .hero-card {
    max-width: 720px;
  }
}

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

  .brand img {
    width: 148px;
  }

  .hero {
    padding: 62px 0;
  }

  .hero-actions,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .section {
    padding: 62px 0;
  }

  .cta-band {
    padding: 30px;
  }
}
