  * {
            font-family: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        .gradient-primary {
            background: linear-gradient(135deg, #0B1120 0%, #1A2332 100%);
        }

        .gradient-btn-main {
            background: linear-gradient(90deg, #2563eb 0%, #4f46e5 100%);
            transition: all 0.35s ease;
            box-shadow: 0 18px 35px -18px rgba(56, 189, 248, 0.6);
        }

        .gradient-btn-main:hover {
            background: linear-gradient(90deg, #1d4ed8 0%, #4338ca 100%);
            transform: translateY(-2px);
            box-shadow: 0 26px 48px -22px rgba(56, 189, 248, 0.45);
        }

        .card-premium {
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-premium:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 40px -20px rgba(15, 23, 42, 0.18);
        }

        .pricing-card {
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            border: 1px solid rgba(148, 163, 184, 0.16);
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 35px 90px rgba(15, 23, 42, 0.12);
        }

        .pricing-card-highlight {
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
            border-color: rgba(59, 130, 246, 0.32);
            box-shadow: 0 45px 100px rgba(59, 130, 246, 0.18);
        }

        .glass-panel {
            background: rgba(15, 23, 42, 0.72);
            border: 1px solid rgba(148, 163, 184, 0.12);
            box-shadow: 0 40px 80px rgba(15, 23, 42, 0.18);
            backdrop-filter: blur(20px);
        }

        .feature-card {
            border: 1px solid rgba(148, 163, 184, 0.12);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
        }

        .faq-question {
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(229, 231, 235, 0.5);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.35s ease-out, opacity 0.35s ease-out;
        }

        .faq-answer.active {
            max-height: 600px;
            opacity: 1;
            transition: max-height 0.4s ease-in, opacity 0.4s ease-in;
        }

        .faq-item.group {
            position: relative;
        }

        .faq-item .faq-question:focus-visible {
            outline: 2px solid rgba(99, 102, 241, 0.5);
            outline-offset: 2px;
        }

        .device-icon-hover:hover {
            transform: scale(1.05);
            transition: transform 0.2s ease;
        }

        .hero-bg {
            background-image: url('https://iptvsmartersprofficiel.com/hero-bg.jpg');
            background-size: cover;
            background-position: center;
        }

        #testimonial-track {
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        #testimonial-track::-webkit-scrollbar {
            display: none;
        }

        .testimonial-slide {
            scroll-snap-align: center;
        }

        .testimonial-dot {
            transition: background-color 0.25s ease, transform 0.25s ease;
        }

        .testimonial-dot:hover {
            transform: scale(1.1);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .float-animation {
            animation: float 4s ease-in-out infinite;
        }


        .testimonialSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    opacity: 1;
    margin: 0 4px !important;
    transition: all .3s ease;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 999px;
    background: #6366f1;
}

#testimonial-prev,
#testimonial-next {
    flex-shrink: 0;
}

.blogSwiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.blogSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    opacity: 1;
    transition: .3s;
}

.blogSwiper .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 999px;
    background: #4f46e5;
}