/* CTA FINAL */
.final-cta {
	background: #fafafa;
	padding: 60px 20px;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.final-cta-wrapper {
	max-width: 900px;
	margin: auto;
}

.final-cta h2 {
	font-size: 24px;
	font-weight: 700;
	color: #2b2628;
	margin-bottom: 12px;
}

.final-cta p {
	font-size: 15px;
	color: #444;
	margin-bottom: 25px;
}

.final-cta-btn {
	display: inline-block;
	background: #e9302a;
	color: #fff;
	padding: 14px 34px;
	border-radius: 30px;
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.2s;
}

.final-cta-btn:hover {
	background: #c62823;
}

/* CTA STICKY MOBILE */
.cta-sticky-mobile {
    display: none; /* Desktop invisible */
}

@media (max-width: 768px) {
    .cta-sticky-mobile {
        position: fixed;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);

        background: #e9302a;
        color: #ffffff;

        padding: 14px 30px;
        border-radius: 30px;

        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap; /* Évite que le texte se coupe */

        z-index: 9999;
        box-shadow: 0 4px 10px rgba(0,0,0,0.25);

        display: inline-block; /* affichage correct */
        max-width: 90%;        /* occupe assez de largeur */
        text-align: center;    /* centre le texte */

        animation: fadeIn 0.4s ease;
    }

    /* marges pour ne PAS que le bouton masque le bas de page */
    body {
        padding-bottom: 80px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 15px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}