.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 6px;
  border: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(245,180,0,.25);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--white);
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: .8px;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title h2 span {
  color: var(--gold);
}

.section-title p {
  color: var(--muted);
  max-width: 760px;
  margin: auto;
  line-height: 1.7;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}