
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f4f7fb;
  color: #111827;
}
a {
  text-decoration: none;
  color: inherit;
}
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 20;
}
.navbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 52px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
}
.brand-text span:last-child {
  font-size: 12px;
  color: #6b7280;
}
.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.18s ease-out;
}
.nav-links a:hover::after {
  width: 100%;
}
.cta-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.cta-btn.outline {
  background: transparent;
  color: #2563eb;
  border: 1px solid #2563eb;
}
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 40px;
  align-items: center;
  padding-top: 24px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0ecff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1 {
  font-size: 32px;
  margin: 16px 0 10px;
}
.hero p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-secondary {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
}
.hero-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}
.hero-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
}
.hero-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
}
.section {
  margin-top: 44px;
}
.section h2 {
  font-size: 22px;
  margin-bottom: 8px;
}
.section-intro {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
  max-width: 620px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.card p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e0ecff;
  color: #1d4ed8;
  font-size: 11px;
  margin-bottom: 6px;
}
.steps {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.step-number {
  height: 22px;
  width: 22px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 3px;
}
.step p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}
.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 26px;
}
.list {
  font-size: 14px;
  color: #4b5563;
}
.list li {
  margin-bottom: 6px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}
.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: #e5e7eb;
}
.highlight {
  background: #eef2ff;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  color: #4b5563;
}
footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 14px 20px;
  font-size: 12px;
  color: #6b7280;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
