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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

/* Logo Partenax - Version professionnelle */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo h2 {
    color: #1e293b;
    font-weight: 800;
    font-size: 1.9rem;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.logo-icon::before {
    content: '€';
    font-size: 20px;
    font-weight: 900;
    color: #fbbf24;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo:hover .logo-icon::after {
    opacity: 1;
}

.nav-logo:hover .logo-icon {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 3001;
    transition: left 0.3s ease, opacity 0.2s ease;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.cta-nav {
    background: #2563eb;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.cta-nav:hover {
    background: #1d4ed8;
}

/* Burger reset */
.nav-toggle { display: none; background: none; border: 0; }
.nav-toggle .bar { display: block; width: 26px; height: 3px; background: #0f172a; margin: 5px 0; transition: transform .3s, opacity .3s; }

/* Overlay */
.nav-overlay { position: fixed; inset: 70px 0 0 0; background: rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 3000; }
.nav-overlay.active { opacity: 1; visibility: visible; }

/* Mobile menu */
@media (max-width: 768px) {
    .nav-toggle { display: inline-block; position: relative; z-index: 3002; padding: 10px; cursor: pointer; }
    .nav-menu { position: fixed; left: -100%; top: 70px; width: 100vw; height: calc(100vh - 70px); background:#fff; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 2rem 1rem; gap: 1rem; transition: left .3s ease; z-index: 3001; }
    .nav-menu.active { left: 0; }
    body.nav-open { overflow: hidden; }
    .nav-link { font-size: 1.1rem; }
    .nav-menu { display: none; }
    .nav-mobile-cta { display: inline-flex; align-items: center; background: #2563eb; color: #ffffff; padding: 10px 16px; border-radius: 8px; font-weight: 700; text-decoration: none; }
    .nav-mobile-cta:hover { background: #1d4ed8; }
}
@media (min-width: 769px) {
    .nav-mobile-cta { display: none; }
}

/* Desktop keep existing layout */
@media (min-width: 769px) {
    .nav-overlay { display: none; }
}

/* Hero Section - Fond géométrique moderne */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #06b6d4 50%, #10b981 75%, #f59e0b 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero simple (composition à la LouveInvest) */
.hero-simple {
    background: #ffffff;
    color: #0f172a;
    padding: 120px 0 0;
}

.hero-simple-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-simple-title {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-simple-title .accent {
    color: #2563eb;
    text-shadow: 0 2px 0 rgba(37, 99, 235, 0.06);
}

.hero-simple-cta { 
    margin-top: 24px; 
}

.hero-simple-note {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 10px;
}

.hero-simple-right {
    display: flex;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 520px;
    height: auto;
}

/* Bandeau stats en bas de la hero */
.stats-band {
    background: #1d4ed8;
    color: #ffffff;
    margin-top: 60px;
}

.stats-band-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stats-item { text-align: center; }
.stats-number { font-size: 2rem; font-weight: 800; }
.stats-number.highlight { color: #fbbf24; }
.stats-label { opacity: 0.9; font-weight: 600; margin-top: 4px; }

@media (max-width: 1024px) {
    .hero-simple-container { grid-template-columns: 1fr; text-align: center; }
    .hero-simple-title { font-size: 2.4rem; }
    .hero-illustration { max-width: 420px; margin: 0 auto; }
    .stats-band-container { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* Section graphique large */
.chart-section { 
    background: #ffffff; 
    padding: 40px 0 40px; 
}

.chart-section-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Disposition en deux colonnes pour la section graphique */
.chart-split {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: center;
}

.chart-right {
    color: #1f2937;
    text-align: left;
}

.chart-info-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
}

.chart-right p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.chart-wide { max-width: 100%; }
.chart-tall { height: 460px; }

@media (min-width: 1025px) {
    #llc-chart .chart-container { height: 460px !important; }
}

@media (max-width: 1024px) {
    .chart-split { grid-template-columns: 1fr; }
    .chart-info-title { text-align: center; }
    .chart-right { text-align: center; }
}

/* Hero Section - Fond géométrique moderne */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #06b6d4 50%, #10b981 75%, #f59e0b 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    background-size: 200px 200px, 150px 150px;
    animation: geometricShift 15s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 20% 20%, rgba(255, 255, 255, 0.1) 0deg, transparent 60deg, rgba(255, 255, 255, 0.05) 120deg, transparent 180deg),
        conic-gradient(from 180deg at 80% 80%, rgba(255, 255, 255, 0.08) 0deg, transparent 90deg, rgba(255, 255, 255, 0.03) 180deg, transparent 270deg);
    animation: conicRotate 20s linear infinite;
}

/* Formes géométriques flottantes */
.hero-container::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: diamondFloat 8s ease-in-out infinite;
    z-index: 1;
}

.hero-container::after {
    content: '';
    position: absolute;
    top: 70%;
    right: 25%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: octagonFloat 10s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes geometricShift {
    0% { 
        transform: translateX(0px) translateY(0px);
    }
    25% { 
        transform: translateX(50px) translateY(-30px);
    }
    50% { 
        transform: translateX(0px) translateY(-60px);
    }
    75% { 
        transform: translateX(-30px) translateY(-30px);
    }
    100% { 
        transform: translateX(0px) translateY(0px);
    }
}

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

@keyframes diamondFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

@keyframes octagonFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-50px) rotate(-180deg) scale(1.3);
        opacity: 1;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-title-section {
    text-align: left;
}

.hero-subtitle-section {
    text-align: left;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title-section {
        order: 1;
        text-align: center;
    }

    .hero-visual {
        order: 2;
    }
    
    .hero-subtitle-section {
        order: 3;
        text-align: center;
    }
    
    .hero-content {
        order: 4;
    }
}

/* Sur PC, regrouper titre et sous-titre dans la colonne de gauche */
@media (min-width: 1025px) {
    .hero-title-section {
        grid-column: 1;
        grid-row: 1;
    }
    
    .hero-subtitle-section {
        grid-column: 1;
        grid-row: 2;
    }
    
    .hero-content {
        grid-column: 1;
        grid-row: 3;
    }
    
    .hero-visual {
        grid-column: 2;
        grid-row: 1 / 4;
    }
    
    /* Forcer les couleurs du graphique sur PC */
    .hero-visual .revenue-chart {
        color: #111827 !important;
    }
    
    .hero-visual .revenue-chart h3,
    .hero-visual .chart-header h3 {
        color: #111827 !important;
        font-size: 20px !important;
        font-weight: 700 !important;
    }
    
    .hero-visual .revenue-chart p,
    .hero-visual .chart-header p {
        color: #6b7280 !important;
        font-size: 15px !important;
        font-weight: 500 !important;
    }
    
    .hero-visual .revenue-chart .legend-item,
    .hero-visual .chart-legend .legend-item {
        color: #111827 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
    }
    
    .hero-visual .chart-header {
        background: #ffffff !important;
    }
    
    .hero-visual .chart-legend {
        background: #ffffff !important;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    z-index: 3;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.hero-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.card-header i {
    font-size: 1.2rem;
    color: #fbbf24;
}

.revenue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.revenue-item:last-child {
    border-bottom: none;
}

.revenue-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #fbbf24;
}

.revenue-amount {
    color: #fbbf24;
    font-weight: 600;
}

/* Sections communes */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

/* Comment ça marche */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23cbd5e1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .steps {
        grid-template-columns: 1fr;
    gap: 2rem;
    }
}

.step {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.step::before {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Avantages avec animation scroll */
.benefits {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    border: 1px solid rgba(0,0,0,0.05);
}

.benefit-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefit-card:nth-child(4) { transition-delay: 0.4s; }
.benefit-card:nth-child(5) { transition-delay: 0.5s; }
.benefit-card:nth-child(6) { transition-delay: 0.6s; }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Témoignages */
.testimonials {
    padding: 80px 0;
    background: #f9fafb;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1f2937;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* CTA Final */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Pages spécifiques */
.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-item i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.hero-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

.hero-search {
    margin-top: 2rem;
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.7);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Formulaires */
.inscription-form-section,
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.form-container {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08),
                0 0 0 1px rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

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

.form-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12),
                0 0 0 1px rgba(0,0,0,0.04);
}

.form-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 2px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.form-header p {
    color: #6b7280;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.inscription-form,
.contact-form {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    margin: 0 auto;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.form-group label.required::after {
    content: " *";
    color: #2563eb;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1),
                0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
}

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

.form-help {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.checkbox-label span.checkmark {
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkbox-label a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-disclaimer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem auto;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.form-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    color: #92400e;
    line-height: 1.6;
}

.form-disclaimer strong {
    font-weight: 700;
}

.btn-submit {
    justify-self: center;
    margin: 2rem auto 0;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3),
                0 4px 8px rgba(37, 99, 235, 0.2),
                0 0 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-submit::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 ease;
}

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

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5),
                0 6px 12px rgba(37, 99, 235, 0.3),
                0 0 30px rgba(37, 99, 235, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-submit i {
    margin-right: 8px;
    color: #ffffff;
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: 20px;
    margin: 2rem auto 0;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
    animation: successSlideIn 0.5s ease-out;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

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

.success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
    animation: successPulse 2s ease-in-out infinite;
}

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

.success-message h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #166534;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.success-message p {
    color: #166534;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.success-next {
    margin-top: 1.5rem;
    text-align: left;
}

.success-next ul {
    list-style: none;
    padding: 0;
}

.success-next li {
    padding: 0.25rem 0;
    color: #166534;
}

.success-next a {
    color: #2563eb;
    text-decoration: none;
}

.success-next a:hover {
    text-decoration: underline;
}

/* Modèle de rémunération - Nouveau design */
.revenue-model {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .revenue-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.revenue-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.revenue-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.revenue-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.revenue-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.revenue-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.revenue-content p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.revenue-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.revenue-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.revenue-item:nth-child(2) .revenue-icon::before {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.revenue-item:nth-child(3) .revenue-icon::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.revenue-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.revenue-item:nth-child(2) .revenue-amount {
    color: #10b981;
}

.revenue-item:nth-child(3) .revenue-amount {
    color: #f59e0b;
}

.revenue-features {
    list-style: none !important;
    padding: 0;
    text-align: left;
    margin-top: auto;
}

.revenue-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
    list-style: none !important;
}

.revenue-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Exemple de calcul */
.example-calculation {
    padding: 80px 0;
    background: #f9fafb;
}

.example-scenario {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.scenario-header {
    text-align: center;
    margin-bottom: 2rem;
}

.scenario-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.scenario-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

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

.calculation-steps .step {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.calculation-steps .step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.calculation-steps h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.calculation-steps p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.calculation-steps small {
    color: #6b7280;
    font-size: 0.9rem;
}

.total-revenue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 12px;
    padding: 2rem;
}

.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.total-item:last-child {
    border-bottom: none;
}

.total-item.highlight {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #fbbf24;
}

/* Éligibilité */
.eligibility {
    padding: 80px 0;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.eligibility-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-5px);
}

.eligibility-card .card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.eligibility-card .card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.eligibility-card .card-icon i {
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.eligibility-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.eligibility-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Processus de paiement */
.payment-process {
    padding: 80px 0;
    background: #f9fafb;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step .step-icon i {
    font-size: 2rem;
    color: white;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Disclaimer légal */
.legal-disclaimer {
    padding: 80px 0;
}

.disclaimer-box {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
}

.disclaimer-box h3 {
    color: #92400e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-box h3 i {
    color: #f59e0b;
}

.disclaimer-content p {
    color: #92400e;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Processus visuel */
.visual-process {
    padding: 80px 0;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .process-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

.flow-step {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.step-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #fbbf24;
    color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.step-details li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.step-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.flow-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #2563eb;
}

/* Étapes détaillées */
.detailed-steps {
    padding: 80px 0;
    background: #f9fafb;
}

.steps-detailed {
    display: grid;
    gap: 3rem;
}

.detailed-step {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.step-body p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.feature span {
    color: #374151;
    font-weight: 500;
}

.step-tip {
    background: #eff6ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.step-tip i {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.step-tip p {
    color: #1e40af;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ */
.quick-faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    user-select: none;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    pointer-events: none;
    flex: 1;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
    pointer-events: none;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* FAQ Sections */
.faq-sections {
    padding: 80px 0;
}

.faq-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-nav-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
}

.faq-nav-btn:hover,
.faq-nav-btn.active {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
}

.faq-section {
    display: none;
}

.faq-section.active {
    display: block;
}

.faq-items {
    display: grid;
    gap: 1rem;
}

/* Contact */
.contact-methods {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-info {
    padding: 80px 0;
    background: #f9fafb;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.info-card p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.emergency-contact {
    padding: 80px 0;
}

.emergency-box {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.emergency-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.emergency-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.support-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #ef4444;
}

/* Style spécifique pour btn-secondary dans support-box (fond blanc) */
.support-box .btn-secondary {
    background: #2563eb;
    color: white;
    border: 2px solid #2563eb;
}

.support-box .btn-secondary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: white;
}

.support-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.support-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.emergency-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Support contact */
.contact-support {
    padding: 80px 0;
    background: #f9fafb;
}

.support-box {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.support-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.support-box p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.support-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.support-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.support-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Avantages rapides */
.quick-benefits {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.quick-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.quick-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.quick-benefits .benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08),
                0 0 0 1px rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-benefits .benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.quick-benefits .benefit-item:hover::before {
    transform: scaleX(1);
}

.quick-benefits .benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15),
                0 0 0 1px rgba(37, 99, 235, 0.1);
}

.quick-benefits .benefit-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
    flex-shrink: 0;
}

.quick-benefits .benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.quick-benefits .benefit-icon i {
    font-size: 2.2rem;
    color: white;
}

.quick-benefits .benefit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.quick-benefits .benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #1f2937;
    letter-spacing: -0.2px;
    text-align: center;
}

.quick-benefits .benefit-item p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

/* Contenu légal */
.legal-content {
    padding: 80px 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 1rem;
}

.legal-text {
    color: #6b7280;
    line-height: 1.7;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #2563eb;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.legal-section.disclaimer {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
}

.legal-section.disclaimer h2 {
    color: #92400e;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section.disclaimer h2 i {
    color: #f59e0b;
}

.legal-section.disclaimer .legal-text {
    color: #92400e;
}

/* Revenue Chart - Responsive complet */
.revenue-chart {
    background: white !important;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    color: #111827 !important;
}

.revenue-chart * {
    color: inherit !important;
}

/* Classe spécifique pour forcer l'affichage */
.chart-fixed {
    background: white !important;
    color: #111827 !important;
}

.chart-fixed h3 {
    color: #111827 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.chart-fixed p {
    color: #6b7280 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.chart-fixed .legend-item {
    color: #111827 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.chart-fixed .chart-header {
    background: white !important;
}

.chart-fixed .chart-legend {
    background: white !important;
}

/* Forcer la largeur étendue du graphique quand chart-wide est présent */
.revenue-chart.chart-wide {
    max-width: 100% !important;
    width: 100% !important;
}

#llc-chart .chart-left .revenue-chart {
    width: 100%;
}

/* Forcer les couleurs des carrés de légende */
.chart-fixed .legend-color:nth-child(1) {
    background: #3b82f6 !important;
}

.chart-fixed .legend-color:nth-child(2) {
    background: #10b981 !important;
}

.legend-color[style*="background: #3b82f6"] {
    background: #3b82f6 !important;
}

.legend-color[style*="background: #10b981"] {
    background: #10b981 !important;
}

/* Forcer les couleurs spécifiquement */
.hero .revenue-chart h3,
.hero .chart-header h3 {
    color: #111827 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.hero .revenue-chart p,
.hero .chart-header p {
    color: #6b7280 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.hero .revenue-chart .legend-item,
.hero .chart-legend .legend-item {
    color: #111827 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.chart-container {
    padding: 15px 12px;
    position: relative;
    height: 150px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.chart-container canvas {
    max-width: 100% !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .revenue-chart {
        max-width: calc(100vw - 30px);
        margin: 0 auto;
        border-radius: 12px;
    }
    
    #llc-chart .chart-container { height: 220px; padding: 12px 14px; }
    
    .chart-header {
        padding: 15px 12px 10px;
    }
    
    .chart-header h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .chart-header p {
        font-size: 11px;
    }
    
    .chart-legend {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        padding: 8px 12px 12px;
    }
    
    .legend-item {
        font-size: 11px;
    }
    
    .legend-color {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .revenue-chart {
        max-width: calc(100vw - 20px);
        margin: 0 auto;
    }
    
    #llc-chart .chart-container { height: 200px; padding: 10px 12px; }
    
    .chart-header {
        padding: 12px 10px 8px;
    }
    
    .chart-header h3 {
        font-size: 13px;
    }
    
    .chart-header p {
        font-size: 10px;
    }
    
    .chart-legend {
        padding: 6px 10px 10px;
    }
    
.chart-header {
    padding: 15px 12px 10px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff !important;
    text-align: center;
}

.chart-header h3 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.3 !important;
}

.chart-header p {
    color: #6b7280 !important;
    font-size: 11px !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

@media (max-width: 768px) {
    .chart-header {
        padding: 15px 12px 10px;
    }
    
    .chart-header h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .chart-header p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .chart-header {
        padding: 12px 10px 8px;
    }
    
    .chart-header h3 {
        font-size: 13px;
    }
    
    .chart-header p {
        font-size: 10px;
    }
}

.chart-legend {
    padding: 8px 12px 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
    border-top: 1px solid #f1f5f9;
    background: #ffffff !important;
    text-align: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.legend-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 11px !important;
    color: #111827 !important;
    font-weight: 600 !important;
}

.legend-color {
    width: 8px !important;
    height: 8px !important;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: inline-block !important;
    position: relative;
    z-index: 3;
}

/* Couleurs forcées pour PC */
.legend-color.blue { background: #3b82f6 !important; }
.legend-color.green { background: #10b981 !important; }

@media (min-width: 1025px) {
    .legend-item { font-size: 14px !important; }
    .legend-color { width: 14px !important; height: 14px !important; }
}

.chart-cta { margin-top: 1rem; text-align: right; }
@media (max-width: 1024px) { .chart-cta { text-align: center; } }

/* Texte stylisé à droite du graphique */
.chart-lead {
    font-size: 1.05rem;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.underline { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

.chart-points {
    list-style: none;
    padding: 0;
    display: block;
}

.chart-points li { color: #475569; line-height: 1.8; display: block; margin-bottom: 0.75rem; }
.chart-points .dot { width: 10px; height: 10px; border-radius: 50%; background: #fbbf24; margin-top: 7px; flex-shrink: 0; display: none; }

/* Renforcer la spécificité pour desktop (certains styles étaient écrasés) */
.chart-right .chart-lead { font-size: 1.05rem; color: #0f172a; font-weight: 600; margin-bottom: 1rem; }
.chart-right .chart-points { list-style: none; padding: 0; display: block; }
.chart-right .chart-points li { color: #475569; line-height: 1.8; display: block; margin-bottom: 0.75rem; }
.chart-right .chart-points .dot { width: 10px; height: 10px; border-radius: 50%; background: #fbbf24; margin-top: 7px; flex-shrink: 0; display: none; }
.chart-right .underline { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* Styles pour PC (plus grands) */
@media (min-width: 1025px) {
    .chart-container {
        padding: 25px 30px !important;
        height: 250px !important;
    }
    
    .chart-header {
        padding: 25px 30px 20px !important;
    }
    
    .chart-header h3 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
    }
    
    .chart-header p {
        font-size: 14px !important;
    }
    
    .chart-legend {
        padding: 20px 30px 25px !important;
        gap: 15px !important;
        flex-direction: row !important;
    }
    
    .legend-item {
        font-size: 16px !important;
        gap: 12px !important;
    }
    
    .legend-color {
        width: 16px !important;
        height: 16px !important;
    }
}
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-cta {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100vw;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease, opacity 0.2s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        opacity: 0;
        visibility: hidden;
        overflow: auto;
    }
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-cta {
        text-align: center;
    }

    .hero-guarantee {
        font-size: 0.8rem;
    }

    .revenue-chart {
        max-width: 100%;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-container {
        padding: 0 10px;
    }
    }

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

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

    .cta-content h2 {
        font-size: 2rem;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .page-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .benefit-item {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .inscription-form-section {
        padding: 60px 0;
    }

    .inscription-form-section .container {
        padding: 0;
        max-width: 100%;
    }

    .form-container {
        padding: 2rem 1.5rem;
        border-radius: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .inscription-form,
    .contact-form {
        max-width: 100%;
        margin: 0;
    }

    .form-header {
        margin-bottom: 2.5rem;
        max-width: 90%;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .form-header p {
        font-size: 1rem;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 1rem;
        max-width: 90%;
        margin: 0 auto 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 16px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-disclaimer {
        padding: 1rem;
        margin: 1.25rem auto;
        max-width: 90%;
    }

    .form-disclaimer p {
        font-size: 0.9rem;
    }

    .checkbox-group {
        max-width: 90%;
    }

    .checkbox-label {
        white-space: normal;
        flex-wrap: wrap;
        font-size: 0.85rem;
    }

    .btn-submit {
        width: 100%;
        max-width: 90%;
        padding: 16px 32px;
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .success-message {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .quick-benefits {
        padding: 60px 0;
    }

    .quick-benefits h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .quick-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .quick-benefits .benefit-item {
        padding: 2rem 1.5rem;
    }

    .quick-benefits .benefit-icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
        min-height: 75px;
        aspect-ratio: 1 / 1;
    }

    .quick-benefits .benefit-icon i {
        font-size: 1.8rem;
    }

    .revenue-cards {
        grid-template-columns: 1fr;
    }

    .calculation-steps {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
    }

    .step-features {
        grid-template-columns: 1fr;
    }

    .faq-nav {
        flex-direction: column;
        align-items: center;
    }

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

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

    .support-actions {
        flex-direction: column;
        align-items: center;
    }

    .support-info {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-document {
        padding: 2rem;
    }
    
    .revenue-chart {
        max-width: 100%;
    }
    
    .chart-container {
        height: 180px;
        padding: 16px 20px;
    }
    
    .chart-legend {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* Partners / Logos scroller */
.partners { padding: 0; margin: 0; background: transparent; }
.partners .container { padding-top: 0; padding-bottom: 0; }
.logo-scroller { margin: 0; padding: 0; line-height: 0; }
.scroller-track { padding: 0; }
.logo-card { margin: 0; }
.logo-card img { max-height: 80px; max-width: 200px; }
/* ciblage Airwallex (au besoin) */
.logo-card img[alt*="Airwallex" i] { max-height: 90px; max-width: 220px; }

.logo-scroller {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.scroller-track {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: scrollLeft 40s linear infinite;
}

.logo-card {
    flex: 0 0 220px;
    height: 110px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.08);
    border: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: 1px;
}

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

@media (max-width: 768px) {
    .logo-card { flex-basis: 180px; height: 90px; }
    .scroller-track { gap: 14px; animation-duration: 36s; }
}

.logo-card img {
    max-height: 60px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(0.9) contrast(1.05);
}

.hero-simple .stats-band { margin-top: 0; }
.partners { padding: 0; margin: 0; }
.partners .container { padding: 0; }
.logo-scroller { margin: 0; padding: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.98) 0%, rgba(248,250,252,1) 60%, rgba(241,245,249,1) 100%); }

.nav-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 50px; width: auto; display: block; }
@media (min-width: 1025px) { .nav-logo-img { height: 56px; } }

/* Fix visibilité cartes bénéfices si observer ne déclenche pas */
.benefit-card { opacity: 1 !important; transform: none !important; }

.affiliate-promo { padding: 80px 0; background: #f9fafb; }
.promo-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.promo-title { font-size: 2rem; font-weight: 800; color: #1f2937; margin-bottom: .75rem; }
.promo-subtitle { color: #475569; font-size: 1.1rem; margin-bottom: 1rem; }
.promo-points { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
.promo-points li { position: relative; padding-left: 1.5rem; color: #374151; margin: .4rem 0; }
.promo-points li::before { content: "✓"; position: absolute; left: 0; color: #10b981; font-weight: 700; }
.promo-illustration { width: 100%; height: auto; border-radius: 0; box-shadow: none; background: transparent; display: block; }
.promo-right { background: transparent; }
@media (max-width: 1024px) { .promo-grid { grid-template-columns: 1fr; gap: 2rem; } .promo-right { order: -1; } }

.promo-actions { display: flex; align-items: center; gap: 12px; }
.promo-badge { display: inline-flex; align-items: center; gap: 6px; background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; padding: 6px 10px; border-radius: 999px; font-weight: 700; font-size: .9rem; }
.promo-badge::before { content: "★"; color: #1e40af; font-size: .9rem; }

@media (max-width: 768px) {
    /* Image hero un peu plus petite sur mobile */
    .hero-illustration { max-width: 380px; }

    /* Scroller 60% plus rapide (≈ 22s au lieu de 36s) */
    .scroller-track { animation-duration: 22s; }
}

/* Espacement réduit entre testimonials et affiliate */
.testimonials { padding-bottom: 20px; }
.affiliate-promo { padding-top: 20px; }

@media (max-width: 768px) {
    .promo-grid { grid-template-columns: 1fr; gap: 2rem; }
    .promo-right { order: -1; text-align: center; }
    .promo-illustration { width: 45%; max-width: 300px; margin: 0 auto; }
}
