:root {
    /* 📚 Palette PasseLivre - Moderne et chaleureuse */
    --primary: #5D7F96;           /* Bleu Acier - Boutons principaux, en-têtes */
    --primary-dark: #4a6578;      /* Bleu Acier foncé */
    --primary-light: #7a9bb4;     /* Bleu Acier clair */
    --primary-ultra-light: #e8f0f5; /* Bleu très clair */
    
    --secondary: #9BC4B3;         /* Vert Sauge - Éléments secondaires, badges */
    --secondary-dark: #7ba99a;    /* Vert Sauge foncé */
    --secondary-light: #b5d6c9;   /* Vert Sauge clair */
    
    --accent: #5D7F96;            /* Bleu Acier */
    --accent-vibrant: #9BC4B3;    /* Vert Sauge */
    
    --success: #9BC4B3;           /* Vert Sauge */
    --warning: #d4a373;           /* Caramel (conservé pour warnings) */
    --danger: #c97d60;            /* Corail (conservé pour erreurs) */
    
    /* Dark Mode Colors */
    --dark: #2C3E50;              /* Bleu Nuit - Texte principal */
    --dark-soft: #34495e;         /* Bleu Nuit moyen */
    --dark-lighter: #4a5f7a;      /* Bleu Nuit clair */
    
    /* Neutrals */
    --surface: #ffffff;
    --background: #F9F7F2;        /* Crème Papier - Fond principal */
    --background-dark: #f0ede4;   /* Crème plus foncé */
    --text-main: #2C3E50;         /* Bleu Nuit - Texte principal */
    --text-secondary: #5D7F96;    /* Bleu Acier - Texte secondaire */
    --text-muted: #7a8fa5;        /* Gris bleuté */
    --border: #d6d0c4;            /* Beige bordure */
    --border-light: #e8e3d8;      /* Crème bordure */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #5D7F96 0%, #7a9bb4 100%);
    --gradient-accent: linear-gradient(135deg, #9BC4B3 0%, #b5d6c9 100%);
    --gradient-dark: linear-gradient(135deg, #34495e 0%, #2C3E50 100%);
    --gradient-glow: linear-gradient(135deg, rgba(93, 127, 150, 0.1) 0%, rgba(155, 196, 179, 0.1) 100%);
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows - Douces et élégantes */
    --shadow-xs: 0 1px 2px 0 rgba(44, 62, 80, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(44, 62, 80, 0.1), 0 1px 2px -1px rgba(44, 62, 80, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(44, 62, 80, 0.1), 0 2px 4px -2px rgba(44, 62, 80, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(44, 62, 80, 0.1), 0 4px 6px -4px rgba(44, 62, 80, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(44, 62, 80, 0.12), 0 8px 10px -6px rgba(44, 62, 80, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(44, 62, 80, 0.2);
    --shadow-glow: 0 0 40px rgba(93, 127, 150, 0.2);
    --shadow-glow-lg: 0 0 60px rgba(93, 127, 150, 0.25), 0 0 100px rgba(155, 196, 179, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Alias pour compatibilité */
    --color-primary: var(--primary);
    --color-primary-light: var(--primary-light);
    --color-secondary: var(--secondary);
    --text-primary: var(--text-main);
    --background-secondary: var(--background-dark);
    --border-color: var(--border);
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Utilitaires */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Force toutes les sections à ne pas dépasser */
section {
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-smooth);
    cursor: pointer;
    font-size: 1rem;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 115, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 95, 0.4), var(--shadow-glow);
}

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

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

/* Header & Nav - Glassmorphism Effect */
.main-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu-btn, .mobile-menu {
    display: none;
}

.logo-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    line-height: 1;
}

.logo-link {
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.powered-by {
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.powered-by:hover {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-link:hover {
    color: var(--primary);
}

/* Hero Section - Effet Moderne avec Animation */
.hero-section {
    padding: 160px 0 100px;
    text-align: center;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139, 92, 246, 0.1), transparent),
        var(--background);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        linear-gradient(to right, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
    animation: shimmer 8s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gradient-glow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: var(--radius-sm);
    filter: blur(8px);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Features Grid */
.features-section {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 36px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.4);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-desc {
    color: var(--text-muted);
}

/* Footer - Gradient Moderne */
.main-footer {
    background: var(--gradient-dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-brand h3 {
    margin: 0 0 16px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 300px;
}

.footer-col h4 {
    margin: 0 0 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* FORCE GLOBAL WIDTH CONSTRAINTS */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    /* Global & Layout */
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100vw;
    }

    .hero-section {
        padding: 120px 0 60px;
        overflow-x: hidden;
    }

    /* Dashboard Mockup Mobile Fix */
    .hero-section > .container > div:last-child {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-section > .container > div:last-child > div {
        height: 300px !important;
        border-radius: 12px !important;
        margin: 0 !important;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Typography */
    .hero-title { 
        font-size: 2.25rem; 
        line-height: 1.2;
    }

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

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

    /* Header & Nav */
    .desktop-nav {
        display: none;
    }

    /* Mobile Menu Button Fix */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1100; /* Au-dessus de tout */
        margin-left: auto; /* Pousse le bouton à droite */
        margin-right: -10px; /* Compense le padding du bouton */
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--dark);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    /* Mobile Menu Overlay Fix - Radical */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        padding: 100px 24px 40px; /* Espace en haut pour ne pas cacher sous le header */
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 1050; /* Juste sous le bouton menu (1100) */
        border-top: none;
        overflow-y: auto;
        display: block; /* Force display block */
    }

    .mobile-menu.active {
        transform: translateX(0);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    /* Bouton menu toujours visible et au-dessus */
    .mobile-menu-btn {
        position: relative;
        z-index: 1100; /* Au-dessus du menu ouvert */
    }
    
    /* Force Menu Visibility when Active */
    body.menu-open {
        overflow: hidden;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--dark);
        text-decoration: none;
        padding: 8px 0;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Grids -> Stack */
    .features-grid,
    .stats-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Pricing Grid - Force 1 column */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    /* Problem Grid Specific Fix */
    .problem-grid {
        display: flex !important;
        flex-direction: column;
        gap: 40px;
    }

    /* Hero Actions */
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* Stats */
    .stats-grid {
        gap: 40px;
    }

    /* Problem Section */
    .problem-grid {
        gap: 40px;
    }
    
    .problem-content {
        text-align: left;
    }

    /* Pricing */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .pricing-card.featured {
        transform: none !important;
        scale: 1 !important;
    }

    .pricing-price {
        font-size: 2.5rem !important;
    }

    .pricing-features {
        font-size: 0.9rem;
    }

    /* Auth Pages */
    section[style*="min-height"] {
        padding: 20px 16px !important;
        align-items: flex-start !important;
        padding-top: 100px !important;
    }
    
    section[style*="min-height"] > .container {
        width: 100%;
    }
    
    section[style*="min-height"] .container > div {
        max-width: 100% !important;
    }
    
    section[style*="min-height"] .container > div > div {
        padding: 24px !important;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}

/* Stats Section - Premium Gradient */
.stats-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 500;
}

/* Problem/Solution Section */
.problem-section {
    padding: 100px 0;
    background: var(--dark);
    color: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.problem-list li:before {
    content: "✗";
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

.solution-list li:before {
    content: "✓";
    color: var(--primary);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    padding-top: 20px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card.featured {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.pricing-card.featured::before {
    opacity: 0;
}

.pricing-card:not(.featured):hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.pricing-card:not(.featured):hover::before {
    opacity: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-lg);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
    z-index: 2;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
}

.pricing-price span {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card.featured .pricing-price span {
    color: rgba(255,255,255,0.7);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-main);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    margin: 4px 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* CTA Sections Premium */
.cta-primary {
    background: var(--gradient-primary);
    padding: 120px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

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

.cta-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* Améliorations du header - Logo géré par composant */
