:root {
    /* Colors */
    --color-bg-body: #0f172a;
    /* Slate 950 */
    --color-text-dark: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-primary: #3b82f6;
    /* Blue 500 */
    --color-primary-dark: #2563eb;
    /* Blue 600 */
    --color-secondary: #8b5cf6;
    /* Violet 500 */
    --color-accent: #06b6d4;
    /* Cyan 500 */

    /* Aurora Gradients */
    --color-aurora-1: #4f46e5;
    /* Indigo */
    --color-aurora-2: #06b6d4;
    /* Cyan */
    --color-aurora-3: #d946ef;
    /* Fuchsia */
    --color-aurora-4: #f59e0b;
    /* Amber */

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --backdrop-blur: blur(12px);

    /* Gradients */
    --gradient-text: linear-gradient(135deg, #60a5fa 0%, #c084fc 50%, #2dd4bf 100%);
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.5);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-spacing: 6rem;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.py-6 {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

/* ========================================
   Aurora Background
   ======================================== */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: var(--color-bg-body);
    overflow: hidden;
}

.aurora-bg::before,
.aurora-bg::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: aurora-move 15s infinite alternate;
}

.aurora-bg::before {
    background: radial-gradient(circle, var(--color-aurora-1), transparent 70%);
    top: -10%;
    left: -10%;
}

.aurora-bg::after {
    background: radial-gradient(circle, var(--color-aurora-3), transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes aurora-move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

/* ========================================
   Glassmorphism Utilities
   ======================================== */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
    opacity: 0;
    background: transparent;
    backdrop-filter: none;
    margin: 0.8rem 0;
    padding: 0;
}

.navbar .container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Largeur max selon les breakpoints Bootstrap */
@media (min-width: 576px) {
    .navbar .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .navbar .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .navbar .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .navbar .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .navbar .container {
        max-width: 1320px;
    }
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
}

.navbar.at-top {
    transform: translateY(0);
    opacity: 1;
}

.navbar-brand {
    color: #1e293b !important;
    font-weight: 700;
    font-size: 1.25rem;
}

.navbar-brand i {
    color: var(--color-primary);
}

.navbar-logo-text {
    color: #1e293b;
    font-family: var(--font-heading);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-number {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .navbar {
        margin: 0.5rem;
    }
    
    .navbar .container {
        padding: 0.5rem 1rem;
        margin: 0 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .whatsapp-number {
        display: none;
    }
    
    /* Masquer le bouton Commencer sur mobile */
    .button-principal {
        display: none !important;
    }
    
    /* WhatsApp button rounded-full sur mobile */
    .whatsapp-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 !important;
    }
    
    .whatsapp-btn i {
        margin: 0;
        font-size: 1.25rem;
    }
    
    .navbar-logo-text {
        font-size: 1.1rem;
    }
    .pricing-card-modern{
        padding-top: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar .container,
    .nava .container {
        padding: 0.5rem 0.75rem;
        margin: 0 0.5rem;
    }
    
    .whatsapp-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .whatsapp-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nava .container {
        padding: 0.5rem 1rem;
        margin: 0 0.5rem;
        max-width: calc(100% - 1rem);
    }
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-logo {
    width: 35px;
    height: 40px;
}
/* ========================================
   Bento Grid
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }

    .bento-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-item.medium {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ========================================
   Components
   ======================================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Floating Animation */
.floating-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Footer */
.footer-link {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

/* ========================================
   Modern Pricing Cards
   ======================================== */
.pricing-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card-glass {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card-featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    transform: scale(1.02);
}

.pricing-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.5);
}

/* Glow Effects */
.pricing-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pricing-card-modern:hover .pricing-glow-effect {
    opacity: 1;
}

.pricing-glow-effect-featured {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Modern Badge */
.pricing-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    z-index: 10;
    animation: badge-float 3s ease-in-out infinite;
}

.pricing-badge-gold {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Pricing Icons */
.pricing-icon,
.pricing-icon-featured,
.pricing-icon-gold {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    position: relative;
}

.pricing-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.pricing-icon-featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(217, 70, 239, 0.3) 100%);
    color: #d946ef;
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    animation: icon-pulse 2s ease-in-out infinite;
}

.pricing-icon-gold {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    color: #fbbf24;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Modern Price Display */
.pricing-price-modern {
    position: relative;
    padding: 20px 0;
}

.pricing-price-modern .display-3 {
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.text-gradient-premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(20deg);
    }
}

/* Modern Divider */
.pricing-divider-modern {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modern Features List */
.pricing-features-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-features-modern li {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.pricing-features-modern li:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.pricing-features-modern i {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Modern Buttons */
.pricing-btn-modern {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pricing-btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.pricing-btn-modern:hover::before {
    width: 500px;
    height: 500px;
}

.pricing-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.pricing-btn-featured {
    background: linear-gradient(135deg, #d946ef 0%, #8b5cf6 100%);
    color: white;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.pricing-btn-featured::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.pricing-btn-featured:hover::before {
    width: 500px;
    height: 500px;
}

.pricing-btn-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #c026d3 0%, #7c3aed 100%);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-content {
    padding-top: 100px;
}

/* Hero Section Responsive Text */
#home .hero-text h1 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1.2;
}

#home .hero-text .lead {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    line-height: 1.6;
}

#home .hero-text .badge {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    padding: clamp(0.5rem, 1vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
}

#home .hero-text .btn-lg {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.5rem, 4vw, 3rem);
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 80px;
    }
    
    #home .hero-text h1 {
        margin-bottom: 1rem !important;
    }
    
    #home .hero-text .lead {
        margin-bottom: 1rem !important;
    }
    
    #home .hero-text .mt-5 {
        margin-top: 1.5rem !important;
        flex-wrap: wrap;
        gap: 1rem !important;
    }
    
    #home .hero-text .mt-5 > div {
        font-size: 0.875rem;
    }
    
    /* Trust Pilot logo responsive */
    #home img[alt="trust pilot"] {
        height: 24px !important;
        width: auto !important;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 80px;
    }
    
    #home .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    #home .hero-text .lead {
        font-size: 0.9rem;
    }
    
    #home .hero-text .mt-5 {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem !important;
    }
    
    /* Trust Pilot logo responsive for small screens */
    #home img[alt="trust pilot"] {
        height: 20px !important;
        width: auto !important;
    }
    
    /* Button spacing on mobile */
    #home .hero-text .py-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
}


.league-carousel {
    margin-top: 40px;
}

.sports-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sports-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    animation: scroll-left 25s linear infinite;
}

.series-track {
    display: flex;
    align-items: center;
    gap: 14px;

    width: fit-content;
    animation: scroll-left 50s linear infinite;
    margin-bottom: 40px;
}

.sports-item {
    flex: 0 0 auto;
    width: 180px;
    height: 310px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.sports-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Channels carousel (left -> right) */
.channel-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.channel-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: fit-content;
    animation: scroll-left 25s linear infinite reverse;
}

.channel-item {
    flex: 0 0 auto;
    width: 120px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.channel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.slider-section {
    padding-top: 40px;
}

.carousel-edge-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to right,
            #f8fafc 0%,
            rgba(248, 250, 252, 0.8) 40%,
            rgba(248, 250, 252, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

.carousel-edge-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to left,
            #f8fafc 0%,
            rgba(248, 250, 252, 0.8) 40%,
            rgba(248, 250, 252, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Background Sections */
.section-light {
    background-color: #ffffff;
    color: #1e293b;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
    color: #1e293b !important;
}

.section-light p,
.section-light .text-white-50,
.section-light .text-muted {
    color: #64748b !important;
}

.section-light .text-white {
    color: #1e293b !important;
}

.section-light .glass-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.05) 0%, rgba(30, 41, 59, 0.01) 100%);
    border: 1px solid rgba(30, 41, 59, 0.1);
}

.section-light .glass-card .text-white {
    color: #1e293b !important;
}

.section-light .glass-card .text-white-50 {
    color: #64748b !important;
}

/* Ajustements pour les cartes pricing dans section-light */
.section-light .pricing-card {
    background: #ffffff;
}

.section-light .pricing-features {
    color: #475569;
}

.section-dark {
    background-color: var(--color-bg-body);
    color: var(--color-text-dark);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    z-index: 0;
}

.section-dark>* {
    position: relative;
    z-index: 1;
}

.nava {
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.nava .container {
    background-color: white;
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.5rem;
    margin: 0 auto;
}

/* Largeur max selon les breakpoints Bootstrap */
@media (min-width: 576px) {
    .nava .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .nava .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .nava .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .nava .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .nava .container {
        max-width: 1320px;
    }
}

/* ========================================
   Feature Highlights Section
   ======================================== */
.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Specific Colors for Features */
.feature-primary .feature-icon-wrapper {
    color: var(--color-primary);
    background: rgba(59, 130, 246, 0.1);
}

.feature-primary .feature-icon-wrapper::after {
    background: var(--color-primary);
}

.feature-info .feature-icon-wrapper {
    color: var(--color-accent);
    background: rgba(6, 182, 212, 0.1);
}

.feature-info .feature-icon-wrapper::after {
    background: var(--color-accent);
}

.feature-success .feature-icon-wrapper {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.feature-success .feature-icon-wrapper::after {
    background: #10b981;
}

.feature-warning .feature-icon-wrapper {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.feature-warning .feature-icon-wrapper::after {
    background: #f59e0b;
}

.feature-list li {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    font-size: 1rem;
    margin-right: 0.5rem;
}
.gold-bg{
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

}
.button-principal{
    transition: all 0.3s ease;
}
.button-principal:hover{
    transform: translateY(-2px);
}
.title-sec{
    font-size: 2rem;
    font-weight: 600;
    color: var(--gradient-text);

}
/* Footer Payment Logos */
.footer-payment-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.payment-logo-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    min-height: 60px;
}

.payment-logo-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.payment-logo-item img {
    max-width: 100%;
    max-height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Responsive styles for payment logos */
@media (max-width: 992px) {
    .footer-payment-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .payment-logo-item {
        padding: 10px;
        min-height: 55px;
    }
    
    .payment-logo-item img {
        max-height: 28px;
    }
}

@media (max-width: 768px) {
    .footer-payment-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .payment-logo-item {
        padding: 8px;
        min-height: 50px;
    }
    
    .payment-logo-item img {
        max-height: 24px;
    }
}

@media (max-width: 576px) {
    .footer-payment-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .payment-logo-item {
        padding: 6px;
        min-height: 45px;
        border-radius: 6px;
    }
    
    .payment-logo-item img {
        max-height: 20px;
    }
    
    /* ========================================
       Responsive Text Styles for Mobile
       ======================================== */
    
    /* Feature Cards Section */
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p.small {
        font-size: 0.8rem;
    }
    
    .feature-list li {
        font-size: 0.8rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: clamp(1.25rem, 6vw, 2rem) !important;
        line-height: 1.3;
    }
    
    /* Pricing Section */
    #pricing .display-6 {
        font-size: clamp(1.5rem, 7vw, 2.5rem) !important;
    }
    
    #pricing .lead {
        font-size: 0.9rem !important;
    }
    
    #pricing .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    #pricing h3.h5 {
        font-size: 1rem;
    }
    
    #pricing .pricing-price-modern .display-3 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }
    
    #pricing .text-decoration-line-through {
        font-size: 1rem !important;
    }
    
    #pricing .pricing-features-modern {
        font-size: 0.8rem;
    }
    
    #pricing .pricing-features-modern li {
        margin-bottom: 0.75rem !important;
    }
    
    #pricing .pricing-btn-modern,
    #pricing .pricing-btn-featured {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    /* Content Categories Section */
    .section-dark .display-6,
    .section-light .display-6 {
        font-size: clamp(1.5rem, 7vw, 2.5rem) !important;
    }
    
    .section-dark .lead,
    .section-light .lead {
        font-size: 0.9rem !important;
    }
    
    .section-dark h3,
    .section-dark h4 {
        font-size: clamp(1rem, 5vw, 1.25rem);
    }
    
    .section-dark .small {
        font-size: 0.8rem;
    }
    
    /* How It Works Section */
    .glass-card h4 {
        font-size: 1.1rem;
    }
    
    .glass-card p.text-white-50 {
        font-size: 0.85rem;
    }
    
    /* Call to Action Section */
    .display-5 {
        font-size: clamp(1.5rem, 8vw, 2.75rem) !important;
    }
    
    /* Devices Section */
    #devices h3.h4 {
        font-size: 1.1rem;
    }
    
    #devices .text-white-50 {
        font-size: 0.85rem;
    }
    
    #devices .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Testimonials Section */
    .glass-card p.text-white-50 {
        font-size: 0.85rem;
    }
    
    .glass-card h6 {
        font-size: 0.9rem;
    }
    
    .glass-card small {
        font-size: 0.75rem;
    }
    
    /* FAQ Section */
    #faq h3 {
        font-size: 1.1rem;
    }
    
    #faq .accordion-button {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    #faq .accordion-body {
        font-size: 0.85rem;
    }
    
    /* Footer */
    footer h5 {
        font-size: 1rem;
    }
    
    footer p.text-white-50 {
        font-size: 0.85rem;
    }
    
    footer .text-white-50 {
        font-size: 0.8rem;
    }
    
    footer .small {
        font-size: 0.75rem;
    }
    
    /* Badges */
    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.65rem;
    }
    
    /* Buttons */
    .btn-lg {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .btn {
        font-size: 0.85rem;
    }
}

/* ========================================
   Legal Pages Content Styles
   ======================================== */
.content-text {
    line-height: 1.8;
    font-size: 1rem;
}

.content-text h2 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.content-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

.content-text ul,
.content-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-text a {
    transition: all 0.3s ease;
}

.content-text a:hover {
    opacity: 0.8;
    text-decoration: underline !important;
}

.content-text b {
    color: var(--color-text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .content-text {
        font-size: 0.95rem;
    }
    
    .content-text h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }
    
    .content-text ul,
    .content-text ol {
        margin-left: 1rem;
    }
}

@media (max-width: 576px) {
    .content-text {
        font-size: 0.9rem;
    }
    
    .content-text h2 {
        font-size: 1.1rem;
    }
    
    .content-text p {
        text-align: left;
    }
}

/* ========================================
   Reviews Carousel Styles - Slide one by one
   ======================================== */
.reviews-carousel-wrapper {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.reviews-carousel-container {
    overflow: hidden;
    width: 100%;
}

.reviews-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 20px 0;
}

.review-card-item-wrapper {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 0;
}

.review-card-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.review-image {
    max-height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-card-item:hover .review-image {
    transform: scale(1.05);
}

/* Responsive adjustments for reviews carousel */
@media (max-width: 992px) {
    .review-card-item-wrapper {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .review-image {
        max-height: 150px !important;
    }
    
    .review-card-item-wrapper {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .reviews-carousel-track {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .review-image {
        max-height: 120px !important;
    }
    
    .review-card-item-wrapper {
        flex: 0 0 100%;
    }
    
    .reviews-carousel-wrapper {
        padding: 10px 0;
    }
    
    .reviews-carousel-track {
        gap: 0.75rem;
    }
}
.review-shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.review-shadow:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}
.devices-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding: 0px 50px;
    justify-items: center;
    align-items: stretch;
}

.device-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1.8/1;
    padding: 5px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.device-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.device-card img {
    display: block;
    max-height: 50px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media (max-width: 1100px) {
    .devices-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0;
    }
}

/* Mobile */
@media (max-width: 700px) {    
    .devices-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0;
    }
    
    .device-card {
        border-radius: 12px;
        padding: 12px;
        aspect-ratio: 1.6/1;
    }
    
    .device-card img {
        max-height: 36px;
    }
}

/* Very small mobile */
@media (max-width: 400px) {    
    .devices-showcase-grid {
        gap: 10px;
        padding: 0;
    }
    
    .device-card {
        padding: 10px;
    }
    
    .device-card img {
        max-height: 32px;
    }
}
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}