/**
 * Style principal - Design moderne et futuriste
 */

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0e27;
    --dark-card: #13172b;
    --dark-text: #e0e6ed;
    --accent: #667eea;
    --accent-hover: #764ba2;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.8); }
}

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

.animate-fadeIn { animation: fadeIn 0.6s ease-out; }
.animate-slideIn { animation: slideIn 0.5s ease-out; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-glow { animation: glow 2s infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* Boutons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* Cards */
.card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Formulaire */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--dark-text);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Table */
.table-container {
    overflow-x: auto;
    border-radius: 15px;
    background: var(--dark-card);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(102, 126, 234, 0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    font-weight: 600;
    color: var(--accent);
}

tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
}

.badge-warning {
    background: rgba(245, 87, 108, 0.2);
    color: #f5576c;
}

.badge-info {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

/* Stats cards */
.stat-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.stat-card.animate-fadeIn {
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-value {
    transform: scale(1.05);
}

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

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-trend {
    font-size: 14px;
    margin-top: 10px;
}

.stat-trend.up {
    color: #4facfe;
}

.stat-trend.down {
    color: #f5576c;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 36px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: inline-block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(-1px -1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(1px -1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(-1px 1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(0 1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.8))
            drop-shadow(1px 0 0 rgba(255, 255, 255, 0.8));
}

.navbar-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    display: flex;
    align-items: center;
}

.navbar-nav a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

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

.navbar-nav a:hover {
    color: var(--accent);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Grid */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Section */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter:drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)) 
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.2)) 
    drop-shadow(-1px -1px 0 rgba(255, 255, 255, 0.2)) 
    drop-shadow(0px -1px 0 rgba(255, 255, 255, 0.2)) 
    drop-shadow(-1px 1px 0 rgba(255, 255, 255, 0.2)) 
    drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.2))
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Hero */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 15px 0;
    background: var(--primary-gradient);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    max-width: 900px;
    padding: 0 30px;
}

.hero-badge {
    display: inline-block;
    background: #FFD700;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 36px;
    font-weight: bold;
    display: block;
    color: white;
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-subtext {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-hero-cta {
    background: #FF6B35;
    color: white;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    color: white;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px;
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent);
    min-height: 64px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: var(--dark-card);
    border-right: 1px solid var(--border);
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-brand {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.sidebar-brand a {
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
    display: inline-block;
    filter: drop-shadow(-1px -1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(1px -1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(-1px 1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(0 1px 0 rgba(255, 255, 255, 0.8))
            drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.8))
            drop-shadow(1px 0 0 rgba(255, 255, 255, 0.8));
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin: 5px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent);
    border-left-color: var(--accent);
}

.sidebar-nav a i {
    width: 20px;
    margin-right: 12px;
}

/* Main content avec sidebar */
.main-wrapper {
    margin-left: 260px;
    min-height: 100vh;
}

.main-content {
    padding: 30px;
}

/* Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* User menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .btn-hero-cta {
        font-size: 18px;
        padding: 18px 40px;
    }

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

    .testimonial-card-new {
        padding: 20px;
    }

    .ai-tools-grid {
        grid-template-columns: 1fr;
    }

    .ai-tool-card {
        padding: 25px;
    }

    .social-proof-content {
        gap: 30px;
    }

    .social-proof-number {
        font-size: 36px;
    }

    .social-proof-label {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-wrapper {
        margin-left: 0;
    }

    .calculator-container {
        padding: 30px 20px;
    }

    .calculator-total-value {
        font-size: 42px;
    }

    .calculator-slider-value {
        font-size: 28px;
    }

    .partners-logos {
        gap: 20px;
    }

    .partner-logo-placeholder {
        padding: 15px 25px;
        font-size: 18px;
    }

    .social-proof-title {
        font-size: 20px;
    }
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(79, 172, 254, 0.1);
    border-color: #4facfe;
    color: #4facfe;
}

.alert-error {
    background: rgba(245, 87, 108, 0.1);
    border-color: #f5576c;
    color: #f5576c;
}

.alert-info {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    color: #667eea;
}

/* Slider styles */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    height: 8px;
    outline: none;
    margin: 15px 0;
    padding: 0;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border: none;
}

input[type="range"]::-webkit-slider-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: var(--accent);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.6);
    transition: all 0.3s ease;
    margin-top: -8px;
    cursor: grab;
}

input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.8);
    background: var(--accent-hover);
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border: none;
}

input[type="range"]::-moz-range-thumb {
    background: var(--accent);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.6);
    cursor: grab;
    transition: all 0.3s ease;
}

input[type="range"]::-moz-range-thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.8);
    background: var(--accent-hover);
}

input[type="range"]::-ms-track {
    width: 100%;
    height: 8px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type="range"]::-ms-fill-lower {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

input[type="range"]::-ms-fill-upper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

input[type="range"]::-ms-thumb {
    background: var(--accent);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.6);
    cursor: grab;
}

/* Calculateur styles */
.calculator-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 50px;
}

.calculator-slider-wrapper {
    margin-bottom: 40px;
    position: relative;
}

.calculator-slider-wrapper input[type="range"] {
    display: block;
    margin: 20px 0;
}

.calculator-slider-label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
}

.calculator-slider-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.calculator-revenue-box {
    background: rgba(79, 163, 245, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid rgba(79, 163, 245, 0.3);
}

.calculator-mlm-box {
    background: rgba(118, 75, 162, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(118, 75, 162, 0.3);
}

.calculator-revenue-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
}

.calculator-revenue-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.calculator-revenue-value {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.calculator-total-box {
    background: var(--primary-gradient);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 0px;
}

.calculator-total-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 5px;
}

.calculator-total-value {
    font-size: 38px;
    font-weight: 600;
    color: white;
}

.calculator-example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.calculator-example-label {
    color: rgba(255, 255, 255, 0.8);
}

.calculator-example-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.calculator-mlm-total {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

/* Social proof styles */
.social-proof-header {
    text-align: center;
    margin-bottom: 50px;
}

.social-proof-title {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.social-proof-highlight {
    color: var(--accent);
    font-weight: 700;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partner-logo-placeholder {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
}

.testimonial-card {
    text-align: center;
}

.testimonial-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent);
}

/* Nouveaux styles témoignages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-new {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: bold;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-text-new {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    min-height: 128px;
}

.testimonial-result {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    color: #666;
    font-size: 14px;
}

.testimonial-result-main {
    color: #666;
    margin-bottom: 6px;
}

.testimonial-result-secondary {
    color: #999;
    font-size: 13px;
    margin-top: 6px;
}

.testimonial-result strong {
    color: #27AE60;
    font-size: 20px;
    font-weight: bold;
}

/* Outils AI Section */
.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ai-tool-card {
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ai-tool-card:hover::before {
    transform: scaleX(1);
}

.ai-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.ai-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ai-tool-icon {
    font-size: 48px;
    line-height: 1;
}

.ai-tool-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-badge-starter {
    background: rgba(200, 200, 200, 0.2);
    color: #c8c8c8;
    border: 1px solid rgba(200, 200, 200, 0.3);
}

.ai-badge-bronze {
    background: rgba(205, 127, 50, 0.2);
    color: #cd7f32;
    border: 1px solid rgba(205, 127, 50, 0.3);
}

.ai-badge-silver {
    background: rgba(192, 192, 192, 0.2);
    color: #c0c0c0;
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.ai-badge-gold {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.ai-badge-platinium {
    background: rgba(229, 228, 226, 0.2);
    color: #e5e4e2;
    border: 1px solid rgba(229, 228, 226, 0.3);
}

.ai-badge-diamond {
    background: rgba(185, 242, 255, 0.2);
    color: #b9f2ff;
    border: 1px solid rgba(185, 242, 255, 0.3);
}

.ai-badge-credits {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    font-weight: bold;
}

.ai-tool-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent);
}

.ai-tool-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.ai-tool-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.ai-tool-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-tool-features li:last-child {
    border-bottom: none;
}

.ai-tool-usage {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-usage-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

section#widgets,
section#calculateur {
    background: var(--primary-gradient);
    padding: 80px 0;
}
section#widgets .section-title,
section#calculateur .section-title {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

section#calculateur .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Bandeau Social Proof */
.social-proof-banner {
    background: linear-gradient(90deg, #2D3561 0%, #1F2544 100%);
    color: white;
    padding: 40px 0;
}

.social-proof-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.social-proof-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.social-proof-number {
    font-size: 42px;
    font-weight: bold;
    color: #FFD700;
    display: block;
    margin-bottom: 8px;
    line-height: 1.2;
}

.social-proof-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

