/* ExecuteIQ Landing Page Styles - Plan Then Execute Branding */

/* Hero background - Gold gradient like PTE charts/graphs */
.hero-gradient {
  background: linear-gradient(135deg, #F5B714 0%, #B8870B 50%, #F5B714 100%);
}

/* Gradient text - PTE Gold accent */
.gradient-text {
  background: linear-gradient(135deg, #F5B714 0%, #B8870B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Button hover */
.btn-primary {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* Smooth transitions */
.transition-smooth {
  transition: all 0.2s ease;
}
