/* ============================================
   REFONTE COMPLÈTE - Design basé sur images de référence
   Style moderne, épuré, rassurant - Violet/bleu doux/blanc
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Empêcher dépassement horizontal, garder la scrollbar verticale toujours cohérente */
html {
    overflow-x: hidden !important;
    overflow-y: auto;
    max-width: 100% !important;
    width: 100% !important;
}
body {
    overflow-x: hidden !important;
    overflow-y: auto;
    max-width: 100% !important;
    width: 100% !important;
}

/* Tous les éléments doivent respecter la largeur (sans rogner le haut : overflow-y visible pour les animations) */
section, article, div, header, footer, nav, main {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

:root {
    /* Couleurs principales - Design moderne violet/bleu doux */
    --primary-purple: #7451EB;
    --primary-purple-dark: #5A3FC7;
    --primary-purple-light: #8B6FED;
    --primary-bg: #F5F2FF;
    
    /* Alias pour compatibilité avec ancien code */
    --primary-color: #7451EB;
    --primary-dark: #5A3FC7;
    --primary-light: #8B6FED;
    
    --blue-soft: #6B8DD6;
    --blue-light: #E8F0FE;
    
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-600: #757575;
    --gray-800: #1A1A1A;
    
    --text-primary: #1A1A1A;
    --text-secondary: #616161;
    --text-light: #757575;
    --text-white: #FFFFFF;
    
    /* Couleurs de statut */
    --color-success: #4CAF50;
    --color-error: #F44336;
    --color-warning: #FF9800;
    --color-info: #2196F3;
    
    /* Ombres douces et modernes */
    --shadow-soft: 0 2px 8px rgba(116, 81, 235, 0.1);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(116, 81, 235, 0.15);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    
    /* Transitions fluides */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}
/* Menu mobile ouvert : bloquer le scroll du body uniquement à ce moment */
body.menu-open {
    overflow: hidden !important;
}

main {
    padding-top: 70px;
    min-height: calc(100vh - 70px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* Pas d'overflow sur main : le scroll reste sur le document (html/body) */
    overflow: visible;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* ============================================
   NAVIGATION - Style moderne et épuré
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 1rem 0;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img,
.logo picture img {
    height: auto;
    max-width: 60px;
    width: auto;
    object-fit: contain;
}

.mobile-only {
    display: none !important;
}

.mobile-spacer {
    display: none !important;
    height: 0;
    width: 100%;
}

@media screen and (max-width: 768px) {
    main {
        padding-top: 0;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-spacer {
        display: block !important;
        height: 2rem;
        width: 100%;
        background: transparent;
        flex-shrink: 0;
        order: -1;
    }
    
    .hero {
        padding-top: calc(70px + 1.5rem);
        padding-bottom: 4rem;
        margin-top: 0;
        align-items: flex-start;
    }
    
    .hero .container {
        order: 1;
    }
    
    body.menu-open main {
        padding-top: 0;
    }
    
    body.menu-open .hero {
        padding-top: 0;
        margin-top: 0;
    }
    
    body.menu-open .hero .container {
        padding-top: 1.5rem;
    }
    
    .logo-img,
    .logo picture img {
        max-width: 46px;
    }
}

@media (max-width: 480px) {
    .logo-img,
    .logo picture img {
        max-width: 46px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.mobile-menu-logo {
    display: none;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.menu-toggle:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.menu-line {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

.nav-cta-button {
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.nav-cta-button:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-1px);
}
.nav-links a:focus-visible,
.nav-cta-button:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* ============================================
   HERO SECTION - Design moderne et rassurant
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--white) 100%);
    /* Un seul bloc visuel : le fond du hero remonte sous la navbar (pas de bande blanche) */
    margin-top: -70px;
    padding-top: calc(70px + 4rem);
    padding-bottom: 6rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-text h1 .highlight {
    color: var(--primary-purple);
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-primary:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-purple);
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-mention {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    z-index: 0;
    box-sizing: border-box;
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    position: relative;
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hero-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ============================================
   SECTION "COMMENT ÇA FONCTIONNE"
   ============================================ */
.how-it-works {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.service-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-summary-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.service-summary-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 4px 12px rgba(116, 81, 235, 0.08);
    transform: translateY(-2px);
}

.service-summary-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.service-summary-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.service-summary-examples {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    text-align: left;
}

.service-summary-examples-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-summary-examples-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-summary-examples-list li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.service-summary-examples-list li:before {
    content: "•";
    color: var(--primary-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-summary-examples-list li:last-child {
    margin-bottom: 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 24px rgba(116, 81, 235, 0.12);
    transform: translateY(-2px);
}

.service-card-primary {
    border-color: var(--primary-purple);
    border-width: 2px;
}

.service-card-highlight {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--white) 100%);
}

.service-card-upsell {
    border-color: var(--primary-purple);
    border-width: 2px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--white) 100%);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.service-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.service-card-badge {
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.service-card-badge-urgent {
    background: #FF6B6B;
}

.service-card-badge-recommended {
    background: var(--primary-purple);
}

.service-card-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-size: 0.9375rem;
}

.service-card-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.service-card-features {
    list-style: none;
    margin: 0 0 1.75rem 0;
    padding: 0;
    flex-grow: 1;
}

.service-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.service-card-features li:last-child {
    margin-bottom: 0;
}

.service-card-features li::before {
    content: "✓";
    color: var(--primary-purple);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.service-card-features li strong {
    font-weight: 600;
}

.service-card-price {
    margin: 0 0 1.5rem 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    display: block;
    line-height: 1.2;
}

.service-price-note {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.service-card-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--primary-purple);
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all var(--transition);
    margin-top: auto;
}

.service-card-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(116, 81, 235, 0.2);
}

.service-card-btn-primary {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.service-card-btn-primary:hover {
    background: var(--primary-purple-dark);
    border-color: var(--primary-purple-dark);
}

.service-card-btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* ============================================
   SECTION "À QUOI ON VOUS AIDE"
   ============================================ */
.help-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.help-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.help-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 24px rgba(116, 81, 235, 0.12);
    transform: translateY(-4px);
}

.help-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
}

.help-icon-wrapper {
    flex-shrink: 0;
}

.help-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(116, 81, 235, 0.2);
}

.help-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.help-card-content {
    flex: 1;
}

.help-examples-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.help-examples-list li {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-left: 1.75rem;
    position: relative;
}

.help-examples-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--primary-purple);
    border-radius: 50%;
}

.help-examples-list li:last-child {
    margin-bottom: 0;
}

/* ============================================
   SECTION OFFRES - Cartes pricing modernes
   ============================================ */
.offers-section {
    padding: 5rem 0;
    background: var(--white);
    overflow: visible;
    position: relative;
}

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

/* Carousel mobile pour les offres */
.offers-carousel-mobile {
    display: none;
    width: 100%;
    margin-top: 3rem;
}

.offers-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.offers-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 3rem;
    box-sizing: border-box;
}

.offers-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    width: 100%;
}

.offer-card-carousel {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-bottom: 0;
    overflow: visible;
}

.offer-card-carousel.popular {
    border-color: var(--primary-purple);
    border-width: 2px;
}


.offers-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 0.75rem;
}

.offers-carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.offers-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    display: block;
}

.offers-dot.active {
    background: var(--primary-purple);
    width: 12px;
    height: 12px;
}

.offers-dot:hover {
    background: var(--primary-purple);
    opacity: 0.7;
}

.offer-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 24px rgba(116, 81, 235, 0.12);
    transform: translateY(-2px);
}

.offer-card.popular {
    border-color: var(--primary-purple);
    border-width: 2px;
}

.offer-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 1;
}

.offer-badge-primary {
    background: var(--primary-purple);
}

.offer-badge-urgent {
    background: #FF6B6B;
}

.offer-badge-recommended {
    background: var(--primary-purple);
}

.offer-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    padding-right: 7rem;
}

.offer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.75rem 0;
    font-size: 0.9375rem;
}

.offer-price-wrapper {
    margin: 0 0 1.75rem 0;
    overflow: hidden;
    word-wrap: break-word;
}

.offer-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1.2;
    margin: 0;
    overflow: hidden;
    word-wrap: break-word;
    white-space: nowrap;
}

.offer-price-unit {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 0.25rem;
}

.offer-price-alt {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.offer-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex-grow: 1;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.offer-features li:last-child {
    margin-bottom: 0;
}

.feature-check {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-check circle {
    fill: var(--primary-purple);
    opacity: 0.1;
}

.feature-check path {
    stroke: var(--primary-purple);
}

.offer-features li span {
    flex: 1;
}

.offer-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--primary-purple);
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all var(--transition);
    margin-top: auto;
}

.offer-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(116, 81, 235, 0.2);
}

.offer-btn-primary {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.offer-btn-primary:hover {
    background: var(--primary-purple-dark);
    border-color: var(--primary-purple-dark);
}

/* ============================================
   BOX SUPPORT TÉLÉPHONE
   ============================================ */
.support-box-section {
    padding: 2rem 0;
    background: var(--white);
}

.support-box {
    max-width: 600px;
    margin: 0 auto;
}

.support-box-content {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.support-box-content:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 2px 8px rgba(116, 81, 235, 0.1);
}

.support-box-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem 0;
    font-weight: 500;
}

.support-box-phone {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-decoration: none;
    margin: 0 0 0.5rem 0;
    transition: color var(--transition);
}

.support-box-phone:hover {
    color: var(--primary-purple-dark);
    text-decoration: underline;
}

.support-box-text {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   SECTION VIDÉO
   ============================================ */
.video-section {
    padding: 5rem 0;
    background: var(--white);
}

.video-container {
    margin-top: 3rem;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--gray-100) 100%);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition);
}

/* Quand une miniature est présente, masquer le fond gris */
.video-placeholder-has-thumbnail,
.video-placeholder:has(.video-thumbnail) {
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
    vertical-align: middle;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder:hover .video-play-button {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all var(--transition);
    color: var(--primary-purple);
}

.video-play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.video-placeholder-content {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.video-placeholder-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-placeholder-subtitle {
    font-size: 0.9375rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-intro {
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Lecteur vidéo (après clic sur la vidéo uploadée) */
.video-player-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.video-embed-iframe,
.video-player-element {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}

.video-player-element {
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.video-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.875rem;
}

.video-control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.video-control-btn .icon-play,
.video-control-btn .icon-pause,
.video-control-btn .icon-volume-on,
.video-control-btn .icon-volume-off {
    font-size: 1.1rem;
}

.video-control-btn .icon-play { display: none; }
.video-control-btn .icon-pause { display: inline; }
.video-control-btn.video-paused .icon-play { display: inline; }
.video-control-btn.video-paused .icon-pause { display: none; }

.video-volume-btn .icon-volume-off { display: none; }
.video-volume-btn .icon-volume-on { display: inline; }
.video-volume-btn.video-muted .icon-volume-on { display: none; }
.video-volume-btn.video-muted .icon-volume-off { display: inline; }

.video-time {
    min-width: 5rem;
    color: rgba(255, 255, 255, 0.9);
}

.video-progress-wrap {
    flex: 1;
    min-width: 80px;
}

.video-progress-bar {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    cursor: pointer;
}

.video-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-purple, #7451eb);
    border-radius: 3px;
    pointer-events: none;
}

.video-progress-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    pointer-events: none;
}

.video-volume-wrap {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.video-volume-slider {
    width: 70px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    outline: none;
}

.video-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.video-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.video-fullscreen-btn {
    font-size: 1.25rem;
    margin-left: auto;
}

.video-info {
    margin-top: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   STATISTIQUES DE CONFIANCE
   ============================================ */
.stats-section {
    margin-top: 4rem;
    padding-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 8px; /* Marge pour éviter le rognage au hover (translateY(-2px)) */
    overflow: visible;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 4px 12px rgba(116, 81, 235, 0.08);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

/* ============================================
   TÉMOIGNAGES - Style moderne
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.testimonial-rating {
    color: #FFB800;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    text-align: left;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 3rem 0 2rem;
}

/* Navigation principale du footer */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition);
    position: relative;
}

.footer-nav-link:hover {
    color: var(--primary-purple-light);
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple-light);
    transition: width var(--transition);
}

.footer-nav-link:hover::after {
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* Responsive footer nav */
@media screen and (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-nav-link {
        font-size: 0.95rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
}

/* ============================================
   FILTRES FAQ
   ============================================ */
.faq-filters {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: white;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(116, 81, 235, 0.1);
}

.faq-filter-btn:hover {
    background: var(--primary-bg) !important;
    border-color: var(--primary-purple) !important;
    color: var(--primary-purple) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.faq-filter-btn.active {
    background: var(--primary-purple) !important;
    color: white !important;
    border-color: var(--primary-purple) !important;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-category {
    transition: all 0.3s ease;
}

/* Responsive FAQ filters */
@media screen and (max-width: 768px) {
    .faq-filters {
        top: 70px;
        padding: 1rem 0;
    }
    
    .faq-category-filters {
        gap: 0.5rem !important;
    }
    
    .faq-filter-btn {
        padding: 0.625rem 1rem !important;
        font-size: 0.875rem !important;
        flex: 1 1 auto;
        min-width: calc(50% - 0.25rem);
    }
    
    .faq-search-input {
        font-size: 0.9375rem !important;
        padding: 0.875rem 0.875rem 0.875rem 2.5rem !important;
    }
}

/* ============================================
   FORMULAIRE DE CONTACT
   ============================================ */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--white);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(116, 81, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-message {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
}

.form-reassurance {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    font-style: italic;
}

/* ============================================
   LAZY LOADING DES IMAGES
   ============================================ */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
    background: var(--gray-100);
    min-height: 200px;
}

img.lazy-loaded {
    opacity: 1;
}

img.lazy[data-src] {
    filter: blur(5px);
    transition: filter 0.3s;
}

img.lazy-loaded[data-src] {
    filter: blur(0);
}

/* Placeholder pour les images en cours de chargement */
img.lazy::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   BANNIÈRE DE CONSENTEMENT COOKIES RGPD
   ============================================ */
.cookie-consent-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 420px;
    width: calc(100% - 3rem);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateX(-150%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-consent-banner-show {
    transform: translateX(0);
    opacity: 1;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-consent-message {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-consent-link {
    color: var(--primary-purple);
    text-decoration: underline;
    font-size: 0.875rem;
    transition: color var(--transition);
    text-align: center;
    padding: 0.5rem 0;
}

.cookie-consent-link:hover {
    color: var(--primary-purple-dark);
}

.cookie-consent-btn {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    width: 100%;
}

.cookie-consent-btn-accept {
    background: var(--primary-purple);
    color: var(--white);
}

.cookie-consent-btn-accept:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(116, 81, 235, 0.3);
}

.cookie-consent-btn-reject {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cookie-consent-btn-reject:hover {
    background: var(--primary-bg);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
        width: auto;
        padding: 1.25rem;
    }
}

/* ============================================
   DISCLAIMERS / PAGES LÉGALES
   ============================================ */
.disclaimers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.disclaimer-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition);
}

.disclaimer-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 4px 12px rgba(116, 81, 235, 0.1);
    transform: translateY(-2px);
}

.disclaimer-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.disclaimer-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.disclaimer-card p:last-child {
    margin-bottom: 0;
}

.disclaimer-card ul,
.disclaimer-card ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.disclaimer-card li {
    margin-bottom: 0.5rem;
}

.disclaimer-card li:last-child {
    margin-bottom: 0;
}

.disclaimer-card a {
    color: var(--primary-purple);
    text-decoration: underline;
    transition: color var(--transition);
}

.disclaimer-card a:hover {
    color: var(--primary-purple-dark);
}

.disclaimer-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

.card-3d {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-3d:hover {
    box-shadow: 0 8px 24px rgba(116, 81, 235, 0.15);
}

/* Bloc infos dashboard client : pas de scrollbar, pas de décalage au survol */
.dashboard-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
}
.dashboard-info-card {
    padding: 2rem;
    overflow: hidden;
    transform: translateZ(0); /* stabilise le rendu, évite glitch au hover */
}
.dashboard-info-card:hover {
    box-shadow: 0 8px 24px rgba(116, 81, 235, 0.15);
    transform: translateZ(0); /* pas de translateY, évite le décalage */
}

/* Éviter le rognage des cartes/boutons animés sur tout le site : conteneurs en overflow visible */
.stats-section,
.stats-grid,
.offers-section,
.offers-grid,
.blog-grid,
.blog-section,
.testimonials-section,
.testimonials-carousel,
.process-steps,
.help-section,
.help-grid,
.help-cards,
.help-cards-grid,
.service-summary,
.service-cards,
.contact-content,
.contact-section,
.section-header,
.form-row,
.contact-form,
.nav-links,
.nav-container,
.cookie-consent-banner,
.cookie-consent-content,
.cookie-consent-actions,
.disclaimer-list,
.disclaimers,
.faq-questions,
.faq-category,
.footer-nav,
.footer-content,
.footer-section,
.article-related-grid,
.article-back-link,
.article-section {
    overflow: visible;
}

/* Marge anti-rognage pour les grilles de cartes (hover translateY) */
.stats-grid,
.offers-grid,
.blog-grid,
.help-section .help-grid,
.help-cards,
.service-summary,
.process-steps,
.article-related-grid,
.disclaimers,
.faq-questions {
    padding-top: 8px;
}

/* Carousel offres (conserve overflow pour le slide, marge en haut pour le hover) */
.offers-carousel-wrapper {
    padding-top: 8px;
}

/* Styles pour les rendez-vous dans l'espace membre */
.rdv-item-container {
    position: relative;
}

.rdv-actions {
    flex-shrink: 0;
}

.rdv-cancel-btn {
    min-width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

/* Responsive pour les rendez-vous sur mobile */
@media screen and (max-width: 768px) {
    .rdv-item-container {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .rdv-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .rdv-cancel-btn {
        width: 100%;
        text-align: center;
        white-space: normal !important;
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .disclaimers {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .disclaimer-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .disclaimer-card h3 {
        font-size: 1.125rem;
    }
    
    .disclaimer-card p,
    .disclaimer-card ul,
    .disclaimer-card ol {
        font-size: 0.9375rem;
    }
}

/* ============================================
   SYSTÈME DE POPUP - Design simple et épuré
   ============================================ */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.notification-overlay-show {
    opacity: 1;
}

.notification-overlay-hide {
    opacity: 0;
}

.notification-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 90%;
    width: 100%;
    max-width: 420px;
}

.notification-popup-show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.notification-popup-hide {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.notification-popup-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.notification-popup-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-popup-icon svg {
    width: 100%;
    height: 100%;
}

.notification-popup-message {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
}

.notification-popup-close {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 200px;
}

.notification-popup-close:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(116, 81, 235, 0.3);
}

.notification-popup-close:active {
    transform: translateY(0);
}

/* ============================================
   BOUTONS CTA
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.cta-button.primary {
    background: var(--primary-purple);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.cta-button.primary:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cta-button.secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-1px);
}

.cta-button.large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    width: 100%;
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Empêcher le dépassement horizontal */
    * {
        max-width: 100%;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Blog search form responsive */
    .blog-search-form {
        max-width: 100% !important;
        padding: 0 0.5rem;
    }
    
    .blog-search-inputs {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .blog-search-input {
        width: 100% !important;
        min-width: 0 !important;
    }
    
    .blog-search-button {
        width: 100% !important;
    }
    
    /* Blog filters responsive */
    .blog-filters {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .blog-filters .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Blog grid responsive */
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Boutons responsive */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Exception pour les filtres blog qui peuvent rester en ligne */
    .blog-filters .btn-primary,
    .blog-filters .btn-secondary {
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
    }
    
    /* Empêcher le dépassement des éléments */
    main, section, article, div {
        max-width: 100%;
        box-sizing: border-box;
    }
    main {
        overflow: visible !important;
    }
    
    /* Navbar responsive */
    .navbar {
        width: 100%;
        max-width: 100%;
    }
    
    .nav-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    /* Empêcher le dépassement des éléments positionnés */
    [style*="position: fixed"],
    [style*="position:absolute"] {
        max-width: 100% !important;
    }
    
    /* Canvas Three.js */
    canvas {
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Hero background */
    .hero-background {
        overflow: hidden;
        max-width: 100%;
        width: 100% !important;
    }
    
    /* Footer */
    .footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Section hero */
    .hero-section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Tous les éléments positionnés */
    [style*="position: fixed"],
    [style*="position: absolute"] {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Menu mobile */
    .nav-links {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Cookie banner */
    .cookie-consent-banner {
        max-width: calc(100% - 2rem) !important;
    }
    
    /* Notification popup */
    .notification-popup {
        max-width: calc(100% - 2rem) !important;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }
    
    /* Overlay pour le menu mobile */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        animation: fadeIn 0.3s ease forwards;
    }
    
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0 2rem 2rem 2rem;
        padding-top: 70px;
        box-shadow: var(--shadow-card);
        display: flex;
        z-index: 1000;
        max-height: 100vh;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-logo {
        display: flex;
        padding: 0;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--gray-200);
        margin-bottom: 0.75rem;
        margin-top: 0;
        align-items: center;
        justify-content: center;
        height: 70px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .mobile-menu-logo .logo {
        justify-content: center;
        width: 100%;
        height: 100%;
        align-items: center;
        display: flex;
    }
    
    .mobile-menu-logo .logo-img,
    .mobile-menu-logo .logo picture img {
        max-width: 46px;
        opacity: 0.8;
    }
    
    .nav-links > a:first-of-type,
    .nav-links > button:first-of-type {
        margin-top: 70px;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-links .nav-cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        margin-top: 0.5rem;
        border-bottom: none;
    }
    
    .nav-links a:last-child,
    .nav-links button:last-child {
        border-bottom: none;
    }
    
    .nav-links a:focus-visible,
    .nav-links .nav-cta-button:focus-visible {
        outline: 2px solid var(--primary-purple);
        outline-offset: 2px;
    }
    
    .menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-features {
        align-items: center;
        max-width: 100%;
    }
    
    .hero-visual {
        display: block;
        margin-top: 2rem;
    }
    
    .hero-card {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-cta {
        align-items: center;
        text-align: center;
    }
    
    .hero-cta .btn-primary {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-mention {
        text-align: center;
    }
    
    .service-summary {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .offers-grid-desktop {
        display: none !important;
    }
    
    .offers-carousel-mobile {
        display: block !important;
    }
    
    .offers-carousel-container {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .offers-carousel-wrapper {
        width: 100%;
        padding: 0 1rem;
        position: relative;
    }
    
    .offers-carousel-track {
        width: 100%;
        position: relative;
    }
    
    .offer-card-carousel {
        width: 100%;
        padding: 1.5rem;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        box-sizing: border-box;
        display: none;
        overflow: hidden;
    }
    
    .offer-card-carousel.active {
        display: flex;
        flex-direction: column;
    }
    
    .offer-card-carousel .offer-price-wrapper {
        overflow: hidden;
        max-width: 100%;
    }
    
    .offer-card-carousel .offer-price {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }
    
    .offers-carousel-controls {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .offers-section {
        padding-bottom: 3rem;
        overflow: visible;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Formulaire de date responsive */
    .form-group input[type="date"],
    .form-group select {
        font-size: 16px !important; /* Empêche le zoom automatique sur iOS */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.875rem 1rem;
    }
    
    /* S'assurer que les formulaires ne débordent pas */
    form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .video-section {
        padding: 3rem 0;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    .video-play-button {
        width: 48px;
        height: 48px;
    }
    
    .video-play-button svg {
        width: 48px;
        height: 48px;
    }
    
    .video-placeholder-title {
        font-size: 1.125rem;
    }
    
    .video-placeholder-subtitle {
        font-size: 0.875rem;
    }
    
    .video-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .notification-popup {
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
    }
    
    .notification-popup-content {
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }
    
    .notification-popup-icon {
        width: 56px;
        height: 56px;
    }
    
    .notification-popup-message {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .notification-popup-close {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        max-width: 100%;
    }
}

/* ============================================
   BLOG & ARTICLE - Classes dédiées (sans styles inline)
   ============================================ */
.blog-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.blog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.blog-filters .btn {
    text-decoration: none;
    white-space: nowrap;
}
.blog-search-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}
.blog-search-inputs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.blog-search-input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}
.blog-search-button {
    flex-shrink: 0;
    white-space: nowrap;
}
.blog-empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.blog-card {
    overflow: hidden;
}
.blog-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}
.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card__body {
    padding: 1.5rem;
}
.blog-card__meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.blog-card__category {
    font-size: 0.875rem;
    color: var(--primary-purple);
    font-weight: 600;
}
.blog-card__date {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.blog-card__title a {
    color: var(--text-primary);
    text-decoration: none;
}
.blog-card__excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.blog-card__link {
    text-decoration: none;
    display: inline-block;
}

/* Article single page */
.article-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.article-container {
    max-width: 800px;
}
.article-breadcrumb {
    margin-bottom: 2rem;
}
.article-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}
.article-breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-secondary);
}
.article-header {
    margin-bottom: 2rem;
}
.article-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.article-meta .article-category {
    font-size: 0.875rem;
    color: var(--primary-purple);
    font-weight: 600;
}
.article-meta .article-date,
.article-meta .article-author {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.article-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.article-excerpt {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.article-featured-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}
.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}
.article-content {
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 1.125rem;
}
.article-content p,
.article-content ul,
.article-content ol {
    margin-bottom: 1rem;
}
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.article-related {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}
.article-related h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.article-related-grid {
    display: grid;
    gap: 1.5rem;
}
.article-related-card {
    padding: 1.5rem;
}
.article-related-card .article-meta {
    margin-bottom: 0.75rem;
}
.article-related-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.article-related-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
}
.article-related-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.article-back-link {
    margin-top: 3rem;
    text-align: center;
}
.article-back-link .btn {
    text-decoration: none;
}

/* Form feedback (accessibilité) */
.form-feedback {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}
.form-feedback.form-feedback--error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}
.form-feedback.form-feedback--success {
    background: #efe;
    color: #2a2;
    border: 1px solid #cfc;
}
.form-feedback:empty {
    display: none;
}
.form-feedback:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}
