/* ===================================
   TESTCIVIQUE - PAGE ACCUEIL (HOME)
   Fichier: home.css
   Description: Styles spécifiques à la page d'accueil
   Design moderne avec Hero sombre et sections claires
   =================================== */

/* ================================================= */
/* === HERO SECTION (Dark) === */
/* ================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #1A202C;                      /* Bleu très foncé - exact match pallette */
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 50% 30%, #243447 0%, #1A202C 70%);
}


.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #94A3B8;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    animation: fadeUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw + 1rem, 5.5rem);
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    animation: fadeUp 1s ease 0.4s forwards;
    opacity: 0;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title span {
    color: #E2E8F0;              /* Gris clair institutionnel - comme version_14 */
    display: block;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94A3B8;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeUp 1s ease 0.8s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.btn-main {
    background: white;                                   /* Blanc pour contraste sur fond bleu */
    color: var(--deep-blue, #0F172A);                   /* Texte bleu foncé */
    padding: 16px 32px;
    border-radius: 4px;                                 /* Angles plus droits - style institutionnel */
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.btn-main:hover {
    background: #F1F5F9;                                /* Gris très clair au survol */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-sec {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
    font-size: 1rem;
}

.btn-sec:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.trust-indicators {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    justify-content: center;
    animation: fadeUp 1s ease 1s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748B;
    font-size: 0.9rem;
}

.trust-icon {
    color: var(--logo-red);
    font-size: 1.2rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================= */
/* === CATEGORIES SECTION === */
/* ================================================= */
.categories-section {
    padding: 80px 0;
    background: var(--bg-light, #F8FAFC);
    text-align: left;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.cat-card {
    grid-column: span 4;
    height: 260px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: var(--bg-white, #FFFFFF);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cat-card:nth-child(1) { grid-column: span 7; }
.cat-card:nth-child(2) { grid-column: span 5; }
.cat-card:nth-child(4) { grid-column: span 5; }
.cat-card:nth-child(5) { grid-column: span 3; }

.cat-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    transition: 0.5s;
}

.cat-card:hover .cat-bg {
    opacity: 1;
    transform: scale(1.05);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, transparent 100%);
}

.cat-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
}

.cat-title {
    font-size: 1.5rem;
    font-family: 'Anton', sans-serif;
    margin-bottom: 4px;
    text-transform: uppercase;
    text-align: left;
}

/* ================================================= */
/* === SERVICES SECTION === */
/* ================================================= */
.services-section {
    padding: 80px 0;
    background: var(--bg-white, #FFFFFF);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse .service-info {
    direction: ltr;
}

.service-img-wrap {
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================================= */
/* === NOUVEAU DESIGN SECTION ACCOMPAGNEMENT (GRID STYLE) === */
/* ================================================================= */

.accompaniment-section {
    background: #F8FAFC;
    padding: 100px 0;
    border-top: 1px solid var(--border-subtle, #E2E8F0);
    border-bottom: 1px solid var(--border-subtle, #E2E8F0);
}

/* En-tête de section (Texte + Logo Partenaire) */
.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.acc-text-col {
    max-width: 650px;
}

.acc-title {
    font-size: 2.5rem;
    color: var(--deep-blue, #0F172A);
    margin-bottom: 20px;
}

.acc-desc {
    color: var(--text-dark, #1E293B);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 4px solid var(--french-blue, #0055A4); /* Ligne bleue élégante */
}

.acc-partner-badge {
    background: white;
    padding: 15px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle, #E2E8F0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    text-align: center;
}

.acc-partner-logo {
    height: 50px;
    width: auto;
    margin-bottom: 5px;
}

.acc-partner-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary, #64748B);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Grille des services (Cards) */
.acc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Responsive auto */
    gap: 24px;
}

.acc-card {
    background: white;
    border: 1px solid var(--border-subtle, #E2E8F0);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.acc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--french-blue, #0055A4);
}

.acc-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 85, 164, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--french-blue, #0055A4);
}

.acc-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.acc-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-blue, #0F172A);
    margin-bottom: 10px;
    line-height: 1.3;
}

.acc-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary, #64748B);
    line-height: 1.5;
}

/* Badge spécial pour "Métiers sous tension" */
.badge-tension {
    display: inline-block;
    background: #FEF2F2;
    color: #DC2626;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 12px;
}

.acc-cta-wrapper {
    margin-top: 50px;
    text-align: center;
}

/* ================================================================= */

/* ================================================= */
/* === APP SHOWCASE === */
/* ================================================= */
.app-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light, #F8FAFC), #E0F7FF);
    overflow: hidden;
}

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

.phone-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.phone-image {
    width: 450px;
    max-width: 100%;           
    height: auto;

    animation: float 6s ease-in-out infinite;
    transition: transform 0.4s ease, filter 0.4s ease;

    filter: drop-shadow(0 35px 70px rgba(0,0,0,0.3));
}


.phone-image:hover {
    transform: translateY(-10px) rotateY(6deg) rotateX(4deg);
    filter: drop-shadow(0 40px 80px rgba(0, 212, 255, 0.35));
}


.store-btns {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.store-btn {
    background: var(--text-dark, #1E293B);
    color: white;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.store-btn:hover {
    background: var(--logo-red);
    color: var(--bg-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 212, 255, 0.3);
}

.store-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ======================================================= */
/* === SECTION PARTENAIRES (BANDE PASSANTE) === */
/* ======================================================= */
.partners-section-premium {
    background: #FFFFFF;
    padding: 100px 0 60px;
    border-top: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

.partners-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.partners-intro h3 {
    color: var(--text-dark, #1E293B);
    font-size: 2rem;
    margin-bottom: 12px;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.partners-intro p {
    color: var(--text-secondary, #64748B);
    font-size: 1rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.partner-card {
    width: 400px;
    height: 220px;
    margin: 0 24px;
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.partner-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    opacity: 1;
    filter: none;
    transition: transform 0.4s ease;
}

.partner-card:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--cyan, #00D4FF);
    z-index: 10;
}

.partner-card:hover .partner-img {
    transform: scale(1.05);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ================================================= */
/* === UTILITY CLASSES (pour éviter styles inline) === */
/* ================================================= */

/* Titres de section */
.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #1A1D2E;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-large {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: #1A1D2E;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraphes de description */
.section-desc {
    color: var(--text-secondary, #64748B);
    margin-bottom: 32px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Liste de features */
.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
}

.check-icon {
    color: var(--logo-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Boutons */
.btn-cyan {
    background: var(--deep-blue);
    color: var(--bg-white);
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--cyan-glow, rgba(0, 212, 255, 0.3));
}

.btn-cyan-large {
    background: var(--deep-blue);
    color: var(--bg-white);
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.btn-cyan-large:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px var(--cyan-glow, rgba(0, 212, 255, 0.4));
}

.btn-outline {
    border: 1px solid #ddd;
    color: var(--text-dark, #1E293B);
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    background: transparent;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--logo-red, #C73A3A);
    background: rgba(199, 58, 58, 0.05);
    color: var(--logo-red, #C73A3A);
}

.btn-blue {
    background: var(--deep-blue);
    color: white;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-blue:hover {
    background: var(--cyan-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 85, 164, 0.3);
}

/* Tag badge */
.tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--cyan, #00D4FF);
    color: var(--cyan, #00D4FF);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.1);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

/* ================================================= */
/* === FAQ SECTION === */
/* ================================================= */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    border-color: var(--cyan);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--text-secondary);
    transition: transform 0.3s ease, stroke 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.faq-answer a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.faq-answer a:hover {
    border-bottom-color: var(--cyan);
}

/* ================================================= */
/* === CTA FINAL === */
/* ================================================= */
.cta-final {
    text-align: center;
    padding: 80px 0;
    background: var(--bg-white, #FFFFFF);
    border-top: 1px solid #eee;
}

/* ========================================= */
/* === RESPONSIVE AVANCÉ (MIXTE) === */
/* ========================================= */

/* TABLETTE (< 1024px) */
@media(max-width: 1024px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cat-card,
    .cat-card:nth-child(1),
    .cat-card:nth-child(2),
    .cat-card:nth-child(4),
    .cat-card:nth-child(5) {
        grid-column: span 1 !important;
        height: 220px;
    }

    .service-block {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .service-block.reverse {
        flex-direction: column-reverse;
    }

    .app-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contenu "Corps de page" aligné à gauche pour tablette */
    .service-info,
    .app-layout .reveal-left {
        text-align: left;
    }

    .store-btns {
        justify-content: flex-start;
    }

    /* Accompaniment Section (Tablet) */
    .acc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

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

    /* Hero reste centré par défaut */
}

/* MOBILE (< 768px) */
@media(max-width: 768px) {
    /* Empêcher le débordement horizontal */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow: hidden;
    }

    /* Empêcher les sections de déborder */
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Empêcher les images de déborder */
    img {
        max-width: 100%;
        height: auto;
    }

    /* FAQ Section responsive */
    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* --- HERO SECTION : CENTRÉE (Demande Utilisateur) --- */
    .hero-section {
        padding-top: 130px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center; /* Force le centrage */
        align-items: center; /* Force l'alignement flex */
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
        word-wrap: break-word;
        max-width: 100%;
    }

    .hero-desc {
        font-size: 1rem;
        margin: 0 auto 32px;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        gap: 12px;
        padding: 0 10px;
    }

    .btn-main,
    .btn-sec {
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        display: block;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    .trust-indicators {
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* --- RESTE DU CONTENU : GAUCHE (Design Editorial) --- */

    /* CATEGORIES VERTICALES */
    .categories-section {
        text-align: center; /* Titre reste centré */
    }

    .categories-section p {
        margin-bottom: 20px;
    }

    .cat-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 30px;
    }

    .cat-card {
        height: 180px;
        width: 100%;
    }

    /* SERVICES / APP ALIGNÉS GAUCHE */
    .services-section {
        padding: 50px 0;
    }

    .service-img-wrap {
        height: 240px;
        width: 100%;
        border-radius: 16px;
        margin-bottom: 0;
    }

    .service-info {
        text-align: left;
        padding: 0;
    }

    /* Titres centrés pour meilleure lisibilité */
    .section-title,
    .section-title-large,
    .poster-font {
        font-size: 2.2rem !important;
        margin-bottom: 16px;
        text-align: center;
    }

    /* Accompaniment Section (Mobile) */
    .accompaniment-section {
        padding: 60px 0;
    }

    .acc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 40px;
    }

    .acc-text-col {
        max-width: 100%;
    }

    .acc-title {
        font-size: 2rem;
    }

    .acc-desc {
        font-size: 1rem;
        padding-left: 15px;
    }

    .acc-partner-badge {
        padding: 12px 20px;
    }

    .acc-partner-logo {
        height: 40px;
    }

    .acc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .acc-card {
        padding: 24px;
    }

    .acc-cta-wrapper {
        margin-top: 40px;
    }

    /* APP SECTION GAUCHE */
    .app-showcase {
        padding: 60px 0;
    }

    .app-showcase .reveal-left {
        text-align: left;
    }

    .store-btns {
        flex-direction: column;
        width: 100%;
    }

    .store-btn {
        justify-content: center;
        width: 100%;
        padding: 16px;
    }

    /* PARTNERS (Intro centrée) */
    .partners-section-premium {
        padding: 60px 0 40px;
    }

    .partners-intro {
        text-align: center;
        padding: 0;
    }

    .partners-intro h3,
    .partners-intro p {
        text-align: center;
    }

    .marquee-container {
        width: 100%;
        overflow: hidden;
    }

    .marquee-track {
        animation-duration: 25s;
    }

    .partner-card {
        width: 280px;
        height: 160px;
        margin: 0 12px;
        padding: 22px;
    }

    .partner-img {
        max-width: 92%;
        max-height: 92%;
    }

    /* CTA FINAL (Titre centré) */
    .cta-final {
        text-align: center;
        padding: 60px 0;
    }

    .cta-final h2 {
        text-align: center;
    }

    .cta-final .btn-cyan-large {
        width: 100%;
        max-width: 400px;
        text-align: center;
        display: inline-block;
    }
}
