/* ============================================
   Landing Pages Powerstrat - Daniel Moquet Jardins
   --------------------------------------------
   Tous les styles sont scopés sous `.landing-powerstrat`
   pour neutraliser le `html { font-size: 50% / 62.5% }` du site
   et éviter les collisions avec la CSS du squelette.
   Les tailles sont en `px` fixes (pas de `rem`).
   ============================================ */

/* Reset du font-weight imposé par le squelette du site */
body {
    font-weight: normal !important;
}

.landing-powerstrat {
    --primary: #d67c1c;
    --secondary: #aec030;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --text: #333;
    --text-muted: #666;

    /* Neutralise le 50% / 62.5% du site sur .l-boxContent */
    font-size: 16px;
    line-height: 1.6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg);
    color: var(--text);
}

.landing-powerstrat *,
.landing-powerstrat *::before,
.landing-powerstrat *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing-powerstrat h1,
.landing-powerstrat h2,
.landing-powerstrat h3,
.landing-powerstrat h4,
.landing-powerstrat h5,
.landing-powerstrat h6 {
    line-height: 1.2;
    font-weight: 600;
    color: var(--primary);
}

.landing-powerstrat h1 { font-size: 40px; }
.landing-powerstrat h2 { font-size: 32px; }
.landing-powerstrat h3 { font-size: 24px; }
.landing-powerstrat h4 { font-size: 20px; }
.landing-powerstrat h5 { font-size: 16px; }
.landing-powerstrat h6 { font-size: 14px; }

.landing-powerstrat p { margin-bottom: 16px; }
.landing-powerstrat p:last-child { margin-bottom: 0; }

.landing-powerstrat img,
.landing-powerstrat picture,
.landing-powerstrat video,
.landing-powerstrat canvas,
.landing-powerstrat svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.landing-powerstrat a { color: inherit; text-decoration: none; }

.landing-powerstrat button,
.landing-powerstrat input,
.landing-powerstrat select,
.landing-powerstrat textarea {
    font: inherit;
    color: inherit;
}

.landing-powerstrat button {
    cursor: pointer;
    background: none;
    border: none;
}

.landing-powerstrat ul,
.landing-powerstrat ol {
    list-style: none;
}

.landing-powerstrat table {
    border-collapse: collapse;
    border-spacing: 0;
}

.landing-powerstrat strong { color: var(--secondary); }

.landing-powerstrat .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Ratio par défaut pour les visuels des prestations (remplace les style="aspect-ratio: 16/9" inline du Powerstrat) */
.landing-powerstrat .prestation-detail__image {
    aspect-ratio: 16/9;
}

/* ============================================
   Bloc 'Components' Powerstrat
   ============================================ */
.landing-powerstrat .section {
    padding: 64px 32px;
}

.landing-powerstrat .section--alt {
    background: var(--bg-alt);
}

.landing-powerstrat .section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Titres de section */
.landing-powerstrat .section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary);
}

.landing-powerstrat .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -16px;
    margin-bottom: 32px;
}

/* Bouton CTA */
.landing-powerstrat .btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-powerstrat .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Media - images et icônes */
.landing-powerstrat .media-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.landing-powerstrat .media-icon {
    width: 100%;
    height: 100%;
    color: var(--secondary);
}

.landing-powerstrat .media-placeholder {
    background: var(--bg-alt, #f5f5f5);
    border: 2px dashed var(--text-muted, #999);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: var(--text-muted);
}

/* Message vide */
.landing-powerstrat .empty-message {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 32px;
}

/* ============================================
   INTRODUCTION
   ============================================ */
.landing-powerstrat .introduction {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.landing-powerstrat .introduction h1 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.landing-powerstrat .introduction__text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.landing-powerstrat .introduction__text .btn {
    margin-top: 8px;
}

.landing-powerstrat .introduction__media img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.landing-powerstrat .introduction__media svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    color: var(--secondary);
}

/* ============================================
   PRESTATIONS
   ============================================ */
.landing-powerstrat .prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.landing-powerstrat .prestation-card {
    background: var(--bg, white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-powerstrat .section--alt .prestation-card {
    background: white;
}

.landing-powerstrat .prestation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.landing-powerstrat .prestation-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--secondary);
}

/* Variantes de couleur d'icône */
.landing-powerstrat .prestation-card__icon--primary {
    color: var(--primary);
}

.landing-powerstrat .prestation-card__icon--secondary {
    color: var(--secondary);
}

.landing-powerstrat .prestation-card__icon--muted {
    color: var(--text-muted);
}

.landing-powerstrat .prestation-card__icon svg {
    width: 100%;
    height: 100%;
}

.landing-powerstrat .prestation-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.landing-powerstrat .prestation-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   PRESTATIONS DETAILS
   ============================================ */
.landing-powerstrat .prestation-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.landing-powerstrat .prestation-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.landing-powerstrat .prestation-detail--reversed {
    direction: rtl;
}

.landing-powerstrat .prestation-detail--reversed > * {
    direction: ltr;
}

.landing-powerstrat .prestation-detail__image {
    overflow: hidden;
    border-radius: 12px;
}

.landing-powerstrat .prestation-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-powerstrat .prestation-detail__image svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    color: var(--secondary);
}

.landing-powerstrat .prestation-detail__text h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.landing-powerstrat .prestation-detail__text p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.landing-powerstrat .prestation-detail__text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   TEMOIGNAGES
   ============================================ */
.landing-powerstrat .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.landing-powerstrat .testimonial {
    background: var(--bg, white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary);
}

.landing-powerstrat .section--alt .testimonial {
    background: white;
}

.landing-powerstrat .testimonial__text {
    font-style: italic;
    font-size: 17.6px;
    margin-bottom: 24px;
    line-height: 1.7;
    color: var(--text);
}

.landing-powerstrat .testimonial__author {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.landing-powerstrat .testimonial__role {
    color: var(--text-muted);
    font-size: 14.4px;
    margin: 0;
}

/* ============================================
   CTA (Call To Action)
   ============================================ */
.landing-powerstrat .cta-section {
    background: var(--primary);
    text-align: center;
    padding: 64px 32px;
}

.landing-powerstrat .cta-section .container {
    max-width: 800px;
    margin-inline: auto;
}

.landing-powerstrat .cta-section h2 {
    color: white;
    margin-bottom: 32px;
}

.landing-powerstrat .cta-section h2 p {
    margin: 0;
}

.landing-powerstrat .cta-section strong {
    color: var(--secondary);
}

.landing-powerstrat .cta-section .btn {
    background: var(--secondary);
    color: var(--primary);
}

.landing-powerstrat .cta-section .btn:hover {
    background: white;
}

/* ============================================
   LOGOS
   ============================================ */
.landing-powerstrat .logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: start;
    justify-items: center;
}

.landing-powerstrat .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.2s;
    text-decoration: none;
}

.landing-powerstrat .logo-item:hover {
    opacity: 1;
}

.landing-powerstrat .logo-item__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-powerstrat .logo-item__media img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
}

.landing-powerstrat .logo-item__name {
    margin-top: 8px;
    font-size: 12.8px;
    color: var(--text-muted);
}

.landing-powerstrat .logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--bg-alt);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Media icon wrapper global */
.landing-powerstrat .media-icon-wrapper > * {
    max-width: 100%;
    height: auto;
}

/* ============================================
   FAQ
   ============================================ */
.landing-powerstrat .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.landing-powerstrat .faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.landing-powerstrat .faq-item:last-child {
    border-bottom: none;
}

.landing-powerstrat .faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.landing-powerstrat .faq-item__question:hover {
    color: var(--primary);
}

.landing-powerstrat .faq-item__question span:first-child {
    flex: 1;
    padding-right: 16px;
}

.landing-powerstrat .faq-item__toggle {
    font-size: 24px;
    color: var(--secondary);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.landing-powerstrat .faq-item.open .faq-item__toggle {
    transform: rotate(45deg);
}

.landing-powerstrat .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.landing-powerstrat .faq-item.open .faq-item__answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.landing-powerstrat .faq-item__answer p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .landing-powerstrat .section {
        padding: 48px 24px;
    }

    .landing-powerstrat .introduction,
.landing-powerstrat .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .landing-powerstrat .introduction h1,
.landing-powerstrat .intro-grid h1,
.landing-powerstrat .intro-text h1 {
        font-size: 32px;
    }

    .landing-powerstrat .introduction__media,
.landing-powerstrat .intro-media {
        order: -1;
    }

    .landing-powerstrat .prestation-detail,
.landing-powerstrat .detail-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .landing-powerstrat .prestation-detail--reversed,
.landing-powerstrat .detail-block--reversed {
        direction: ltr;
    }

    .landing-powerstrat .section h2 {
        font-size: 24px;
    }

    .landing-powerstrat .prestations-grid,
.landing-powerstrat .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .landing-powerstrat .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ============================================
   INTRODUCTION V2 - Image/vidéo pleine largeur
   ============================================ */
.landing-powerstrat .section--intro-v2 {
    padding: 0;
}

.landing-powerstrat .intro-v2 {
    position: relative;
    min-height: 500px;
}

.landing-powerstrat .intro-v2__media {
    position: absolute;
    inset: 0;
    background: #e5e7eb;
}

.landing-powerstrat .intro-v2__image,
.landing-powerstrat .intro-v2__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-powerstrat .intro-v2__video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.landing-powerstrat .intro-v2__video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.landing-powerstrat .intro-v2__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-powerstrat .intro-v2__placeholder::after {
    content: '🖼️';
    font-size: 48px;
    opacity: 0.5;
}

.landing-powerstrat .intro-v2__overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    min-height: 500px;
    padding: 32px;
}

.landing-powerstrat .intro-v2__content {
    background: #fff;
    padding: 32px;
    border-radius: 0 20px 20px 20px;
    max-width: 500px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.landing-powerstrat .intro-v2__content h1 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary);
}

.landing-powerstrat .intro-v2__text {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.landing-powerstrat .intro-v2__text p {
    margin: 0 0 12px;
}

@media (min-width: 80em) {
    .landing-powerstrat .intro-v2__overlay {
        padding: 48px 5vw;
    }

    .landing-powerstrat .intro-v2__content {
        max-width: 36%;
        padding: 40px;
    }
}

@media (min-width: 100em) {
    .landing-powerstrat .intro-v2__content {
        max-width: 30%;
    }
}

/* ============================================
   ETAPES - Processus étape par étape
   ============================================ */
.landing-powerstrat .section--etapes .container {
    max-width: 1400px;
}

.landing-powerstrat .etapes__title {
    text-align: center;
    margin-bottom: 32px;
}

.landing-powerstrat .etapes__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 16px;
}

/* Grille adaptative selon le nombre d'étapes (max 4 par ligne) */
@media (min-width: 45em) {
    .landing-powerstrat .etapes__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    /* 2 étapes : 50/50 */
    .landing-powerstrat .etapes__grid:has(.etape:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 70em) {
    /* 3 étapes : 33/33/33 */
    .landing-powerstrat .etapes__grid:has(.etape:nth-child(3):last-child) {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* 4+ étapes : max 4 par ligne */
    .landing-powerstrat .etapes__grid:has(.etape:nth-child(4)) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.landing-powerstrat .etape {
    position: relative;
    margin-top: 50px;
    padding: 20px;
    border: 2px solid var(--primary);
    border-radius: 0 12px 12px 12px;
    background: #fff;
}

.landing-powerstrat .etape::before {
    content: attr(data-step);
    position: absolute;
    top: -50px;
    left: -2px;
    width: 64px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 25.6px;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
}

.landing-powerstrat .etape__content {
    color: var(--text);
    line-height: 1.5;
}

.landing-powerstrat .etape__content p {
    margin: 0;
}

.landing-powerstrat .etape__content strong {
    color: var(--primary);
}

/* /-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/ */
/* GRILLE IMAGES */
.landing-powerstrat .grille-images {display:grid;grid-template-columns:1fr;gap:16px;margin-top:32px}
.landing-powerstrat .grille-images__item {position:relative;overflow:hidden;border-radius:0 20px 20px 20px;aspect-ratio:4/3;background:#e5e7eb}
.landing-powerstrat .grille-images__item[data-dropzone]::after {content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.7),transparent);border:none;border-radius:inherit;pointer-events:none}
.landing-powerstrat .grille-images__img {width:100%;height:100%;object-fit:cover;transition:transform 0.3s ease}
.landing-powerstrat .grille-images__item:hover .grille-images__img {transform:scale(1.05)}
.landing-powerstrat .grille-images__placeholder {width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#e5e7eb,#d1d5db)}
.landing-powerstrat .grille-images__placeholder::after {content:'🖼️';font-size:32px;opacity:0.4}
.landing-powerstrat .grille-images__titre {position:absolute;z-index:2;bottom:16px;left:24px;right:24px;margin:0;font-size:17.6px;font-weight:600;color:#fff}

/* GRILLE IMAGES - COLONNES */
.landing-powerstrat .grille-images--cols-2 {grid-template-columns:repeat(2,1fr)}
.landing-powerstrat .grille-images--cols-3 {grid-template-columns:repeat(3,1fr)}
.landing-powerstrat .grille-images--cols-4 {grid-template-columns:repeat(4,1fr)}
.landing-powerstrat .grille-images--cols-5 {grid-template-columns:repeat(5,1fr)}

/* GRILLE IMAGES - RATIOS */
.landing-powerstrat .grille-images--ratio-1-1 .grille-images__item {aspect-ratio:1/1}
.landing-powerstrat .grille-images--ratio-4-3 .grille-images__item {aspect-ratio:4/3}
.landing-powerstrat .grille-images--ratio-16-9 .grille-images__item {aspect-ratio:16/9}
.landing-powerstrat .grille-images--ratio-3-4 .grille-images__item {aspect-ratio:3/4}
.landing-powerstrat .grille-images--ratio-4-5 .grille-images__item {aspect-ratio:4/5}

@media (max-width:60em){
	.landing-powerstrat .grille-images--cols-3,
.landing-powerstrat .grille-images--cols-4,
.landing-powerstrat .grille-images--cols-5 {grid-template-columns:repeat(2,1fr)}
}
@media (max-width:40em){
	.landing-powerstrat .grille-images {grid-template-columns:1fr}
}

/* ============================================
   HERO - Grand bandeau avec titre centré
   ============================================ */
.landing-powerstrat .section--hero {
    padding: 0;
}

.landing-powerstrat .hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 32px;
    background-color: var(--primary);
    background-size: cover;
    background-position: center;
    position: relative;
}

.landing-powerstrat .hero--overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.landing-powerstrat .hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.landing-powerstrat .hero__content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.landing-powerstrat .hero__subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.landing-powerstrat .hero .btn {
    background: var(--secondary);
    color: var(--primary);
    padding: 16px 40px;
    font-size: 17.6px;
}

.landing-powerstrat .hero .btn:hover {
    background: #fff;
}

@media (max-width: 768px) {
    .landing-powerstrat .hero {
        min-height: 400px;
    }

    .landing-powerstrat .hero__content h1 {
        font-size: 32px;
    }

    .landing-powerstrat .hero__subtitle {
        font-size: 16px;
    }
}

/* ============================================
   CHIFFRES CLES - Statistiques marquantes
   ============================================ */
.landing-powerstrat .section--chiffres {
    background: var(--primary);
}

.landing-powerstrat .section--chiffres h2 {
    color: #fff;
}

.landing-powerstrat .chiffres-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Grille adaptative selon le nombre d'éléments */
.landing-powerstrat .chiffres-grid:has(.chiffre:only-child) {
    grid-template-columns: 1fr;
}

.landing-powerstrat .chiffres-grid:has(.chiffre:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.landing-powerstrat .chiffres-grid:has(.chiffre:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.landing-powerstrat .chiffre {
    text-align: center;
    padding: 24px;
}

.landing-powerstrat .chiffre__number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 16px;
}

.landing-powerstrat .chiffre__label {
    display: inline-block;
    position: relative;
    font-size: 15.2px;
    color: var(--primary);
    background: var(--secondary);
    padding: 9.6px 20px;
    border-radius: 0 12px 12px 12px;
}

.landing-powerstrat .chiffre__label::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 12px;
    height: 8px;
    background: var(--secondary);
    border-radius: 8px 0 0 0;
}

@media (min-width: 600px) {
    .landing-powerstrat .chiffres-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .landing-powerstrat .chiffres-grid:has(.chiffre:only-child) {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .landing-powerstrat .chiffres-grid:has(.chiffre:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .landing-powerstrat .chiffres-grid:has(.chiffre:nth-child(3):last-child) {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .landing-powerstrat .chiffre__number {
        font-size: 64px;
    }

    .landing-powerstrat .chiffre__label {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ============================================
   AVANTAGES - Liste avec icônes
   ============================================ */
.landing-powerstrat .avantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
}

.landing-powerstrat .avantage {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.landing-powerstrat .avantage__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 12px;
    color: var(--secondary);
    font-size: 24px;
}

.landing-powerstrat .avantage__icon svg {
    width: 32px;
    height: 32px;
}

.landing-powerstrat .avantage__text h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}

.landing-powerstrat .avantage__text p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 600px) {
    .landing-powerstrat .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .landing-powerstrat .avantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   BANNIERE - Bandeau promotionnel
   ============================================ */
.landing-powerstrat .section--banniere {
    padding: 0;
}

.landing-powerstrat .banniere {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    text-align: center;
}

.landing-powerstrat .banniere--primary {
    background: var(--primary);
}

.landing-powerstrat .banniere--primary .banniere__text,
.landing-powerstrat .banniere--primary .banniere__text p {
    color: #fff;
}

.landing-powerstrat .banniere--primary .banniere__text strong {
    color: var(--secondary);
}

.landing-powerstrat .banniere--primary .banniere__btn {
    background: var(--secondary);
    color: var(--primary);
}

.landing-powerstrat .banniere--secondary {
    background: var(--secondary);
}

.landing-powerstrat .banniere--secondary .banniere__text,
.landing-powerstrat .banniere--secondary .banniere__text p {
    color: var(--primary);
}

.landing-powerstrat .banniere--secondary .banniere__btn {
    background: var(--primary);
    color: #fff;
}

.landing-powerstrat .banniere--dark {
    background: #3d3f34;
}

.landing-powerstrat .banniere--dark .banniere__text,
.landing-powerstrat .banniere--dark .banniere__text p {
    color: #fff;
}

.landing-powerstrat .banniere--dark .banniere__text strong {
    color: var(--secondary);
}

.landing-powerstrat .banniere--dark .banniere__btn {
    background: var(--secondary);
    color: #3d3f34;
}

.landing-powerstrat .banniere__text {
    font-size: 17.6px;
    line-height: 1.6;
}

.landing-powerstrat .banniere__text p {
    margin: 0;
}

.landing-powerstrat .banniere__btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-powerstrat .banniere__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (min-width: 600px) {
    .landing-powerstrat .banniere {
        flex-direction: row;
        padding: 32px 48px;
    }

    .landing-powerstrat .banniere__text {
        flex: 1;
        text-align: left;
    }
}

/* ============================================
   TARIFS - Cartes de tarification
   ============================================ */
.landing-powerstrat .tarifs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
}

.landing-powerstrat .tarif {
    position: relative;
    background: var(--bg);
    border: 2px solid var(--bg-alt);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-powerstrat .section--alt .tarif {
    background: #fff;
}

.landing-powerstrat .tarif:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.landing-powerstrat .tarif--highlighted {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(32, 25, 111, 0.15);
}

.landing-powerstrat .tarif__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.landing-powerstrat .tarif__name {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

.landing-powerstrat .tarif__desc {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.landing-powerstrat .tarif__price {
    margin-bottom: 24px;
}

.landing-powerstrat .tarif__amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

.landing-powerstrat .tarif__period {
    font-size: 16px;
    color: var(--text-muted);
}

.landing-powerstrat .tarif__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.landing-powerstrat .tarif__features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-alt);
    color: var(--text);
}

.landing-powerstrat .tarif__features li::before {
    content: '✓';
    color: var(--secondary);
    margin-right: 8px;
    font-weight: bold;
}

.landing-powerstrat .tarif__btn {
    width: 100%;
}

.landing-powerstrat .tarif--highlighted .tarif__btn {
    background: var(--primary);
}

@media (min-width: 600px) {
    .landing-powerstrat .tarifs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .landing-powerstrat .tarifs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   VIDEO - Vidéo intégrée
   ============================================ */
.landing-powerstrat .video-container {
    max-width: 900px;
    margin: 0 auto;
}

.landing-powerstrat .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.landing-powerstrat .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.landing-powerstrat .video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.landing-powerstrat .video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.landing-powerstrat .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.landing-powerstrat .video-caption {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
}

/* ============================================
   AVANT-APRES - Comparaison
   ============================================ */
.landing-powerstrat .avant-apres {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.landing-powerstrat .avant-apres__before,
.landing-powerstrat .avant-apres__after {
    position: relative;
}

.landing-powerstrat .avant-apres__before img,
.landing-powerstrat .avant-apres__after img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.landing-powerstrat .avant-apres__placeholder {
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.landing-powerstrat .avant-apres__label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 600px) {
    .landing-powerstrat .avant-apres {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LOCALISATION - Carte et contact
   ============================================ */
.landing-powerstrat .localisation {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
}

.landing-powerstrat .localisation__map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    background: var(--bg-alt);
}

.landing-powerstrat .localisation__map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

.landing-powerstrat .localisation__map--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-muted);
}

.landing-powerstrat .localisation__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.landing-powerstrat .localisation__info p {
    margin: 0;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: 8px;
}

.landing-powerstrat .localisation__info strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.landing-powerstrat .localisation__info a {
    color: var(--secondary);
    text-decoration: none;
}

.landing-powerstrat .localisation__info a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .landing-powerstrat .localisation {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* ============================================
   EDITORIAL - Articles/actualités
   ============================================ */
.landing-powerstrat .editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
}

.landing-powerstrat .editorial-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-powerstrat .section--alt .editorial-card {
    background: #fff;
}

.landing-powerstrat .editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.landing-powerstrat .editorial__media {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.landing-powerstrat .editorial__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.landing-powerstrat .editorial-card:hover .editorial__img {
    transform: scale(1.05);
}

.landing-powerstrat .editorial__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-alt);
}

.landing-powerstrat .editorial__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.landing-powerstrat .editorial__date {
    font-size: 12.8px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.landing-powerstrat .editorial__title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.landing-powerstrat .editorial__excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.landing-powerstrat .editorial__link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.4px;
}

.landing-powerstrat .editorial__link:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    .landing-powerstrat .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .landing-powerstrat .editorial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* 1 seul élément : prend toute la largeur */
    .landing-powerstrat .editorial-grid:has(.editorial-card:only-child) {
        grid-template-columns: 1fr;
    }
    
    /* 2 éléments : 50/50 */
    .landing-powerstrat .editorial-grid:has(.editorial-card:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   LEB COMPONENTS
   ============================================ */

/* Section LEB - padding réduit vertical, conserve horizontal */
.landing-powerstrat .section--leb {
    padding: 24px 24px;
}

/* ============================================
   LEB - SOUS-TITRE
   ============================================ */
.landing-powerstrat .leb-subtitle {
    color: var(--primary);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tailles de sous-titre */
.landing-powerstrat .leb-subtitle--xl {
    font-size: 32px;
}

.landing-powerstrat .leb-subtitle--l {
    font-size: 24px;
}

.landing-powerstrat .leb-subtitle--md {
    font-size: 20px;
}

.landing-powerstrat .leb-subtitle--bg {
    background: var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
}

/* Fix spécificité dans la preview éditeur */
.landing-powerstrat .preview-section__content .leb-subtitle--bg {
    color: #fff;
}

.landing-powerstrat .leb-subtitle--clickable {
    cursor: pointer;
}

.landing-powerstrat .leb-subtitle--clickable:hover {
    color: var(--secondary);
}

.landing-powerstrat .leb-subtitle--bg.leb-subtitle--clickable:hover {
    background: var(--secondary);
    color: white;
}

.landing-powerstrat .leb-subtitle__toggle {
    font-size: 0.75em;
    transition: transform 0.2s;
}

/* ============================================
   LEB - TEXTE ENRICHI
   ============================================ */
.landing-powerstrat .leb-rich-text {
    line-height: 1.7;
}

.landing-powerstrat .leb-rich-text--bg {
    background: var(--primary);
    color: white;
    padding: 24px;
    border-radius: 8px;
}

/* Surcharges pour variante --bg avec spécificité augmentée */
.landing-powerstrat .leb-rich-text.leb-rich-text--bg a {
    color: white;
    text-decoration: underline;
}

.landing-powerstrat .leb-rich-text.leb-rich-text--bg a:hover {
    color: var(--secondary);
}

.landing-powerstrat .leb-rich-text.leb-rich-text--bg ul,
.landing-powerstrat .leb-rich-text.leb-rich-text--bg ol {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.landing-powerstrat .leb-rich-text.leb-rich-text--bg blockquote {
    border-color: var(--secondary);
    color: white;
    background: transparent;
}

.landing-powerstrat .leb-rich-text p {
    margin-bottom: 16px;
}

.landing-powerstrat .leb-rich-text p:last-child {
    margin-bottom: 0;
}

.landing-powerstrat .leb-rich-text ul,
.landing-powerstrat .leb-rich-text ol {
    margin-bottom: 16px;
    background: #eee;
    border-radius: 8px;
    padding: 20px 20px 20px 40px;
}

.landing-powerstrat .leb-rich-text ul {
    list-style-type: disc;
}

.landing-powerstrat .leb-rich-text ol {
    list-style-type: decimal;
}

.landing-powerstrat .leb-rich-text li {
    margin-bottom: 4px;
}

.landing-powerstrat .leb-rich-text li:last-child {
    margin-bottom: 0;
}

.landing-powerstrat .leb-rich-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-position: under;
    font-weight: bold;
}

.landing-powerstrat .leb-rich-text a:hover {
    color: var(--secondary);
}

.landing-powerstrat .leb-rich-text strong,
.landing-powerstrat .leb-rich-text b {
    font-weight: 600;
}

.landing-powerstrat .leb-rich-text em,
.landing-powerstrat .leb-rich-text i {
    font-style: italic;
}

.landing-powerstrat .leb-rich-text blockquote {
    border-left: 3px solid var(--primary);
    margin: 24px 0;
    padding: 12px 20px;
    font-style: italic;
    color: var(--text-muted);
    background: var(--bg-alt);
    border-radius: 0 8px 8px 0;
}

.landing-powerstrat .leb-rich-text blockquote p {
    margin-bottom: 0;
}

.landing-powerstrat .leb-rich-text table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    border: 1px solid #ddd;
}

.landing-powerstrat .leb-rich-text th,
.landing-powerstrat .leb-rich-text td {
    border: 1px solid #ddd;
    padding: 12px;
}

.landing-powerstrat .leb-rich-text th {
    background: var(--bg-alt);
    font-weight: 600;
}

.landing-powerstrat .leb-rich-text thead th {
    background: var(--primary);
    color: white;
}
.landing-powerstrat .leb-rich-text thead td {
    background: var(--primary);
    color:#fff;
    font-style: italic;
}
.landing-powerstrat .leb-rich-text.leb-rich-text--bg thead td {
    background: #fff;
    color:var(--primary);
}
.landing-powerstrat .leb-rich-text thead td a {
    color:var(--secondary);
}
.landing-powerstrat .leb-rich-text.leb-rich-text--bg thead td a {
    color:var(--primary)
}
.landing-powerstrat .leb-rich-text thead td a:hover {
    color:#fff;
}
.landing-powerstrat .leb-rich-text.leb-rich-text--bg thead td a:hover {
    color:var(--secondary)
}

.landing-powerstrat .leb-rich-text tfoot td {
    background: var(--bg-alt);
    font-style: italic;
}
.landing-powerstrat .leb-rich-text.leb-rich-text--bg tfoot td {
    background: rgba(255,255,255,0.2);
}
.landing-powerstrat .leb-rich-text tfoot td a {
    color:var(--primary)
}

.landing-powerstrat .leb-rich-text tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

/* ============================================
   LEB - TEXTE / IMAGE
   ============================================ */
.landing-powerstrat .leb-text-image {
    display: flex;
    gap: 32px;
    align-items: center;
}

.landing-powerstrat .leb-text-image--valign-top {
    align-items: flex-start;
}

.landing-powerstrat .leb-text-image--valign-center {
    align-items: center;
}

.landing-powerstrat .leb-text-image--valign-bottom {
    align-items: flex-end;
}

.landing-powerstrat .leb-text-image__text {
    flex: 1;
    line-height: 1.7;
}

.landing-powerstrat .leb-text-image__text p {
    margin-bottom: 16px;
}

.landing-powerstrat .leb-text-image__text p:last-child {
    margin-bottom: 0;
}

.landing-powerstrat .leb-text-image__text ul,
.landing-powerstrat .leb-text-image__text ol {
    margin-bottom: 16px;
    background: #eee;
    border-radius: 8px;
    padding: 20px 20px 20px 40px;
}

.landing-powerstrat .leb-text-image__text ul {
    list-style-type: disc;
}

.landing-powerstrat .leb-text-image__text ol {
    list-style-type: decimal;
}

.landing-powerstrat .leb-text-image__text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-position: under;
    font-weight: bold;
}

.landing-powerstrat .leb-text-image__text a:hover {
    color: var(--secondary);
}

.landing-powerstrat .leb-text-image__media {
    flex-shrink: 0;
}

.landing-powerstrat .leb-text-image--img-33 .leb-text-image__media {
    width: 33%;
}

.landing-powerstrat .leb-text-image--img-50 .leb-text-image__media {
    width: 50%;
}

.landing-powerstrat .leb-text-image--img-66 .leb-text-image__media {
    width: 66%;
}

.landing-powerstrat .leb-text-image--img-left {
    flex-direction: row-reverse;
}

.landing-powerstrat .leb-text-image__img {
    width: 100%;
    border-radius: 8px;
}

.landing-powerstrat .leb-text-image__placeholder {
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .landing-powerstrat .leb-text-image {
        flex-direction: column;
    }

    .landing-powerstrat .leb-text-image--img-left {
        flex-direction: column;
    }

    .landing-powerstrat .leb-text-image__media {
        width: 100% !important;
    }
}

/* ============================================
   LEB - IMAGE
   ============================================ */
.landing-powerstrat .leb-image {
    margin: 0;
}

.landing-powerstrat .leb-image--align-left {
    text-align: left;
}

.landing-powerstrat .leb-image--align-center {
    text-align: center;
}

.landing-powerstrat .leb-image--align-right {
    text-align: right;
}

.landing-powerstrat .leb-image--align-full img {
    width: 100%;
}

.landing-powerstrat .leb-image--wrap-left {
    float: left;
    margin: 0 24px 16px 0;
}

.landing-powerstrat .leb-image--wrap-right {
    float: right;
    margin: 0 0 16px 24px;
}

.landing-powerstrat .leb-image img {
    border-radius: 8px;
    display: inline-block;
}

.landing-powerstrat .leb-image--zoomable img {
    cursor: zoom-in;
    transition: transform 0.2s;
}

.landing-powerstrat .leb-image--zoomable img:hover {
    transform: scale(1.02);
}

.landing-powerstrat .leb-image figcaption {
    margin-top: 8px;
    font-size: 14.4px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.landing-powerstrat .leb-image__placeholder {
    display: inline-block;
    padding: 48px 80px;
    background: var(--bg-alt);
    border-radius: 8px;
    color: var(--text-muted);
}

/* Container pour image avec habillage de texte */
.landing-powerstrat .leb-image-wrap-container {
    overflow: hidden;
    line-height: 1.7;
}

/* Le texte (paragraphes) est injecté directement sans wrapper */
.landing-powerstrat .leb-image-wrap-container p {
    margin-bottom: 16px;
}

.landing-powerstrat .leb-image-wrap-container p:last-of-type {
    margin-bottom: 0;
}

.landing-powerstrat .leb-image-wrap-container ul,
.landing-powerstrat .leb-image-wrap-container ol {
    margin-bottom: 16px;
    background: #eee;
    border-radius: 8px;
    padding: 20px 20px 20px 40px;
}

.landing-powerstrat .leb-image-wrap-container ul {
    list-style-type: disc;
}

.landing-powerstrat .leb-image-wrap-container ol {
    list-style-type: decimal;
}

.landing-powerstrat .leb-image-wrap-container a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-position: under;
    font-weight: bold;
}

.landing-powerstrat .leb-image-wrap-container a:hover {
    color: var(--secondary);
}

/* ============================================
   LEB - MOSAÏQUE
   ============================================ */
.landing-powerstrat .leb-mosaic {
    display: grid;
    gap: 16px;
}

.landing-powerstrat .leb-mosaic--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.landing-powerstrat .leb-mosaic--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.landing-powerstrat .leb-mosaic--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.landing-powerstrat .leb-mosaic--cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.landing-powerstrat .leb-mosaic--gap-small {
    gap: 8px;
}

.landing-powerstrat .leb-mosaic--gap-medium {
    gap: 16px;
}

.landing-powerstrat .leb-mosaic--gap-large {
    gap: 24px;
}

.landing-powerstrat .leb-mosaic__item {
    margin: 0;
}

.landing-powerstrat .leb-mosaic__img-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.landing-powerstrat .leb-mosaic__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.landing-powerstrat .leb-mosaic--zoomable .leb-mosaic__img-wrapper {
    cursor: zoom-in;
}

.landing-powerstrat .leb-mosaic--zoomable .leb-mosaic__img-wrapper:hover img {
    transform: scale(1.1);
}

.landing-powerstrat .leb-mosaic__placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-alt);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
}

.landing-powerstrat .leb-mosaic__placeholder-icon {
    font-size: 32px;
}

.landing-powerstrat .leb-mosaic__placeholder-text {
    font-size: 13.6px;
}

.landing-powerstrat .leb-mosaic__caption {
    padding: 8px 0;
    font-size: 13.6px;
    color: var(--text-muted);
    text-align: left;
}

/* Ratios d'aspect pour le wrapper */
.landing-powerstrat .leb-mosaic--ratio-1-1 .leb-mosaic__img-wrapper {
    aspect-ratio: 1/1;
}

.landing-powerstrat .leb-mosaic--ratio-4-3 .leb-mosaic__img-wrapper {
    aspect-ratio: 4/3;
}

.landing-powerstrat .leb-mosaic--ratio-16-9 .leb-mosaic__img-wrapper {
    aspect-ratio: 16/9;
}

.landing-powerstrat .leb-mosaic--ratio-3-4 .leb-mosaic__img-wrapper {
    aspect-ratio: 3/4;
}

.landing-powerstrat .leb-mosaic--ratio-4-5 .leb-mosaic__img-wrapper {
    aspect-ratio: 4/5;
}

@media (max-width: 600px) {
    .landing-powerstrat .leb-mosaic--cols-4,
.landing-powerstrat .leb-mosaic--cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 400px) {
    .landing-powerstrat .leb-mosaic {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================
   LIGHTBOX - Zoom plein écran
   ============================================ */
.landing-powerstrat .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.landing-powerstrat .lightbox--active {
    opacity: 1;
    visibility: visible;
}

.landing-powerstrat .lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.landing-powerstrat .lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.landing-powerstrat .lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   LEB - DIAPORAMA
   ============================================ */
.landing-powerstrat .leb-slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    /* Pour le focus clavier */
    outline: none;
}

.landing-powerstrat .leb-slideshow:focus {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 0, 123, 255), 0.3);
}

.landing-powerstrat .leb-slideshow__slides {
    position: relative;
    cursor: grab;
    /* Hauteur minimum définie par la première slide */
}

.landing-powerstrat .leb-slideshow__slides:active {
    cursor: grabbing;
}

.landing-powerstrat .leb-slideshow__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 0;
}

.landing-powerstrat .leb-slideshow__slide--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Transition slide (glissement) */
.landing-powerstrat .leb-slideshow[data-transition="slide"] .leb-slideshow__slide {
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.landing-powerstrat .leb-slideshow[data-transition="slide"] .leb-slideshow__slide--active {
    transform: translateX(0);
}

.landing-powerstrat .leb-slideshow__slide img {
    width: 100%;
    display: block;
}

.landing-powerstrat .leb-slideshow__placeholder {
    aspect-ratio: 16/9;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.landing-powerstrat .leb-slideshow__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 14.4px;
}

.landing-powerstrat .leb-slideshow__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.2s;
    z-index: 2;
}

.landing-powerstrat .leb-slideshow__nav:hover {
    background: #fff;
}

.landing-powerstrat .leb-slideshow__nav--prev {
    left: 16px;
}

.landing-powerstrat .leb-slideshow__nav--next {
    right: 16px;
}

.landing-powerstrat .leb-slideshow__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.landing-powerstrat .leb-slideshow__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s;
}

.landing-powerstrat .leb-slideshow__dot:hover,
.landing-powerstrat .leb-slideshow__dot--active {
    background: #fff;
}

/* Slideshow avec légendes : repositionner les dots */
.landing-powerstrat .leb-slideshow--with-caption .leb-slideshow__dots {
    bottom: 15.2px;
    left: auto;
    right: 0;
    transform: none;
}

/* ============================================
   LEB - VIDEO
   ============================================ */
.landing-powerstrat .leb-video {
    margin: 0;
}

.landing-powerstrat .leb-video__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.landing-powerstrat .leb-video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.landing-powerstrat .leb-video__player {
    width: 100%;
    border-radius: 12px;
}

.landing-powerstrat .leb-video__placeholder {
    aspect-ratio: 16/9;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
}

.landing-powerstrat .leb-video__placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.6;
}

.landing-powerstrat .leb-video__placeholder span {
    font-size: 16px;
}

.landing-powerstrat .leb-video figcaption {
    margin-top: 12px;
    font-size: 14.4px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

/* ============================================
   LEB - GEOLOCATION
   ============================================ */
.landing-powerstrat .leb-geolocation {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.landing-powerstrat .leb-geolocation__map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
    background: var(--bg-alt);
}

.landing-powerstrat .leb-geolocation__map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

.landing-powerstrat .leb-geolocation__info {
    padding: 16px;
    background: var(--bg-alt);
    border-radius: 8px;
}

.landing-powerstrat .leb-geolocation__info h3 {
    margin: 0 0 8px;
    color: var(--primary);
}

.landing-powerstrat .leb-geolocation__info p {
    margin: 0;
    color: var(--text-muted);
}

.landing-powerstrat .leb-geolocation__description {
    color: var(--text-muted);
    line-height: 1.6;
}

.landing-powerstrat .leb-geolocation__description p {
    margin: 0 0 8px;
}

.landing-powerstrat .leb-geolocation__description p:last-child {
    margin-bottom: 0;
}

.landing-powerstrat .leb-geolocation__description a {
    color: var(--primary);
}

@media (min-width: 768px) {
    .landing-powerstrat .leb-geolocation {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
}

/* ============================================
   LEB - CTA (Bouton d'appel à l'action)
   ============================================ */
.landing-powerstrat .leb-cta {
    display: flex;
}

/* Alignements */
.landing-powerstrat .leb-cta--left {
    justify-content: flex-start;
}

.landing-powerstrat .leb-cta--center {
    justify-content: center;
}

.landing-powerstrat .leb-cta--right {
    justify-content: flex-end;
}

/* Bouton de base */
.landing-powerstrat .leb-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.landing-powerstrat .leb-cta__btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.landing-powerstrat .leb-cta__btn .st0 {
    fill: currentColor;
}

/* Tailles */
.landing-powerstrat .leb-cta--small .leb-cta__btn {
    font-size: 13px;
    padding: 8px 16px;
}

.landing-powerstrat .leb-cta--small .leb-cta__btn svg {
    width: 16px;
    height: 16px;
}

.landing-powerstrat .leb-cta--regular .leb-cta__btn {
    font-size: 15px;
}

.landing-powerstrat .leb-cta--big .leb-cta__btn {
    font-size: 20px;
    padding: 16px 28px;
}

.landing-powerstrat .leb-cta--big .leb-cta__btn svg {
    width: 24px;
    height: 24px;
}

/* Thèmes */
.landing-powerstrat .leb-cta--discreet .leb-cta__btn {
    background: #fff;
    color: var(--text);
    border: 1px solid #ddd;
}

.landing-powerstrat .leb-cta--discreet .leb-cta__btn:hover {
    background: #eee;
}

.landing-powerstrat .leb-cta--primary .leb-cta__btn {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.landing-powerstrat .leb-cta--primary .leb-cta__btn:hover {
    background: var(--primary-dark, #1a1460);
    border-color: var(--primary-dark, #1a1460);
}

.landing-powerstrat .leb-cta--secondary .leb-cta__btn {
    background: var(--secondary-light, #fff5f8);
    color: var(--text);
    border: 1px solid var(--secondary);
}

.landing-powerstrat .leb-cta--secondary .leb-cta__btn .st0 {
    fill: var(--secondary);
}

.landing-powerstrat .leb-cta--secondary .leb-cta__btn:hover {
    background: var(--secondary);
    color: #fff;
}

.landing-powerstrat .leb-cta--secondary .leb-cta__btn:hover .st0 {
    fill: #fff;
}

.landing-powerstrat .leb-cta--contrast .leb-cta__btn {
    background: var(--text, #262626);
    color: #fff;
    border: 1px solid var(--text, #262626);
}

.landing-powerstrat .leb-cta--contrast .leb-cta__btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

/* Responsive */
@media (max-width: 600px) {
    .landing-powerstrat .leb-cta__btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ============================================
   LEB - TOGGLE (Bloc dépliable)
   ============================================ */

.landing-powerstrat .leb-toggle {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.landing-powerstrat .leb-toggle__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin: 0;
    cursor: pointer;
    background: var(--bg-alt);
    transition: all 0.2s;
    user-select: none;
}

/* Style 1 hover : fond primary, texte blanc */
.landing-powerstrat .leb-toggle__header:hover {
    background: var(--primary);
    color: white;
}

.landing-powerstrat .leb-toggle__header:hover .leb-toggle__icon svg {
    stroke: white;
}

.landing-powerstrat .leb-toggle__title {
    font-weight: 600;
}

.landing-powerstrat .leb-toggle__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.landing-powerstrat .leb-toggle__icon svg {
    width: 20px;
    height: 20px;
    transition: stroke 0.2s;
}

.landing-powerstrat .leb-toggle__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid var(--gray-200);
}

/* État ouvert */
.landing-powerstrat .leb-toggle--open .leb-toggle__icon {
    transform: rotate(180deg);
}

.landing-powerstrat .leb-toggle--open .leb-toggle__content {
    max-height: 5000px; /* Valeur arbitraire grande */
}

/* Les sections enfants n'ont pas de container propre */
.landing-powerstrat .leb-toggle__content .section {
    border-radius: 0;
}

.landing-powerstrat .leb-toggle__content .section:last-of-type {
    border-bottom: none;
}

/* Enfant dans l'éditeur */
.landing-powerstrat .leb-toggle__child {
    position: relative;
    border-top: 1px solid var(--gray-200);
}

.landing-powerstrat .leb-toggle__child:first-child {
    border-top: none;
}

/* Message vide */
.landing-powerstrat .leb-toggle__empty {
    padding: 32px;
    text-align: center;
    color: var(--gray-400);
    font-style: italic;
    border-top: 1px solid var(--gray-200);
}

/* Bouton ajouter (éditeur) */
.landing-powerstrat .leb-toggle__add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: var(--gray-50);
    border: none;
    border-top: 1px dashed var(--gray-300);
    color: var(--gray-500);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.landing-powerstrat .leb-toggle__add-btn:hover {
    background: var(--primary);
    color: white;
    border-top-style: solid;
    border-top-color: var(--primary);
}

.landing-powerstrat .leb-toggle__add-btn span {
    font-size: 20px;
    font-weight: 600;
}

/* Style 2 : avec fond primary */
.landing-powerstrat .leb-toggle--style2 {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.landing-powerstrat .leb-toggle--style2 .leb-toggle__header {
    background: var(--primary);
    color: white;
}

/* Style 2 hover : fond gris bordure, texte primary */
.landing-powerstrat .leb-toggle--style2 .leb-toggle__header:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.landing-powerstrat .leb-toggle--style2 .leb-toggle__icon svg {
    stroke: white;
}

.landing-powerstrat .leb-toggle--style2 .leb-toggle__header:hover .leb-toggle__icon svg {
    stroke: var(--primary);
}

/* Sections dans toggle sans padding supplémentaire */
.landing-powerstrat .leb-toggle__content .section--leb {
    padding: 24px 0;
}

.landing-powerstrat .leb-toggle__content .section--leb .container {
    padding: 0 20px;
}

/* Flèches de réordonnancement */
.landing-powerstrat .leb-toggle__child {
    position: relative;
}

.landing-powerstrat .leb-toggle__child-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
}

.landing-powerstrat .leb-toggle__child:hover .leb-toggle__child-actions {
    opacity: 1;
}

.landing-powerstrat .leb-toggle__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
}

.landing-powerstrat .leb-toggle__arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray-600);
}

.landing-powerstrat .leb-toggle__arrow:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
}

.landing-powerstrat .leb-toggle__arrow:hover:not(:disabled) svg {
    stroke: white;
}

.landing-powerstrat .leb-toggle__arrow--disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Sélection visuelle des enfants */
.landing-powerstrat .leb-toggle__child--selected {
    background: rgba(var(--primary-rgb, 32, 25, 111), 0.05);
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

/* ============================================
   LIGHTBOX (zoom image)
   ============================================ */
.landing-powerstrat .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: zoom-out;
    animation: lightboxFadeIn 0.2s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.landing-powerstrat .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.landing-powerstrat .lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.landing-powerstrat .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.landing-powerstrat .lightbox-close:hover {
    opacity: 1;
}


