/* ── Hero Section ────────────────────────────────────────────────────────── */

.hero {
  text-align: center;
  padding: 48px 0 40px;
}

.hero__badge {
  margin-bottom: 16px;
  display: inline-flex;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.15;
  color: var(--text-1);
}

.hero__subtitle {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__action {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.hero__action--primary {
  background: var(--accent-main);
  color: #fff;
}

.hero__action--primary:hover {
  background: var(--interactive-hover);
}

.hero__action--secondary {
  background: var(--bg-panel);
  color: var(--text-1);
  border: 1px solid var(--border);
}

.hero__action--secondary:hover {
  background: var(--bg-panel);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__copyright {
  font-size: 13px;
  color: var(--text-2);
}

.footer__links {
  display: flex;
  gap: 16px;
}

.footer__link {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--text-1);
}

/* ── Features ────────────────────────────────────────────────────────────── */

.features {
  padding-top: 24px;
}

.features__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 20px;
}
