/* Texte d'exemple dans la comparaison (centré en mode vertical/mobile) */
.comparison-example-text {
    text-align: left;
}

@media (max-width: 768px) {
    .comparison-example-text {
        text-align: center;
        display: block;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
/* POLICES */
/* Satoshi pour les titres */
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/d9396795aa5ec363-s.p.woff2') format('woff2');
    font-weight: 300-900;
    font-display: swap;
}

/* Inter pour le texte */
@font-face {
    font-family: 'Inter';
    src: url('fonts/e4af272ccee01ff0-s.p.woff2') format('woff2');
    font-weight: 100-900;
    font-display: swap;
}

/* Variables CSS pour les polices */
:root {
    --font-satoshi: 'Satoshi', system-ui, -apple-system, sans-serif;
    --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-inter);
    line-height: 1.5;
    color: #171717;
    background-color: #ffffff;
    overflow-x: hidden; /* Éviter le scroll horizontal */
}

/* Éviter le débordement horizontal sur tous les éléments */
html {
    overflow-x: hidden;
}

/* Lignes verticales pour sections pleine largeur */
.lignes-verticales {
    position: relative;
}

.lignes-verticales::before,
.lignes-verticales::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E5E5E5;
    z-index: 1;
    pointer-events: none;
}

/* Sur grands écrans : lignes alignées avec le conteneur 1080px */
@media (min-width: 1100px) {
    .lignes-verticales::before {
        left: calc(50% - 540px); /* 540px = 1080px / 2 */
    }

    .lignes-verticales::after {
        right: calc(50% - 540px);
    }
}

/* Sur petits écrans : lignes à 0px des bords (alignées avec le main container) */
@media (max-width: 1099px) {
    .lignes-verticales::before {
        left: 0px;
    }

    .lignes-verticales::after {
        right: 0px;
    }
}

/* Lignes verticales pour sections dans le conteneur 1080px */
.lignes-conteneur {
    position: relative;
}

.lignes-conteneur::before,
.lignes-conteneur::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E5E5E5;
    z-index: 1;
    pointer-events: none;
}

/* Sur grands écrans : lignes aux bords du conteneur */
@media (min-width: 1100px) {
    .lignes-conteneur::before {
        left: 0; /* Bord gauche du conteneur */
    }

    .lignes-conteneur::after {
        right: 0; /* Bord droit du conteneur */
    }
}

/* Sur petits écrans : lignes alignées avec le main container */
@media (max-width: 1099px) {
    .lignes-conteneur::before {
        left: 0px; /* Alignées avec le main container */
    }

    .lignes-conteneur::after {
        right: 0px;
    }
}

/* Conteneur principal avec bordures verticales */
.main-container {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    overflow: visible; /* Important pour que le sticky fonctionne */
    padding-top: 56px; /* Compense la hauteur du header fixe */
}

/* Sur petits écrans : ajouter du padding pour éviter que le contenu touche les lignes */
@media (max-width: 1099px) {
    .main-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}


/* SECTION 1: HEADER & NAVIGATION */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    height: 56px;
    width: 100% !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin: 0 !important;
}


.nav-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    position: relative;
    padding-bottom: 2px;
}

.logo-icon {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.logo-main {
    font-size: 24px;
    font-weight: 500;
    color: #171717;
}

.logo-studio {
    position: absolute;
    top: -10px;
    left: 40px; /* Décalé pour laisser la place à l'icône */
    font-size: 14px;
    color: #171717;
    z-index: 10;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 56px;
}

.nav-link {
    padding: 8px 16px;
    color: #525252;
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover {
    color: #171717;
    background-color: rgba(229, 229, 229, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Masquer les boutons de navigation sur mobile */
@media (max-width: 1023px) {
    .nav-actions {
        display: none;
    }
}

.btn-login {
    padding: 8px 20px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #171717;
    background-color: #171717;
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background-color: #404040;
    border-color: #404040;
    color: white;
    box-shadow: 0 0 0 4px rgba(23, 23, 23, 0.2);
}

.btn-signup {
    padding: 8px 20px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #171717;
    background-color: #171717;
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-signup:hover {
    background-color: #404040;
    box-shadow: 0 0 0 4px rgba(229, 229, 229, 0.5);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

/* Menu Mobile */
.menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-mobile.active {
    opacity: 1;
    visibility: visible;
}

.menu-mobile-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-mobile-link {
    color: #171717;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.menu-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 0;
}

.btn-login-mobile,
.btn-signup-mobile {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-login-mobile {
    background-color: #171717;
    border: 1px solid #171717;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-login-mobile:hover {
    background-color: #404040;
    border-color: #404040;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-signup-mobile {
    background-color: #171717;
    border: 1px solid #171717;
    color: white;
}

.btn-signup-mobile:hover {
    background-color: #404040;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* SECTION 2: HERO SECTION */
.hero {
    text-align: center;
    padding: 80px 16px 144px 16px;
    position: relative;
    z-index: 10;
    background-color: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

/* Sur petits écrans : ajuster padding pour éviter que le contenu touche les lignes */
@media (max-width: 1099px) {
    .hero {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Réduire l'écart entre le menu et le contenu sur mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: 40px;
    }
}

/* QUADRILLAGE DE FOND - HERO SECTION */

/* 1. COUCHE DE BORDURE VERTICALE */
.hero-grid-border {
    position: absolute;
    inset: 0;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    mask-image: linear-gradient(transparent, black);
    -webkit-mask-image: linear-gradient(transparent, black);
    pointer-events: none;
    z-index: 1;
}

/* 2. COUCHE LATERALE (GAUCHE ET DROITE) */
.hero-grid-lateral {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    mask-composite: intersect;
    -webkit-mask-composite: intersect;
    mask-image: linear-gradient(transparent, black);
    -webkit-mask-image: linear-gradient(transparent, black);
    pointer-events: none;
    z-index: 2;
}

.hero-grid-lateral-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
}

/* SVG GAUCHE */
.hero-grid-svg-left {
    position: absolute;
    inset: unset;
    bottom: 0;
    height: 600px;
    width: 360px;
    color: rgba(229, 229, 229, 0.6);
    mask-image: linear-gradient(90deg, transparent, black);
    -webkit-mask-image: linear-gradient(90deg, transparent, black);
    pointer-events: none;
}

@media (min-width: 1100px) {
    .hero-grid-svg-left {
        right: calc(50% + 540px);
    }
}

@media (max-width: 1099px) {
    .hero-grid-svg-left {
        display: none; /* Masquer sur petits écrans */
    }
}

/* SVG DROITE */
.hero-grid-svg-right {
    position: absolute;
    inset: unset;
    bottom: 0;
    height: 600px;
    width: 360px;
    color: rgba(229, 229, 229, 0.6);
    mask-image: linear-gradient(270deg, transparent, black);
    -webkit-mask-image: linear-gradient(270deg, transparent, black);
    pointer-events: none;
}

@media (min-width: 1100px) {
    .hero-grid-svg-right {
        left: calc(50% + 540px);
    }
}

@media (max-width: 1099px) {
    .hero-grid-svg-right {
        display: none; /* Masquer sur petits écrans */
    }
}

/* 3. COUCHE CENTRALE */
.hero-grid-central {
    position: absolute;
    left: 1px;
    right: 1px;
    top: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 1;
    mask-composite: intersect;
    -webkit-mask-composite: intersect;
    mask-image: linear-gradient(transparent, black), radial-gradient(130% 50% at 50% 100%, transparent, black);
    -webkit-mask-image: linear-gradient(transparent, black), radial-gradient(130% 50% at 50% 100%, transparent, black);
    pointer-events: none;
    z-index: 3;
}

.hero-grid-svg-central {
    position: absolute;
    inset: unset;
    bottom: 0;
    left: 50%;
    height: 600px;
    width: 1080px;
    transform: translateX(-50%);
    color: rgba(229, 229, 229, 0.6);
    pointer-events: none;
}


/* BARRETTE D'ANNONCE - STYLE COMPLET */
.announcement-bar {
    display: inline-flex;
    align-items: center;
    background-color: white;
    border: 1px solid #d4d4d4;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.15s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
    user-select: none;
}

.announcement-bar:hover {
    background-color: #fafafa;
}

.announcement-bar > span:first-child {
    padding: 3px 10px;
    color: #262626;
}

.announcement-bar > span:last-child {
    padding: 3px 10px;
    border-left: 1px solid #d4d4d4;
}

@media (min-width: 640px) {
    .announcement-bar > span:last-child {
        border-left: 1px solid #d4d4d4;
    }
}

@media (max-width: 639px) {
    .announcement-bar > span:last-child {
        border-left: none;
    }
}

.announcement-link {
    padding: 0;
    color: #737373;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 2px;
}

.announcement-arrow {
    transition: transform 0.075s ease;
    user-select: none;
}

.announcement-bar:hover .announcement-arrow {
    transform: translateX(3px);
}

/* Garder uniquement la flèche visible sur mobile */
@media (max-width: 768px) {
    .announcement-right {
        display: flex;
    }
    
    .announcement-link {
        font-size: 0;
    }
    
    .announcement-arrow {
        display: inline-block;
        font-size: 12px;
    }
}

.hero-title {
    font-family: var(--font-satoshi);
    font-size: 36px;
    font-weight: 500;
    color: #171717;
    line-height: 1.15;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: #525252;
    max-width: 500px;
    position: relative;
    z-index: 10;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* BOUTONS CTA DU HÉRO */
.btn-primary {
    padding: 8px 20px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #171717;
    background-color: #171717;
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #404040;
    box-shadow: 0 0 0 4px rgba(229, 229, 229, 0.5);
}

.btn-secondary {
    padding: 8px 20px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background-color: white;
    color: #737373;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #a3a3a3;
    color: #171717;
    box-shadow: 0 0 0 4px rgba(229, 229, 229, 0.5);
}

/* SECTION 3: ENCOCHE AVEC BOUTONS (dans tabs-section) */
.notch-container {
    position: relative;
    z-index: 20;
    margin: 0 auto;
    margin-top: -64px;
    display: flex;
    height: 64px;
    max-width: min(700px, calc(100vw - 2rem));
    transform: translateY(-1px);
    align-items: flex-start;
    justify-content: center;
    color: white;
}

/* Encoche de la même couleur que le fond gris sur mobile */
@media (max-width: 768px) {
    .notch-container {
        background-color: #f5f5f5;
        color: #f5f5f5;
        margin-bottom: 14px; /* espace sous les boutons pour éviter le chevauchement de la double bordure */
    }
    
    .notch-svg-left,
    .notch-svg-right {
        fill: #f5f5f5;
    }
    
    .notch-buttons-container {
        background-color: #f5f5f5;
        border-top-color: #f5f5f5;
        padding-top: 8px;
    }
    
    .notch-button {
        background-color: #f5f5f5;
        color: #171717;
        border: 1px solid #d4d4d4;
        min-width: 200px;
        max-width: 200px;
        flex: 1;
    }
    
    .notch-button:last-child {
        min-width: 200px !important;
        max-width: 200px !important;
        width: 200px !important;
        margin-bottom: 12px; /* espace sous le 2e bouton */
    }
    
    .notch-button.active {
        background-color: #ffffff;
        border-color: #d4d4d4;
        color: #171717;
    }
}

.notch-svg-left {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    transform: translateX(1px) translateY(1px);
    overflow: visible;
}

.notch-svg-right {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    transform: translateX(-1px) translateY(1px) scaleX(-1);
    overflow: visible;
}

.notch-buttons-container {
    position: relative;
    z-index: 30;
    height: calc(100% + 1px);
    min-width: 0;
    flex-grow: 1;
    border-top: 1px solid currentColor;
    background-color: currentColor;
}

.notch-buttons {
    display: flex;
    height: 100%;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* BOUTONS DE L'ENCOCHE */
.notch-button {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    position: relative;
    min-width: 200px;
    max-width: 300px;
    white-space: nowrap;
}

.notch-button:last-child {
    min-width: 140px;
    max-width: 200px;
    padding: 8px 16px;
}

.notch-button.active {
    background-color: white;
    border-color: #e5e5e5;
    color: #171717;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.notch-button:not(.active) {
    background-color: #f5f5f5;
    color: #171717;
    border-color: transparent;
}

/* Override pour mobile - bordures visibles */
@media (max-width: 768px) {
    .notch-button:not(.active) {
        border-color: #d4d4d4;
    }
}

.notch-button:not(.active):hover {
    color: #404040;
}

.button-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button-icon.orange {
    background-color: #FB923C;
}

.button-icon.green {
    background-color: #4ADE80;
}

.button-icon.purple {
    background-color: #A78BFA;
}

/* SECTION 4: ONGLETS INTERACTIFS */
.tabs-section {
    position: relative;
    z-index: 10;
    background-color: #f5f5f5;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    min-height: 360px;
}

/* CONTENEUR D'ISOLATION DES REFLETS */
.reflets-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 100;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* REFLETS SUBTILS COLORÉS - ISOLEÉS */
.conic-glow {
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.10;
    filter: blur(150px);     /* Blur équilibré */
    background: conic-gradient(
        from -81deg,
        #F00 0deg,
        #EAB308 99deg,
        #5CFF80 162deg,
        #00FFF9 216deg,
        #3A8BFD 288deg,
        #855AFC 360deg
    );
    z-index: 1;
}

/* Anciens styles d'onglets supprimés - remplacés par l'encoche */

/* Conteneur principal */
.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

/* Conteneur avec hauteur proportionnelle */
.content-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9.2; /* hauteur augmentée pour afficher la barre VTurb en dessous */
    margin-top: 40px;
    margin-bottom: 0;
    z-index: 10;
}

/* Mobile: réduire la hauteur de l'encart vidéo */
@media (max-width: 640px) {
    .content-wrapper {
        margin-top: 50px; /* Plus d'espace pour éviter le chevauchement avec les boutons */
        margin-bottom: 12px;
    }
}

/* Conteneur avec effet de fade en bas (masque désactivé temporairement) */
.video-container-with-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* mask-image: linear-gradient(black 50%, transparent 90%); */
    /* -webkit-mask-image: linear-gradient(black 50%, transparent 90%); */
}

/* Conteneur extérieur (première bordure) */
.panel-outer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid #E5E5E5;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 10px;
    z-index: 10;
}

@media (min-width: 640px) {
    .panel-outer {
        padding: 10px;
        border-radius: 20px;
    }
}

/* Panel vidéo (deuxième bordure) */
.panel-content {
    width: 100%;
    height: 100%;
    background-color: white;
    border-top: 1px solid #D4D4D4;
    border-left: 1px solid #D4D4D4;
    border-right: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
    border-radius: 8px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 10;
    overflow: visible;
}

@media (min-width: 640px) {
    .panel-content {
        border-radius: 12px;
    }
    
    .lead-magnet-video {
        border-radius: 12px;
    }
}

/* Styles pour le lecteur vidéo */
.video-player-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 11px;
    overflow: hidden;
}

/* Styles spécifiques pour le player VTurb */
vturb-smartplayer {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.lead-magnet-video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: none;
    background-color: #000;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 16px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-overlay.show {
    opacity: 1;
    transform: translateY(0);
}

/* Classe pour masquer temporairement l'overlay */
.video-overlay.hidden {
    display: none !important;
}

/* Styles pour les onglets de contenu */
.tab-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Styles pour le contenu "Dispo Soon" */
.coming-soon-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.coming-soon-icon {
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-title {
    font-family: var(--font-satoshi);
    font-size: 32px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 12px;
    line-height: 1.2;
}

.coming-soon-description {
    font-family: var(--font-inter);
    font-size: 18px;
    color: #737373;
    line-height: 1.5;
    margin: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Responsive pour mobile */
@media (max-width: 640px) {
    .coming-soon-container {
        padding: 20px;
    }
    
    .coming-soon-title {
        font-size: 24px;
    }
    
    .coming-soon-description {
        font-size: 16px;
    }
}

.video-title {
    font-family: var(--font-satoshi);
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.video-description {
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

/* Responsive pour mobile */
@media (max-width: 640px) {
    .video-player-container {
        padding: 11px;
        min-height: 200px;
    }
    
    .lead-magnet-video {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }
    
    .video-overlay {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 12px;
    }
    
    .video-title {
        font-size: 16px;
    }
    
    .video-description {
        font-size: 13px;
    }
}

/* Animation d'apparition du lecteur vidéo */
.lead-magnet-video {
    animation: fadeInVideo 0.6s ease-out;
}

.experience-video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: none;
    background-color: #000;
    object-fit: cover;
    object-position: center;
    animation: fadeInVideo 0.6s ease-out;
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Styles pour le message d'erreur vidéo */
.video-error-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    z-index: 20;
}

.error-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 400px;
}

.error-content svg {
    margin-bottom: 20px;
    opacity: 0.8;
}

.error-content h3 {
    font-family: var(--font-satoshi);
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.3;
}

.error-content p {
    font-family: var(--font-inter);
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.error-retry-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.error-retry-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.error-retry-btn:active {
    transform: translateY(0);
}

.loading-spinner {
    text-align: center;
    color: #525252;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f5f5f5;
    border-top: 3px solid #171717;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.info-bar {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #262626;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 15;
}

.info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.info-content h3 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.4;
}

.info-btn {
    background-color: white;
    color: #171717;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-left: auto;
}

/* SECTION 5: LOGOS DE COMPAGNIES */
.logos-section {
    padding: 0;
    background-color: white;
    border-bottom: 1px solid #E5E5E5;
    display: none;
}

.logos-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 16px;
    height: 192px;
    width: 100%;
}

.logo-item {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 5px;
    box-sizing: border-box;
}

.logo-item:hover {
    transform: rotateY(15deg);
    opacity: 1;
}

.company-logo {
    max-height: calc(100% - 10px);
    max-width: calc(100% - 10px);
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Masquer les logos au-delà du 4ème sur mobile */
@media (max-width: 768px) {
    .logo-item:nth-child(n+5) {
        display: none;
    }
    
    .logos-grid {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 1fr 1fr !important;
        height: 96px;
    }
}

/* SECTION 6: MARKETING SECTION */
.marketing-section {
    padding: 140px 16px;
    background-color: white;
    position: relative;
}

/* MOTIF POINTILLÉS EN ARRIÈRE-PLAN */
.dots-pattern {
    position: absolute;
    pointer-events: none;
    inset: 8px;
    mix-blend-mode: darken;
    opacity: 0.8;
    z-index: 1;
}

.dots-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, #d4d4d8 1px, transparent 0);
    background-size: 12px 12px;
    background-position: -1px -1px;
}

.marketing-content {
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.marketing-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #262626;
    line-height: 1.375;
    margin-bottom: 24px; /* Augmenté l'espace entre titre et texte */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.marketing-description {
    font-size: 18px;
    line-height: 1.6;
    color: #262626;
    margin-bottom: 16px;
    max-width: 600px; /* Augmenté la largeur du texte */
    margin-left: auto;
    margin-right: auto;
}

.marketing-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #262626;
    margin-bottom: 0;
    max-width: 600px; /* Augmenté la largeur du texte */
    margin-left: auto;
    margin-right: auto;
}

/* NOTE GEBEN DANS LA SECTION MARKETING */
.marketing-geben-note {
    position: absolute;
    bottom: 10px; /* Encore plus bas */
    right: 40px;
    z-index: 10;
}

.marketing-geben-text {
    font-family: 'Inter', sans-serif;
    font-size: 30px; /* Même taille que le titre */
    font-weight: 500;
    color: #262626;
    margin: 0;
    font-style: italic;
}

.marketing-final {
    font-size: 18px;
    line-height: 1.6;
    color: #262626;
}

/* LIGNE DE SÉPARATION */
.section-separator {
    width: 100vw;
    height: 1px;
    background-color: #E5E5E5;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 20;
}

.section-separator-spacer {
    width: 100vw;
    height: 50px;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 20;
}

/* SECTION BLANCHE D'ESPACEMENT */
.white-spacing-section {
    width: 100vw;
    height: 50px;
    margin-left: calc(-50vw + 50%);
    background-color: white;
}

/* SECTION 7: DÉCUPLEZ VOTRE NOMBRE DE LEADS */
.leads-section {
    background-color: white;
    position: relative;
}

/* COMPARAISON LEAD MAGNETS */
.leads-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
    width: 100%;
}

.comparison-left,
.comparison-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.comparison-left {
    flex: 0 0 auto;
}

.comparison-right {
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .leads-comparison {
        flex-direction: row;
        justify-content: space-between;
        padding: 40px 20px;
    }
    
    .comparison-left,
    .comparison-right {
        flex: 1;
    }
}

/* NOUVEAUX STYLES AVEC DOUBLE BORDURE COMME LA VIDÉO */

/* Conteneur extérieur (première bordure) */
.comparison-frame-small-outer {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    z-index: 10;
}

.comparison-frame-large-outer {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    z-index: 10;
}

@media (min-width: 640px) {
    .comparison-frame-large-outer {
        max-width: 400px;
    }
}

.comparison-frame-small-outer {
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 10px;
}

.comparison-frame-large-outer {
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 10px;
    max-width: 350px;
}

@media (min-width: 640px) {
    .comparison-frame-small-outer,
    .comparison-frame-large-outer {
        border-radius: 20px;
        padding: 10px;
    }
    
    .comparison-frame-large-outer {
        max-width: 400px;
    }
}

/* Panel contenu (deuxième bordure) */
.comparison-frame-small-content,
.comparison-frame-large-content {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

@media (min-width: 640px) {
    .comparison-frame-small-content,
    .comparison-frame-large-content {
        border-radius: 16px;
        padding: 12px;
    }
}

.frame-header {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E5E5E5;
    text-align: left;
    position: relative;
    z-index: 2;
}

.frame-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.field {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #525252;
    line-height: 1.4;
    text-align: left;
}

.field strong {
    color: #262626;
    font-weight: 600;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .comparison-arrow {
        transform: rotate(0deg);
    }
}

/* SÉPARATION ENTRE PARTIES */
.part-separator {
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
    margin: 0;
}

/* PARTIE 1: TITRE ET DESCRIPTION */
.leads-part1 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 16px 0 10px;
    text-align: left;
}

@media (min-width: 640px) {
    .leads-part1 {
        padding: 60px 16px 0 10px;
    }
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    width: 16px;
    height: 16px;
    background: #fb923c;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
}

.badge-text {
    font-size: 12px;
    font-weight: 500;
    color: #525252;
}

.leads-title {
    font-family: var(--font-satoshi), 'Satoshi', sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #171717;
    margin-top: 12px;
    max-width: 800px;
}

@media (min-width: 640px) {
    .leads-title {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .leads-title {
        font-size: 48px;
    }
}

.leads-description {
    font-size: 16px;
    color: #737373;
    margin-top: 12px;
    margin-bottom: 32px;
    max-width: 800px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .leads-description {
        font-size: 18px;
    }
}

.leads-button {
    border: 1px solid #d4d4d8;
    background: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #171717;
    margin-top: 32px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.leads-button:hover {
    border-color: #a3a3a3;
    color: #262626;
}

/* PARTIE 2: DÉMONSTRATION GRISE */
.leads-part2 {
    background-color: #f5f5f5;
    margin-top: 0;
    position: relative;
    overflow: hidden; /* Cacher les débordements pour contenir les reflets */
    display: flex;
    align-items: center; /* Centrer verticalement */
    justify-content: center;
    padding: 15px; /* Padding uniforme de 15px */
    height: auto; /* Hauteur automatique pour s'adapter au contenu */
    min-height: 500px; /* Hauteur minimale ajustée pour la grille */
    margin-left: -10px;
    margin-right: -10px;
    /* Force le rendu du background sur mobile */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    isolation: isolate;
}

@media (min-width: 640px) {
    .leads-part2 {
        padding: 15px; /* Padding uniforme de 15px */
        margin-left: 0;
        margin-right: 0;
    }
}

/* ENCART VIDÉO EXPÉRIENCE UNIQUE - PLUS GRANDE */
.experience-video-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Plus large que la vidéo de qualification */
    height: calc(56.25vw + 20px); /* Ratio 16:9 + padding */
    max-height: 400px;
    margin: 0 auto 0 auto;
    z-index: 10;
}

@media (min-width: 640px) {
    .experience-video-container {
        max-width: 1400px;
    }
}

/* Conteneur avec effet de fade en bas uniquement */
.experience-video-container-with-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Conteneur extérieur (première bordure) */
.experience-panel-outer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 10px;
    z-index: 10;
}

@media (min-width: 640px) {
    .experience-panel-outer {
        border-radius: 20px;
        padding: 10px;
    }
}

/* Panel vidéo (deuxième bordure) */
.experience-panel-content {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

@media (min-width: 640px) {
    .experience-panel-content {
        border-radius: 16px;
        padding: 0;
    }
}


/* REFLETS COLORÉS POUR LA DÉMO */
.leads-part2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    opacity: 0.10;
    filter: blur(80px); /* Réduit sur mobile pour de meilleures performances */
    background: conic-gradient(
        from -81deg,
        #F00 0deg,
        #EAB308 99deg,
        #5CFF80 162deg,
        #00FFF9 216deg,
        #3A8BFD 288deg,
        #855AFC 360deg
    );
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

@media (min-width: 768px) {
    .leads-part2::before {
        filter: blur(150px); /* Blur complet sur desktop */
    }
}

/* ====================================
   GRILLE DE PROSPECTS
   ==================================== */

/* Conteneur principal de la grille */
.prospects-grid {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    z-index: 10;
}

/* Ligne de prospects (redondant avec grid mais gardé pour compatibilité) */
.prospects-row {
    display: contents; /* Les enfants deviennent des items de la grille parente */
}

/* Taille de base pour tous les cadres */
.prospect-card {
    width: 100%;
}

/* Lignes : comportement par défaut géré par la grille */
.prospects-row.row-1,
.prospects-row.row-2,
.prospects-row.row-3 {
    display: contents;
}

/* Chaque carte de prospect */
.prospect-card {
    position: relative;
    width: 100%;
}

/* Conteneur extérieur (première bordure) */
.prospect-card-outer {
    position: relative;
    width: 100%;
    border: 1px solid #D4D4D4;
    border-radius: 12px;
    padding: 10px;
    background-color: transparent;
}

/* Panel contenu (deuxième bordure) */
.prospect-card-content {
    width: 100%;
    min-height: 90px;
    background-color: white;
    border: 1px solid #A3A3A3;
    border-radius: 8px;
    padding: 28px 12px 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Informations du prospect (gauche) */
.prospect-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Nom du prospect */
.prospect-name {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: #171717;
    margin: 0;
    line-height: 1.2;
}

/* Qualification */
.prospect-qualification {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qualification-text {
    font-family: var(--font-inter);
    font-size: 11px;
    color: #525252;
    font-weight: 500;
}

/* Point de qualification avec glow */
.qualification-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

/* Couleurs et glow pour chaque niveau */
.qualification-dot.qualified-5 {
    background-color: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6),
                0 0 16px rgba(16, 185, 129, 0.4);
}

.qualification-dot.qualified-4,
.qualification-dot.qualified-3 {
    background-color: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6),
                0 0 16px rgba(245, 158, 11, 0.4);
}

.qualification-dot.qualified-2,
.qualification-dot.qualified-1 {
    background-color: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6),
                0 0 16px rgba(239, 68, 68, 0.4);
}

/* Photo du prospect (droite) */
.prospect-photo {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #E5E5E5;
}

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

/* Badge NOUVEAU LEAD */
.new-lead-badge {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #10b981;
    color: white;
    font-family: var(--font-inter);
    font-size: 7px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

/* Timestamp */
.prospect-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.time-text {
    font-family: var(--font-inter);
    font-size: 11px;
    color: #737373;
    font-weight: 500;
}

/* Responsive pour tablettes */
@media (max-width: 1024px) {
    .prospects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        justify-items: center;
    }
    
    /* Masquer les cartes 4 et 5 de chaque ligne pour avoir 3×3 = 9 éléments */
    .prospects-row.row-1 .prospect-card:nth-child(n+4),
    .prospects-row.row-2 .prospect-card:nth-child(n+4),
    .prospects-row.row-3 .prospect-card:nth-child(n+4) {
        display: none;
    }
}

/* Responsive pour mobile */
@media (max-width: 640px) {
    .prospects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px; /* Limite la largeur pour centrer proprement */
        justify-items: center;
    }
    
    /* Masquer les cartes 3, 4 et 5 de chaque ligne pour avoir 2×3 = 6 éléments */
    .prospects-row.row-1 .prospect-card:nth-child(n+3),
    .prospects-row.row-2 .prospect-card:nth-child(n+3),
    .prospects-row.row-3 .prospect-card:nth-child(n+3) {
        display: none;
    }
    
    .prospect-card-content {
        min-height: 85px;
        padding: 24px 10px 8px 10px;
    }
    
    .prospect-name {
        font-size: 13px;
    }
    
    .qualification-text {
        font-size: 10px;
    }
    
    .prospect-photo {
        width: 40px;
        height: 40px;
    }
}

/* PARTIE 3: TÉMOIGNAGE AVEC POINTILLÉS */
.leads-part3 {
    position: relative;
    padding: 0;
}

/* POINTILLÉS DE FOND */
.dots-background {
    position: absolute;
    inset: 16px;
    pointer-events: none;
    z-index: 0;
}

.dots-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, #d4d4d8 1px, transparent 0);
    background-size: 12px 12px;
    background-position: -1px -1px;
    opacity: 0.8;
}

/* CONTENEUR FLEX PRINCIPAL */
.testimonial-container {
    position: relative;
    padding: 40px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .testimonial-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
    }
}

/* CITATION (GAUCHE) */
.quote-container {
    flex: 1;
    order: 1;
}

.testimonial-quote {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), black);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 18px;
    line-height: 1.4;
    font-style: normal;
    text-align: center;
}

@media (min-width: 640px) {
    .testimonial-quote {
        text-align: left;
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .testimonial-quote {
        font-size: 24px;
    }
}

/* INFORMATIONS AUTEUR (DROITE) */
.author-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-width: auto;
    flex-shrink: 0;
    order: 2;
}

@media (min-width: 640px) {
    .author-container {
        gap: 16px;
    }
}

/* LOGO ENTREPRISE */
.company-logo {
    position: relative;
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.company-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* PHOTO AUTEUR */
.author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

/* INFORMATIONS TEXTE AUTEUR */
.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

/* NOM AUTEUR */
.author-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #525252;
}

/* TITRE AUTEUR */
.author-title {
    font-size: 12px;
    font-weight: 500;
    color: #737373;
    margin: 0;
}

/* SECTION PROCESS */
.process-section {
    background-color: white;
    position: relative;
}

.process-part1 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 16px 0 10px;
    text-align: center;
    position: relative;
}

/* Barres latérales pour process-part1 */
.process-part1::before,
.process-part1::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E5E5E5;
    z-index: 5;
    pointer-events: none;
}

.process-part1::before {
    left: 0;
}

.process-part1::after {
    right: 0;
}

.process-title {
    font-family: var(--font-satoshi);
    font-size: 30px;
    font-weight: 500;
    color: #171717;
    margin: 0 0 16px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-description {
    font-size: 16px;
    color: #737373;
    margin: 0;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}

.process-part2 {
    background-color: #f5f5f5;
    height: 240px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Reflets colorés pour le process */
.reflets-container-process {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.conic-glow-process {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: conic-gradient(
        from -81deg,
        #ff0000 0deg,
        #eab308 99deg,
        #5cff80 162deg,
        #00fff9 216deg,
        #3a8bfd 288deg,
        #855afc 360deg
    );
    opacity: 0.10;
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

/* CONTENEUR DES 6 ÉTAPES */
.process-steps-container {
    position: relative;
    width: 100%;
    padding: 60px 16px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    z-index: 10;
    height: 100%;
}

/* CHAQUE ÉTAPE */
.process-step {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 100%;
}

/* CADRE D'INFORMATION */
.info-frame {
    background-color: white;
    border: 2px solid #E5E5E5;
    border-radius: 24px;
    padding: 12px;
    width: 100%;
    height: 100%;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Pour masquer le quadrillage qui dépasse */
}

/* QUADRILLAGE DE FOND */
.info-frame-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2; /* Au-dessus de la double bordure */
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, black 40%, transparent 70%);
}

.info-frame-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: rgba(229, 229, 229, 0.8); /* Encore plus visible */
    pointer-events: none;
}

/* Double bordure pour l'effet "encastré" - TOUJOURS VISIBLE */
.info-frame::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background-color: white;
    border: 1px solid #D4D4D4;
    border-radius: 21px;
    z-index: 1;
}

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

/* CONTENU DU CADRE */
.info-frame-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 8px;
    box-sizing: border-box;
    position: relative;
    z-index: 3; /* Au-dessus du quadrillage */
}

/* ÉTAPE - EN HAUT, PLUS FONCÉE */
.info-frame-step {
    font-family: var(--font-inter);
    font-size: 11px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 6px 0;
    line-height: 1.2;
    text-align: center;
}

/* PREMIÈRE BARRE - POSITION FIXE */
.info-frame-separator {
    width: 30px;
    height: 2px;
    background-color: #D4D4D4;
    margin: 0 auto 8px auto;
}

/* TITRE - ZONE RÉSERVÉE POUR 1-2 LIGNES */
.info-frame-title {
    font-family: var(--font-satoshi);
    font-size: 16px;
    font-weight: 500;
    color: #171717;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: 0.3px;
    text-align: center;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DEUXIÈME BARRE - POSITION FIXE */
.info-frame-separator:last-of-type {
    margin: 0 auto 8px auto;
}

/* TEXTE - CENTRÉ VERTICALEMENT DANS L'ESPACE RESTANT */
.info-frame-text {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    color: #525252;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive pour le process */
@media (max-width: 768px) {
    .process-part2 {
        height: auto; /* Hauteur dynamique qui s'adapte au contenu */
        min-height: auto;
        padding: 40px 0;
    }
    
    .process-steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 16px;
    }
    
    .process-frame-outer {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .info-frame {
        max-width: 100%;
        padding: 16px;
    }
    
    .info-frame-title {
        font-size: 12px;
    }
    
    .info-frame-text {
        font-size: 11px;
    }
}

/* NOUVEAUX STYLES POUR LES 4 ÉTAPES SIMPLIFIÉES */

/* Conteneur extérieur (première bordure) */
.process-frame-outer {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    z-index: 10;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 10px;
}

@media (min-width: 640px) {
    .process-frame-outer {
        border-radius: 20px;
        padding: 10px;
    }
}

/* Panel contenu (deuxième bordure) */
.process-frame-content {
    width: 100%;
    height: 200px;
    background-color: white;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 10;
    text-align: center;
}

@media (min-width: 640px) {
    .process-frame-content {
        border-radius: 16px;
        padding: 24px;
        height: 220px;
    }
}

.process-frame-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #262626;
    margin: 0 0 16px 0;
    text-align: center;
}

@media (min-width: 640px) {
    .process-frame-title {
        font-size: 18px;
    }
}

.process-frame-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #525252;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

@media (min-width: 640px) {
    .process-frame-text {
        font-size: 15px;
    }
}

/* ====================================
   SECTION NOS OFFRES
   ==================================== */

.offers-section {
    background-color: white;
    position: relative;
}

.offers-part1 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 16px 80px 10px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Barres latérales pour offers-part1 */
.offers-part1::before,
.offers-part1::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E5E5E5;
    z-index: 5;
    pointer-events: none;
}

.offers-part1::before {
    left: 0;
}

.offers-part1::after {
    right: 0;
}

.offers-title {
    font-family: var(--font-satoshi);
    font-size: 30px;
    font-weight: 500;
    color: #171717;
    margin: 0 0 16px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 640px) {
    .offers-part1 {
        padding: 100px 16px 100px 10px;
        min-height: 250px;
    }
    
    .offers-title {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .offers-title {
        font-size: 48px;
    }
}

.offers-part2 {
    background-color: white;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

@media (min-width: 640px) {
    .offers-part2 {
        min-height: 500px;
        padding: 80px 60px;
    }
}

/* Barres latérales pour la section offres */
.offers-part2::before,
.offers-part2::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E5E5E5;
    z-index: 5;
    pointer-events: none;
}

@media (min-width: 1100px) {
    .offers-part2::before {
        left: calc(50vw - 540px);
    }

    .offers-part2::after {
        right: calc(50vw - 540px);
    }
}

@media (max-width: 1099px) {
    .offers-part2::before {
        left: 10px;
    }

    .offers-part2::after {
        right: 10px;
    }
}

/* QUADRILLAGE DE FOND POUR LES OFFRES */
/* WRAPPER GLOBAL AVEC UN SEUL MASQUE */
.offers-grid-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, black 30%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, black 30%, black 50%, transparent 90%);
}

/* 1. COUCHE DE BORDURE VERTICALE */
.offers-grid-border {
    position: absolute;
    inset: 0;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    pointer-events: none;
    z-index: 1;
}

/* 2. COUCHE LATERALE (GAUCHE ET DROITE) */
.offers-grid-lateral {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    pointer-events: none;
    z-index: 2;
}

.offers-grid-lateral-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
}

/* SVG GAUCHE */
.offers-grid-svg-left {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 360px;
    color: rgba(229, 229, 229, 0.6);
    pointer-events: none;
}

@media (min-width: 1100px) {
    .offers-grid-svg-left {
        right: calc(50% + 540px);
    }
}

@media (max-width: 1099px) {
    .offers-grid-svg-left {
        display: none; /* Masquer sur petits écrans */
    }
}

/* SVG DROITE */
.offers-grid-svg-right {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 360px;
    color: rgba(229, 229, 229, 0.6);
    pointer-events: none;
}

@media (min-width: 1100px) {
    .offers-grid-svg-right {
        left: calc(50% + 540px);
    }
}

@media (max-width: 1099px) {
    .offers-grid-svg-right {
        display: none; /* Masquer sur petits écrans */
    }
}

/* 3. COUCHE CENTRALE */
.offers-grid-central {
    position: absolute;
    left: 1px;
    right: 1px;
    top: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: none;
    z-index: 3;
}

.offers-grid-svg-central {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    height: 100%;
    width: 1080px;
    transform: translateX(-50%);
    color: rgba(229, 229, 229, 0.6);
    pointer-events: none;
}

/* CONTENEUR DES 2 OFFRES */
.offers-cards-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    z-index: 10;
}

@media (min-width: 768px) {
    .offers-cards-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* CHAQUE CARTE D'OFFRE */
.offer-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Conteneur extérieur (première bordure) avec fond gris et reflets */
.offer-card-outer {
    position: relative;
    width: 100%;
    max-width: 100%;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 12px;
    z-index: 10;
    background-color: #f5f5f5;
    overflow: hidden;
}

@media (min-width: 640px) {
    .offer-card-outer {
        border-radius: 24px;
        padding: 12px;
    }
}

/* Reflets colorés pour chaque carte d'offre */
.offer-card-outer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: conic-gradient(
        from -81deg,
        #ff0000 0deg,
        #eab308 99deg,
        #5cff80 162deg,
        #00fff9 216deg,
        #3a8bfd 288deg,
        #855afc 360deg
    );
    opacity: 0.10;
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

/* Panel contenu (deuxième bordure) */
.offer-card-content {
    width: 100%;
    min-height: 520px;
    background-color: transparent;
    border: 1px solid #D4D4D4;
    border-radius: 12px;
    padding: 24px;
    padding-bottom: 80px; /* Espace pour le bouton en absolute */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .offer-card-content {
        border-radius: 20px;
        padding: 32px;
        padding-bottom: 96px; /* Plus d'espace pour le bouton sur desktop */
        min-height: 570px;
    }
}

/* (revert) Comportement original pour la disposition des offres */

/* (revert) Comportement original conservé sur mobile pour les offres */

/* Badge en haut (comme "Soyez rémunéré pour nous recommander") */
.offer-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    border: 1px solid #d4d4d4;
    border-radius: 9999px;
    padding: 6px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #171717;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

/* Titre de l'offre */
.offer-title {
    font-family: var(--font-satoshi);
    font-size: 20px;
    font-weight: 500;
    color: #171717;
    margin: 0 0 16px 0;
    text-align: center;
    position: relative;
    z-index: 3;
}

@media (min-width: 640px) {
    .offer-title {
        font-size: 22px;
    }
}

/* Description de l'offre */
.offer-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #525252;
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-align: justify;
    position: relative;
    z-index: 3;
    flex-shrink: 0; /* Empêche la compression */
}

/* Spacer flexible pour pousser la liste vers le bas */
.offer-list::before {
    content: '';
    display: block;
    min-height: 24px; /* Écart minimum entre description et liste */
}

/* Liste des bullet points */
.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto; /* Pousse la liste vers le bas */
    margin-bottom: 24px; /* Écart entre la liste et le bouton */
    width: 100%;
    position: relative;
    z-index: 3;
    flex-shrink: 0; /* Empêche la compression */
}

.offer-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #525252;
    line-height: 2;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.offer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #171717;
    font-weight: bold;
}

/* Bouton en bas */
.offer-button {
    width: calc(100% - 48px);
    background-color: #171717;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: absolute;
    bottom: 32px;
    left: 24px;
    right: 24px;
    z-index: 3;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.offer-button:hover {
    background-color: #262626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
    .offer-button {
        border-radius: 14px;
        padding: 16px 28px;
        font-size: 16px;
        width: calc(100% - 64px);
        bottom: 40px;
        left: 32px;
        right: 32px;
    }
}

/* ENCADRÉ PAIEMENT RÉSULTATS */
.offer-payment-card {
    max-width: 900px;
    margin: 40px auto 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.offer-payment-outer {
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    z-index: 10;
}

.offer-payment-outer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: conic-gradient(
        from -81deg,
        #ff0000 0deg,
        #eab308 99deg,
        #5cff80 162deg,
        #00fff9 216deg,
        #3a8bfd 288deg,
        #855afc 360deg
    );
    opacity: 0.15;
    filter: blur(100px);
    z-index: 1;
}

.offer-payment-content {
    background-color: transparent;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    padding: 20px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.offer-payment-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #262626;
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .offer-payment-outer {
        border-radius: 24px;
        padding: 12px;
    }
    
    .offer-payment-content {
        border-radius: 20px;
        padding: 24px 32px;
    }
    
    .offer-payment-text {
        font-size: 18px;
    }
}

/* ====================================
   SECTION Q&A
   ==================================== */

.qa-section {
    background-color: white;
    position: relative;
}

.qa-part1 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 16px 80px 10px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Barres latérales pour qa-part1 */
.qa-part1::before,
.qa-part1::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E5E5E5;
    z-index: 5;
    pointer-events: none;
}

.qa-part1::before {
    left: 0;
}

.qa-part1::after {
    right: 0;
}

.qa-title {
    font-family: var(--font-satoshi);
    font-size: 30px;
    font-weight: 500;
    color: #171717;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 640px) {
    .qa-part1 {
        padding: 100px 16px 100px 10px;
        min-height: 250px;
    }
    
    .qa-title {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .qa-title {
        font-size: 48px;
    }
}

.qa-part2 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 16px;
    position: relative;
}

/* Barres latérales pour qa-part2 */
.qa-part2::before,
.qa-part2::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E5E5E5;
    z-index: 1;
    pointer-events: none;
}

.qa-part2::before {
    left: 0;
}

.qa-part2::after {
    right: 0;
}

/* CHAQUE ITEM Q&A */
.qa-item {
    margin-bottom: 16px;
    position: relative;
}

/* BANDEAU DE QUESTION */
.qa-question {
    background-color: white;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.qa-question:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    border-color: #d4d4d4;
}

.qa-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #171717;
    flex: 1;
}

@media (min-width: 640px) {
    .qa-question-text {
        font-size: 17px;
    }
}

.qa-toggle {
    font-size: 24px;
    color: #171717;
    font-weight: 300;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.qa-item.active .qa-toggle {
    transform: rotate(90deg);
}

/* PANNEAU DE RÉPONSE */
.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: relative;
    z-index: 1;
}

.qa-item.active .qa-answer {
    max-height: 500px;
}

/* Conteneur extérieur réponse (première bordure) avec fond gris et reflets */
.qa-answer-outer {
    position: relative;
    margin-top: -12px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 12px;
    background-color: #f5f5f5;
    overflow: hidden;
}

/* Reflets colorés pour chaque réponse */
.qa-answer-outer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: conic-gradient(
        from -81deg,
        #ff0000 0deg,
        #eab308 99deg,
        #5cff80 162deg,
        #00fff9 216deg,
        #3a8bfd 288deg,
        #855afc 360deg
    );
    opacity: 0.10;
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

/* Panel contenu réponse (deuxième bordure) */
.qa-answer-content {
    background-color: transparent;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 20px 24px;
    position: relative;
    z-index: 2;
}

.qa-answer-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #525252;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.qa-contact-button {
    background-color: #171717;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    display: inline-block;
    text-decoration: none;
}

.qa-contact-button:hover {
    background-color: #404040;
    transform: translateY(-1px);
}

/* FLÈCHES ENTRE LES ÉTAPES */
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.process-arrow svg {
    width: 40px;
    height: 20px;
}

@media (max-width: 768px) {
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-arrow svg {
        width: 30px;
        height: 15px;
    }
}

@media (min-width: 640px) {
    .process-part1 {
        padding: 100px 16px 0 10px;
    }
    
    .process-title {
        font-size: 36px;
    }
    
    .process-description {
        font-size: 18px;
    }
    
    .process-part2 {
        height: 440px;
    }
    
    .process-steps-container {
        padding: 60px 16px;
    }
}

@media (min-width: 1024px) {
    .process-title {
        font-size: 48px;
    }
}

/* ANIMATIONS DE CHARGEMENT */
@keyframes slide-up-fade {
    from {
        opacity: 0;
        transform: translateY(var(--slide-offset, 20px));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Classes d'animation par défaut */
.animate-slide-up-fade {
    opacity: 0;
    animation: slide-up-fade var(--animation-duration, 400ms) cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--animation-delay, 0ms);
}

/* Classes de fallback pour motion-reduce */
@media (prefers-reduced-motion: reduce) {
    .animate-slide-up-fade {
        animation: fade-in 200ms ease-out forwards;
    }
}

/* Configuration spécifique pour chaque élément */
.animate-announcement {
    --slide-offset: 10px;
    --animation-duration: 1000ms;
    --animation-delay: 0ms;
}

.animate-hero-title {
    --slide-offset: 20px;
    --animation-duration: 1000ms;
    --animation-delay: 100ms;
}

.animate-hero-subtitle {
    --slide-offset: 10px;
    --animation-duration: 1000ms;
    --animation-delay: 200ms;
}

.animate-hero-cta {
    --slide-offset: 5px;
    --animation-duration: 1000ms;
    --animation-delay: 300ms;
}

.animate-tab-1 {
    --slide-offset: 10px;
    --animation-duration: 1000ms;
    --animation-delay: 400ms;
}

.animate-tab-2 {
    --slide-offset: 10px;
    --animation-duration: 1000ms;
    --animation-delay: 450ms;
}

.animate-demo-zone {
    --slide-offset: 20px;
    --animation-duration: 400ms;
    --animation-delay: 500ms;
}

/* Animations au scroll */
.animate-scroll-title {
    --slide-offset: 20px;
    --animation-duration: 800ms;
    --animation-delay: 0ms;
}

.animate-scroll-description {
    --slide-offset: 15px;
    --animation-duration: 800ms;
    --animation-delay: 150ms;
}

/* État initial pour les animations au scroll */
.animate-scroll {
    opacity: 0;
    transform: translateY(var(--slide-offset, 20px));
    transition: opacity var(--animation-duration, 800ms) cubic-bezier(0.16, 1, 0.3, 1),
                transform var(--animation-duration, 800ms) cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--animation-delay, 0ms);
}

/* État visible */
.animate-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback pour motion-reduce */
@media (prefers-reduced-motion: reduce) {
    .animate-scroll {
        transition: opacity 300ms ease-out;
    }
    
    .animate-scroll.visible {
        opacity: 1;
        transform: none;
    }
}

/* FOOTER */
.footer-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}




/* SECTION PRINCIPALE AVEC FOND GRIS */
.footer-grid-section {
    position: relative;
    background-color: #111112;
    width: 100%;
    min-height: 400px;
    z-index: 0;
}

/* CONTENEUR GRID SANS BORDURES VERTICALES */
.footer-inner-container {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
    min-height: 400px;
    z-index: 0;
}

/* QUADRILAGE AVEC MASQUE CIRCULAIRE */
.footer-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Quadrillage de fond limité au contenu */
    background-image: 
        linear-gradient(to right, #e5e5e5 1px, transparent 1px),
        linear-gradient(to bottom, #e5e5e5 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0;
    /* Masque circulaire pour effet de fade */
    mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 100%);
    z-index: 1;
}

/* ENCOCHE BLANCHE DÉCORATIVE */
.footer-notch-container {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    margin-top: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: min(700px, calc(100vw - 2rem));
    height: 64px;
    color: white;
}

.footer-notch-svg-left {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    transform: translateX(1px) translateY(1px);
    overflow: visible;
    position: relative;
}

.footer-notch-svg-right {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    transform: translateX(-1px) translateY(1px) scaleX(-1);
    overflow: visible;
    position: relative;
}

.footer-notch-content-container {
    position: relative;
    height: calc(100% + 1px);
    min-width: 0;
    flex-grow: 1;
    border-top: 1px solid white;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* REFLETS COLORÉS */
.footer-reflets-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.footer-conic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 75%;
    background: conic-gradient(
        from -81deg,
        #F00 0deg,
        #EAB308 99deg,
        #5CFF80 162deg,
        #00FFF9 216deg,
        #3A8BFD 288deg,
        #855AFC 360deg
    );
    opacity: 0.08;
    filter: blur(200px);
    mix-blend-mode: overlay;
}

/* CONTENU DU FOOTER */
.footer-content {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 16px;
    text-align: center;
    z-index: 2;
}

.footer-title {
    font-family: var(--font-satoshi);
    font-size: 30px;
    font-weight: 500;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 16px;
    color: #d1d5db;
    margin: 0 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-btn-primary {
    padding: 12px 24px;
    background: white;
    color: #171717;
    border: 1px solid white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.footer-btn-primary:hover {
    background: #f5f5f5;
    border-color: #e5e5e5;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.footer-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.footer-btn-secondary {
    padding: 12px 24px;
    background: white;
    color: #171717;
    border: 1px solid white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-decoration: none;
    display: inline-block;
}

.footer-btn-secondary:hover {
    background: #f5f5f5;
    border-color: #e5e5e5;
    color: #171717;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.footer-btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* DEUXIÈME PARTIE : BANDE BLANCHE SIMPLE */
.footer-simple-section {
    position: relative;
    background-color: white;
    padding: 40px 0;
    width: 100%;
}



.footer-simple-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-satoshi);
    font-size: 20px;
    font-weight: 600;
    color: #171717;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #171717;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.social-link:hover {
    color: #6b7280;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

.status-text {
    font-size: 12px;
    color: #6b7280;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: #171717;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-certification {
    display: flex;
    align-items: center;
}

.cert-badge {
    background-color: #f3f4f6;
    color: #6b7280;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.footer-copyright {
    font-size: 12px;
    color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-simple-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* SECTION BLANCHE EN HAUT */
.footer-white-section {
    position: relative;
    background-color: white;
    height: 100px;
    z-index: 1;
}

/* ENCOCHE BLANCHE DU FOOTER */

.footer-notch-svg-left {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    transform: translateX(1px) translateY(1px);
    overflow: visible;
    z-index: 15;
    position: relative;
    background-color: transparent;
}

.footer-notch-svg-right {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    transform: translateX(-1px) translateY(1px) scaleX(-1);
    overflow: visible;
    z-index: 15;
    position: relative;
    background-color: transparent;
}

.footer-notch-content-container {
    position: relative;
    z-index: 25;
    height: calc(100% + 1px);
    min-width: 0;
    flex-grow: 1;
    border-top: 1px solid white;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenu du footer dans la section raisin black */
.footer-content {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 16px;
    text-align: center;
    z-index: 15;
}

.footer-title {
    font-family: var(--font-satoshi);
    font-size: 30px;
    font-weight: 500;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 16px;
    color: #d1d5db;
    margin: 0 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section raisin black avec quadrillage et reflets */
.footer-grey-section {
    position: relative;
    background-color: #272932;
    height: 400px;
    overflow: hidden;
    z-index: 10;
}

/* Quadrillage au-dessus du background raisin */
.footer-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, #e5e5e5 1px, transparent 1px),
        linear-gradient(to bottom, #e5e5e5 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0;
    z-index: 5;
    /* Masques pour effet de fade */
    mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.2) 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.2) 0%, transparent 100%);
}


/* Reflets colorés pour le footer */
.reflets-container-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 8;
}

.conic-glow-footer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: conic-gradient(
        from -81deg,
        #ff0000 0deg,
        #eab308 99deg,
        #5cff80 162deg,
        #00fff9 216deg,
        #3a8bfd 288deg,
        #855afc 360deg
    );
    opacity: 0.10;
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

/* Responsive pour le footer */
@media (min-width: 640px) {
    .footer-notch {
        padding: 100px 16px;
    }
    
    .footer-title {
        font-size: 36px;
    }
    
    .footer-subtitle {
        font-size: 18px;
    }
    
    .footer-grey-section {
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .footer-title {
        font-size: 48px;
    }
    
    .footer-grey-section {
        height: 400px;
    }
}

/* Responsive */
@media (min-width: 640px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    
    .content-panel {
        min-height: 580px;
    }
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .marketing-section {
        padding: 140px 16px;
    }
}

@media (max-width: 1023px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

/* ====================================
   POPUP DE RECOMMANDATION
   ==================================== */

/* Overlay (fond sombre) */
.referral-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.referral-popup-overlay.active {
    display: flex;
}

/* Conteneur de la popup */
.referral-popup-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    background-color: white;
    border: 1px solid #D4D4D4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Barre de titre (70px) */
.referral-popup-header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid #E5E5E5;
    background-color: #fafafa;
}

.referral-popup-title {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 700;
    color: #171717;
    margin: 0;
}

/* Bouton de fermeture */
.referral-popup-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.referral-popup-close:hover {
    background-color: #e5e5e5;
}

.referral-popup-close svg {
    stroke: #525252;
}

/* Contenu de la popup */
.referral-popup-content {
    padding: 32px 24px;
}

.referral-message {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 1.6;
    color: #525252;
    margin: 0 0 20px 0;
}

.referral-message:last-of-type {
    margin-bottom: 32px;
}

.referral-message.highlight {
    font-size: 18px;
    color: #171717;
    font-weight: 600;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.referral-message strong {
    color: #10b981;
    font-weight: 700;
}

/* Conteneur du bouton pour centrer */
.referral-button-container {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

/* Bouton WhatsApp */
.referral-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #25D366;
    color: white;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.referral-whatsapp-button:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.referral-whatsapp-button svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 640px) {
    .referral-popup-container {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .referral-popup-header {
        height: 60px;
        padding: 0 16px;
    }
    
    .referral-popup-title {
        font-size: 16px;
    }
    
    .referral-popup-content {
        padding: 24px 16px;
    }
    
    .referral-message {
        font-size: 15px;
    }
    
    .referral-message.highlight {
        font-size: 16px;
        padding: 16px;
    }
    
    .referral-button-container {
        width: 100%;
    }
    
    .referral-whatsapp-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

