/* Dernières retouches : Tableaux responsives et ajustements mobiles */
.price-table-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.price-table {
    min-width: 650px !important;
    /* Force le défilement sur petits écrans */
}

@media (max-width: 768px) {
    .hero-content {
        padding-bottom: 100px !important;
    }

    /* Redimensionnement et repositionnement du CTA flottant pour mobile */
    .floating-cta {
        bottom: 10px !important;
        left: 10px !important;
        gap: 8px !important;
        transform: scale(0.85);
        transform-origin: bottom left;
    }

    .cta-text {
        font-size: 10px !important;
        max-width: 150px !important;
        padding: 8px 12px !important;
        margin-bottom: 5px !important;
    }

    .cta-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }

    /* Éviter que le texte du CTA ne masque trop la table */
    .floating-cta.visible .cta-text {
        opacity: 0.9 !important;
    }
}