/* ============================================
   COMPONENTS - Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
  text-align: center;
}

.cta-row .btn {
  background: var(--brand-2);
  color: white;
}

.cta-row .btn:hover {
  background: var(--brand-blue);
}

.btn svg {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(to bottom, rgba(251, 150, 34, 0.98), rgba(254, 98, 21, 0.948));
  color: var(--card);
  box-shadow: 0 14px 30px rgba(246, 196, 83, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(246, 196, 83, 0.42);
  transform: translateY(-1px);
  background: var(--card);
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 0.9);
}

/* Premium CTA Button */
.premium-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(to bottom, rgba(251, 150, 34, 0.98), rgba(254, 98, 21, 0.948));
  color: #020617;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--premium-transition-smooth);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.premium-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(254, 98, 21, 1), rgba(251, 150, 34, 1));
  opacity: 0;
  transition: opacity 0.4s;
}

.premium-cta-btn:hover::before {
  opacity: 1;
}

.premium-cta-btn span {
  position: relative;
  z-index: 1;
}

.premium-cta-btn svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--premium-transition-bounce);
}

.premium-cta-btn:hover svg {
  transform: translateX(5px);
}
