/* Styles supplémentaires pour la page optimisée */

/* Améliorations de la section héros */
.social-proof-brief {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border-left: 3px solid #fbbf24;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.rating-stars i {
    color: #fbbf24;
}

.rating-stars span {
    color: var(--text-color);
    font-weight: 500;
}

.hero-categories .category-tags span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-categories .category-tags i {
    color: var(--accent-color);
    font-size: 16px;
}

/* Section Problèmes/Solutions */
.problems-solutions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-solution-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.problem-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.problem-icon {
    text-align: center;
    margin-bottom: 20px;
}

.problem-icon i {
    font-size: 3rem;
}

.text-red {
    color: #ef4444;
}

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

.problem {
    color: #6b7280;
    margin-bottom: 15px;
    font-style: italic;
}

.solution {
    color: var(--primary-color);
    font-weight: 500;
}

/* Services améliorés */
.services-grid .service-card {
    position: relative;
    overflow: hidden;
}

.services-grid .service-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.02);
}

.services-grid .service-card.featured::before {
    content: "⭐ Populaire";
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 2;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-benefits li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 14px;
}

.service-price {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.price-label {
    display: block;
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 5px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--accent-color);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Comment ça marche */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    background: var(--light-bg);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin: 30px 0 20px;
    color: var(--accent-color);
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Preuve sociale */
.social-proof-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.social-proof-section .section-header h2,
.social-proof-section .section-label {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating i {
    color: #fbbf24;
}

.quote {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.author-business {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 3px;
}

.author-location {
    font-size: 12px;
    color: #64748b;
}

.stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-summary .stat-item {
    text-align: center;
}

.stats-summary .stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stats-summary .stat-item p {
    color: #94a3b8;
}

/* À propos + CTA secondaire */
.about-cta-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.value-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: var(--light-bg);
}

.value-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: var(--light-text);
}

.secondary-cta {
    margin-top: 40px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA final */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-cta-section > .container > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
    min-width: 280px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.trust-item i {
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 768px) {
    .problems-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .stats-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid .service-card.featured {
        transform: none;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
    }
}
