/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ── HERO ── */
.hero {
  padding: 140px 40px 88px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.13;
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 620px;
}
h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--sub);
  line-height: 1.6;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.15s, opacity 0.15s;
}
.btn-primary:hover { transform: translateY(-1px); opacity: 0.88; }
.btn-primary svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-ghost {
  font-size: 13px;
  color: var(--sub);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--ink); }

/* ── FEATURES ── */
.features {
  padding: 72px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-card--wide { grid-column: span 2; }
.feature-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.feature-badge.pro { color: var(--accent); }
.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.feature-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 72px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  padding-right: 40px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 20px; top: 12px;
  width: 1px; height: 36px;
  background: var(--line);
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 24px 40px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }
.pricing-link {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.15s;
}
.pricing-link:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 14px 20px; }
  .hero { padding: 120px 20px 60px; }
  .features { padding: 56px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: span 1; }
  .how { padding: 56px 20px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { padding-right: 0; }
  .step::after { display: none; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}
