/* homepage.css - Version optimisée avec modifications */

/* ========================================
   HERO SECTION
======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: var(--dark-bg);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://picsum.photos/800/600');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 10;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 65%;
}

.hero-title {
    font-family: var(--h1-font-family);
    font-weight: var(--h1-font-weight);
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
    width: 100%;
    max-width: none;
}

.hero-title .difficulty-text {
    display: block;
    font-size: 56px;
}

.hero-title br {
    display: none;
}

.difficulty-text {
    color: var(--secondary-color);
    font-family: var(--annotation-font-family);
    font-weight: var(--annotation-font-weight);
    font-style: italic;
}

.hero .body-text,
.hero p {
    color: var(--hero-text-color);
    font-family: var(--font-open-sans);
    font-size: 16px;
    line-height: 31.5px;
    letter-spacing: 0.02em;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero .body-text strong,
.hero p strong {
    font-weight: 700;
    font-size: 16px;
    line-height: 31.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-rdv {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: var(--font-nunito);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    color: var(--dark-bg);
    transition: all 0.3s ease;
    box-sizing: border-box;
    z-index: 1;
}

.btn-rdv::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-section .btn-process:hover::before {
    opacity: 1;
}

.process-section .btn-process:hover {
    background: transparent;
    color: var(--dark-bg);
    text-decoration: none;
}

.process-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
    position: relative;
}

.process-icon {
    width: 200px;
    height: 200px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

/* ========================================
   RESPONSIVE DESIGN MOBILE - PROCESS SECTION
======================================== */

@media (max-width: 992px) {
    .process-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-title-column,
    .process-steps-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .process-steps-vertical {
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        align-items: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .process-visual {
        margin-top: 3rem;
        min-height: 300px;
    }
    
    .process-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .step-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.8rem !important;
    }
}

@media (max-width: 576px) {
    .process-icon {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .step-content h4 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
}

/* ========================================
   ENGAGEMENT SECTION
======================================== */

.engagement-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.engagement-content {
    padding: 5rem 0;
}

.engagement-title {
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.engagement-title .highlight-text {
    font-size: 48px !important;
}

.engagement-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.engagement-text p {
    margin-bottom: 1.5rem;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.engagement-text strong,
.engagement-text b,
.engagement-text .text-bold {
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.engagement-image {
    position: relative;
    border-radius: var(--border-radius);
    border-bottom-left-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.engagement-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .engagement-section .container {
        max-width: 1600px;
        padding-left: 4rem !important;
        padding-right: 2rem;
    }
    
    .engagement-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .engagement-section .col-lg-6:first-child {
        padding-left: 6rem !important;
        padding-right: 10rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - ENGAGEMENT SECTION
======================================== */

@media (max-width: 991px) {
    .engagement-section .row {
        gap: 2rem;
    }
    
    .engagement-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .engagement-section .col-lg-6:first-child {
        padding-left: 15px !important;
    }
}

@media (max-width: 768px) {
    .engagement-section .row {
        gap: 1.5rem;
    }
    
    .engagement-section .col-lg-6:first-child,
    .engagement-section .col-lg-6:last-child {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .engagement-image img {
        height: 300px;
    }
}

/* ========================================
   FINAL CTA SECTION
======================================== */

.final-cta-section {
    max-width: auto;
    background: url('../images/bg/AdobeStock_1416407623.webp');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: left;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 11rem;
}

.final-cta-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(28, 27, 47, 0) 0%,
        rgba(28, 27, 47, 0) 50%,
        #1c1b2f 100%
    );
    z-index: 1;
    pointer-events: none;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    padding: 1rem;
    border-radius: var(--border-radius);
}

.final-cta-title {
    font-family: var(--h1-font-family);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: black;
    white-space: nowrap;
}

.final-cta-title strong {
    color: var(--secondary-color);
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - FINAL CTA SECTION
======================================== */

@media (max-width: 992px) {
    .final-cta-title {
        font-size: calc(var(--h1-font-size) + 8px);
        white-space: normal;
    }
    
    .final-cta-content {
        padding: 2rem;
    }
    
    .final-cta-section {
        padding: 8rem 2rem;
    }
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: calc(var(--h1-font-size) + 4px);
        white-space: normal;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
    }
    
    .final-cta-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .final-cta-title {
        font-size: 24px;
    }
}

/* ========================================
   BOUTONS SPÉCIFIQUES HOMEPAGE
======================================== */

.btn-floating {
    background: var(--accent-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--h3-font-family);
    font-weight: var(--h2-font-weight);
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-floating:hover {
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: white;
    text-decoration: none;
}

.btn-process {
    background: var(--accent-gradient);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--h3-font-family);
    font-weight: var(--h2-font-weight);
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-process:hover {
    color: white;
    text-decoration: none;
}

.btn-cta-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    color: var(--dark-bg);
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--h3-font-family);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 1;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 3px;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    box-sizing: border-box;
}

.btn-cta-primary:hover::before {
    opacity: 1;
}

.btn-cta-primary:hover {
    background: transparent;
    color: transparent;
    background-image: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-decoration: none;
    transform: none;
    box-shadow: none;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 4px solid white;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--h3-font-family);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--dark-bg);
    transform: none;
    text-decoration: none;
}

/* ========================================
   ÉLÉMENTS SPÉCIAUX - INDICATEUR MOBILE
======================================== */

.mobile-swipe-hint {
    display: none;
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-family: var(--font-open-sans);
    font-size: 14px;
    font-style: italic;
}

/* ========================================
   ANIMATIONS SPÉCIFIQUES
======================================== */

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

.hero-content,
.stat-card,
.situation-item,
.network-content {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   AJUSTEMENTS GLOBAUX POUR LA COHÉRENCE
======================================== */

.network-section,
.stats-section,
.situations-section,
.process-section,
.engagement-section {
    padding: 3rem 0 !important;
}

/* ========================================
   RESPONSIVE - AJUSTEMENTS GLOBAUX MOBILES
======================================== */
@media (max-width: 991px) {
    .network-title .highlight-text,
    .situations-title .highlight-text {
        font-size: 36px !important;
    }
}

@media (max-width: 576px) {
    .network-title .highlight-text,
    .situations-title .highlight-text {
        font-size: 28px !important;
    }
}: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    box-sizing: border-box;
}

.btn-rdv:hover::before {
    opacity: 1;
}

.btn-rdv:hover {
    background: transparent;
    color: transparent;
    background-image: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    border: 3px solid #b03306;
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 4px solid white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--font-nunito);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.hero-buttons .btn-secondary:hover {
    background: white;
    color: var(--dark-bg);
    text-decoration: none;
}

@media (min-width: 769px) {
    .hero-image {
        position: absolute;
        bottom: 0 !important;
        right: 0;
        top: auto !important;
        width: 35% !important;
        height: 85% !important;
        background-image: url('../images/bg/AdobeStock_208518556.webp');
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover;
        z-index: 2 !important;
        opacity: 1 !important;
        border-top-left-radius: 30px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - HERO SECTION
======================================== */

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title br {
        display: block;
    }
    
    .hero-title {
        white-space: normal;
        font-size: calc(var(--h1-font-size) + 12px);
    }
    
    .hero-description {
        font-size: var(--body-font-size);
    }
    
    .hero-image {
        width: 100% !important;
        opacity: 0.3 !important;
        right: 0 !important;
        top: 0 !important;
        z-index: 0 !important;
    }
    
    .hero-overlay {
        right: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* ========================================
   NETWORK SECTION
======================================== */

.network-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.network-section .container {
    max-width: 80%;
    padding-left: 0;
    padding-right: 0;
}

.network-section .row {
    margin-left: 0;
    margin-right: 0;
}

.network-image {
    position: relative;
    border-radius: var(--border-radius);
    border-bottom-right-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.network-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: 70% center;
    transition: transform 0.3s ease;
}

.network-content {
    padding: 7rem;
    max-width: 800px;
    gap: 2rem;
}

.network-title {
    font-family: var(--h1-font-family);
    font-weight: 800;
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 2rem;
    padding-top: 10.2rem;
    color: #1C1B2F;
}

.network-title .highlight-text {
    display: block;
    margin-top: 0.05rem;
    color: var(--secondary-color);
    font-family: var(--annotation-font-family);
    font-size: 48px !important;
    font-weight: 400;
    font-style: italic;
}

.network-description {
    font-family: var(--font-open-sans);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1C1B2F;
}

.network-description strong {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
}

.btn-network {
    background: var(--dark-bg);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-nunito);
    font-weight: 300;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 0;
    display: inline-block;
    border: 4px solid var(--dark-bg);
    cursor: pointer;
}

.btn-network:hover {
    background: transparent;
    color: var(--dark-bg);
    border: 4px solid var(--dark-bg);
    text-decoration: none;
    transform: none;
    box-shadow: none;
}

.network-section .col-lg-6:first-child {
    flex: 0 0 30%;
    max-width: 30%;
    padding-left: 0;
    padding-right: 0;
}

.network-section .col-lg-6:last-child {
    flex: 0 0 70%;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    min-height: 800px;
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - NETWORK SECTION
======================================== */

@media (max-width: 991px) {
    .network-section .col-lg-6:first-child,
    .network-section .col-lg-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .network-image {
        width: 100%;
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
}

/* ========================================
   STATS SECTION
======================================== */

.stats-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.stats-section .container {
    max-width: 1200px !important;
    padding-left: 4rem !important;
    padding-right: 4rem !important;
}

@media (min-width: 769px) {
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: 250px 250px !important;
        gap: 1.2rem !important;
        max-width: 1500px;
        margin: 0 auto;
        justify-items: stretch;
    }

    .stat-card.small,
    .stat-card.large {
        grid-column: unset !important;
    }

    .stat-card:nth-child(1) { grid-column: 1; grid-row: 1; }
    .stat-card:nth-child(2) { grid-column: 2; grid-row: 1; }
    .stat-card:nth-child(3) { grid-column: 3; grid-row: 1; }
    .stat-card:nth-child(4) { grid-column: 1; grid-row: 2; }
    .stat-card:nth-child(5) { 
        grid-column: 2 / 4 !important;
        grid-row: 2 !important;
    }
}
/* 1. Première carte → coin bas gauche pointu */
.stats-grid .stat-card:nth-child(1) {
    border-radius: 15px 15px 15px 0 ; /* haut gauche + haut droit + bas droit arrondis */
}

/* 2. Deuxième carte → coin bas droit pointu */
.stats-grid .stat-card:nth-child(2) {
    border-radius: 15px 15px 0 15px;
}

/* 3. Troisième carte → coin bas gauche pointu */
.stats-grid .stat-card:nth-child(3) {
    border-radius: 15px 15px 15px 0;
}

/* 4. Quatrième carte → coin bas droit pointu */
.stats-grid .stat-card:nth-child(4) {
    border-radius: 15px 15px 0 15px;
}

/* 5. Cinquième carte → coin gauche pointu (donc pas d’arrondi à gauche) */
.stats-grid .stat-card:nth-child(5) {
    border-radius: 15px 15px 15px 0;
}
.stat-card {
    background: #1a1d29;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    height: 250px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-card {
    background: none;
    box-shadow: none;
    padding: 0;
}

.stat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.stat-card-text {
    text-align: center;
    color: white;
    padding: 3rem;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.stat-card.no-image {
    justify-content: center !important;
    padding: 0 !important;
}

.stat-card.no-image .stat-card-text {
    justify-content: space-between !important;
    padding: 1.5rem !important;
}

.stat-title {
    font-family: var(--font-open-sans);
    font-weight: var(--annotation-font-weight);
    font-size: 28px !important;
    line-height: 1.2;
    margin-bottom: 0.2rem;
    align-self: flex-start;
    color: var(--light-bg);
}

.stat-number {
    font-family: var(--h1-font-family);
    font-size: 4rem !important;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    align-self: flex-end;
    line-height: 1;
    font-weight: bold;
    margin-top: -0.5rem;
    margin-bottom: 0;
}

.stat-subtitle {
    font-family: var(--legal-font-family);
    font-weight: var(--legal-font-weight);
    font-size: 14px !important;
    color: var(--light-bg);
    align-self: flex-end;
    text-align: right;
    margin-top: 0;
}

.stat-card:nth-child(5) .stat-number {
    font-size: 4rem !important;
    color: var(--primary-color);
    font-weight: bold;
}

.stat-card:nth-child(5) .stat-title {
    font-size: 28px !important;
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - STATS SECTION
======================================== */

@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        grid-template-columns: unset !important;
    }

    .stat-card {
        height: 180px !important;
        transform: none !important;
        min-height: unset !important;
    }

    .stat-card:nth-child(1),
    .stat-card:nth-child(2),
    .stat-card:nth-child(3),
    .stat-card:nth-child(4),
    .stat-card:nth-child(5) {
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .stat-card.mobile-horizontal {
        flex-direction: row;
        align-items: center;
        padding: 1.5rem;
        min-height: 120px;
        background: linear-gradient(135deg, #1a1d29 0%, #2d3748 100%);
    }

    .stat-card.mobile-horizontal .stat-card-text {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        text-align: left;
    }

    .stat-card.mobile-horizontal .stat-title {
        font-size: 16px;
        margin-bottom: 0;
        flex: 1;
    }

    .stat-card.mobile-horizontal .stat-number {
        font-size: 2.5rem;
        margin-left: 1rem;
    }

    .stat-card.mobile-horizontal .stat-subtitle {
        font-size: 12px;
        text-align: right;
        margin-top: 0;
        margin-left: 0.5rem;
    }

    .stat-card.image-card {
        height: 180px;
        position: relative;
    }

    .stat-card.image-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        z-index: 2;
    }

    .mobile-swipe-hint {
        display: block;
    }
    
    .stats-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-card.mobile-horizontal {
        padding: 1rem;
        min-height: 100px;
    }

    .stat-card.mobile-horizontal .stat-number {
        font-size: 2rem;
    }

    .stat-card.image-card {
        height: 150px;
    }

    .stat-title {
        font-size: calc(var(--annotation-font-size) - 16px);
    }
}

@media (max-width: 480px) {
    .stat-card.mobile-horizontal .stat-card-text {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stat-card.mobile-horizontal .stat-number {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .stat-card.mobile-horizontal .stat-subtitle {
        text-align: center;
        margin-left: 0;
    }
}

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

    .stat-card {
        height: auto;
    }

    .stat-card-text {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) {
    .mobile-swipe-hint {
        display: none;
    }

    .stat-card.mobile-horizontal {
        flex-direction: column;
        text-align: center;
    }

    .stat-card.mobile-horizontal .stat-card-text {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   SITUATIONS SECTION
======================================== */

.situations-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.situations-section .container {
    padding-left: 5px;
    padding-right: 5px;
}

@media (min-width: 992px) {
    .situations-section .row {
        margin: 0;
        gap: 5rem;
    }
    
    .situations-section .col-lg-6:first-child {
        flex: 0 0 45%;
        max-width: 55%;
        padding-right: 5px;
    }
    
    .situations-section .col-lg-6:last-child {
        padding-top: 10rem;
        flex: 0 0 55%;
        max-width: 45%;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .situations-section .container {
        padding-left: 0;
        padding-right: 0;
    }
}

.situations-title {
    font-family: var(--h1-font-family);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 3rem;
    color: var(--text-dark);
    white-space: normal;
    max-width: 100%;
}

.situations-title .highlight-text {
    display: inline;
    margin-top: 0;
    margin-left: 0.3rem;
    color: var(--secondary-color);
    font-family: var(--annotation-font-family);
    font-weight: var(--annotation-font-weight);
    font-style: italic;
    font-size: 48px !important;
}

.situations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.situation-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: transparent;
    border-radius: 0;
    padding: 0;
    transition: none;
}

.situation-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.situation-text {
    flex: 1;
}

.situation-text h4 {
    font-family: var(--h3-font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.situation-text p {
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.situations-image-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.situations-image {
    width: 80% !important;
    border-radius: var(--border-radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    align-self: flex-end;
    margin-left: auto;
    box-shadow: none;
}

.situations-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.floating-text {
    width: 100%;
    background: rgba(28, 27, 47, 0.9);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top-right-radius: 0; 
    border-top-left-radius: 0; 
    color: white;
    backdrop-filter: blur(10px);
    margin-top: 0;
    align-self: flex-end;
    margin-right: 0;
    text-align: left;
}

.floating-text p {
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white;
}

.floating-text .btn-rdv {
    display: inline-block !important;
    width: auto !important;
    max-width: fit-content !important;
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - SITUATIONS SECTION
======================================== */

@media (max-width: 991px) {
    .situations-section .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .situations-section .row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .situations-section .col-lg-6:first-child,
    .situations-section .col-lg-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .situations-section .col-lg-6:last-child {
        padding-top: 0;
    }
    
    .situations-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .situations-title .highlight-text {
        font-size: 36px !important;
    }
    
    .situations-list {
        gap: 1.5rem;
        margin-bottom: 0;
        padding-left: 1rem;
    }
    
    .situation-text h4 {
        font-size: 18px;
    }
    
    .situation-text p {
        font-size: 15px;
    }
    
    .situations-image-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .situations-image {
        width: 100% !important;
        border-radius: var(--border-radius);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-bottom: 0;
    }
    
    .situations-image img {
        height: 300px;
    }
    
    .floating-text {
        width: 100%;
        border-radius: var(--border-radius);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        position: static;
        margin-top: 0;
        padding: 1.5rem;
        background: rgba(28, 27, 47, 0.95);
    }
    
    .floating-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .floating-text .btn-rdv {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .situations-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .situations-title {
        font-size: 24px;
    }
    
    .situations-title .highlight-text {
        font-size: 28px !important;
    }
    
    .situations-list {
        padding-left: 0.75rem;
    }
    
    .situation-item {
        gap: 1rem;
    }
    
    .situation-icon {
        font-size: 20px;
    }
    
    .situation-text h4 {
        font-size: 16px;
    }
    
    .situation-text p {
        font-size: 14px;
    }
    
    .situations-image img {
        height: 250px;
    }
    
    .floating-text {
        padding: 1.25rem;
    }
    
    .floating-text p {
        font-size: 14px;
    }
}
/* ========================================
   PROCESS SECTION
======================================== */

.process-section {
    padding: 3rem 0;
    background: var(--light-bg);
    position: relative;
}

.process-content {
    padding: 2rem 0;
}

.process-title {
    font-family: var(--h1-font-family);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 3rem;
    color: var(--text-dark);
    white-space: normal;
    max-width: 70%;
}

.process-title .highlight-text {
    display: inline;
    margin-top: 0;
    margin-left: 0.3rem;
    color: var(--secondary-color);
    font-family: var(--annotation-font-family);
    font-weight: var(--annotation-font-weight);
    font-style: italic;
    font-size: 48px !important;
}   

.process-layout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.process-title-column {
    flex: 0 0 50%;
    max-width: 50%;
}

.process-steps-column {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 2rem;
}

.process-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 125px;
}

.process-step {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: none;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    opacity: 0;
    transform: translateY(100px);
    gap: 1.5rem !important;
}

.process-step.reveal {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1).reveal {
    transition-delay: 0.1s;
}

.process-step:nth-child(2).reveal {
    transition-delay: 0.3s;
}

.process-step:nth-child(3).reveal {
    transition-delay: 0.5s;
}

.step-number {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: black;
    font-family: var(--font-nunito);
    font-weight: 700 !important;
    font-size: 64px !important;
    line-height: 64px !important;
    letter-spacing: 0% !important;
    flex-shrink: 0;
    border: none;
    margin-right: 1rem;
    margin-top: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step-content h4 {
    font-family: var(--font-nunito);
    font-weight: 700;
    font-size: 32px;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    margin-top: 0 !important;
    margin-bottom: 1rem;
    color: var(--text-dark);
    order: 1;
}

.step-content h4 strong {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-nunito);
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* ========================================
   TEXTE DE LA CARD — corrigé selon tes spécifications
   Corps de texte site / Corps de texte & Gras
======================================== */

.step-content p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 31.5px;
    letter-spacing: 0.02em; /* 2% */
    color: var(--text-light);
    margin-bottom: 1.5rem;
    order: 2;
}

.step-content p strong {
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 31.5px;
    letter-spacing: 0.02em; /* 2% */
    color: var(--text-dark);
}

.step-content .btn-process {
    order: 3;
}

.process-section .btn-process {
    position: relative;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    color: var(--dark-bg);
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--h3-font-family);
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.process-section .btn-process::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-section .btn-process:hover::before {
    opacity: 1;
}

.process-section .btn-process:hover {
    background: transparent;
    color: var(--dark-bg);
    text-decoration: none;
}

.process-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
    position: relative;
}

.process-icon {
    width: 200px;
    height: 200px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

/* ========================================
   RESPONSIVE DESIGN MOBILE - PROCESS SECTION
======================================== */

@media (max-width: 992px) {
    .process-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-title-column,
    .process-steps-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .process-steps-vertical {
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        align-items: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .process-visual {
        margin-top: 3rem;
        min-height: 300px;
    }
    
    .process-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .step-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.8rem !important;
    }
}

@media (max-width: 576px) {
    .process-icon {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .step-content h4 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
        line-height: 26px;
    }
}
/* ========================================
   RESPONSIVE DESIGN MOBILE - HERO SECTION
======================================== */

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title br {
        display: block;
    }
    
    .hero-title {
        white-space: normal;
        font-size: calc(var(--h1-font-size) + 12px);
    }
    
    .hero-description {
        font-size: var(--body-font-size);
    }
    
    .hero-image {
        width: 100% !important;
        opacity: 0.3 !important;
        right: 0 !important;
        top: 0 !important;
        z-index: 0 !important;
    }
    
    .hero-overlay {
        right: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - NETWORK SECTION
======================================== */

@media (max-width: 991px) {
    .network-section .container {
        max-width: 100%;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .network-section .col-lg-6:first-child,
    .network-section .col-lg-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        min-height: auto;
    }
    
    .network-content {
        padding: 2rem 0;
        max-width: 100%;
    }
    
    .network-title {
        font-size: 28px;
        padding-top: 0;
        margin-bottom: 1.5rem;
    }
    
    .network-title .highlight-text {
        font-size: 36px !important;
    }
    
    .network-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .network-image {
        width: 100%;
        border-radius: var(--border-radius);
        margin-bottom: 1.5rem;
    }
    
    .network-image img {
        height: 300px;
    }
    
    .btn-network {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .network-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .network-content {
        padding: 1.5rem 0;
    }
    
    .network-title {
        font-size: 24px;
    }
    
    .network-title .highlight-text {
        font-size: 28px !important;
    }
    
    .network-description {
        font-size: 14px;
    }
    
    .network-image img {
        height: 250px;
    }
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - STATS SECTION
======================================== */

@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        grid-template-columns: unset !important;
    }

    .stat-card {
        height: 180px !important;
        transform: none !important;
        min-height: unset !important;
    }

    .stat-card:nth-child(1),
    .stat-card:nth-child(2),
    .stat-card:nth-child(3),
    .stat-card:nth-child(4),
    .stat-card:nth-child(5) {
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .stat-card.mobile-horizontal {
        flex-direction: row;
        align-items: center;
        padding: 1.5rem;
        min-height: 120px;
        background: linear-gradient(135deg, #1a1d29 0%, #2d3748 100%);
    }

    .stat-card.mobile-horizontal .stat-card-text {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        text-align: left;
    }

    .stat-card.mobile-horizontal .stat-title {
        font-size: 16px;
        margin-bottom: 0;
        flex: 1;
    }

    .stat-card.mobile-horizontal .stat-number {
        font-size: 2.5rem;
        margin-left: 1rem;
    }

    .stat-card.mobile-horizontal .stat-subtitle {
        font-size: 12px;
        text-align: right;
        margin-top: 0;
        margin-left: 0.5rem;
    }

    .stat-card.image-card {
        height: 180px;
        position: relative;
    }

    .stat-card.image-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        z-index: 2;
    }

    .mobile-swipe-hint {
        display: block;
    }
    
    .stats-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-card.mobile-horizontal {
        padding: 1rem;
        min-height: 100px;
    }

    .stat-card.mobile-horizontal .stat-number {
        font-size: 2rem;
    }

    .stat-card.image-card {
        height: 150px;
    }

    .stat-title {
        font-size: calc(var(--annotation-font-size) - 16px);
    }
}

@media (max-width: 480px) {
    .stat-card.mobile-horizontal .stat-card-text {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stat-card.mobile-horizontal .stat-number {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .stat-card.mobile-horizontal .stat-subtitle {
        text-align: center;
        margin-left: 0;
    }
}

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

    .stat-card {
        height: auto;
    }

    .stat-card-text {
        padding: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - SITUATIONS SECTION
======================================== */

@media (max-width: 991px) {
    .situations-section .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .situations-section .col-lg-6:first-child,
    .situations-section .col-lg-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .situations-section .col-lg-6:last-child {
        padding-top: 2rem;
    }
    
    .situations-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .situations-title .highlight-text {
        font-size: 36px !important;
    }
    
    .situations-list {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .situation-text h4 {
        font-size: 18px;
    }
    
    .situation-text p {
        font-size: 15px;
    }
    
    /* Masquer l'image sur mobile */
    .situations-image {
        display: none;
    }
    
    .floating-text {
        width: 100%;
        border-radius: var(--border-radius);
        position: static;
        margin-top: 0;
        padding: 1.5rem;
    }
    
    .floating-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .floating-text .btn-rdv {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .situations-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .situations-title {
        font-size: 24px;
    }
    
    .situations-title .highlight-text {
        font-size: 28px !important;
    }
    
    .situation-item {
        gap: 1rem;
    }
    
    .situation-icon {
        font-size: 20px;
    }
    
    .situation-text h4 {
        font-size: 16px;
    }
    
    .situation-text p {
        font-size: 14px;
    }
    
    .floating-text {
        padding: 1.25rem;
    }
    
    .floating-text p {
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - PROCESS SECTION
======================================== */

@media (max-width: 992px) {
    .process-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-title-column,
    .process-steps-column {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
    }
    
    .process-title {
        max-width: 100%;
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .process-title .highlight-text {
        font-size: 36px !important;
    }
    
    .process-steps-vertical {
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        align-items: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .step-content h4 {
        font-size: 24px;
    }
    
    .process-visual {
        margin-top: 3rem;
        min-height: 300px;
    }
    
    .process-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .step-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 48px !important;
    }
    
    .step-content h4 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 15px;
        line-height: 26px;
    }
}

@media (max-width: 576px) {
    .process-title {
        font-size: 24px;
    }
    
    .process-title .highlight-text {
        font-size: 28px !important;
    }
    
    .process-icon {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .step-content h4 {
        font-size: 24px;
    }
    
    .step-content p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - ENGAGEMENT SECTION
======================================== */

@media (max-width: 991px) {
    .engagement-section .row {
        gap: 2rem;
    }
    
    .engagement-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .engagement-section .col-lg-6:first-child {
        padding-left: 15px !important;
    }
}

@media (max-width: 768px) {
    .engagement-section .row {
        gap: 1.5rem;
    }
    
    .engagement-section .col-lg-6:first-child,
    .engagement-section .col-lg-6:last-child {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .engagement-image img {
        height: 300px;
    }
}

/* ========================================
   RESPONSIVE DESIGN MOBILE - FINAL CTA SECTION
======================================== */

@media (max-width: 992px) {
    .final-cta-title {
        font-size: calc(var(--h1-font-size) + 8px);
        white-space: normal;
    }
    
    .final-cta-content {
        padding: 2rem;
    }
    
    .final-cta-section {
        padding: 8rem 2rem;
    }
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: calc(var(--h1-font-size) + 4px);
        white-space: normal;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
    }
    
    .final-cta-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .final-cta-title {
        font-size: 24px;
    }
}

/* ========================================
   RESPONSIVE - AJUSTEMENTS GLOBAUX MOBILES
======================================== */
@media (max-width: 991px) {
    .network-title .highlight-text,
    .situations-title .highlight-text {
        font-size: 36px !important;
    }
}

@media (max-width: 576px) {
    .network-title .highlight-text,
    .situations-title .highlight-text {
        font-size: 28px !important;
    }
}