/* === BUTTONS === */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.btn-primary{
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover{ background: var(--primary-strong); }

.btn-secondary{
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}
.btn-secondary:hover{ background: rgba(0, 0, 0, 0.10); }

.pill{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  margin: 0 0 16px 0;
}

/* === FOOTER === */
.footer{
  background: var(--footer-bg);
  padding: 60px 0 30px;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer__logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer__logoMark{
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 6px;
}

.footer__logoText{ font-size: 18px; }

.footer__description{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__title{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li{
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
}

.footer__list a{
  text-decoration: none;
  color: var(--muted);
  transition: color 150ms ease;
}

.footer__list a:hover{ color: var(--text); }

.footer__bottom{
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}