/* ===================================
   LANDING PAGE BADOUBOARD - CSS
   Design moderne et orienté conversion
   =================================== */

/* === RESET SPÉCIFIQUE LANDING === */
body.landing-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh !important;
    display: block !important;
    align-items: initial !important;
    justify-content: initial !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.landing-page * {
    box-sizing: border-box;
}

/* === NAVIGATION === */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #007ca1 0%, #005f7a 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #007ca1;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-logo-text {
    font-size: 1.5em;
    font-weight: 700;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.nav-login {
    background: white;
    color: #007ca1 !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-login:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.nav-mobile-login {
    display: none;
    text-decoration: none;
    background: white;
    color: #007ca1;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* === CONTAINERS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === BOUTONS === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, #007ca1 0%, #005f7a 100%);
    color: white;
    border-color: #007ca1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #005f7a 0%, #004a5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 124, 161, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #007ca1;
    border-color: #007ca1;
}

.btn-secondary:hover {
    background: #007ca1;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #007ca1;
    border-color: #007ca1;
}

.btn-outline:hover {
    background: #007ca1;
    color: white;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
}

/* === HERO SECTION === */
.hero {
    background: transparent;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a202c;
}

.highlight {
    background: linear-gradient(135deg, #007ca1, #005f7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3em;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 124, 161, 0.1);
}

.hero-quote {
    margin: 0;
    padding: 0;
}

.quote-text {
    color: #2d3748;
    font-size: 1.15em;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.quote-author {
    color: #007ca1;
    font-size: 0.95em;
    font-style: normal;
    font-weight: 600;
}

/* === HERO CAROUSEL === */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-carousel {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.carousel-container {
    position: relative;
    background: #1a202c;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 15px;
    border: 8px solid #2d3748;
}

.carousel-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.5;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: calc(100% - 50px);
    object-fit: contain;
    display: block;
    background: #fff;
}

.carousel-caption {
    background: linear-gradient(135deg, #007ca1 0%, #005f7a 100%);
    color: white;
    padding: 12px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85em;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-dots {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dots .dot.active {
    background: white;
    width: 20px;
    border-radius: 4px;
}

/* === SECTIONS COMMUNES === */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #4a5568;
    margin-bottom: 50px;
    margin-top: -40px;
}

/* === PROBLEMS SECTION === */
.problems {
    background: transparent;
}

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

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #007ca1;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 124, 161, 0.15);
}

.problem-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
}

.problem-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* === FEATURES SECTION === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #007ca1;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 124, 161, 0.15);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 0.95em;
}

/* === BENEFITS SECTION === */
.benefits {
    background: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(0, 124, 161, 0.15);
}

.benefit-number {
    font-size: 2.5em;
    flex-shrink: 0;
}

.benefit-content {
    text-align: center;
}

.benefit-content h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
}

.benefit-content p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

/* === TESTIMONIALS SECTION === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4em;
    color: #007ca1;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.1em;
}

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

.author-avatar {
    font-size: 2em;
    width: 50px;
    height: 50px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info strong {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: #718096;
    font-size: 0.9em;
}

/* === PRICING SECTION === */
.pricing {
    background: transparent;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 124, 161, 0.15);
}

.pricing-card.featured {
    border: 3px solid #007ca1;
    transform: scale(1.05);
}

.pricing-badge {
    background: #007ca1;
    color: white;
    padding: 8px 20px;
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.pricing-header {
    padding: 40px 30px 20px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    padding-top: 60px;
}

.pricing-header h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 3em;
    font-weight: 800;
    color: #007ca1;
}

.price-period {
    font-size: 1.2em;
    color: #718096;
    font-weight: 500;
}

.pricing-description {
    color: #4a5568;
    font-size: 1.1em;
}

.pricing-features {
    padding: 0 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f7fafc;
    color: #4a5568;
}

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

.pricing-cta {
    padding: 30px;
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.pricing-note p {
    margin: 0;
    color: #2d3748;
    font-size: 1.1em;
    line-height: 1.6;
}

.pricing-guarantee {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-guarantee p {
    margin: 0;
    color: #2d3748;
    font-size: 1.1em;
}

/* === FINAL CTA SECTION === */
.final-cta {
    background: linear-gradient(135deg, #007ca1 0%, #005f7a 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.final-cta .btn-primary {
    background: white;
    color: #007ca1;
    border-color: white;
    font-size: 1.2em;
    padding: 20px 40px;
}

.final-cta .btn-primary:hover {
    background: #f7fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-secondary {
    background: white;
    color: #007ca1;
    border-color: white;
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #005f7a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    line-height: 1.8;
    margin: 0;
}

/* === FOOTER === */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.5em;
    font-weight: 700;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
    color: #a0aec0;
}

.env-info {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.7;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.benefit-item,
.testimonial-card,
.pricing-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        color: #333;
    }

    .nav-link:hover {
        color: #007ca1;
        background: rgba(0, 124, 161, 0.1);
    }
    
    .nav-logo-text {
        display: none;
    }

    .nav-logo-img {
        height: 55px;
    }

    .nav-mobile-login {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .nav-mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-carousel {
        max-width: 320px;
    }
    
    .carousel-container {
        padding: 12px;
        border-width: 6px;
    }
    
    .carousel-caption {
        font-size: 0.8em;
        padding: 10px 12px;
        height: 45px;
    }
    
    .carousel-dots {
        bottom: 58px;
        gap: 6px;
    }
    
    .carousel-dots .dot {
        width: 7px;
        height: 7px;
    }
    
    .carousel-dots .dot.active {
        width: 18px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container,
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .pricing-grid,
    .features-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2em;
    }
    
    .final-cta p {
        font-size: 1.1em;
    }
}

/* === ANIMATIONS AU SCROLL === */
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* === EFFETS HOVER AVANCÉS === */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007ca1, #005f7a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 124, 161, 0.15);
}

/* === ACCESSIBILITÉ === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === FOCUS STATES === */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #007ca1;
    outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
    .landing-nav,
    .final-cta,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
        background: white;
    }
    
    section {
        padding: 20px 0;
    }
}

/* ===================================
   Remplacement emojis par checks simples
   =================================== */

.check-icon {
    color: #007ca1;
    font-weight: bold;
    margin-right: 8px;
    font-size: 1.1em;
}

.pricing-features li .check-icon {
    color: #28a745;
}

/* Numéros de bénéfices */
.benefit-number {
    background: linear-gradient(135deg, #007ca1, #005f7a);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Icônes SVG problèmes/features */
.problem-icon svg,
.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: #007ca1;
    stroke-width: 2;
}

/* ===================================
   FAQ SECTION STYLES
   Mini FAQ (landing) + Page FAQ dédiée
   Cohérent avec le design existant :
   - Cards : white, border-radius 16px, box-shadow 0 10px 40px, border-top 4px
   - Hover : translateY(-5px), box-shadow rgba(0,124,161,0.15)
   - Sections : background transparent (body gradient visible)
   - Typo : titres #2d3748 600, texte #4a5568, line-height 1.6
   =================================== */

/* --- Mini FAQ sur la landing --- */
.faq-section {
    background: transparent;
}

.faq-section .section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #4a5568;
    margin-top: -40px;
    margin-bottom: 50px;
}

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

/* --- Accordéon (partagé mini + page dédiée) --- */
.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #007ca1;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 124, 161, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15em;
    color: #2d3748;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: color 0.3s ease;
    gap: 16px;
}

.faq-question:hover {
    color: #007ca1;
}

.faq-question:focus {
    outline: none;
}

.faq-question:focus-visible {
    outline: 2px solid #007ca1;
    outline-offset: 2px;
}

.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007ca1, #005f7a);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2em;
    font-weight: 700;
    color: white;
}

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

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

.faq-answer-inner {
    padding: 0 30px 30px;
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.05em;
}

.faq-answer-inner a {
    color: #007ca1;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer-inner a:hover {
    text-decoration: underline;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Animation fadeInUp (cohérent avec feature-card, benefit-item, etc.) */
.faq-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* --- Lien "Voir toutes les questions" --- */
.faq-see-all {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-see-all a:not(.btn) {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #007ca1;
    color: #007ca1;
    cursor: pointer;
}

.faq-see-all a:not(.btn):hover {
    background: #007ca1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 124, 161, 0.3);
}

/* ===================================
   PAGE TÉMOIGNAGES VIDÉO
   Vidéos selfie clients (format 9:16)
   =================================== */

/* Hero */
.temoignages-hero {
    background: linear-gradient(135deg, #007ca1 0%, #005f7a 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: white;
}

.temoignages-hero h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.temoignages-hero p {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.temoignages-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.temoignages-back-link:hover {
    color: white;
}

/* Contenu */
.temoignages-content {
    padding: 60px 0 80px;
}

/* Grille de vidéos */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Carte vidéo */
.temoignage-video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.temoignage-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(0, 124, 161, 0.15);
}

/* Wrapper iframe en 9:16 */
.temoignage-iframe-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
}

.temoignage-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Infos client sous la vidéo */
.temoignage-info {
    padding: 16px 20px;
    text-align: center;
}

.temoignage-info strong {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1.05em;
}

.temoignage-info span {
    color: #718096;
    font-size: 0.9em;
}

/* Message si aucun témoignage */
.temoignages-empty {
    text-align: center;
    padding: 60px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.temoignages-empty p {
    color: #4a5568;
    font-size: 1.2em;
}

/* Animation */
.temoignage-video-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.temoignage-video-card:nth-child(1) { animation-delay: 0.1s; }
.temoignage-video-card:nth-child(2) { animation-delay: 0.2s; }
.temoignage-video-card:nth-child(3) { animation-delay: 0.3s; }
.temoignage-video-card:nth-child(4) { animation-delay: 0.4s; }
.temoignage-video-card:nth-child(5) { animation-delay: 0.5s; }
.temoignage-video-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive tablette */
@media (max-width: 900px) {
    .temoignages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Responsive mobile */
@media (max-width: 600px) {
    .temoignages-hero {
        padding: 110px 0 40px;
    }

    .temoignages-hero h1 {
        font-size: 2em;
    }

    .temoignages-hero p {
        font-size: 1.1em;
    }

    .temoignages-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

/* --- Page FAQ dédiée --- */
.faq-page-hero {
    background: linear-gradient(135deg, #007ca1 0%, #005f7a 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: white;
}

.faq-page-hero h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.faq-page-hero p {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.faq-back-link:hover {
    color: white;
}

/* Catégories FAQ */
.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 4px solid #007ca1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.faq-category-icon {
    font-size: 1em;
}

.faq-page-content {
    padding: 60px 0 80px;
}

/* Barre de recherche */
.faq-search {
    max-width: 600px;
    margin: -30px auto 50px;
    position: relative;
    z-index: 10;
}

.faq-search input {
    width: 100%;
    padding: 18px 24px 18px 52px;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 1.05em;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    color: #2d3748;
}

.faq-search input::placeholder {
    color: #a0aec0;
}

.faq-search input:focus {
    outline: none;
    border-color: #007ca1;
    box-shadow: 0 12px 50px rgba(0, 124, 161, 0.15);
}

.faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 1.2em;
}

.faq-no-results {
    text-align: center;
    padding: 40px 30px;
    color: #718096;
    font-size: 1.1em;
    display: none;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* CTA bas de page FAQ */
.faq-bottom-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #007ca1;
}

.faq-bottom-cta h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.faq-bottom-cta p {
    color: #4a5568;
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

/* --- Responsive FAQ --- */
@media (max-width: 768px) {
    .faq-question {
        padding: 24px 22px;
        font-size: 1.05em;
    }

    .faq-answer-inner {
        padding: 0 22px 24px;
        font-size: 1em;
    }

    .faq-page-hero {
        padding: 110px 0 40px;
    }

    .faq-page-hero h1 {
        font-size: 2em;
    }

    .faq-page-hero p {
        font-size: 1.1em;
    }

    .faq-category-title {
        font-size: 1.4em;
    }

    .faq-bottom-cta {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 20px 16px;
        font-size: 1em;
    }

    .faq-answer-inner {
        padding: 0 16px 20px;
    }

    .faq-page-hero h1 {
        font-size: 1.7em;
    }

    .faq-category-title {
        font-size: 1.2em;
    }

    .faq-bottom-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
