/* ==========================================================================
   PAGES PRODUITS - STYLES SPÉCIFIQUES
   ========================================================================== */

/* --- PRODUCT LOGO --- */
.product-logo {
    max-height: 120px;
    width: auto;
}

/* Product logo integrated in page header */
.page-header .product-logo {
    max-height: 120px;
    width: auto;
    margin-bottom: 30px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* SVG logos need more height to match PNG logos */
.page-header .product-logo[src$=".svg"] {
    max-height: 150px;
    min-width: 200px;
    padding: 25px 40px;
}

/* --- PAGE HEADER --- */
.page-header {
    background: linear-gradient(135deg, #004d40 0%, #00acc1 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Variantes de couleur pour différents produits */
.page-header.enfance {
    background: linear-gradient(135deg, #A8C8AB 0%, #8fb092 100%); /* Famille.services */
}

.page-header.citoyen {
    background: linear-gradient(135deg, #856af9 0%, #6a4fd9 100%); /* Portail.services */
}

.page-header.salles {
    background: linear-gradient(135deg, #E69239 0%, #d17a25 100%); /* Resa.services */
}

.page-header.cimetieres {
    background: linear-gradient(135deg, #4D56A3 0%, #3d4582 100%); /* Cimetiere.services */
}

.page-header.etatcivil {
    background: linear-gradient(135deg, #3B6384 0%, #2d4f6a 100%); /* Etatcivil.services */
}

/* --- FEATURE BLOCKS (Zig-Zag Layout) --- */
.feature-block {
    padding: var(--spacing-xxl) 0;
}

.feature-block .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-block.reversed .container {
    flex-direction: row-reverse;
}

.feature-block.reversed {
    background-color: var(--light-gray);
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-md);
    color: var(--dark-blue);
}

.feature-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.feature-text ul {
    list-style: none;
    margin-top: var(--spacing-md);
}

.feature-text ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.feature-text ul li svg,
.feature-text ul li i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    height: 350px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00695c;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image svg,
.feature-image i {
    font-size: 5rem;
    opacity: 0.3;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.feature-image--with-img {
    background: #f7fafc;
    padding: 0;
}

.feature-image--with-img::before {
    display: none;
}

.feature-image--with-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

/* --- TIMELINE (qui-sommes-nous) --- */
.timeline {
    margin-top: 1.5rem;
}
.timeline-track {
    position: relative;
    height: 10px;
    background: linear-gradient(90deg, rgba(77,86,163,0.2), rgba(168,200,171,0.2), rgba(230,146,57,0.2), rgba(133,106,249,0.2), rgba(106,106,106,0.15));
    border-radius: 6px;
    margin: 2.5rem 0 1.5rem;
}
.timeline-items {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: -48px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.timeline-item {
    width: 18%;
    min-width: 140px;
    text-align: center;
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease;
}
.timeline-item:hover { transform: translateY(-6px); }
.marker {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.timeline-item strong { display:block; margin-bottom:6px; font-size:1.05rem; }
.timeline-item p { font-size:0.95rem; color: #334155; margin:0; }
.marker.c1 { background: #4D56A3; }
.marker.c2 { background: #A8C8AB; }
.marker.c3 { background: #E69239; }
.marker.c4 { background: #856af9; }
.marker.c5 { background: #6A6A6A; }

/* small connector dots on track */
.timeline-track::after {
    content: '';
    position: absolute;
    left: 2%;
    right: 2%;
    top: 50%;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(77,86,163,0.25), rgba(168,200,171,0.25), rgba(230,146,57,0.25), rgba(133,106,249,0.25), rgba(106,106,106,0.2));
}

@media (max-width: 900px) {
    .timeline-item { width: 45%; min-width: 160px; margin-bottom: 1rem; }
    .timeline-items { margin-top: -64px; }
}
@media (max-width: 520px) {
    .timeline-item { width: 100%; min-width: auto; }
    .marker { width:56px; height:56px; font-size:18px; }
    .timeline-items { margin-top: -72px; flex-direction: column; gap: 1.6rem; }
}

/* --- BENEFITS GRID --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

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

.benefit-card h4 {
    margin-bottom: 15px;
    color: var(--dark-blue);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card h4 svg,
.benefit-card h4 i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    border-top: 3px solid var(--primary-color);
}

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

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.5rem;
    color: rgba(0, 150, 136, 0.1);
}

.testimonial-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- VIDEO CONTAINER --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* --- CROSS-LINKS SECTION (Maillage interne) --- */
.cross-links-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.cross-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: var(--spacing-lg);
}

.cross-link-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.cross-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.cross-link-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.cross-link-card h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.cross-link-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cross-link-card .btn {
    margin-top: auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .feature-block,
    .feature-block.reversed {
        padding: var(--spacing-xl) 0;
    }

    .feature-block .container,
    .feature-block.reversed .container {
        flex-direction: column;
        gap: 40px;
    }

    .feature-image {
        width: 100%;
        height: 250px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px;
    }

    .cross-links-grid {
        grid-template-columns: 1fr;
    }

    .product-logo {
        max-height: 80px;
    }

    .page-header .product-logo {
        max-height: 80px;
        padding: 15px 20px;
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   ENGAGEMENTS SECTION (page Qui sommes-nous)
   ========================================================================== */

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.engagement-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    border-top: 4px solid var(--primary-color);
}

.engagement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.engagement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a9ba8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.engagement-item h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.engagement-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .engagements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .engagement-item {
        padding: 1.5rem;
    }

    .engagement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   PAGE OFFRES - STYLES
   ========================================================================== */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.offers-intro {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Cartes d'offres */
.offer-card {
    display: flex;
    flex-direction: column;
    padding: 35px 30px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.offer-card--essential {
    border-top-color: var(--color-resa);
}

.offer-card--featured {
    border-top-color: var(--color-enfance);
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(168, 200, 171, 0.25);
}

.offer-card--360 {
    border-top-color: var(--color-portail);
}

/* Icône de l'offre */
.offer-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.offer-icon--essential {
    background: linear-gradient(135deg, var(--color-resa) 0%, #d17a25 100%);
}

.offer-icon--enfance,
.offer-icon--featured {
    background: linear-gradient(135deg, var(--color-enfance) 0%, #8fb092 100%);
}

.offer-icon--360 {
    background: linear-gradient(135deg, var(--color-portail) 0%, #6a4fd9 100%);
}

/* Badge de l'offre */
.offer-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-gray);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.offer-badge--featured {
    background: linear-gradient(135deg, var(--color-enfance) 0%, #8fb092 100%);
    color: white;
}

.offer-badge--360 {
    background: linear-gradient(135deg, var(--color-portail) 0%, #6a4fd9 100%);
    color: white;
}

/* Titre et promesse */
.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.offer-promise {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Prix */
.offer-price {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.offer-price__from {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.offer-price__value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1;
}

.offer-price__unit {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Liste des fonctionnalités */
.offer-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1;
}

.offer-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.offer-features li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTAs */
.offer-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.offer-ctas .btn {
    width: 100%;
}

/* Boutons spéciaux 360 */
.btn-360 {
    background: var(--color-portail);
    border-color: var(--color-portail);
}

.btn-360:hover {
    background: #6a4fd9;
    border-color: #6a4fd9;
}

.btn-outline-360 {
    border-color: var(--color-portail);
    color: var(--color-portail);
}

.btn-outline-360:hover {
    background: var(--color-portail);
    color: white;
}

/* Note en bas de carte */
.offer-note {
    font-size: 0.85rem;
    color: var(--text-lighter);
    font-style: italic;
    margin: 0;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

/* CTA en bas de section */
.offers-bottom-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 12px;
}

.offers-bottom-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* FAQ */
.offers-faq {
    margin-top: 40px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.offers-faq summary {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    transition: background var(--transition-normal);
}

.offers-faq summary:hover {
    background: var(--light-gray);
}

.offers-faq__content {
    padding: 0 25px 25px;
}

.offers-faq__content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.offers-faq__content p:last-child {
    margin-bottom: 0;
}

/* Responsive offres */
@media (max-width: 992px) {
    .offer-card--featured {
        transform: none;
    }
}

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

    .offer-card {
        padding: 30px 25px;
    }

    .offer-price__value {
        font-size: 2rem;
    }

    .offers-bottom-cta {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   HUB SEO LOGICIELS - STYLES
   ========================================================================== */

/* --- HERO HEADER --- */
.hub-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #3d7ab3 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hub-hero .container {
    position: relative;
    z-index: 1;
}

.hub-hero h1 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.hub-hero__subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.6;
    font-weight: 500;
}

.hub-hero__description {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- INTRODUCTION --- */
.hub-intro__content {
    max-width: 900px;
    margin: 0 auto;
}

.hub-intro__content h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.hub-intro__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.hub-intro__text p {
    margin-bottom: 1.2rem;
}

.hub-intro__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: var(--spacing-xl);
}

.hub-highlight {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.hub-highlight i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.hub-highlight strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.hub-highlight p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- SCHEMA ARCHITECTURE 360 --- */
.hub-architecture {
    padding: var(--spacing-xxl) 0;
}

.hub-schema {
    margin-top: var(--spacing-xl);
}

.hub-schema__central {
    text-align: center;
    margin-bottom: 30px;
}

.hub-schema__portail {
    display: inline-block;
    background: linear-gradient(135deg, #856af9 0%, #b39dff 100%);
    color: white;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(133, 106, 249, 0.3);
    position: relative;
}

.hub-schema__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #856af9;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hub-schema__portail h3 {
    color: white;
    margin: 10px 0;
    font-size: 1.8rem;
}

.hub-schema__portail p {
    margin: 0 0 20px;
    opacity: 0.9;
    font-size: 1rem;
}

.hub-schema__portail .btn-white {
    background: white;
    color: #856af9;
    border: none;
}

.hub-schema__portail .btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Connecteurs visuels */
.hub-schema__connectors {
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.hub-schema__line {
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, #856af9, #ddd);
    margin: 0 auto;
    border-radius: 2px;
}

.hub-schema__line::after {
    content: '';
    display: block;
    width: 80%;
    max-width: 800px;
    height: 4px;
    background: linear-gradient(90deg, #25985B, #E69239, #4D56A3, #3B6384);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modules (logiciels metiers) */
.hub-schema__modules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.hub-schema__module {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--module-color);
    transition: all var(--transition-normal);
}

.hub-schema__module:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hub-schema__logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.hub-schema__module h4 {
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.hub-schema__module p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.hub-schema__link {
    color: var(--module-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-normal);
}

.hub-schema__link:hover {
    gap: 10px;
}

/* --- COULOIRS HORIZONTAUX --- */
.hub-lane {
    position: relative;
    overflow: hidden;
}

.hub-lane:nth-child(odd) {
    background: #f8f9fa;
}

.hub-lane:nth-child(even) {
    background: white;
}

.hub-lane__header {
    background: var(--lane-gradient);
    padding: 40px 0;
    position: relative;
}

.hub-lane__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.hub-lane__title-row {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.hub-lane__logo {
    max-height: 80px;
    width: auto;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hub-lane__titles h2 {
    color: white;
    margin: 0 0 5px;
    font-size: 2rem;
}

.hub-lane__tagline {
    color: white;
    opacity: 0.9;
    margin: 0;
    font-size: 1.1rem;
}

/* Contenu du couloir */
.hub-lane__content {
    padding: var(--spacing-xl) 0;
}

.hub-lane__intro {
    max-width: 900px;
    margin-bottom: var(--spacing-xl);
}

.hub-lane__intro h3 {
    color: var(--lane-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.hub-lane__intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.hub-lane__intro-text p {
    margin-bottom: 1rem;
}

/* Features du couloir */
.hub-lane__features,
.hub-lane__benefits,
.hub-lane__usecases {
    margin-bottom: var(--spacing-xl);
}

.hub-lane__features h4,
.hub-lane__benefits h4,
.hub-lane__usecases h4 {
    color: var(--dark-blue);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hub-lane__features h4 i,
.hub-lane__benefits h4 i,
.hub-lane__usecases h4 i {
    color: var(--lane-color);
}

.hub-lane__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.hub-lane__feature {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--lane-color);
}

.hub-lane__feature i {
    font-size: 1.5rem;
    color: var(--lane-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.hub-lane__feature strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.hub-lane__feature p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits du couloir */
.hub-lane__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.hub-lane__benefit {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.hub-lane__benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hub-lane__benefit strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 3px;
}

.hub-lane__benefit p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Cas d'usage */
.hub-lane__usecases ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.hub-lane__usecases li {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.hub-lane__usecases li i {
    color: var(--lane-color);
    flex-shrink: 0;
    margin-top: 3px;
}

/* CTA du couloir */
.hub-lane__cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: var(--spacing-md);
    border-top: 1px solid #e2e8f0;
}

.hub-lane__cta .btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
}

.hub-lane__cta .btn-outline {
    border-color: var(--lane-color);
    color: var(--lane-color);
}

.hub-lane__cta .btn-outline:hover {
    background: var(--lane-color);
    color: white;
}

/* --- BENEFICES GLOBAUX --- */
.hub-global-benefits {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
}

.hub-global-benefits .section-header h2,
.hub-global-benefits .section-header p {
    color: white;
}

.hub-global-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-xl);
}

.hub-global-benefit {
    text-align: center;
    padding: 30px;
}

.hub-global-benefit__icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.hub-global-benefit h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.hub-global-benefit p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hub-schema__modules {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hub-hero {
        padding: 80px 0 60px;
    }

    .hub-hero h1 {
        font-size: 2rem;
    }

    .hub-hero__subtitle {
        font-size: 1.1rem;
    }

    .hub-schema__portail {
        padding: 30px 40px;
    }

    .hub-schema__portail h3 {
        font-size: 1.4rem;
    }

    .hub-schema__modules {
        grid-template-columns: 1fr;
    }

    .hub-lane__title-row {
        flex-direction: column;
        text-align: center;
    }

    .hub-lane__titles h2 {
        font-size: 1.5rem;
    }

    .hub-lane__features-grid,
    .hub-lane__benefits-grid {
        grid-template-columns: 1fr;
    }

    .hub-lane__usecases ul {
        grid-template-columns: 1fr;
    }

    .hub-lane__cta {
        flex-direction: column;
    }

    .hub-lane__cta .btn-lg {
        width: 100%;
        text-align: center;
    }

    .hub-global-benefits__grid {
        grid-template-columns: 1fr;
    }

    .hub-intro__highlights {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   STICKY CTA - Sidebar fixe
   ========================================================================== */

.sticky-cta {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    max-width: 280px;
}

.sticky-cta-content {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--primary-color);
}

.sticky-cta-title {
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin: 0 0 15px;
    font-weight: 700;
}

.sticky-cta-points {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sticky-cta-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.sticky-cta-points li:last-child {
    margin-bottom: 0;
}

.sticky-cta-points li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.sticky-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
}

/* Masquer le sticky CTA sur tablette et mobile */
@media (max-width: 1200px) {
    .sticky-cta {
        display: none;
    }
}
