/* ═════════════════════════════════════════════════════════════
   🌌 HERO SECTION - MISES À JOUR
   Novilisya Solution - Bouton "GLISSER DANS LA MATRICE" sous le titre
   ═════════════════════════════════════════════════════════════ */

/* Bouton "GLISSER DANS LA MATRICE" sous le titre (juste après "ICI") */
.hero-scroll-indicator-below-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

/* Effet de fond au hover */
.hero-scroll-indicator-below-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15), 
        rgba(6, 182, 212, 0.15));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s;
    border: 2px solid transparent;
}

.hero-scroll-indicator-below-title:hover::before {
    opacity: 1;
    border-color: rgba(6, 182, 212, 0.3);
}

/* Animation pulse */
@keyframes pulse-below {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.9;
    }
}

.hero-scroll-indicator-below-title {
    animation: pulse-below 3s ease-in-out infinite;
}

.hero-scroll-indicator-below-title:hover {
    animation-play-state: paused;
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3),
                0 0 60px rgba(139, 92, 246, 0.2);
}

.hero-scroll-indicator-below-title:hover .scroll-line {
    background: linear-gradient(180deg, #FBBF24, transparent);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.9);
    height: 50px;
}

.hero-scroll-indicator-below-title:hover .scroll-text {
    color: #06B6D4;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.9);
    letter-spacing: 4px;
    font-size: 1rem;
}

.hero-scroll-indicator-below-title .scroll-line {
    width: 3px;
    height: 45px;
    background: linear-gradient(180deg, #06B6D4, transparent);
    transition: all 0.4s;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.7);
}

.hero-scroll-indicator-below-title .scroll-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    transition: all 0.4s;
    font-weight: 700;
}

/* ═════════════════════════════════════════════════════════════
   BOUTONS CTA - ESPACEMENT AUGMENTÉ
   ═════════════════════════════════════════════════════════════ */

.hero-cta-spaced {
    gap: 3rem !important; /* Augmenté de 1.5rem à 3rem */
}

/* Responsive - espacement réduit sur mobile */
@media (max-width: 768px) {
    .hero-cta-spaced {
        gap: 1.5rem !important;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-spaced .btn-quantum-primary,
    .hero-cta-spaced .btn-quantum-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-scroll-indicator-below-title {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .hero-scroll-indicator-below-title .scroll-line {
        height: 35px;
    }
    
    .hero-scroll-indicator-below-title .scroll-text {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-cta-spaced {
        gap: 2rem !important;
    }
}

/* Animation d'entrée pour le bouton du haut */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator-top {
    animation: fadeInDown 0.6s ease-out, pulse-top 3s ease-in-out infinite;
    animation-delay: 0.2s, 0.8s;
    opacity: 0;
    animation-fill-mode: forwards;
}
