* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: #145fd7;
}

.site-header,
.site-footer {
  background: #242730;
  color: #ffffff;
}

.site-header a,
.site-footer a {
  color: #ffffff;
}

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

.site-header .wrap,
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.hero {
  padding: 72px 0 52px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: #145fd7;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 14px 0 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: 20px;
  max-width: 760px;
  color: #3d4552;
}

.hero-panel {
  border: 1px solid #d9e5f6;
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(20, 95, 215, 0.08);
}

.hero-panel ul,
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li,
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid #edf1f7;
}

.hero-panel li:last-child,
.feature-list li:last-child {
  border-bottom: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #145fd7;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: #eef4ff;
  color: #145fd7;
}

.section {
  padding: 56px 0;
}

.muted {
  color: #5d6572;
}

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

.card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  background: #ffffff;
}

.band {
  background: #f5f7fb;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 22px;
  border-left: 4px solid #145fd7;
  background: #ffffff;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #145fd7;
  color: #ffffff;
  font-weight: 700;
}

.faq details {
  border-top: 1px solid #e1e6ef;
  padding: 18px 0;
}

.faq details:last-child {
  border-bottom: 1px solid #e1e6ef;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  margin-top: 40px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header .wrap,
  .site-footer .wrap,
  .hero-grid,
  .grid-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .site-header .wrap,
  .site-footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 48px;
  }
}
