@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #030712;
}

.gradient-text {
    background: linear-gradient(135deg, #2930b2 0%, #01c809 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient {
    background: linear-gradient(135deg, #0f1445 0%, #01c809 100%);
}

.btn-primary {
    background-color: #01c809;
}

.btn-primary:hover {
    background-color: #00a006;
}

.btn-price {
    background: linear-gradient(135deg, #01c809, #01a006);
}

.btn-price:hover {
    background: linear-gradient(135deg, #01a006, #018005);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.badge-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px #f59e0b; }
    to { box-shadow: 0 0 20px #f59e0b, 0 0 30px #f59e0b; }
}

.solution-bg {
    background: linear-gradient(rgba(15, 20, 69, 0.92), rgba(10, 14, 48, 0.95)), url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.prix-bg {
    background: linear-gradient(rgba(15, 20, 69, 0.92), rgba(10, 14, 48, 0.95)), url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pricing-card {
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    border-width: 2px;
}

.pricing-card ul li {
    transition: all 0.2s ease;
}
