:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: #d7dfeb;
  --brand: #145cff;
  --brand-dark: #0b3bb3;
  --green: #0f8a54;
  --dark: #0d1526;
  --soft: #edf3ff;
  --shadow: 0 20px 50px rgba(15, 23, 42, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.links a {
  text-decoration: none;
}

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

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
  padding: 74px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.03;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

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

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}

.btn.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

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

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.metric strong {
  display: block;
  font-size: 22px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.flow {
  display: grid;
  gap: 12px;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.num {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand);
  font-weight: 900;
}

.section {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

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

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price {
  margin: 12px 0;
  font-size: 36px;
  font-weight: 950;
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.faq-panel {
  display: none;
  margin: -4px 0 8px;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.open .faq-panel {
  display: block;
}

.cta {
  background: var(--dark);
  color: #ffffff;
}

.cta .lead {
  color: #cad5e6;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.notice {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  background: #eaf8f1;
  color: var(--green);
  font-weight: 750;
}

.notice.show {
  display: block;
}

.content {
  max-width: 900px;
  padding: 56px 0 76px;
}

.content p,
.content li {
  color: var(--muted);
}

.content section {
  margin-top: 28px;
}

.footer {
  background: var(--dark);
  color: #dbe4f0;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer a {
  margin-right: 14px;
  color: #dbe4f0;
  text-decoration: none;
}

@media (max-width: 900px) {
  .menu-btn {
    display: inline-flex;
  }

  .links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 16px;
  }

  .links.open {
    display: flex;
  }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

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

  .hero {
    padding: 46px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }
}
