/* ============================================ */
/* VARIABLES CSS */
/* ============================================ */

:root {
    /* Couleurs principales */
    --color-primary: #8000ff;
    --color-secondary: #20C997;
    --color-dark: #1a0033;
    --color-gray: #6B7280;
    --color-light: #E5D5FF;
    --color-white: #FFFFFF;
    
    /* Couleurs de statut */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    
    /* Typographie */
    --font-title: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 60px;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* ============================================ */
/* RESET & BASE */
/* ============================================ */

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

/* Prévenir le scroll horizontal sur tous les éléments */
*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: #E5D5FF;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Titres avec Poppins */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

button {
    font-family: var(--font-primary);
    border: none;
    background: none;
    cursor: pointer;
}

/* ============================================ */
/* CONTAINER */
/* ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    overflow-x: hidden;
}

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

.section {
    padding: var(--spacing-xxl) 0;
    width: 100%;
    overflow-x: hidden;
}

.section--bg {
    background-color: var(--color-light);
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================ */
/* HEADER & NAVIGATION */
/* ============================================ */

.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    background: rgba(128, 0, 255, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    border: 1px solid rgba(128, 0, 255, 0.1);
}

.header.scrolled {
    background: rgba(128, 0, 255, 0.12);
    box-shadow: var(--shadow-md);
}

/* Header collapsed state */
.header.collapsed {
    width: 80px;
    left: 36px;
    transform: translateX(0);
    overflow: hidden;
}

.header.collapsed .container {
    padding: 0 12px;
    width: 100%;
}

.header.collapsed .nav__menu,
.header.collapsed .nav__menu--centered,
.header.collapsed .btn--primary,
.header.collapsed .btn--cta-pulse {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.header.collapsed:hover {
    width: calc(100% - 40px);
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
}

.header.collapsed:hover .container {
    padding: 0 var(--spacing-lg);
}

.header.collapsed:hover .nav__menu,
.header.collapsed:hover .nav__menu--centered {
    opacity: 1;
    visibility: visible;
    animation: fadeInRight 0.35s ease forwards;
}

.header.collapsed:hover .btn--primary,
.header.collapsed:hover .btn--cta-pulse {
    opacity: 1;
    visibility: visible;
    animation: fadeInBtn 0.35s ease 0.1s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        margin-left: -30px;
    }
    to {
        opacity: 1;
        margin-left: 0;
    }
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    transition: all 0.4s ease;
}

.header.collapsed .nav {
    justify-content: center;
}

.header.collapsed:hover .nav {
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav__menu a {
    color: var(--color-dark);
    font-weight: 500;
}

.nav__menu a:hover {
    color: var(--color-primary);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-xs);
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all var(--transition-fast);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-normal);
    }
    
    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    /* Bouton Démo flottant sur mobile */
    .nav .btn--primary {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        padding: 0.75rem 1.25rem;
    }
    
    /* Afficher texte mobile, cacher texte desktop */
    .btn__text-desktop {
        display: none;
    }
    
    .btn__text-mobile {
        display: inline;
    }
}

/* Desktop: texte normal */
@media (min-width: 769px) {
    .btn__text-desktop {
        display: inline;
    }
    
    .btn__text-mobile {
        display: none;
    }
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: linear-gradient(135deg, #ff703d, #ff5722);
    color: var(--color-white);
    border-color: #ff703d;
    border-radius: 50px;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #ff5722, #e5622e);
    border-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 112, 61, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

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

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 120px 0 40px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: none;
    pointer-events: none;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__text {
    max-width: 600px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-dark);
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray);
    font-size: 0.95rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__note i {
    color: var(--color-success);
    width: 18px;
    height: 18px;
}

/* VIDEO CONTAINER */
.hero__visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.6s both;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: #1a1a1a;
}

.video-container::before {
    content: '';
    display: block;
    padding-top: 75%; /* Ratio 4:3 */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
}

/* ========================================
   RESPONSIVE MOBILE HERO
   ======================================== */

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__text {
        max-width: 100%;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__note {
        justify-content: center;
    }

    .video-container {
        max-width: 100%;
    }
}

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

    .hero__content {
        gap: 32px;
    }

    .hero__title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero__cta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero__cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero__note {
        font-size: 0.875rem;
    }

    .video-container {
        border-radius: 12px;
    }

    .video-container::before {
        padding-top: 80%; /* Ratio légèrement plus grand sur mobile */
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .hero__cta .btn {
        font-size: 0.95rem;
        padding: 14px 24px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Animation d'apparition de la vidéo */
.hero__visual {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero__video-container {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero__video-container {
        max-width: 100%;
        border-radius: var(--radius-md);
    }
}


/* ============================================ */
/* PROBLEMES → SOLUTIONS */
/* ============================================ */

.problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.problem-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.problem-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.problem-card__icon--problem {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.problem-card__icon--solution {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.problem-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.problem-card__text {
    color: var(--color-gray);
    line-height: 1.6;
}

.problem-card__divider {
    margin: var(--spacing-lg) 0;
    color: var(--color-gray);
    font-size: 1.5rem;
}

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

/* ============================================ */
/* FEATURES - ANCIENNE VERSION (garde pour compatibilité) */
/* ============================================ */

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.feature-card__text {
    color: var(--color-gray);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================ */
/* HOW IT WORKS - VERSION CARTES FLIP */
/* ============================================ */

.steps-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    max-width: 320px;
    height: 400px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Délai d'apparition progressif */
.step-card[data-step="1"] { transition-delay: 0.1s; }
.step-card[data-step="2"] { transition-delay: 0.3s; }
.step-card[data-step="3"] { transition-delay: 0.5s; }

.step-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Effet flip au hover sur desktop */
@media (hover: hover) and (pointer: fine) {
    .step-card:hover .step-card__inner {
        transform: rotateY(180deg);
    }
}

.step-card__front,
.step-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
}

.step-card__back {
    transform: rotateY(180deg);
    justify-content: center;
}

.step-card__icon {
    width: 80px;
    height: 80px;
    background: rgba(128, 0, 255, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.step-card__title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-dark);
    font-weight: 700;
}

.step-card__text {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.step-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.step-card__list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    font-size: 0.9375rem;
}

.step-card__list i {
    color: var(--color-success);
    flex-shrink: 0;
}

/* Masquer les indicateurs sur desktop */
.step-card__indicators {
    display: none;
}

.step__arrow {
    color: var(--color-primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVE TABLETTE */
@media (max-width: 992px) {
    .steps-cards {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .step-card {
        max-width: 400px;
        width: 100%;
    }
    
    .step__arrow {
        transform: rotate(90deg);
        margin: var(--spacing-sm) 0;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .step-card {
        height: auto;
        min-height: 420px;
    }
    
    /* Sur mobile : carrousel interne au lieu de flip */
    .step-card__inner {
        position: relative;
        overflow: visible;
        height: auto;
        min-height: 420px;
        transform: none !important;
    }
    
    .step-card__front,
    .step-card__back {
        position: relative;
        backface-visibility: visible;
        transition: opacity 0.3s ease-out;
        transform: none !important;
        height: auto;
    }
    
    .step-card__front {
        display: flex;
        opacity: 1;
    }
    
    .step-card__back {
        display: none;
        opacity: 0;
    }
    
    /* État actif du carrousel - Afficher le verso */
    .step-card__inner.show-back .step-card__front {
        display: none;
        opacity: 0;
    }
    
    .step-card__inner.show-back .step-card__back {
        display: flex;
        opacity: 1;
    }
    
    .step-card__icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .step-card__title {
        font-size: 1.375rem;
    }
    
    .step-card__text {
        font-size: 0.875rem;
    }
    
    .step-card__list {
        text-align: left;
    }
    
    .step-card__list li {
        font-size: 0.875rem;
    }
}

/* ============================================ */
/* PRICING */
/* ============================================ */

.pricing__simulator {
    max-width: 600px;
    margin: 0 auto var(--spacing-xxl);
}

.simulator {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.simulator__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.simulator__label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--color-dark);
}

.simulator__slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    outline: none;
    margin-bottom: var(--spacing-sm);
}

.simulator__slider::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
}

.simulator__slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: none;
}

.simulator__value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
}

.simulator__result {
    background: rgba(128, 0, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.simulator__price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.simulator__period {
    font-size: 1.5rem;
    color: var(--color-gray);
}

.simulator__note {
    color: var(--color-gray);
    font-size: 0.875rem;
}

.pricing__plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.pricing-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card--featured {
    border: 2px solid var(--color-primary);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    right: var(--spacing-lg);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card__name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.pricing-card__price {
    margin-bottom: var(--spacing-md);
}

.pricing-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
}

.pricing-card__currency {
    font-size: 1.5rem;
    color: var(--color-gray);
}

.pricing-card__period {
    font-size: 1rem;
    color: var(--color-gray);
}

.pricing-card__description {
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.pricing-card__features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.pricing-card__features i {
    color: var(--color-success);
}

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

/* ============================================ */
/* TESTIMONIALS */
/* ============================================ */

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
    margin-bottom: var(--spacing-lg);
}

.testimonial-card__quote i {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card__quote p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-dark);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-card__title {
    font-size: 0.875rem;
    color: var(--color-gray);
}

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

/* ============================================ */
/* DEMO FORM */
/* ============================================ */

.demo__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.demo__title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.demo__text {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.demo__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.demo__benefit {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-dark);
}

.demo__benefit i {
    color: var(--color-success);
}

.demo__form {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form__group {
    margin-bottom: var(--spacing-md);
}

.form__label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-dark);
}

.form__input,
.form__select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--color-gray);
}

.form__note i {
    color: var(--color-success);
}

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

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

/* ============================================ */
/* FAQ */
/* ============================================ */

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

.faq-item {
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--color-white);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.faq-item__question:hover {
    background-color: var(--color-light);
}

.faq-item__icon {
    transition: transform var(--transition-normal);
    color: var(--color-primary);
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--color-gray);
    line-height: 1.6;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.footer__email {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-secondary);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer__title {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: var(--spacing-xs);
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer__social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.footer__social a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer__links {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* SECTION FONCTIONNALITÉS - FRAMER STYLE */
/* ============================================ */

.features-section {
    background-color: #E5D5FF;
    padding: 80px 0;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.features-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin: 0 auto 64px;
    max-width: 800px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section .feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e5f0ff;
    color: #8000ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.features-section .feature-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.features-section .feature-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* HOVER - Desktop uniquement */
@media (hover: hover) and (pointer: fine) {
    .features-section .feature-card:hover {
        background: #8000ff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }
    
    .features-section .feature-card:hover .feature-icon {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }
    
    .features-section .feature-card:hover .feature-card__title {
        color: #ffffff;
    }
    
    .features-section .feature-card:hover .feature-card__text {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-inner {
        padding: 0 5%;
    }
    
    .features-title {
        font-size: 32px;
        margin-bottom: 48px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .features-section {
        padding: 48px 0;
    }
    
    .features-inner {
        padding: 0 10%;
    }
    
    .features-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features-section .feature-card {
        padding: 28px 20px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .features-section .feature-card__title {
        font-size: 18px;
    }
    
    .features-section .feature-card__text {
        font-size: 14px;
    }
}
/* ============================================ */
/* CARROUSEL 3D TÉMOIGNAGES - DÉBUT */
/* ============================================ */

.flo-testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    perspective: 2000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.flo-testimonials-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.flo-testimonials-track {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.flo-testimonials-slide {
    position: absolute;
    width: 100%;
    max-width: 380px;
    transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* États des slides - Active (centre) */
.flo-testimonials-slide[data-state="active"] {
    opacity: 1;
    transform: translateX(0%) translateZ(0px) rotateY(0deg) scale(1);
    z-index: 3;
    pointer-events: all;
}

/* Slide précédente (gauche) */
.flo-testimonials-slide[data-state="prev"] {
    opacity: 0.7;
    transform: translateX(-75%) translateZ(-200px) rotateY(15deg) scale(0.8);
    z-index: 1;
    pointer-events: none;
}

/* Slide suivante (droite) */
.flo-testimonials-slide[data-state="next"] {
    opacity: 0.7;
    transform: translateX(75%) translateZ(-200px) rotateY(-15deg) scale(0.8);
    z-index: 1;
    pointer-events: none;
}

/* Slides cachées */
.flo-testimonials-slide[data-state="hidden"] {
    opacity: 0;
    transform: translateX(0%) translateZ(-500px) scale(0.5);
    z-index: 0;
    pointer-events: none;
}

/* Boutons de navigation */
.flo-testimonials-nav {
    position: relative;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms ease;
    z-index: 10;
    color: var(--color-primary);
}

.flo-testimonials-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.flo-testimonials-nav--prev {
    order: 0;
}

.flo-testimonials-nav--next {
    order: 2;
}

/* Dots (indicateurs) */
.flo-testimonials-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
}

.flo-testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 300ms ease;
    padding: 0;
}

.flo-testimonials-dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.flo-testimonials-dot--active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.flo-testimonials-dot:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Adaptation des cartes testimonial pour le carrousel */
.flo-testimonials-carousel .testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flo-testimonials-carousel .testimonial-card__quote {
    margin-bottom: var(--spacing-md);
}

.flo-testimonials-carousel .testimonial-card__quote p {
    font-size: 1rem;
    line-height: 1.5;
}

.flo-testimonials-carousel .testimonial-card__author {
    margin-top: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .flo-testimonials-carousel {
        padding: 40px 20px 20px;
        gap: 20px;
    }
    
    .flo-testimonials-carousel-wrapper {
        gap: 20px;
    }
    
    .flo-testimonials-track {
        height: 500px;
    }
    
    .flo-testimonials-slide {
        max-width: 350px;
    }
    
    /* Masquer les slides adjacentes sur tablette */
    .flo-testimonials-slide[data-state="prev"],
    .flo-testimonials-slide[data-state="next"] {
        opacity: 0.2;
        transform: translateX(-100%) translateZ(-200px) rotateY(20deg) scale(0.7);
    }
    
    .flo-testimonials-slide[data-state="next"] {
        transform: translateX(100%) translateZ(-200px) rotateY(-20deg) scale(0.7);
    }
    
    .flo-testimonials-nav {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .flo-testimonials-carousel {
        padding: 20px 10px 20px;
        gap: 15px;
    }
    
    .flo-testimonials-carousel-wrapper {
        gap: 10px;
    }
    
    /* Masquer les boutons de navigation sur mobile */
    .flo-testimonials-nav {
        display: none;
    }
    
    .flo-testimonials-track {
        height: 550px;
    }
    
    .flo-testimonials-slide {
        max-width: 90%;
    }
    
    /* Une seule carte visible sur mobile */
    .flo-testimonials-slide[data-state="prev"],
    .flo-testimonials-slide[data-state="next"],
    .flo-testimonials-slide[data-state="hidden"] {
        opacity: 0;
        transform: translateX(0%) scale(0.8);
        pointer-events: none;
    }
    
    /* Ajustements texte mobile */
    .flo-testimonials-carousel .testimonial-card {
        padding: var(--spacing-lg);
        min-height: 380px;
    }
    
    .flo-testimonials-carousel .testimonial-card__quote p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .flo-testimonials-carousel .testimonial-card__name {
        font-size: 0.95rem;
    }
    
    .flo-testimonials-carousel .testimonial-card__title {
        font-size: 0.8rem;
    }
    
    /* Navigation avec flèches autour des dots */
    .flo-testimonials-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        position: relative;
    }
    
    .flo-testimonials-dots::before,
    .flo-testimonials-dots::after {
        content: '';
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: var(--color-primary);
        cursor: pointer;
        font-family: monospace;
    }
    
    .flo-testimonials-dots::before {
        content: '‹';
        font-size: 2rem;
        margin-right: 8px;
    }
    
    .flo-testimonials-dots::after {
        content: '›';
        font-size: 2rem;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .flo-testimonials-carousel {
        padding: 20px 5px 20px;
    }
    
    .flo-testimonials-carousel-wrapper {
        gap: 8px;
    }
    
    .flo-testimonials-track {
        height: 600px;
    }
    
    .flo-testimonials-slide {
        max-width: 85%;
    }
    
    .flo-testimonials-nav {
        width: 35px;
        height: 35px;
    }
    
    .flo-testimonials-carousel .testimonial-card {
        padding: 1.25rem;
        min-height: 350px;
    }
    
    .flo-testimonials-carousel .testimonial-card__quote {
        margin-bottom: 1rem;
    }
    
    .flo-testimonials-carousel .testimonial-card__quote p {
        font-size: 0.9rem;
        line-height: 1.45;
    }
    
    .flo-testimonials-carousel .testimonial-card__name {
        font-size: 0.9rem;
    }
    
    .flo-testimonials-carousel .testimonial-card__title {
        font-size: 0.75rem;
    }
    
    .flo-testimonials-carousel .testimonial-card__avatar {
        width: 48px;
        height: 48px;
    }
}

/* ============================================ */
/* CARROUSEL 3D TÉMOIGNAGES - FIN */
/* ============================================ */

/* ============================================ */
/* AJUSTEMENTS BOUTONS CTA */
/* ============================================ */

.btn {
    gap: 0.625rem !important;
    white-space: nowrap;
    line-height: 1.2;
}

.btn i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.btn--large {
    padding: 1rem 1.75rem !important;
    font-size: 1.0625rem !important;
    gap: 0.75rem !important;
}

.btn--large i {
    width: 22px;
    height: 22px;
}

/* ============================================ */
/* SECTION PROBLÈMES SIMPLIFIÉE */
/* ============================================ */

.problems__grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card-simple {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.problem-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.problem-card-simple__problem,
.problem-card-simple__solution {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
}

.problem-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-badge--red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.problem-badge--green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.problem-card-simple__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray);
}

.problem-card-simple__text strong {
    color: var(--color-dark);
    font-weight: 600;
}

.problem-card-simple__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .problems__grid-simple {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .problem-card-simple__arrow {
        transform: rotate(90deg);
    }
}

/* ============================================ */
/* AVANT / APRÈS FLO */
/* ============================================ */

.before-after__header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.before-after__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.before-after__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.before-after__card--after {
    position: relative;
    overflow: hidden;
}

.before-after__card--after::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(16,185,129,0.08), transparent 60%);
    pointer-events: none;
}

.before-after__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.before-after__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.before-after__badge--before {
    background: rgba(128, 0, 255, 0.1);
    color: #1d4ed8;
    border: 2px solid rgba(128, 0, 255, 0.3);
}

.before-after__badge--after {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
    border: 2px solid rgba(16, 185, 129, 0.4);
}

.before-after__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.before-after__item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.before-after__number,
.before-after__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.before-after__number--before {
    background: #E5D5FF;
    color: #4a4a4a;
    border: 2px solid #cbd5e1;
}

.before-after__icon--after {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 2px solid rgba(16, 185, 129, 0.3);
    font-size: 1rem;
}

.before-after__content {
    flex: 1;
}

.before-after__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.before-after__text {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--color-gray);
}

.before-after__cta {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.before-after__note {
    font-size: 0.6875rem;
    color: var(--color-gray);
    line-height: 1.4;
}

.btn--secondary {
    background: var(--color-success);
    color: var(--color-white);
    border-color: var(--color-success);
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
    align-self: flex-start;
}

.btn--secondary:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

@media (max-width: 992px) {
    .before-after__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .before-after__card {
        padding: var(--spacing-lg);
    }
    
    .before-after__header {
        margin-bottom: var(--spacing-xl);
    }
}

/* ============================================ */
/* CORRECTIONS GLOBALES */
/* ============================================ */

* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}
*::-webkit-scrollbar {
    display: none !important;
}

html, body {
    overflow-x: hidden;
}

/* ============================================ */
/* COMMENT ÇA MARCHE - FORCER VISIBILITÉ */
/* ============================================ */

.step-card,
.step-card.fade-in-step {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.4s ease;
}

.step-card.active .step-card__front {
    background: #8000ff !important;
    border-color: #8000ff !important;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-card.active .step-card__front .step-card__title,
.step-card.active .step-card__front .step-card__text {
    color: #fff !important;
}

.step-card.active .step-card__icon {
    background: #fff !important;
    color: #8000ff !important;
}

.step-card__front {
    border-radius: 24px !important;
}

/* ============================================ */
/* PRICING - ESPACE RÉDUIT */
/* ============================================ */

#tarifs {
    padding: 30px 0 20px 0 !important;
}

.pricing__plans {
    display: none !important;
}

.pricing__simulator {
    margin-bottom: 0 !important;
}

/* ============================================ */
/* TÉMOIGNAGES - CARROUSEL VAGUE SUPERPOSÉE */
/* ============================================ */

#testimonials {
    padding: 50px 0 70px 0 !important;
    background: #E5D5FF !important;
    overflow: hidden !important;
}

#testimonials .container {
    max-width: 100% !important;
    padding: 0 !important;
}

#testimonials .section__header {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-carousel::before {
    left: 0;
    background: linear-gradient(to right, #E5D5FF 0%, #E5D5FF 30%, transparent 100%);
}

.testimonials-carousel::after {
    right: 0;
    background: linear-gradient(to left, #E5D5FF 0%, #E5D5FF 30%, transparent 100%);
}

.testimonials-carousel__track {
    display: flex;
    align-items: center;
    animation: scroll-testimonials 35s linear infinite;
    width: max-content;
}

.testimonials-carousel__track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 280px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-left: -30px;
}

.testimonial-card:first-child {
    margin-left: 0;
}

.testimonial-card:nth-child(7n+1) { transform: translateY(-15px) rotate(-2deg); z-index: 2; }
.testimonial-card:nth-child(7n+2) { transform: translateY(10px) rotate(1.5deg); z-index: 3; }
.testimonial-card:nth-child(7n+3) { transform: translateY(-8px) rotate(-1deg); z-index: 4; }
.testimonial-card:nth-child(7n+4) { transform: translateY(15px) rotate(2deg); z-index: 5; }
.testimonial-card:nth-child(7n+5) { transform: translateY(-12px) rotate(-1.5deg); z-index: 4; }
.testimonial-card:nth-child(7n+6) { transform: translateY(8px) rotate(1deg); z-index: 3; }
.testimonial-card:nth-child(7n+7) { transform: translateY(-5px) rotate(-0.5deg); z-index: 2; }

.testimonial-card:hover {
    transform: translateY(-20px) rotate(0deg) scale(1.05) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    z-index: 100 !important;
}

.testimonial-card__badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 14px;
    background: linear-gradient(135deg, #8000ff 0%, #357ABD 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-card__content {
    flex: 1;
    margin-bottom: 16px;
}

.testimonial-card__quote {
    font-size: 2rem;
    color: #8000ff;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: -5px;
    opacity: 0.4;
}

.testimonial-card__text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-card__company {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.testimonials-carousel__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.testimonials-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
}

.testimonials-nav-btn:hover {
    background: #8000ff;
    border-color: #8000ff;
    color: #fff;
}

.testimonials-nav-btn i {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 250px;
        padding: 20px;
        margin-left: -20px;
    }
    .testimonials-carousel::before,
    .testimonials-carousel::after {
        width: 100px;
    }
}


/* ============================================ */
/* FIX URGENT - STEP CARDS VISIBLES */
/* ============================================ */

.how-it-works .step-card,
.step-card.fade-in-step,
.steps-cards .step-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.step-card__front {
    opacity: 1 !important;
    visibility: visible !important;
}

.step-card__inner {
    height: 420px;
}

/* CLASSES ANCIENNES */
.testimonials-carousel__track {
    display: flex !important;
    align-items: center;
    animation: scroll-testimonials 35s linear infinite;
    width: max-content;
}


/* ============================================ */
/* COMMENT ÇA MARCHE - EFFET VAGUE BLEU */
/* ============================================ */

.how-it-works {
    background: #fff;
    padding: 80px 0;
}

.steps-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Cartes - État normal (blanc) */
.step-box {
    flex: 1;
    max-width: 340px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Hover */
.step-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* État ACTIF - Fond bleu */
.step-box.active {
    background: #8000ff;
    border-color: #8000ff;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-box.active .step-box__icon {
    background: #ffffff;
    color: #8000ff;
}

.step-box.active .step-box__title {
    color: #ffffff;
}

.step-box.active .step-box__text {
    color: rgba(255, 255, 255, 0.9);
}

/* Icône */
.step-box__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #8000ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease;
}

.step-box__icon i {
    width: 36px;
    height: 36px;
}

/* Titre */
.step-box__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    transition: color 0.4s ease;
}

/* Description */
.step-box__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    transition: color 0.4s ease;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .step-box {
        max-width: 450px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .step-box {
        padding: 36px 24px;
    }
    
    .step-box__title {
        font-size: 1.3rem;
    }
}


/* Cacher les dots Avant/Après sur desktop */
.before-after__dots {
    display: none;
}

/* ============================================ */
/* FAQ RESPONSIVE */
/* ============================================ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================ */
/* VIDEO SECTION RESPONSIVE */
/* ============================================ */
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================ */
/* COMMENT CA MARCHE - STEPS GRID RESPONSIVE */
/* ============================================ */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}


/* ============================================ */
/* CAS D USAGE V1-B - RESPONSIVE */
/* ============================================ */
@media (max-width: 900px) {
    .profile-slide {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .profile-tabs {
        justify-content: center;
    }
}

/* ============================================ */
/* MOBILE.CSS - Override complet pour mobile   */
/* ============================================ */

/* ===== ANIMATIONS ICÔNES ===== */
@keyframes circuitFlow { 
    0% { stroke-dashoffset: 12; } 
    100% { stroke-dashoffset: 0; } 
}

@keyframes nodePulse { 
    0%, 100% { opacity: 0.4; transform: scale(0.8); } 
    50% { opacity: 1; transform: scale(1.2); } 
}

@keyframes iaPulse { 
    0%, 100% { opacity: 0; } 
    50% { opacity: 0.6; } 
}

@keyframes speedLine { 
    0%, 100% { opacity: 0.3; } 
    50% { opacity: 1; } 
}

@keyframes needleFast { 
    from { transform: rotate(0deg); } 
    to { transform: rotate(360deg); } 
}

@keyframes needleSlow { 
    from { transform: rotate(0deg); } 
    to { transform: rotate(360deg); } 
}

@keyframes chronoMove { 
    0%, 100% { transform: translateX(0); } 
    50% { transform: translateX(3px); } 
}

@keyframes smileyBlackhole {
    0%, 65% { transform: scale(1) rotate(0deg); opacity: 1; }
    75% { transform: scale(0.5) rotate(180deg); opacity: 0.7; }
    82% { transform: scale(0) rotate(360deg); opacity: 0; }
    92% { transform: scale(0); opacity: 0; }
    96% { transform: scale(1.08) rotate(0deg); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes starFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-3px) scale(1.1); opacity: 1; }
}

/* Classes animations */
.circuit-path { stroke-dasharray: 4 2; animation: circuitFlow 1s linear infinite; }
.circuit-path-delay-1 { animation-delay: 0.25s; }
.circuit-path-delay-2 { animation-delay: 0.5s; }
.circuit-path-delay-3 { animation-delay: 0.75s; }
.node-pulse { animation: nodePulse 1.5s ease-in-out infinite; transform-origin: center; }
.node-pulse-delay-1 { animation-delay: 0.25s; }
.node-pulse-delay-2 { animation-delay: 0.5s; }
.node-pulse-delay-3 { animation-delay: 0.75s; }
.ia-pulse { animation: iaPulse 2s ease-in-out infinite; }
.speed-line { animation: speedLine 0.8s ease-in-out infinite; }
.speed-line-delay-1 { animation-delay: 0.15s; }
.speed-line-delay-2 { animation-delay: 0.3s; }
.chrono-group { animation: chronoMove 0.8s ease-in-out infinite; }
.needle-fast { transform-origin: 36px 30px; animation: needleFast 4s linear infinite; }
.needle-slow { transform-origin: 36px 30px; animation: needleSlow 12s linear infinite; }
.smiley-bh { animation: smileyBlackhole 7s ease-in-out infinite; transform-origin: center; }
.star-float { animation: starFloat 2s ease-in-out infinite; }
.star-float-delay-1 { animation-delay: 0.3s; }
.star-float-delay-2 { animation-delay: 0.6s; }

/* Hide scrollbar */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }


/* ============================================ */
/* RESPONSIVE MOBILE (max 900px)               */
/* ============================================ */
@media screen and (max-width: 900px) {
    
    /* ===== HEADER MOBILE - RESET COMPLET ===== */
    .header,
    .header.scrolled,
    .header.collapsed,
    .header.collapsed:hover,
    header.header,
    header.header.collapsed {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 65px !important;
        border-radius: 0 !important;
        background: #E5D5FF !important;
        border: none !important;
        border-bottom: 1px solid rgba(128, 0, 255, 0.15) !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: 0 2px 10px rgba(128, 0, 255, 0.1) !important;
        overflow: visible !important;
    }
    
    .header .container,
    .header.collapsed .container,
    .header.collapsed:hover .container {
        padding: 0 20px !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .header .nav,
    .header.collapsed .nav,
    .header.collapsed:hover .nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 0 !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    /* Logo */
    .nav__logo {
        flex-shrink: 0 !important;
    }
    
    .nav__logo img {
        height: 36px !important;
        width: auto !important;
    }
    
    /* ===== MENU BURGER ===== */
    .nav__toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-end !important;
        width: 44px !important;
        height: 44px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 8px !important;
        gap: 5px !important;
        z-index: 1002 !important;
        order: 3 !important;
    }
    
    .nav__toggle span {
        display: block !important;
        height: 3px !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }
    
    .nav__toggle span:nth-child(1) {
        width: 24px !important;
        background: #8000ff !important;
    }
    
    .nav__toggle span:nth-child(2) {
        width: 18px !important;
        background: #ff3f9b !important;
    }
    
    .nav__toggle span:nth-child(3) {
        width: 24px !important;
        background: #ff703d !important;
    }
    
    /* Animation burger -> X */
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px) !important;
        width: 24px !important;
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(-10px) !important;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px) !important;
        width: 24px !important;
    }
    
    /* ===== MENU NAVIGATION ===== */
    .nav__menu,
    .nav__menu--centered,
    .header .nav__menu,
    .header .nav__menu--centered,
    .header.collapsed .nav__menu,
    .header.collapsed .nav__menu--centered,
    .header.collapsed:hover .nav__menu,
    .header.collapsed:hover .nav__menu--centered {
        display: none !important;
        position: fixed !important;
        top: 65px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100vh - 65px) !important;
        background: #E5D5FF !important;
        flex-direction: column !important;
        padding: 30px 25px !important;
        gap: 6px !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin: 0 !important;
        animation: none !important;
    }
    
    .nav__menu.active,
    .nav__menu--centered.active {
        display: flex !important;
    }
    
    .nav__menu li,
    .nav__menu--centered li {
        list-style: none !important;
        width: 100% !important;
    }
    
    /* Liens menu */
    .nav__link {
        display: block !important;
        padding: 16px 20px !important;
        color: #1a0033 !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 1.05rem !important;
        border-radius: 14px !important;
        border-left: 3px solid transparent !important;
        background: transparent !important;
        transition: all 0.3s ease !important;
    }
    
    .nav__link::after {
        display: none !important;
    }
    
    .nav__link:hover,
    .nav__link:active {
        background: rgba(255, 255, 255, 0.6) !important;
        border-left-color: #8000ff !important;
        padding-left: 24px !important;
        color: #8000ff !important;
    }
    
    /* Couleurs alternées au hover */
    .nav__menu li:nth-child(1) .nav__link:hover,
    .nav__menu--centered li:nth-child(1) .nav__link:hover { 
        border-left-color: #8000ff !important; 
        color: #8000ff !important; 
    }
    .nav__menu li:nth-child(2) .nav__link:hover,
    .nav__menu--centered li:nth-child(2) .nav__link:hover { 
        border-left-color: #ff3f9b !important; 
        color: #ff3f9b !important; 
    }
    .nav__menu li:nth-child(3) .nav__link:hover,
    .nav__menu--centered li:nth-child(3) .nav__link:hover { 
        border-left-color: #ff703d !important; 
        color: #ff703d !important; 
    }
    .nav__menu li:nth-child(4) .nav__link:hover,
    .nav__menu--centered li:nth-child(4) .nav__link:hover { 
        border-left-color: #8000ff !important; 
        color: #8000ff !important; 
    }
    .nav__menu li:nth-child(5) .nav__link:hover,
    .nav__menu--centered li:nth-child(5) .nav__link:hover { 
        border-left-color: #ff3f9b !important; 
        color: #ff3f9b !important; 
    }
    
    /* ===== BOUTON CTA HEADER ===== */
    .btn--cta-pulse,
    .header .btn--cta-pulse,
    .header.collapsed .btn--cta-pulse,
    .header.collapsed:hover .btn--cta-pulse {
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
        border-radius: 10px !important;
        order: 2 !important;
        animation: none !important;
        transform: none !important;
    }
    
    /* ===== HERO SECTION ===== */
    .hero,
    section.hero,
    .hero.hero {
        padding: 90px 20px 40px !important;
        text-align: center !important;
        min-height: auto !important;
    }
    
    .hero .container {
        padding: 0 !important;
    }
    
    .hero__content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
        align-items: center !important;
    }
    
    .hero__text {
        max-width: 100% !important;
        order: 1 !important;
        text-align: center !important;
    }
    
    .hero__title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
        text-align: center !important;
    }
    
    .hero__subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        opacity: 0.8 !important;
        margin-bottom: 24px !important;
        text-align: center !important;
    }
    
    .hero__cta {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .hero__cta .btn,
    .hero .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 24px !important;
        border-radius: 14px !important;
        font-size: 1rem !important;
    }
    
    .hero__visual {
        order: 2 !important;
        max-width: 280px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .hero__visual img,
    .hero__visual svg {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* ===== SECTIONS GÉNÉRALES ===== */
    section,
    .section {
        padding: 40px 20px !important;
        overflow: visible !important;
    }
    
    .section .container,
    section .container {
        padding: 0 !important;
    }
    
    .section__header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .section__title,
    .section h2,
    h2 {
        font-size: 1.4rem !important;
        text-align: center !important;
        margin-bottom: 16px !important;
    }
    
    .section__subtitle {
        font-size: 0.95rem !important;
        text-align: center !important;
    }
    
    /* ===== SECTION 3 RAISONS ===== */
    .section--reasons,
    .reasons-section,
    #trois-raisons,
    [id*="raison"] {
        padding: 30px 15px !important;
        background: linear-gradient(135deg, #8000ff 0%, #ff3f9b 100%) !important;
        border-radius: 24px !important;
        margin: 20px 15px !important;
    }
    
    .section--reasons .section__title,
    .reasons-section h2,
    #trois-raisons h2 {
        font-size: 1.2rem !important;
        color: white !important;
        text-align: center !important;
        margin-bottom: 24px !important;
    }
    
    /* Grille 3 raisons */
    .reasons-grid,
    .benefits-grid,
    .section--reasons .grid {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 10px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .reason-card,
    .benefit-card {
        flex: 0 0 auto !important;
        width: 110px !important;
        min-width: 110px !important;
        background: rgba(255,255,255,0.15) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-radius: 20px !important;
        padding: 20px 12px !important;
        text-align: center !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
    }
    
    .reason-card__icon,
    .benefit-card__icon {
        width: 65px !important;
        height: 65px !important;
        margin: 0 auto 12px !important;
        background: white !important;
        border-radius: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    }
    
    .reason-card__icon svg,
    .benefit-card__icon svg {
        width: 45px !important;
        height: 45px !important;
    }
    
    .reason-card__title,
    .benefit-card__title,
    .reason-card h3,
    .benefit-card h3 {
        color: white !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        margin-bottom: 6px !important;
    }
    
    .reason-card__text,
    .benefit-card__text,
    .reason-card p,
    .benefit-card p {
        color: rgba(255,255,255,0.85) !important;
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
    
    /* ===== CAS D'USAGE / PROFILS ===== */
    .section--usecases,
    .usecases-section,
    .profiles-section {
        padding: 30px 0 !important;
    }
    
    .usecases-tabs,
    .profiles-tabs {
        overflow-x: auto !important;
        padding: 0 20px 15px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .usecases-tabs-inner,
    .profiles-tabs-inner,
    .tabs-container {
        display: flex !important;
        gap: 8px !important;
        width: max-content !important;
    }
    
    .usecase-tab,
    .profile-tab,
    .tab-btn {
        padding: 10px 16px !important;
        border-radius: 50px !important;
        border: 2px solid rgba(128,0,255,0.3) !important;
        background: transparent !important;
        color: #1a0033 !important;
        font-weight: 600 !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }
    
    .usecase-tab.active,
    .profile-tab.active,
    .tab-btn.active {
        border: none !important;
        background: linear-gradient(135deg, #8000ff, #ff3f9b) !important;
        color: white !important;
    }
    
    .usecase-content,
    .profile-content {
        padding: 0 20px !important;
    }
    
    .usecase-card,
    .profile-card {
        background: rgba(255,255,255,0.5) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 20px !important;
        padding: 24px !important;
        border: 1px solid rgba(128,0,255,0.15) !important;
    }
    
    /* ===== STATS ===== */
    .stats-grid,
    .stats-section .grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    
    .stat-card {
        background: rgba(255,255,255,0.4) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 16px !important;
        padding: 20px !important;
        text-align: center !important;
        border: 1px solid rgba(255,255,255,0.6) !important;
    }
    
    .stat-card__value,
    .stat-value {
        font-size: 1.6rem !important;
        font-weight: 700 !important;
    }
    
    .stat-card__label,
    .stat-label {
        font-size: 0.75rem !important;
        opacity: 0.7 !important;
    }
    
    /* ===== VIDÉO ===== */
    .video-section,
    .section--video {
        padding: 30px 20px !important;
    }
    
    .video-container {
        background: #1a0033 !important;
        border-radius: 24px !important;
        padding: 20px !important;
    }
    
    .video-player {
        aspect-ratio: 16/9 !important;
        border-radius: 16px !important;
        margin-bottom: 16px !important;
    }
    
    /* ===== TÉMOIGNAGES ===== */
    .testimonials-section,
    .section--testimonials {
        padding: 30px 20px !important;
    }
    
    .testimonials-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .testimonial-card {
        width: 100% !important;
        max-width: 100% !important;
        background: rgba(255,255,255,0.6) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 20px !important;
        padding: 22px !important;
        border: 1px solid rgba(255,255,255,0.8) !important;
    }
    
    /* Carousel témoignages - cacher les cartes non actives sur mobile */
    .testimonials-carousel {
        overflow: hidden !important;
    }
    
    /* ===== FAQ ===== */
    .faq-section,
    .section--faq {
        padding: 30px 20px !important;
    }
    
    .faq-container {
        background: #1a0033 !important;
        border-radius: 24px !important;
        padding: 22px !important;
    }
    
    .faq-container h2 {
        color: white !important;
        font-size: 1.1rem !important;
        text-align: center !important;
        margin-bottom: 18px !important;
    }
    
    .faq-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .faq-item {
        background: rgba(255,255,255,0.08) !important;
        border-radius: 14px !important;
        padding: 14px 16px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .faq-question {
        color: white !important;
        font-size: 0.85rem !important;
    }
    
    .faq-answer {
        color: rgba(255,255,255,0.7) !important;
        font-size: 0.8rem !important;
    }
    
    /* ===== CTA SECTION ===== */
    .cta-section,
    .section--cta {
        padding: 30px 20px !important;
    }
    
    .cta-container {
        background: linear-gradient(135deg, #8000ff, #ff3f9b) !important;
        border-radius: 24px !important;
        padding: 28px 22px !important;
        text-align: center !important;
    }
    
    .cta-container h2 {
        font-size: 1.2rem !important;
        color: white !important;
        margin-bottom: 10px !important;
    }
    
    .cta-container p {
        color: rgba(255,255,255,0.85) !important;
        font-size: 0.9rem !important;
        margin-bottom: 18px !important;
    }
    
    .cta-container .btn {
        width: 100% !important;
        padding: 15px !important;
        background: #ff703d !important;
        border: none !important;
        border-radius: 14px !important;
        color: white !important;
        font-weight: 600 !important;
    }
    
    /* ===== ÉQUIPE ===== */
    .team-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .team-card {
        width: 100% !important;
    }
    
    /* ===== FORMULAIRE ===== */
    .form-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .form-group {
        width: 100% !important;
    }
    
    .form-input,
    .form-textarea {
        width: 100% !important;
        padding: 14px !important;
        font-size: 1rem !important;
    }
    
    /* ===== FOOTER ===== */
    .footer {
        background: #1a0033 !important;
        padding: 30px 20px !important;
        text-align: center !important;
    }
    
    .footer__content,
    .footer .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
    }
    
    .footer__logo img {
        height: 32px !important;
    }
    
    .footer__links {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
    }
    
    .footer__links a {
        color: rgba(255,255,255,0.6) !important;
        font-size: 0.85rem !important;
    }
    
    .footer__social {
        display: flex !important;
        gap: 16px !important;
        justify-content: center !important;
    }
    
    .footer__copyright {
        color: rgba(255,255,255,0.4) !important;
        font-size: 0.75rem !important;
        margin-top: 20px !important;
    }
    
    /* ===== BODY MENU OPEN ===== */
    body.menu-open {
        overflow: hidden !important;
    }
}


/* ============================================ */
/* MOBILE SMALL (max 600px)                    */
/* ============================================ */
@media screen and (max-width: 600px) {
    
    .nav__logo img {
        height: 32px !important;
    }
    
    .hero__title {
        font-size: 1.5rem !important;
    }
    
    .hero__subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero__visual {
        max-width: 240px !important;
    }
    
    .section__title,
    h2 {
        font-size: 1.2rem !important;
    }
    
    /* 3 raisons plus compactes */
    .reason-card,
    .benefit-card {
        width: 95px !important;
        min-width: 95px !important;
        padding: 16px 10px !important;
    }
    
    .reason-card__icon,
    .benefit-card__icon {
        width: 55px !important;
        height: 55px !important;
    }
    
    .reason-card__icon svg,
    .benefit-card__icon svg {
        width: 38px !important;
        height: 38px !important;
    }
    
    .reason-card__title,
    .benefit-card__title {
        font-size: 0.75rem !important;
    }
    
    .reason-card__text,
    .benefit-card__text {
        font-size: 0.65rem !important;
    }
    
    .stat-card__value,
    .stat-value {
        font-size: 1.4rem !important;
    }
}


/* ============================================ */
/* LANDSCAPE MODE                              */
/* ============================================ */
@media screen and (max-width: 900px) and (orientation: landscape) {
    
    .hero {
        padding-top: 75px !important;
        min-height: auto !important;
    }
    
    .hero__content {
        flex-direction: row !important;
        text-align: left !important;
        align-items: center !important;
    }
    
    .hero__text {
        flex: 1 !important;
        text-align: left !important;
    }
    
    .hero__visual {
        flex: 0 0 200px !important;
        max-width: 200px !important;
    }
    
    .hero__cta {
        flex-direction: row !important;
    }
    
    .hero__cta .btn {
        width: auto !important;
    }
}


/* ============================================ */
/* SAFE AREA (iPhone X+)                       */
/* ============================================ */
@supports (padding-top: env(safe-area-inset-top)) {
    @media screen and (max-width: 900px) {
        .header {
            padding-top: env(safe-area-inset-top) !important;
        }
        
        .nav__menu,
        .nav__menu--centered {
            padding-bottom: calc(30px + env(safe-area-inset-bottom)) !important;
        }
        
        .footer {
            padding-bottom: calc(30px + env(safe-area-inset-bottom)) !important;
        }
    }
}


/* ============================================ */
/* TOUCH STATES                                */
/* ============================================ */
@media (hover: none) and (pointer: coarse) {
    .nav__link:active {
        background: rgba(255, 255, 255, 0.6) !important;
        transform: scale(0.98) !important;
    }
    
    .btn:active {
        transform: scale(0.97) !important;
        opacity: 0.9 !important;
    }
    
    .usecase-tab:active,
    .profile-tab:active,
    .tab-btn:active {
        transform: scale(0.97) !important;
    }
    
    .faq-item:active {
        transform: scale(0.99) !important;
    }
    
    .card:active,
    .testimonial-card:active {
        transform: scale(0.99) !important;
    }
}
