/**
 * LD Solutions - Page Pour Qui
 * Styles pour la page de présentation des cibles (PME/Collectivités)
 *
 * @package ldsolutions
 * @version 2.0.0
 */

/* ============================================================
   MENU FLOTTANT DE NAVIGATION
   ============================================================ */

/* Smooth scroll global */
html {
    scroll-behavior: smooth;
}

/* Animation de highlight quand on arrive sur une section */
.pq-section.is-highlighted .pq-section__header {
    animation: sectionHighlight 1s ease-out;
}

@keyframes sectionHighlight {
    0% {
        opacity: 0.6;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu vertical sticky (gauche, apparaît au scroll après le hero) */
.pq-floating-nav {
    position: fixed;
    top: 50%;
    left: 24px;
    transform: translate(-20px, -50%);
    z-index: 90;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
}

.pq-floating-nav.is-visible {
    transform: translate(0, -50%);
    opacity: 1;
    pointer-events: auto;
}

.pq-floating-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pq-floating-nav__item {
    margin: 0;
    padding: 0;
}

.pq-floating-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 0;
    background: transparent;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--lds-blue, #125AF8);
    text-decoration: none;
    text-align: left;
    width: 100%;
}

.pq-floating-nav__link:focus {
    outline: none;
}

.pq-floating-nav__link:focus-visible .pq-floating-nav__dot {
    outline: 2px solid rgba(18, 90, 248, 0.55);
    outline-offset: 3px;
}

/* Cran (trait horizontal) par défaut — bleu électrique */
.pq-floating-nav__dot {
    display: block;
    width: 12px;
    height: 3px;
    border-radius: 2px;
    background: rgba(18, 90, 248, 0.7);
    flex-shrink: 0;
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                background-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Label : texte net devant, fond adapté à la section */
.pq-floating-nav__label {
    position: relative;
    isolation: isolate;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lds-blue, #125AF8);
    white-space: nowrap;
    padding: 6px 14px;
    background: transparent;
    border-radius: 0;
    opacity: 0;
    transform: translateX(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Couche d'arrière-plan dégradée du label (s'adapte au fond de la section) */
.pq-floating-nav__label::before {
    content: '';
    position: absolute;
    inset: -2px -14px -2px -14px;
    z-index: -1;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(255, 255, 255, 0.85) 30%,
        rgba(255, 255, 255, 0.85) 70%,
        transparent 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Sur fond clair (PME) → pill gris */
.pq-floating-nav--on-light .pq-floating-nav__label::before {
    background: linear-gradient(to right,
        transparent 0%,
        rgba(0, 0, 0, 0.06) 30%,
        rgba(0, 0, 0, 0.06) 70%,
        transparent 100%);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Sur fond gris (Collectivités) → pill blanc */
.pq-floating-nav--on-gray .pq-floating-nav__label::before {
    background: linear-gradient(to right,
        transparent 0%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.9) 70%,
        transparent 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hover sur le menu : tous les labels apparaissent */
.pq-floating-nav:hover .pq-floating-nav__label,
.pq-floating-nav:focus-within .pq-floating-nav__label {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Le label de la section active est TOUJOURS affiché */
.pq-floating-nav__link.is-active .pq-floating-nav__label {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    font-weight: 700;
}

/* Hover sur un lien : trait plus marqué */
.pq-floating-nav__link:hover .pq-floating-nav__dot {
    background: var(--lds-blue, #125AF8);
    width: 22px;
}

/* État actif : trait allongé, plein, lueur subtile */
.pq-floating-nav__link.is-active .pq-floating-nav__dot {
    width: 36px;
    height: 4px;
    background: var(--lds-blue, #125AF8);
    box-shadow: 0 0 8px rgba(18, 90, 248, 0.35);
}

@media (max-width: 1024px) {
    .pq-floating-nav {
        left: 16px;
    }

    .pq-floating-nav__list {
        gap: 14px;
    }

    .pq-floating-nav__label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Menu vertical masqué sur mobile (manque d'espace) */
    .pq-floating-nav {
        display: none;
    }
}

/* ============================================================
   PAGE HERO
   ============================================================ */

.page-pour-qui .page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 2rem 120px;
    overflow: hidden;
}

.page-pour-qui .page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-pour-qui .page-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-pour-qui .page-hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 27, 80, 0.7);
}

.page-pour-qui .page-hero__container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-pour-qui .page-hero__title {
    margin: 0 0 1.5rem;
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--lds-white, #ffffff);
}

.page-pour-qui .page-hero__title span {
    font-style: italic;
}

.page-pour-qui .page-hero__desc {
    margin: 0 auto;
    max-width: 640px;
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   SECTION INTRODUCTION - VISION
   ============================================================ */

.pq-intro {
    padding: 160px 2rem 80px;
    background: var(--lds-white, #ffffff);
}

.pq-intro__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.pq-intro__content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pq-intro__content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pq-intro__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    color: var(--lds-navy, #021B50);
}

.pq-intro__title span {
    font-style: italic;
}

.pq-intro__text {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(21, 30, 40, 0.7);
    margin: 0 0 1.25rem;
}

/* Carte signature */
.pq-intro__card {
    margin-top: 2rem;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--lds-navy, #021B50) 0%, var(--lds-navy-light, #0A2A6E) 50%, #051D52 100%);
    border-radius: 16px;
    border: 1.5px solid transparent;
    position: relative;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.2);
    overflow: hidden;
}

.pq-intro__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(100, 170, 255, 0.2), rgba(18, 90, 248, 0.4), rgba(100, 170, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pq-intro__card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pq-intro__card-icon {
    flex-shrink: 0;
}

.pq-intro__card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--lds-white, #ffffff);
}

.pq-intro__card-text {
    font-family: 'Chillax', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: var(--lds-white, #ffffff);
}

.pq-intro__visual {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.15s;
}

.pq-intro__visual.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pq-intro__visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(2, 27, 80, 0.15);
}

/* Séparateur de section intro */
.pq-intro__separator {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pq-intro__separator-line {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(2, 27, 80, 0.1) 20%, rgba(2, 27, 80, 0.15) 50%, rgba(2, 27, 80, 0.1) 80%, transparent 100%);
}

/* ============================================================
   SECTIONS PME & COLLECTIVITÉS
   ============================================================ */

.pq-section {
    background: var(--lds-white, #ffffff);
}

.pq-section--pme {
    padding: 80px 0 80px;
}

.pq-section--collectivites {
    padding: 80px 0 80px;
    background: linear-gradient(160deg, var(--lds-platinium, #EBEBEB) 0%, #e2e4e8 100%);
}

/* Section Collectivités sur fond gris : styles par défaut (sombres) hérités, aucune surcharge nécessaire */


/* ============================================================
   ÉTIQUETTES DE SECTION (PME / Collectivités)
   ============================================================ */

.lds-pourqui__etiquette {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    margin: 0 auto 1.5rem;
}

.lds-pourqui__etiquette-icon {
    width: 28px;
    height: 28px;
    stroke: var(--lds-navy, #021B50);
    color: var(--lds-navy, #021B50);
    stroke-width: 1.5;
}

.lds-pourqui__etiquette-text {
    font-family: 'Chillax', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lds-navy, #021B50);
}

/* Version claire (pour fond bleu - Collectivités) */
.lds-pourqui__etiquette--light .lds-pourqui__etiquette-icon {
    stroke: var(--lds-white, #ffffff);
    color: var(--lds-white, #ffffff);
}

.lds-pourqui__etiquette--light .lds-pourqui__etiquette-text {
    color: var(--lds-white, #ffffff);
}

/* Header de section */
.pq-section__header {
    text-align: center;
    padding: 0 2rem 80px;
}

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

.pq-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.625rem 1.25rem;
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lds-navy, #021B50);
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 1.5rem;
}

.pq-section__badge i,
.pq-section__badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--lds-navy, #021B50);
}

.pq-section__badge--alt {
    color: var(--lds-blue, #125AF8);
    background: transparent;
    border: none;
}

.pq-section__badge--alt i,
.pq-section__badge--alt svg {
    stroke: var(--lds-blue, #125AF8);
}

.pq-section__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    color: var(--lds-navy, #021B50);
}

.pq-section__title span {
    font-style: italic;
}

.pq-section__subtitle {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(21, 30, 40, 0.65);
    margin: 0;
}

/* CTA de section */
.pq-section__cta {
    text-align: center;
    padding: 40px 2rem 0;
}

.pq-section__cta .lds-btn svg {
    margin-left: 8px;
}

/* ============================================================
   BLOCS ALTERNÉS (IMAGE + CONTENU)
   ============================================================ */

.pq-block {
    padding: 0 2rem;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pq-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pq-block__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

/* Alternance : image à gauche, texte à droite */
.pq-block--reversed .pq-block__content {
    order: 2;
}

.pq-block--reversed .pq-block__visual {
    order: 1;
}

/* Structure du contenu avec alignement vertical */
.pq-block__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pq-block__header {
    /* Titre aligné en haut */
}

.pq-block__body {
    /* Contenu au milieu */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pq-block__footer {
    /* CTA aligné en bas */
    margin-top: auto;
}

.pq-block__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    color: var(--lds-navy, #021B50);
}

.pq-block__text {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(21, 30, 40, 0.7);
    margin: 0 0 1rem;
}

.pq-block__text:last-of-type {
    margin-bottom: 0;
}

.pq-block__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
}

.pq-block__tag {
    display: inline-block;
    padding: 8px 16px;
    font-family: Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--lds-navy, #021B50);
    background: rgba(2, 27, 80, 0.06);
    border: 1px solid rgba(2, 27, 80, 0.12);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.pq-block__tag:hover {
    background: rgba(2, 27, 80, 0.1);
    border-color: rgba(2, 27, 80, 0.2);
}

.pq-block__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    font-family: Arial, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lds-cta, #B82A14);
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.pq-block__link:hover {
    color: var(--lds-cta-hover, #E63D24);
    gap: 12px;
}

/* Image qui prend toute la hauteur */
.pq-block__visual {
    display: flex;
    align-items: stretch;
}

.pq-block__visual img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(2, 27, 80, 0.12);
}

.pq-block__link svg {
    width: 18px;
    height: 18px;
    stroke: var(--lds-cta, #B82A14);
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.pq-block__link:hover svg {
    stroke: var(--lds-cta-hover, #E63D24);
    transform: translateX(4px);
}

/* ============================================================
   EXEMPLES CONCRETS - CARROUSEL HORIZONTAL
   ============================================================ */

.pq-exemples {
    position: relative;
    padding: 30px 0 0;
}

/* Cartes services dans le carrousel */
.pq-exemples .lds-services__card.pq-exemple-card {
    flex: 0 0 480px;
    min-width: 480px;
    min-height: auto;
    opacity: 1;
    transform: none;
}

.pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-content {
    padding: 32px;
    gap: 12px;
}

.pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-title {
    font-size: 1.125rem;
    line-height: 1.3;
}

.pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-text {
    font-size: 0.875rem;
    line-height: 1.65;
}

.pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-tags {
    margin-top: 12px;
}

.pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-actions {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-cta {
    height: 48px;
    padding: 0 20px;
    font-size: 0.875rem;
    border-radius: 12px;
}

/* Lien "En savoir plus" stylisé en bleu électrique */
.pq-exemples .lds-services__card-link-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lds-blue, #125AF8);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pq-exemples .lds-services__card-link-primary svg {
    width: 16px;
    height: 16px;
    stroke: var(--lds-blue, #125AF8);
    transition: transform 0.3s ease;
}

.pq-exemples .lds-services__card-link-primary:hover {
    color: #0a3fd0;
    gap: 12px;
}

.pq-exemples .lds-services__card-link-primary:hover svg {
    stroke: #0a3fd0;
    transform: translateX(4px);
}

/* Cartes dark dans le carrousel (section Collectivités) */
.pq-exemples .lds-services__card.lds-services__card--dark.pq-exemple-card {
    background: linear-gradient(135deg, var(--lds-navy, #021B50) 0%, var(--lds-navy-light, #0A2A6E) 50%, #051D52 100%);
    border: 1.5px solid transparent;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pq-exemples .lds-services__card.lds-services__card--dark.pq-exemple-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(100, 170, 255, 0.2), rgba(18, 90, 248, 0.4), rgba(100, 170, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

.pq-exemples .lds-services__card.lds-services__card--dark.pq-exemple-card::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--lds-white, #ffffff) 0%, var(--lds-white, #ffffff) 100%);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px rgba(18, 90, 248, 0.5);
    z-index: 4;
}

.pq-exemples .lds-services__card.lds-services__card--dark.pq-exemple-card:hover {
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.4), 0 0 30px rgba(18, 90, 248, 0.15);
}

/* Titre blanc pour cartes dark */
.pq-exemples .lds-services__card--dark .lds-services__card-title {
    color: var(--lds-white, #ffffff);
}

.pq-exemples .lds-services__card--dark .lds-services__card-icon-title {
    stroke: var(--lds-white, #ffffff);
}

/* Texte gris clair pour cartes dark */
.pq-exemples .lds-services__card--dark .lds-services__card-text {
    color: rgba(235, 235, 235, 0.75);
}

/* Tags pour cartes dark */
.pq-exemples .lds-services__card--dark .lds-services__card-tag {
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(18, 90, 248, 0.2) 0%, rgba(100, 170, 255, 0.1) 100%);
    border: 1px solid rgba(100, 170, 255, 0.3);
}

.pq-exemples .lds-services__card--dark .lds-services__card-tag:hover {
    background: linear-gradient(135deg, rgba(18, 90, 248, 0.3) 0%, rgba(100, 170, 255, 0.2) 100%);
    border-color: rgba(100, 170, 255, 0.5);
}

/* Lien "En savoir plus" blanc pour cartes dark */
.pq-exemples .lds-services__card--dark .lds-services__card-link-primary {
    color: rgba(255, 255, 255, 0.85);
}

.pq-exemples .lds-services__card--dark .lds-services__card-link-primary svg {
    stroke: rgba(255, 255, 255, 0.85);
}

.pq-exemples .lds-services__card--dark .lds-services__card-link-primary:hover {
    color: var(--lds-white, #ffffff);
}

.pq-exemples .lds-services__card--dark .lds-services__card-link-primary:hover svg {
    stroke: var(--lds-white, #ffffff);
}


.pq-exemples__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 48px;
    padding: 0 2rem;
    color: var(--lds-navy, #021B50);
}

.pq-exemples__title span {
    font-style: italic;
    color: var(--lds-navy, #021B50);
}

/* Container du carrousel */
.pq-exemples__track-wrapper {
    position: relative;
    width: 100%;
}

/* Blur/fade aux extrémités - placé sur le wrapper */
.pq-exemples__track-wrapper::before,
.pq-exemples__track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 20px;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.pq-exemples__track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--lds-white, #ffffff) 0%, rgba(255, 255, 255, 0) 100%);
}

.pq-exemples__track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--lds-white, #ffffff) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Blur pour section Collectivités (fond gris) */
.pq-section--collectivites .pq-exemples__track-wrapper::before {
    background: linear-gradient(to right, var(--lds-platinium, #EBEBEB) 0%, rgba(235, 235, 235, 0) 100%);
}

.pq-section--collectivites .pq-exemples__track-wrapper::after {
    background: linear-gradient(to left, #e2e4e8 0%, rgba(226, 228, 232, 0) 100%);
}

.pq-exemples__track {
    display: flex;
    gap: 24px;
    padding: 8px 80px 20px;
    cursor: grab;
    user-select: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pq-exemples__track::-webkit-scrollbar {
    display: none;
}

.pq-exemples__track:active {
    cursor: grabbing;
}

.pq-exemples__track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* Carte exemple - Style identique aux cartes services */
.pq-exemple {
    flex: 0 0 480px;
    min-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px;
    background: linear-gradient(145deg, var(--lds-white, #ffffff) 0%, #F8FAFF 50%, var(--lds-white, #ffffff) 100%);
    border-radius: 20px;
    border: 1px solid rgba(2, 27, 80, 0.08);
    box-shadow: 0 4px 20px rgba(2, 27, 80, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pq-exemple:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 90, 248, 0.4);
    box-shadow: 0 8px 32px rgba(2, 27, 80, 0.12), 0 0 0 1px rgba(18, 90, 248, 0.1);
}

/* Titre avec icône - Style services */
.pq-exemple__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Chillax', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: var(--lds-navy, #021B50);
}

.pq-exemple__title i,
.pq-exemple__title svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    stroke: var(--lds-navy, #021B50);
}

/* Texte descriptif - Style services */
.pq-exemple__text {
    font-family: Arial, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(21, 30, 40, 0.6);
    margin: 0;
}

/* Tags - Style services */
.pq-exemple__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.pq-exemple__tag {
    display: inline-block;
    padding: 6px 14px;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lds-navy, #021B50);
    background: linear-gradient(135deg, rgba(2, 27, 80, 0.06) 0%, rgba(18, 90, 248, 0.08) 100%);
    border: 1px solid rgba(18, 90, 248, 0.2);
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.pq-exemple__tag:hover {
    background: linear-gradient(135deg, rgba(18, 90, 248, 0.12) 0%, rgba(18, 90, 248, 0.18) 100%);
    border-color: rgba(18, 90, 248, 0.4);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION CTA FINAL - VERSION CLAIRE
   ============================================================ */

.pq-cta-final {
    position: relative;
    background: linear-gradient(135deg, rgba(2, 27, 80, 0.92) 0%, rgba(10, 42, 110, 0.92) 100%),
                url('../../img/4.png') center/cover no-repeat;
    padding: 100px 2rem;
    margin: 0 0 80px;
    border-top: 80px solid #e2e4e8;
    overflow: hidden;
}

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

.pq-cta-final__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    color: var(--lds-white, #ffffff);
}

.pq-cta-final__text {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
}

.pq-cta-final__text strong {
    color: var(--lds-white, #ffffff);
}

.pq-cta-final__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pq-cta-final__actions .lds-btn svg {
    margin-left: 8px;
}

/* Bouton outline sur fond bleu : bordure et texte en blanc */
.pq-cta-final .lds-btn--outline {
    color: var(--lds-white, #ffffff);
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

.pq-cta-final .lds-btn--outline:hover {
    color: var(--lds-navy, #021B50);
    background: var(--lds-white, #ffffff);
    border-color: var(--lds-white, #ffffff);
}


/* ============================================================
   RESPONSIVE - TABLETTE
   ============================================================ */

@media (max-width: 1024px) {
    .page-pour-qui .page-hero {
        padding: 160px 1.5rem 100px;
    }

    .pq-intro {
        padding: 120px 1.5rem 60px;
    }

    .pq-intro__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pq-intro__visual img {
        height: 350px;
    }

    .pq-section--pme {
        padding: 60px 0;
    }

    .pq-section--collectivites {
        padding: 120px 0 60px;
    }

    .pq-section__header {
        padding: 0 1.5rem 60px;
    }

    .pq-block {
        padding: 0 1.5rem;
        margin-bottom: 100px;
    }

    .pq-block__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Reset order en mobile (empilé) */
    .pq-block--reversed .pq-block__content,
    .pq-block--reversed .pq-block__visual {
        order: unset;
    }

    .pq-block__content {
        justify-content: flex-start;
    }

    .pq-block__body {
        flex: none;
    }

    .pq-block__visual img {
        min-height: 320px;
        height: 320px;
    }

    .pq-exemples {
        padding: 50px 0 0;
    }

    .pq-exemples__track-wrapper::before,
    .pq-exemples__track-wrapper::after {
        width: 80px;
    }

    .pq-exemple {
        flex: 0 0 450px;
        min-width: 450px;
    }

    .pq-exemples .lds-services__card.pq-exemple-card {
        flex: 0 0 420px;
        min-width: 420px;
    }

    .pq-section__cta {
        padding: 80px 1.5rem 0;
    }

    .pq-cta-final {
        padding: 64px 1.5rem;
        margin: 0 0 60px;
        border-top-width: 60px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 768px) {
    .page-pour-qui .page-hero {
        min-height: 50vh;
        padding: 140px 1rem 80px;
    }

    .page-pour-qui .page-hero__desc {
        font-size: 1rem;
    }

    .pq-intro {
        padding: 100px 1rem 50px;
    }

    .pq-intro__lead {
        font-size: 1.125rem;
    }

    .pq-intro__visual img {
        height: 280px;
    }

    .pq-section--pme {
        padding: 50px 0;
    }

    .pq-section--collectivites {
        padding: 100px 0 50px;
    }

    .pq-section__header {
        padding: 0 1rem 48px;
    }

    .pq-block {
        padding: 0 1rem;
        margin-bottom: 80px;
    }

    .pq-block__visual img {
        min-height: 260px;
        height: 260px;
    }

    .pq-exemple {
        flex: 0 0 380px;
        min-width: 380px;
        padding: 20px 24px;
    }

    .pq-exemples .lds-services__card.pq-exemple-card {
        flex: 0 0 360px;
        min-width: 360px;
    }

    .pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-content {
        padding: 24px;
    }

    .pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-title {
        font-size: 1rem;
    }

    .pq-exemple__icon i,
    .pq-exemple__icon svg {
        width: 28px;
        height: 28px;
    }

    .pq-exemples {
        padding: 40px 0 0;
    }

    .pq-exemples__track-wrapper::before,
    .pq-exemples__track-wrapper::after {
        width: 60px;
    }

    .pq-exemples__track {
        padding: 0 50px 16px;
        gap: 16px;
    }

    .pq-section__cta {
        padding: 60px 1rem 0;
    }

    .pq-cta-final {
        padding: 56px 1.5rem;
        margin: 0 0 50px;
        border-top-width: 50px;
    }

    .pq-cta-final__actions {
        flex-direction: column;
        align-items: center;
    }

    .pq-cta-final__actions .lds-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ============================================================
   RESPONSIVE - PETIT MOBILE
   ============================================================ */

@media (max-width: 480px) {
    .page-pour-qui .page-hero {
        min-height: 45vh;
        padding: 120px 1rem 60px;
    }

    .page-pour-qui .page-hero__title {
        font-size: 1.5rem;
    }

    .page-pour-qui .page-hero__desc {
        font-size: 0.9375rem;
    }

    .pq-intro {
        padding: 80px 1rem 40px;
    }

    .pq-intro__visual img {
        height: 220px;
    }

    .pq-section--pme {
        padding: 40px 0;
    }

    .pq-section--collectivites {
        padding: 80px 0 40px;
    }

    .pq-section__header {
        padding: 0 1rem 40px;
    }

    .pq-block__visual img {
        min-height: 200px;
        height: 200px;
    }

    .pq-exemple {
        flex: 0 0 320px;
        min-width: 320px;
        padding: 18px 20px;
    }

    .pq-exemples .lds-services__card.pq-exemple-card {
        flex: 0 0 300px;
        min-width: 300px;
    }

    .pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-content {
        padding: 20px;
        gap: 10px;
    }

    .pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-title {
        font-size: 0.9375rem;
    }

    .pq-exemples .lds-services__card.pq-exemple-card .lds-services__card-cta {
        height: 44px;
        padding: 0 16px;
        font-size: 0.8125rem;
        width: 100%;
        justify-content: center;
    }

    .pq-exemples .lds-services__card-link-primary {
        font-size: 0.875rem;
    }

    .pq-exemples__title {
        margin-bottom: 32px;
    }

    .pq-exemples__track-wrapper::before,
    .pq-exemples__track-wrapper::after {
        width: 40px;
    }

    .pq-exemples__track {
        padding: 0 35px 16px;
    }

    .pq-cta-final {
        padding: 48px 1rem;
        margin: 0 0 40px;
        border-top-width: 40px;
    }
}
