/* SunFelt LLC — custom styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Navbar glass effect */
.nav-blur {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero background */
.hero-bg {
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(79, 70, 229, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
}

/* Grid background */
.grid-bg {
  background-image: linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Card hover effect */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Pricing card highlight */
.pricing-popular {
  border: 2px solid #4F46E5;
  position: relative;
}
.pricing-popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: white;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Scroll fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-anim {
  animation: float 6s ease-in-out infinite;
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.open {
  max-height: 400px;
}

/* Feature icon box */
.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  flex-shrink: 0;
}

/* Step connector line */
.step-line {
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, #4F46E5, #7C3AED);
  opacity: 0.3;
}

/* Dashboard mock */
.dashboard-mock {
  background: linear-gradient(135deg, #1E1B4B, #312E81);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mock-bar {
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  border-radius: 4px;
  height: 8px;
}

.mock-chart-bar {
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #818CF8, #6366F1);
}
