/* =========================================
   STYLES SPÉCIFIQUES V2 - TUNNEL OPTIMISÉ
   ========================================= */

/* FIX CRITIQUE : Forcer l'affichage de tous les éléments */
.fade-in-scroll,
.fade-in,
.slide-in-left,
.slide-in-right,
.zoom-in {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Authority Badges dans le Hero */
.authority-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-blue-light), var(--bg-cream));
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-light);
}

.authority-badges .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.authority-badges .badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.authority-badges .badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.authority-badges .badge span {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.trust-text {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(127, 168, 120, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    font-weight: 600;
}

.trust-text i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Section Problématiques */
.problematiques {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 4rem 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-color);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-dark);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon i {
    font-size: 2rem;
    color: white;
}

.problem-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Reviews Summary */
.reviews-summary {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-blue-light), white);
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
    border: 2px solid var(--primary-light);
}

.rating-large {
    text-align: center;
}

.rating-large .stars {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.rating-large .rating-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.cert-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cert-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

/* FAQ Section */
.faq {
    background-color: var(--bg-white);
    padding: 4rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--bg-light);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(135deg, var(--bg-blue-light), white);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-blue-light));
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
    border-top: 1px solid var(--bg-light);
}

.faq-answer p {
    margin: 0 0 1rem 0;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.faq-answer strong {
    color: var(--primary-dark);
}

/* Final Values Section */
.values-final {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-blue-light) 50%, var(--bg-cream) 100%);
    padding: 4rem 0;
}

/* CTA Main / Offre Section */
.cta-main {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: white !important;
    padding: 4rem 0 !important;
}

.cta-main h2 {
    color: white !important;
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
}

.cta-main p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.2rem !important;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.offer-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all var(--transition-normal);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.offer-card.recommended {
    border: 3px solid #FFD700;
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.offer-card h3 {
    color: var(--primary-dark) !important;
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
}

.offer-price {
    margin: 1.5rem 0;
    text-align: center;
}

.offer-price .price {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.offer-price .promo {
    display: block;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.offer-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark) !important;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.reassurance-text {
    text-align: center;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
}

.reassurance-text i {
    color: #FFD700;
    margin-right: 0.5rem;
}

/* Final Values Section */
.values-final {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-blue-light) 50%, var(--bg-cream) 100%);
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .authority-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .certifications {
        width: 100%;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
}