/* =================================================================
   PREUVE SOCIALE IMMÉDIATE + CTA STICKY AMÉLIORÉ
   ================================================================= */

/* ===== PREUVE SOCIALE RAPIDE (après hero) ===== */
.preuve-sociale-rapide {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(216, 181, 83, 0.1);
}

.preuve-sociale-rapide .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(216, 181, 83, 0.15);
}

.stat-numero {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Témoignage mini */
.temoignage-mini {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 40px;
    background: white;
    border-left: 4px solid var(--accent-gold);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.temoignage-texte {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.temoignage-auteur {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
    margin: 0;
}

/* ===== CTA STICKY PRINCIPAL (bas droite) ===== */
.cta-sticky-principal {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 998;
    background: linear-gradient(135deg, #d8b553 0%, #b8956a 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(216, 181, 83, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulseGold 2.5s ease-in-out infinite;
}

.cta-sticky-principal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(216, 181, 83, 0.6);
    color: white;
    animation: none;
}

.cta-sticky-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.cta-sticky-content {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.cta-sticky-content strong {
    font-size: 1rem;
    font-weight: 600;
}

.cta-sticky-content small {
    font-size: 0.8rem;
    opacity: 0.9;
}

@keyframes pulseGold {
    0%, 100% { 
        box-shadow: 0 8px 24px rgba(216, 181, 83, 0.4); 
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 32px rgba(216, 181, 83, 0.7); 
        transform: scale(1.02);
    }
}

/* ===== RESPONSIVE - TABLETTE ===== */
@media (max-width: 768px) {
    .preuve-sociale-rapide {
        padding: 40px 20px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-numero {
        font-size: 2rem;
    }
    
    .temoignage-mini {
        padding: 24px 28px;
    }
    
    .temoignage-texte {
        font-size: 1.05rem;
    }
    
    .cta-sticky-principal {
        bottom: 80px;
        right: 15px;
        padding: 14px 18px;
    }
    
    .cta-sticky-content strong {
        font-size: 0.95rem;
    }
    
    .cta-sticky-content small {
        font-size: 0.75rem;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 480px) {
    .preuve-sociale-rapide {
        padding: 30px 15px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-numero {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .temoignage-mini {
        padding: 20px 24px;
    }
    
    .temoignage-texte {
        font-size: 1rem;
    }
    
    .temoignage-auteur {
        font-size: 0.85rem;
    }
    
    .cta-sticky-principal {
        bottom: 70px;
        right: 10px;
        padding: 12px 16px;
        border-radius: 40px;
    }
    
    .cta-sticky-icon {
        font-size: 1.3rem;
    }
    
    .cta-sticky-content strong {
        font-size: 0.9rem;
    }
    
    .cta-sticky-content small {
        font-size: 0.7rem;
    }
}
