/* H.P.E. Custom Styles */

.nav-link {
    color: #9ca3af;
    transition: color 0.2s;
}
.nav-link:hover {
    color: #ffffff;
}

/* Hero gradient */
.hero-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Card hover effect */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(108, 99, 255, 0.5);
    transform: translateY(-4px);
}

/* Pricing card */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    border-color: rgba(108, 99, 255, 0.5);
    transform: translateY(-4px);
}
.pricing-card.popular {
    border-color: #6C63FF;
    background: rgba(108, 99, 255, 0.1);
}

/* Badge */
.badge-best {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6C63FF, #FF6B6B);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* CTA button gradient */
.btn-gradient {
    background: linear-gradient(135deg, #6C63FF, #5A52D5);
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    background: linear-gradient(135deg, #7B73FF, #6C63FF);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
}

/* Glow effect */
.glow {
    box-shadow: 0 0 40px rgba(108, 99, 255, 0.3);
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Check icon */
.check-icon {
    color: #6C63FF;
    flex-shrink: 0;
}

/* Success page */
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Cancel page */
.cancel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Discount badge */
.discount-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}
