/* Additional styles for hero section */

/* Smooth pulse animation for badge */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Better button hover effect */
.hero-cta {
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

/* Gradient text for price */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Better spacing for hero heading with line break */
h1 br {
    display: block;
    content: "";
    margin-top: 0.5rem;
}

/* Make price line slightly larger */
h1 .text-primary {
    font-size: 1.1em;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-8xl {
        font-size: 4.5rem;
    }
    .text-7xl {
        font-size: 3.75rem;
    }
    .text-6xl {
        font-size: 3rem;
    }
    
    h1 .text-primary {
        font-size: 1.05em;
    }
}
