/* Import des variables globales */
@import "../variables-Uk-6nDi.css";

/* =================================================================
   RESET & BASE STYLES
   ================================================================= */
body {
    background: #FFFFFF;
}

/* =================================================================
   HEADER NAVIGATION
   ================================================================= */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    /* Transitions séparées pour un effet plus smooth */
    transition:
        background-color 600ms cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 600ms cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1),
        height 400ms cubic-bezier(0.4, 0, 0.2, 1),
        border-bottom 500ms cubic-bezier(0.4, 0, 0.2, 1);
    height: 80px;
}

.landing-header.scrolled {
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(12, 129, 228, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Styles de logo déplacés vers styles/components/logos.css */

.main-nav {
    display: flex;
    gap: var(--spacing-lg);
}

.main-nav a {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-medium);
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.landing-header.scrolled .main-nav a {
    color: var(--color-gray-dark);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-login {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-medium);
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 16px;
}

.header-login:hover {
    color: var(--color-primary);
}

.landing-header.scrolled .header-login {
    color: var(--color-gray-dark);
}

.landing-header.scrolled .header-login:hover {
    color: var(--color-primary);
}

/* =================================================================
   BUTTONS & CTAs
   ================================================================= */
.cta-button {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    transition:
        transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
        background 300ms cubic-bezier(0.4, 0, 0.2, 1),
        color 300ms cubic-bezier(0.4, 0, 0.2, 1),
        border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;

}

.cta-button.large {
    padding: 16px 32px;
    font-size: var(--font-size-base);
}

.cta-primary {
    background: var(--gradient-main);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
    border-color: var(--color-primary-dark);
}

.cta-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.cta-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    border-color: var(--color-primary-dark);
}

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

.cta-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary-dark);
}

/* =================================================================
   HERO SECTION
   ================================================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,
        #F0F9FF 0%,
        #E0F2FE 30%,
        #FFFFFF 70%,
        #F0F9FF 100%
    );
    position: relative;
    overflow: hidden;
    padding: 120px;
}

/* Transition douce vers la section blanche */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.9) 75%,
        var(--color-white) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Blobs animés pour un background moderne */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero-blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-blue-gradient-2) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation: floatBlob1 25s ease-in-out infinite;
}

.hero-blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-blue-gradient-3) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation: floatBlob2 20s ease-in-out infinite;
}

.hero-blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-cyan) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatBlob3 30s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-center {
    max-width: 900px;
    text-align: center;
    z-index: 2;
}

.hero-surtitle {
    font-family: var(--font-poppins);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-text-medium);
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    animation: fadeInUp 0.6s ease 0.6s forwards;
    opacity: 0;
}

/* Hero Right - Mockup */
.hero-right {
    position: relative;
    height: 500px;
}

.hero-mockup {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 200px;
    right: 20px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 80px;
    left: 50px;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    animation-delay: 2s;
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 12px;
    color: var(--color-text-light);
}

.card-value {
    font-family: var(--font-poppins);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.progress-chart {
    width: 100%;
}

.chart-svg {
    width: 100%;
    height: 80px;
}

.chart-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--spacing-xs);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-gray-dark);
    font-size: var(--font-size-sm);
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

/* =================================================================
   PARTNERS SECTION
   ================================================================= */
.partners-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    position: relative;
    background-color: var(--color-white);
}

.partners-title {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-2xl);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.partners-logos {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.6;
    transition:
        filter 500ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 500ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    min-height: 80px;
}

.partner-logo img {
    max-width: 140px;
    max-height: 60px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
}

/* =================================================================
   WHY MOODIA SECTION - Features
   ================================================================= */
.problem-solution-section {
    padding: 120px var(--spacing-lg);
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.section-surtitle {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease forwards;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
    color: var(--color-black);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Cartes features */
.feature-card {
    padding: 32px 24px;
    text-align: center;
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
}

/* Icône */
.feature-icon {
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 66px;
    height: 66px;
}

/* Titre de feature */
.feature-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
    line-height: 1.3;
}

/* Description */
.feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-medium);
}

/* =================================================================
   HOW IT WORKS SECTION - Interactive
   ================================================================= */
.how-it-works-section {
    padding: 120px var(--spacing-lg);
    background: #FFFFFF;
    position: relative;
}

.how-it-works-section .section-surtitle,
.how-it-works-section .section-title {
    text-align: center;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout 2 colonnes */
.steps-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: center;
}

/* Colonne gauche - Liste des étapes */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Item d'étape */
.step-item {
    padding: 24px 24px 24px 20px;
    border-top-right-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    cursor: pointer;
    transition:
        background 400ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 400ms cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 400ms cubic-bezier(0.4, 0, 0.2, 1),
        border-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.step-item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.5);
}

/* État actif */
.step-item.active {
    border-left-color: var(--color-primary);
}

/* Ligne titre avec numéro */
.step-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-xs);
}

/* Icône de l'étape (logo de l'outil) */
.step-icon {
    width: 48px;
    height: 48px;
    background: var(--color-gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gray-dark);
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item.active .step-icon {
    background: white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.step-item.active .step-icon svg {
    color: var(--color-primary);
}

/* Contenu de l'étape */
.step-content {
    display: flex;
    flex-direction: column;
}

.step-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-gray-dark);
    transition: color 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item.active h3 {
    color: var(--color-black);
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-medium);
    opacity: 0.7;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item.active .step-description {
    opacity: 1;
}

/* Colonne droite - Preview images */
.steps-preview {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background: linear-gradient(180deg,
        #F0F9FF 0%,
        #E0F2FE 30%,
        #FFFFFF 70%,
        #F0F9FF 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 500ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.preview-image.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.preview-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-xl);
}

/* =================================================================
   FEATURES SECTION - BENTO GRID
   ================================================================= */
.features-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: #FFFFFF;
}

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

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

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

.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.medium-card {
    grid-column: span 2;
    grid-row: span 1;
}

.small-card {
    grid-column: span 1;
    grid-row: span 1;
}

.card-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.bento-card h4 {
    font-size: 1.1rem;
}

.bento-card p {
    color: var(--color-text-medium);
    font-size: 14px;
    margin-bottom: var(--spacing-md);
}

.card-visual {
    margin-top: auto;
}

.course-builder-animation {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.builder-item {
    background: var(--color-gray-50);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 14px;
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.builder-item:nth-child(1) { animation-delay: 0.2s; }
.builder-item:nth-child(2) { animation-delay: 0.4s; }
.builder-item:nth-child(3) { animation-delay: 0.6s; }

.student-counter {
    font-family: var(--font-poppins);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-label {
    font-size: 14px;
    color: var(--color-text-medium);
}

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

.flow-node {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    border-radius: 50%;
}

.flow-line {
    flex: 1;
    height: 2px;
    background: var(--gradient-main);
    animation: expandWidth 1s ease forwards;
}

.small-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

/* =================================================================
   WORKFLOW SECTION
   ================================================================= */
.workflow-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-medium);
    margin-bottom: var(--spacing-2xl);
}

.workflow-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.workflow-step {
    background: white;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.workflow-step:hover {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 700;
}

.workflow-step h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.workflow-step p {
    color: var(--color-text-medium);
    font-size: 14px;
    margin-bottom: var(--spacing-md);
}

.step-time {
    display: inline-block;
    background: rgba(12, 129, 228, 0.1);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.step-visual {
    font-size: 2rem;
    margin-top: var(--spacing-md);
}

.workflow-line {
    width: 60px;
    height: 2px;
    background: var(--color-gray-200);
    position: relative;
}

.workflow-line::after {
    content: '�';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* =================================================================
   TESTIMONIALS SECTION
   ================================================================= */
.testimonials-section {
    padding: 180px var(--spacing-lg);
    background: linear-gradient(135deg,
        #F0F9FF 0%,
        #E0F2FE 30%,
        #FFFFFF 70%,
        #F0F9FF 100%
    );
    position: relative;
    overflow: hidden;
}

/* Transition douce vers le haut (depuis section blanche) */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 10%,
        rgba(255, 255, 255, 0.85) 20%,
        rgba(248, 252, 255, 0.6) 40%,
        rgba(240, 249, 255, 0.3) 60%,
        rgba(240, 249, 255, 0.1) 80%,
        rgba(240, 249, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Transition douce vers le bas (vers section blanche) */
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom,
        rgba(240, 249, 255, 0) 0%,
        rgba(240, 249, 255, 0.3) 40%,
        rgba(255, 255, 255, 0.8) 80%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Blobs animés pour background moderne - effet smooth */
.testimonials-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.testimonials-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #3AB8E8 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation: floatBlob1 25s ease-in-out infinite;
}

.testimonials-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0C81E4 0%, transparent 70%);
    bottom: 15%;
    left: 10%;
    animation: floatBlob2 20s ease-in-out infinite;
}

.testimonials-blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #00BCD4 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatBlob3 30s ease-in-out infinite;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-surtitle {
    margin-bottom: var(--spacing-sm);
}

.testimonials-section .section-title {
    margin-bottom: var(--spacing-2xl);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.testimonial-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.testimonial-logo svg {
    height: 32px;
    width: auto;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-medium);
    text-align: left;
    flex: 1;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    font-family: var(--font-secondary);
}

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

.author-info {
    text-align: left;
    flex: 1;
}

.author-name {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.85rem;
    color: var(--color-text-medium);
    opacity: 0.8;
}

/* Mini stats sous les témoignages */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
}

.mini-stat {
    text-align: center;
}

.mini-stat-value {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.mini-stat-label {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    opacity: 0.8;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-quote {
    font-size: 15px;
    color: var(--color-text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 15px;
}

.author-role {
    font-size: 13px;
    color: var(--color-text-light);
}

/* =================================================================
   PRICING SECTION
   ================================================================= */
.pricing-section {
    padding: 120px var(--spacing-lg);
    background: #FFFFFF;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-section .section-surtitle {
    margin-bottom: var(--spacing-sm);
}

.pricing-section .section-title {
    margin-bottom: var(--spacing-2xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: 60px;
    align-items: center;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    height: 620px;
}

.pro-card {
    background: #FFFFFF;
    border: 2px solid rgba(12, 129, 228, 0.15);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(12, 129, 228, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.pricing-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-xs);
}

.pricing-tagline {
    color: var(--color-text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
    min-height: 42px;
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-amount {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.price-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    font-weight: 400;
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-content: start;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-gray-dark);
}

.pricing-features li .feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li span {
    line-height: 1.5;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =================================================================
   FAQ SECTION
   ================================================================= */
.faq-section {
    padding: 120px var(--spacing-lg);
    background: #FFFFFF;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 100px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 120px;
    text-align: left;
}

#faq{
    text-align: left !important;
}

.faq-section .section-surtitle {
    margin-bottom: var(--spacing-sm);
}

.faq-section .section-title {
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.faq-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(12, 129, 228, 0.2);
}

.faq-item.active {
    border-color: rgba(12, 129, 228, 0.3);
    background: #FAFCFF;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-gray-dark);
}

.faq-icon {
    font-size: 1.8rem;
    color: #0C81E4;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
    line-height: 1;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    color: var(--color-text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.faq-answer p:first-child {
    padding-top: 20px;
}

.faq-answer p:last-child {
    padding-bottom: 24px;
}

.faq-answer ul {
    padding: 0 28px 16px 50px;
    margin: 0;
    list-style: none;
}

.faq-answer ul li {
    color: var(--color-text-medium);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

.faq-answer ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* =================================================================
   FINAL CTA SECTION
   ================================================================= */
.final-cta-section {
    padding: 120px var(--spacing-lg);
    background: linear-gradient(135deg,
        #F0F9FF 0%,
        #E0F2FE 30%,
        #FFFFFF 70%,
        #F0F9FF 100%
    );
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

/* Transition douce vers le haut (depuis section blanche) */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 10%,
        rgba(255, 255, 255, 0.85) 20%,
        rgba(248, 252, 255, 0.6) 40%,
        rgba(240, 249, 255, 0.3) 60%,
        rgba(240, 249, 255, 0.1) 80%,
        rgba(240, 249, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Transition douce vers le bas (vers le footer) */
.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom,
        rgba(240, 249, 255, 0) 0%,
        rgba(240, 249, 255, 0.2) 20%,
        rgba(245, 248, 250, 0.5) 40%,
        rgba(250, 252, 254, 0.7) 60%,
        rgba(255, 255, 255, 0.9) 80%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Blobs animés */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.cta-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0C81E4 0%, #3AB8E8 100%);
    top: -100px;
    left: -100px;
    animation: floatBlob1 20s ease-in-out infinite;
}

.cta-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3AB8E8 0%, #00BCD4 100%);
    bottom: -50px;
    right: -50px;
    animation: floatBlob2 15s ease-in-out infinite;
}

.cta-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00BCD4 0%, #0C81E4 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatBlob3 25s ease-in-out infinite;
}

.final-cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-section .section-surtitle {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.final-cta-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.final-cta-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-bottom: var(--spacing-xl);
}

/* Formulaire démo - 75% input / 25% button */
.cta-demo-form {
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-demo-input {
    padding: 16px 24px;
    border: none;
    background: transparent;
    color: var(--color-gray-dark);
    font-size: 1rem;
    outline: none;
}

.cta-demo-input::placeholder {
    color: var(--color-text-medium);
    opacity: 0.6;
}

.cta-demo-button {
    padding: 16px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-demo-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 129, 228, 0.3);
}

/* =================================================================
   FOOTER
   ================================================================= */
.landing-footer {
    background: #FFFFFF;
    padding: 80px var(--spacing-lg) var(--spacing-xl);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-logo {
    transform: scale(1.3);
    transform-origin: left center;
}

.footer-tagline {
    font-size: 16px;
    color: var(--color-text-medium);
    margin: 0;
    max-width: 380px;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    font-size: 15px;
    color: var(--color-text-medium);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-column ul li a:hover::before {
    width: 12px;
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-text-medium);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 14px;
    color: var(--color-text-medium);
    transition: color var(--transition-fast);
}

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

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

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Animation pulse déplacée vers styles/components/logos.css */

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

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes floatBlob1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes floatBlob2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-40px, 30px) scale(1.05);
    }
    66% {
        transform: translate(25px, -25px) scale(0.9);
    }
}

@keyframes floatBlob3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(40px, -40px) scale(1.15) rotate(180deg);
    }
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

/* Large Desktop */
@media (min-width: 1440px) {
    .hero-content,
    .how-it-works-container,
    .pricing-container,
    .faq-container,
    .final-cta-container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-blob-1 {
        width: 400px;
        height: 400px;
    }

    .hero-blob-2 {
        width: 350px;
        height: 350px;
    }

    .hero-blob-3 {
        width: 300px;
        height: 300px;
    }

    .scroll-indicator {
        bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-card {
        padding: 36px 32px;
    }

    .feature-icon svg {
        width: 60px;
        height: 60px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-card {
        padding: 36px 32px;
    }

    .step-icon svg {
        width: 52px;
        height: 52px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .large-card {
        grid-column: span 2;
    }

    .medium-card {
        grid-column: span 2;
    }

    .workflow-timeline {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .workflow-line {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .workflow-line::after {
        content: '�';
        right: auto;
        top: auto;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .main-nav {
        display: none;
    }

    .header-actions .header-login {
        display: none;
    }

    /* Partners section */
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* How it works section */
    .steps-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-list {
        order: 1;
    }

    .steps-preview {
        order: 2;
        min-height: 300px;
    }

    .step-item {
        padding: 24px;
    }

    .step-title-row h3 {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 15px;
    }

    /* Testimonials section */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-blob {
        display: none;
    }

    /* FAQ section */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-header {
        position: static;
        text-align: center;
    }

    .faq-subtitle {
        text-align: center;
    }

    /* Final CTA section */
    .final-cta-title {
        font-size: 2rem;
    }

    .cta-demo-form {
        grid-template-columns: 60% 40%;
        max-width: 500px;
    }

    .cta-blob {
        display: none;
    }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* How it works */
    .steps-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-list {
        order: 2;
    }

    .steps-preview {
        order: 1;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        height: auto;
    }

    /* FAQ */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-header {
        position: static;
        text-align: center;
    }

    /* CTA Demo form */
    .cta-demo-form {
        grid-template-columns: 65% 35%;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .landing-header {
        height: 60px;
    }

    .header-content {
        padding: 0 var(--spacing-md);
    }

    .header-actions .cta-button {
        padding: 10px 16px;
        font-size: 13px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 20px;
    }

    .beta-badge {
        font-size: 9px;
        padding: 2px 5px;
    }

    .hero-section {
        padding: 100px var(--spacing-md) var(--spacing-lg);
    }

    .hero-surtitle {
        font-size: 11px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-button.large {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-blob-1 {
        width: 250px;
        height: 250px;
    }

    .hero-blob-2 {
        width: 200px;
        height: 200px;
    }

    .hero-blob-3 {
        width: 180px;
        height: 180px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .section-surtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    #faq{
        text-align: center !important;
    }

    .feature-card {
        padding: 32px 28px;
    }

    .feature-icon svg {
        width: 56px;
        height: 56px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-description {
        font-size: 15px;
    }

    .step-card {
        padding: 32px 24px;
    }

    .step-icon svg {
        width: 48px;
        height: 48px;
    }

    .step-card h3 {
        font-size: 1.3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .large-card,
    .medium-card,
    .small-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .stat-value {
        font-size: 3rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-benefits {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-logo {
        transform: scale(1.2);
        margin: 0 auto;
    }

    .footer-tagline {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column ul {
        align-items: center;
    }

    .footer-column ul li a::before {
        display: none;
    }

    .footer-column ul li a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    /* Partners section */
    .partners-section {
        padding: 40px var(--spacing-md);
    }

    .partners-logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-logo img {
        max-height: 50px;
    }

    /* How it works section */
    .how-it-works-section {
        padding: 60px var(--spacing-md);
    }

    .how-it-works-section .section-surtitle,
    .how-it-works-section .section-title {
        text-align: center;
    }

    .steps-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps-preview {
        order: 2;
        min-height: 400px;
    }

    .preview-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .steps-list {
        order: 1;
    }

    .step-item {
        padding: 20px;
    }

    .step-icon {
        width: 44px;
        height: 44px;
    }

    .step-icon svg {
        width: 26px;
        height: 26px;
    }

    .step-title-row h3 {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 14px;
    }

    /* Override active state for mobile - only border-left colored */
    .step-item.active {
        background: transparent;
        border-left-color: var(--color-primary);
        box-shadow: none;
    }

    .step-item.active h3,
    .step-item.active .step-description {
        color: var(--color-gray-dark);
    }

    .step-item.active .step-icon {
        background: var(--color-gray-100);
        box-shadow: none;
        transform: none;
    }

    .step-item.active .step-icon svg {
        color: var(--color-gray-dark);
    }

    .preview-image img {
        border-radius: 12px;
    }

    /* Problem solution section */
    .problem-solution-section {
        padding: 60px var(--spacing-md);
    }

    .problem-solution-section .section-surtitle,
    .problem-solution-section .section-title {
        text-align: center;
    }

    .features-container {
        padding: 0;
    }

    /* Bento grid */
    .bento-section {
        padding: 60px var(--spacing-md);
    }

    .bento-card {
        min-height: 200px;
    }

    .bento-card h3 {
        font-size: 1.2rem;
    }

    /* Testimonials section */
    .testimonials-section {
        padding: 60px var(--spacing-md);
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author {
        font-size: 13px;
    }

    /* Pricing section */
    .pricing-section {
        padding: 60px var(--spacing-md);
    }

    .pricing-card {
        height: auto;
        padding: 32px 24px;
    }

    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    /* FAQ section */
    .faq-section {
        padding: 60px var(--spacing-md);
    }

    .faq-header {
        text-align: center;
    }

    .faq-header .section-surtitle {
        text-align: center !important;
    }

    .faq-header .section-title {
        text-align: center !important;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 24px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 24px 20px 24px;
    }

    /* Final CTA section */
    .final-cta-section {
        padding: 80px var(--spacing-md);
        padding-top: 120px;
    }

    .final-cta-title {
        font-size: 1.6rem;
    }

    .final-cta-description {
        font-size: 15px;
    }

    .cta-demo-form {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .cta-demo-input {
        padding: 14px 20px;
        font-size: 15px;
    }

    .cta-demo-button {
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Footer */
    .landing-footer {
        padding: 60px var(--spacing-md) var(--spacing-lg);
    }

    .footer-column h4 {
        font-size: 13px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }
}

/* =================================================================
   BUBBLE CURSOR EFFECT
   ================================================================= */

/* Custom bubble cursor */
.bubble-cursor {
    position: fixed !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.9),
        rgba(12, 129, 228, 0.7) 50%,
        rgba(58, 184, 232, 0.8)) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    pointer-events: none !important;
    z-index: 999999 !important;
    transform: translate(-50%, -50%) !important;
    transition: transform 0.1s ease-out !important;
    box-shadow:
        0 0 20px rgba(12, 129, 228, 0.4),
        inset -5px -5px 10px rgba(255, 255, 255, 0.3),
        inset 5px 5px 10px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    visibility: visible !important;
}

/* Popping animation on click */
.bubble-cursor.popping {
    animation: bubblePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bubblePop {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Bubble trail */
.bubble-trail {
    position: fixed !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 255, 255, 0.8),
        rgba(12, 129, 228, 0.5) 40%,
        rgba(58, 184, 232, 0.6)) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    pointer-events: none !important;
    z-index: 999998 !important;
    animation: floatUp 2s ease-out forwards !important;
    box-shadow:
        0 2px 8px rgba(12, 129, 228, 0.3),
        inset -2px -2px 4px rgba(255, 255, 255, 0.4) !important;
    display: block !important;
    visibility: visible !important;
}

@keyframes floatUp {
    0% {
        opacity: 0.8;
        transform: translateY(0) translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-200px) translateX(var(--drift)) scale(1.3);
    }
}

/* Animation de montée avec éclatement */
@keyframes floatAndBurst {
    0% {
        opacity: 0.7;
        transform: translateY(0) translateX(0) scale(1);
    }
    60% {
        opacity: 0.75;
        transform: translateY(-150px) translateX(var(--drift)) scale(2.0);
    }
    80% {
        opacity: 0.6;
        transform: translateY(-200px) translateX(var(--drift)) scale(2.6);
    }
    95% {
        opacity: 0.3;
        transform: translateY(-230px) translateX(var(--drift)) scale(3.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-250px) translateX(var(--drift)) scale(0.2);
    }
}

/* Bubble burst on click */
.bubble-burst {
    position: fixed !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 255, 255, 0.9),
        rgba(12, 129, 228, 0.6) 40%,
        rgba(58, 184, 232, 0.7)) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    pointer-events: none !important;
    z-index: 999997 !important;
    animation: burstOut 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    box-shadow:
        0 4px 12px rgba(12, 129, 228, 0.4),
        inset -3px -3px 6px rgba(255, 255, 255, 0.5) !important;
    display: block !important;
    visibility: visible !important;
}

@keyframes burstOut {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0.5);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1.2);
    }
}

/* Disable bubble cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .bubble-cursor,
    .bubble-trail,
    .bubble-burst {
        display: none !important;
    }

    body, a, button, input, textarea, [role="button"] {
        cursor: auto !important;
    }
}

/* =================================================================
   ACCESSIBILITY & PERFORMANCE
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
