/* ════════════════════════════════════════════════════════════════
   BUSINESS PLAN - STYLE PREMIUM BLEU/CYAN/VIOLET COMPLET
   Version 4.0 Ultra Dynamique - CSS Intégral
   ════════════════════════════════════════════════════════════════ */

:root {
    --bp-primary: #3b82f6;
    --bp-secondary: #8b5cf6;
    --bp-cyan: #06b6d4;
    --bp-accent: #a78bfa;
    --bp-success: #10b981;
    --bp-warning: #f59e0b;
    --bp-danger: #ef4444;
    --bp-gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --bp-gradient-hero: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --bp-gradient-shine: linear-gradient(135deg, #60a5fa 0%, #818cf8 25%, #a78bfa 50%, #c084fc 75%, #e879f9 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Global overflow fix */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* ════════════════════════════════════════════════════════════════
   ✨ BUSINESS PLAN HEADER - STYLE HERO PREMIUM
   ════════════════════════════════════════════════════════════════ */

.bp-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 25%, 
        #334155 50%, 
        #1e293b 75%, 
        #0f172a 100%);
    background-size: 400% 400%;
    animation: heroGradientFlow 20s ease infinite;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 30px;
}

@keyframes heroGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Grid Background */
.bp-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 10s ease-in-out infinite;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Gradient Orb 1 */
.bp-header::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -15%;
    left: -5%;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.6) 0%, 
        rgba(99, 102, 241, 0.4) 35%, 
        transparent 70%);
    filter: blur(100px);
    opacity: 0.6;
    animation: floatOrb1 25s ease-in-out infinite;
    mix-blend-mode: screen;
    z-index: 0;
}

@keyframes floatOrb1 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-20px, -80px) scale(0.95);
        opacity: 0.7;
    }
    75% { 
        transform: translate(40px, -30px) scale(1.05);
        opacity: 0.65;
    }
}

/* Gradient Orb 2 */
.bp-header-content::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -20%;
    right: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.6) 0%, 
        rgba(168, 85, 247, 0.4) 35%, 
        transparent 70%);
    filter: blur(100px);
    opacity: 0.6;
    animation: floatOrb2 30s ease-in-out infinite -5s;
    mix-blend-mode: screen;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatOrb2 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(-30px, 50px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(20px, 80px) scale(0.95);
        opacity: 0.7;
    }
    75% { 
        transform: translate(-40px, 30px) scale(1.05);
        opacity: 0.65;
    }
}

.bp-header-content {
    position: relative;
    z-index: 1;
}

/* Logo Section avec Logo SVG Premium */
.bp-logo-section {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.bp-logo {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.bp-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.bp-logo svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.5));
}

.bp-title-group {
    flex: 1;
}

.bp-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 12px 0;
    letter-spacing: -0.03em;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(59, 130, 246, 0.3);
    animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bp-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 10px 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.bp-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 400;
}

/* Meta Information avec style glassmorphism */
.bp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.meta-item i {
    font-size: 1.1rem;
}

/* ════════════════════════════════════════════════════════════════
   📊 NAVIGATION TABS - STYLE PREMIUM
   ════════════════════════════════════════════════════════════════ */

.bp-nav {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    z-index: 100;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .bp-nav {
    background: #1e293b;
    border-color: rgba(139, 92, 246, 0.2);
}

.nav-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.3) transparent;
}

.nav-tabs::-webkit-scrollbar {
    height: 6px;
}

.nav-tabs::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 3px;
}

.nav-tabs::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
}

.nav-tab {
    flex-shrink: 0;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.nav-tab:hover::before {
    left: 100%;
}

.nav-tab:hover {
    background: rgba(59, 130, 246, 0.05);
    color: var(--bp-primary);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.nav-tab.active {
    background: var(--bp-gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.nav-tab i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* ════════════════════════════════════════════════════════════════
   📄 SECTIONS & TYPOGRAPHY
   ════════════════════════════════════════════════════════════════ */

.bp-content {
    min-height: 600px;
}

.bp-section {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.bp-section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--bp-gradient-primary);
    border-radius: 2px;
}

.section-title i {
    font-size: 2.2rem;
    background: var(--bp-gradient-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 8s linear infinite;
}

@keyframes gradientShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 50px 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subsection-title i {
    color: var(--bp-primary);
    font-size: 1.6rem;
}

/* ════════════════════════════════════════════════════════════════
   💎 CARDS & COMPONENTS - STYLE PREMIUM
   ════════════════════════════════════════════════════════════════ */

/* Highlight Cards (Executive Summary, etc.) */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.highlight-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

body.dark-mode .highlight-card {
    background: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bp-gradient-hero);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.highlight-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.highlight-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.highlight-content {
    flex: 1;
}

.highlight-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-value {
    font-size: 2rem;
    font-weight: 900;
    background: var(--bp-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.highlight-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-left: 4px solid var(--bp-primary);
    border-radius: 16px;
    padding: 28px;
    margin: 24px 0;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.08);
}

body.dark-mode .info-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.info-card h3 i {
    color: var(--bp-primary);
    margin-right: 10px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════════
   📊 CHARTS & TABLES - STYLE PREMIUM
   ════════════════════════════════════════════════════════════════ */

.chart-container {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .chart-container {
    background: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.chart-container canvas {
    max-height: 450px;
}

/* ════════════════════════════════════════════════════════════════
   📋 TABLES PREMIUM - STYLE ÉDITABLE ET RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

.responsive-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.financial-table,
.data-table,
.competitive-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.9375rem;
}

body.dark-mode .financial-table,
body.dark-mode .data-table,
body.dark-mode .competitive-table {
    background: #1e293b;
}

.financial-table thead,
.data-table thead,
.competitive-table thead {
    background: var(--bp-gradient-primary);
    color: white;
}

.financial-table thead th,
.data-table thead th,
.competitive-table thead th {
    padding: 18px 16px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    position: relative;
}

.financial-table thead th.sticky-col {
    position: sticky;
    left: 0;
    z-index: 3;
    background: var(--bp-gradient-primary);
}

.financial-table tbody tr,
.data-table tbody tr,
.competitive-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.financial-table tbody tr:hover,
.data-table tbody tr:hover,
.competitive-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

.financial-table tbody td,
.data-table tbody td,
.competitive-table tbody td {
    padding: 16px;
    color: var(--text-light);
}

.financial-table .row-header,
.financial-table .sticky-col,
.data-table .row-header,
.competitive-table .feature-name {
    font-weight: 700;
    color: var(--text-primary);
    position: sticky;
    left: 0;
    z-index: 2;
    background: white;
}

body.dark-mode .financial-table .sticky-col,
body.dark-mode .financial-table .row-header {
    background: #1e293b;
}

.financial-table tr.section-header {
    background: rgba(59, 130, 246, 0.08);
}

.financial-table tr.section-header td {
    font-weight: 800;
    color: var(--bp-primary);
    font-size: 1rem;
    padding: 14px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.financial-table tr.section-header td i {
    margin-right: 10px;
}

.financial-table tr.highlight {
    background: rgba(59, 130, 246, 0.08);
}

.financial-table tr.highlight.success {
    background: rgba(16, 185, 129, 0.08);
}

.financial-table tr.total-row {
    background: rgba(59, 130, 246, 0.12);
    border-top: 3px solid var(--bp-primary);
    border-bottom: 3px solid var(--bp-primary);
}

.financial-table tr.highlight-row {
    background: rgba(16, 185, 129, 0.08);
}

.financial-table td.highlight,
.financial-table td.calculated.highlight {
    background: rgba(16, 185, 129, 0.12);
    font-weight: 800;
    color: var(--bp-success);
}

/* ✅ CELLULES ÉDITABLES - STYLE PREMIUM */
.financial-table td.editable {
    cursor: text;
    position: relative;
    transition: var(--transition-smooth);
    background: rgba(59, 130, 246, 0.03);
}

.financial-table td.editable:hover {
    background: rgba(59, 130, 246, 0.08);
    box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.financial-table td.editable:focus {
    outline: none;
    background: rgba(59, 130, 246, 0.12);
    box-shadow: inset 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.financial-table td.editable.editing {
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 
        inset 0 0 0 3px rgba(59, 130, 246, 0.6),
        0 4px 12px rgba(59, 130, 246, 0.2);
    font-weight: 800;
}

.financial-table td.editable::before {
    content: '✏';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.financial-table td.editable:hover::before {
    opacity: 0.5;
}

.financial-table td.calculated {
    background: rgba(16, 185, 129, 0.03);
    font-weight: 600;
    color: var(--text-primary);
}

/* ✅ TABLE ACTIONS - BOUTONS D'EXPORT */
.table-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.bp-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bp-btn-primary {
    background: var(--bp-gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.bp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.bp-btn-secondary {
    background: transparent;
    color: var(--bp-primary);
    border: 2px solid var(--bp-primary);
}

.bp-btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.bp-btn-success {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.bp-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.bp-btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.bp-btn i {
    font-size: 1.125rem;
}

/* Compact Table (pour les sections détaillées) */
.compact-table tbody td {
    padding: 12px 14px;
    font-size: 0.875rem;
}

/* Tooltip Term (pour les explications) */
.tooltip-term {
    display: inline-block;
    border-bottom: 2px dotted var(--bp-primary);
    cursor: help;
    color: var(--bp-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.tooltip-term:hover {
    color: var(--bp-secondary);
    border-bottom-color: var(--bp-secondary);
}

/* ════════════════════════════════════════════════════════════════
   💼 VALUE PROPOSITIONS & ADVANTAGES
   ════════════════════════════════════════════════════════════════ */

.value-props {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.value-prop-item {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-smooth);
}

body.dark-mode .value-prop-item {
    background: #1e293b;
}

.value-prop-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.vp-number {
    width: 55px;
    height: 55px;
    background: var(--bp-gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.vp-content {
    flex: 1;
}

.vp-content h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 14px 0;
}

.vp-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.advantage-card {
    background: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .advantage-card {
    background: #1e293b;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.advantage-icon {
    font-size: 3.25rem;
    background: var(--bp-gradient-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 8s linear infinite;
    margin-bottom: 18px;
}

.advantage-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 14px 0;
}

.advantage-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   💰 MARKET ANALYSIS - SEGMENTS & TRENDS
   ════════════════════════════════════════════════════════════════ */

.market-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.market-metric-card {
    background: white;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .market-metric-card {
    background: #1e293b;
}

.market-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.market-metric-card.tam::before {
    background: var(--bp-gradient-primary);
}

.market-metric-card.sam::before {
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

.market-metric-card.som::before {
    background: linear-gradient(90deg, #43e97b, #38f9d7);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.metric-header i {
    font-size: 1.625rem;
    color: var(--bp-primary);
}

.metric-header span {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 2.75rem;
    font-weight: 900;
    background: var(--bp-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.5;
}

.metric-growth {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--bp-success);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
}

.segments-grid,
.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.segment-card,
.trend-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .segment-card,
body.dark-mode .trend-card {
    background: #1e293b;
}

.segment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border-color);
}

.segment-header i {
    font-size: 2.125rem;
    color: var(--bp-primary);
}

.segment-header h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.segment-stats {
    margin-bottom: 20px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 600;
}

.stat-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.segment-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

.trend-icon {
    width: 65px;
    height: 65px;
    background: var(--bp-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.trend-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 14px 0;
}

.trend-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.trend-stat {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--bp-primary);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════
   💳 PRICING TIERS - STYLE PREMIUM
   ════════════════════════════════════════════════════════════════ */

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 3px solid transparent;
}

body.dark-mode .pricing-card {
    background: #1e293b;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 56px rgba(59, 130, 246, 0.15);
}

.pricing-card.featured {
    border-color: var(--bp-primary);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: -40px;
    background: var(--bp-gradient-primary);
    color: white;
    padding: 8px 60px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.pricing-badge.premium {
    background: linear-gradient(90deg, #10b981, #06b6d4);
}

.pricing-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    padding: 40px 32px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.pricing-icon {
    width: 75px;
    height: 75px;
    background: var(--bp-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.125rem;
    color: white;
    margin: 0 auto 18px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.pricing-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.pricing-price {
    margin-bottom: 14px;
}

.pricing-price .currency {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-light);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--bp-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .period {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 600;
}

.pricing-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.pricing-features {
    padding: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 0.9375rem;
}

.feature-item i {
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item.disabled {
    opacity: 0.35;
}

.feature-item i.fa-check {
    color: var(--bp-success);
}

.feature-item i.fa-times {
    color: var(--text-light);
}

.pricing-target {
    background: rgba(59, 130, 246, 0.05);
    margin: 0 32px 32px 32px;
    padding: 18px;
    border-radius: 14px;
    font-size: 0.9375rem;
    color: var(--text-light);
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

/* ════════════════════════════════════════════════════════════════
   💵 REVENUE STREAMS & CHANNELS
   ════════════════════════════════════════════════════════════════ */

.revenue-streams {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.revenue-stream-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 6px solid var(--bp-primary);
    transition: var(--transition-smooth);
}

body.dark-mode .revenue-stream-card {
    background: #1e293b;
}

.revenue-stream-card.secondary {
    border-left-color: #f093fb;
}

.revenue-stream-card.tertiary {
    border-left-color: #06b6d4;
}

.revenue-stream-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
}

.stream-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.stream-header i {
    font-size: 1.625rem;
    color: var(--bp-primary);
    margin-right: 12px;
}

.stream-header h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
}

.stream-contribution {
    background: rgba(59, 130, 246, 0.15);
    color: var(--bp-primary);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 700;
}

.stream-desc {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.stream-breakdown {
    margin: 18px 0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.breakdown-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 600;
}

.breakdown-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* Acquisition Channels */
.acquisition-channels,
.marketing-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.channel-card,
.channel-detail-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .channel-card,
body.dark-mode .channel-detail-card {
    background: #1e293b;
}

.channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border-color);
}

.channel-header i {
    font-size: 1.875rem;
    color: var(--bp-primary);
    margin-right: 12px;
}

.channel-header h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
}

.channel-cost {
    background: rgba(16, 185, 129, 0.1);
    color: var(--bp-success);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
}

.priority-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 24px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
}

.priority-badge.high {
    background: rgba(16, 185, 129, 0.15);
    color: var(--bp-success);
}

.priority-badge.medium {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.channel-tactics {
    margin-bottom: 18px;
}

.tactic-item {
    font-size: 0.9375rem;
    color: var(--text-light);
    padding: 10px 0;
    line-height: 1.7;
}

.channel-strategy {
    margin-top: 24px;
    margin-bottom: 18px;
}

.channel-strategy h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.channel-strategy ul {
    padding-left: 28px;
}

.channel-strategy ul li {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.channel-metrics {
    background: rgba(59, 130, 246, 0.05);
    padding: 18px;
    border-radius: 14px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
}

.metric-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 600;
}

.metric-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════
   📈 PROJECTIONS & UNIT ECONOMICS
   ════════════════════════════════════════════════════════════════ */

.projection-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.projection-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 22px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-smooth);
}

body.dark-mode .projection-card {
    background: #1e293b;
}

.projection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.proj-icon {
    width: 75px;
    height: 75px;
    background: var(--bp-gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.125rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.proj-content {
    flex: 1;
}

.proj-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
}

.proj-value {
    font-size: 2.125rem;
    font-weight: 900;
    background: var(--bp-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.proj-growth {
    font-size: 0.875rem;
    color: var(--bp-success);
    font-weight: 600;
}

/* LTV Calculation */
.ltv-calculation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.calc-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .calc-card {
    background: #1e293b;
}

.calc-card.highlight {
    border-color: var(--bp-primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(139, 92, 246, 0.03));
}

.calc-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 18px 0;
}

.calc-card h4 i {
    color: var(--bp-primary);
    margin-right: 10px;
}

.calc-formula {
    background: rgba(59, 130, 246, 0.08);
    padding: 14px;
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    margin-bottom: 14px;
}

.calc-result {
    font-size: 1.625rem;
    font-weight: 900;
    color: var(--text-primary);
    text-align: center;
    padding: 18px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 10px;
}

.calc-result strong {
    color: var(--bp-success);
}

.calc-steps {
    margin-bottom: 14px;
}

.step-item {
    font-size: 0.9375rem;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

/* LTV:CAC Analysis */
.ltv-cac-analysis {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.ratio-card {
    background: white;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .ratio-card {
    background: #1e293b;
}

.ratio-card.excellent {
    border-color: var(--bp-success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(6, 182, 212, 0.03));
}

.ratio-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.ratio-header i {
    font-size: 2.125rem;
    color: gold;
}

.ratio-header h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.ratio-value {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.ratio-calc {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.ratio-verdict {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.125rem;
}

.ratio-verdict i {
    color: var(--bp-success);
    font-size: 1.625rem;
}

.ratio-benchmarks {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .ratio-benchmarks {
    background: #1e293b;
}

.ratio-benchmarks h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 24px 0;
}

.ratio-benchmarks h4 i {
    color: var(--bp-primary);
    margin-right: 10px;
}

.benchmark-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.benchmark-item:last-child {
    border-bottom: none;
}

.benchmark-item.highlight {
    background: rgba(255, 215, 0, 0.08);
    padding: 16px;
    border-radius: 10px;
    border: none;
}

.benchmark-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benchmark-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-left: 32px;
}

/* Payback Calculation */
.payback-calculation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.payback-card,
.payback-benchmark {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .payback-card,
body.dark-mode .payback-benchmark {
    background: #1e293b;
}

.payback-benchmark {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(6, 182, 212, 0.05));
    border-color: var(--bp-success);
}

.payback-card h4,
.payback-benchmark h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 18px 0;
}

.payback-card h4 i,
.payback-benchmark h4 i {
    color: var(--bp-primary);
    margin-right: 10px;
}

.payback-benchmark p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Metrics Dashboard */
.metrics-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.metric-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-smooth);
}

body.dark-mode .metric-card {
    background: #1e293b;
}

.metric-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.metric-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.125rem;
    color: white;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 12px;
}

.metric-value {
    font-size: 2.75rem;
    font-weight: 900;
    background: var(--bp-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.metric-trend {
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.metric-trend.positive {
    color: var(--bp-success);
}

.metric-trend i {
    font-size: 1.125rem;
}

/* CAC Breakdown */
.cac-breakdown {
    margin-bottom: 40px;
}

/* ════════════════════════════════════════════════════════════════
   🎮 SIMULATOR - STYLE ULTRA PREMIUM
   ════════════════════════════════════════════════════════════════ */

/* ✅ CONTROLS GRID - SLIDERS PREMIUM */
.simulator-controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.simulator-control-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-smooth);
}

body.dark-mode .simulator-control-item {
    background: #1e293b;
}

.simulator-control-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

.control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.control-header label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
}

.control-value {
    font-size: 1.25rem;
    font-weight: 900;
    background: var(--bp-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.simulator-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--bp-primary) 0%, var(--bp-secondary) 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.simulator-slider:hover {
    opacity: 1;
}

.simulator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    border: 3px solid var(--bp-primary);
    transition: all 0.3s ease;
}

.simulator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.simulator-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    border: 3px solid var(--bp-primary);
    transition: all 0.3s ease;
}

.simulator-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.control-minmax {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ✅ SIMULATOR ACTIONS - BOUTONS */
.simulator-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* ✅ SIMULATION RESULTS - CARDS PREMIUM */
.simulation-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 18px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-smooth);
}

body.dark-mode .result-card {
    background: #1e293b;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.result-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.result-content {
    flex: 1;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.result-value {
    font-size: 1.875rem;
    font-weight: 900;
    margin: 0;
}

/* ✅ DETAILED PROJECTIONS TABLE (dans simulateur) */
.detailed-projections-section {
    margin-top: 40px;
}

.detailed-projections-section h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detailed-projections-section h4 i {
    color: var(--bp-primary);
}

/* ════════════════════════════════════════════════════════════════
   🎯 SCENARIO COMPARISON - MULTI-SCENARIOS CÔTE À CÔTE
   ════════════════════════════════════════════════════════════════ */

/* ✅ SCENARIO SELECTOR - SELECTION MULTI-SCÉNARIOS */
.scenario-selector {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .scenario-selector {
    background: #1e293b;
}

.scenario-selector h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scenario-selector h4 i {
    color: var(--bp-primary);
}

.scenario-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.scenario-selector-card {
    background: rgba(59, 130, 246, 0.03);
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.scenario-selector-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

.scenario-selector-card.active {
    background: var(--bp-gradient-primary);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.scenario-selector-card.active .scenario-selector-icon,
.scenario-selector-card.active .scenario-selector-name {
    color: white;
}

.scenario-selector-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin: 0 auto 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.scenario-selector-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.scenario-selector-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--bp-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* ✅ SCENARIO COMPARISON RESULTS - TABLEAU COMPARATIF */
.scenario-comparison-results {
    margin-top: 30px;
}

.comparison-table-section {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .comparison-table-section {
    background: #1e293b;
}

.comparison-table-section h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-table-section h4 i {
    color: var(--bp-primary);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

body.dark-mode .comparison-table {
    background: #1e293b;
}

.comparison-table thead th {
    background: var(--bp-gradient-primary);
    color: white;
    padding: 16px;
    font-weight: 800;
    text-align: center;
}

.comparison-table tbody td {
    text-align: center;
    padding: 14px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody td.highlight {
    background: rgba(16, 185, 129, 0.12);
    font-weight: 800;
    color: var(--bp-success);
}

/* ════════════════════════════════════════════════════════════════
   🎨 SCENARIO CARDS (Pre-configured)
   ════════════════════════════════════════════════════════════════ */

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.scenario-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 3px solid transparent;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

body.dark-mode .scenario-card {
    background: #1e293b;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.scenario-card.conservative::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.scenario-card.conservative {
    border-color: #f59e0b;
}

.scenario-card.base::before {
    background: var(--bp-gradient-primary);
}

.scenario-card.base {
    border-color: var(--bp-primary);
}

.scenario-card.aggressive::before {
    background: linear-gradient(90deg, #10b981, #06b6d4);
}

.scenario-card.aggressive {
    border-color: #10b981;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border-color);
}

.scenario-header i {
    font-size: 2.125rem;
}

.scenario-card.conservative .scenario-header i {
    color: #f59e0b;
}

.scenario-card.base .scenario-header i {
    color: var(--bp-primary);
}

.scenario-card.aggressive .scenario-header i {
    color: #10b981;
}

.scenario-header h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.scenario-params {
    margin-bottom: 18px;
}

.param-item {
    font-size: 0.9375rem;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.param-item:last-child {
    border-bottom: none;
}

.scenario-result {
    background: rgba(59, 130, 246, 0.08);
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 18px;
    font-weight: 600;
}

.apply-scenario-btn {
    width: 100%;
    padding: 14px;
    background: var(--bp-gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.apply-scenario-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* ════════════════════════════════════════════════════════════════
   💬 MODAL - EXPLICATIONS TERMES FINANCIERS
   ════════════════════════════════════════════════════════════════ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

body.dark-mode .modal-container {
    background: #1e293b;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: var(--bp-gradient-primary);
    padding: 28px 32px;
    border-radius: 24px 24px 0 0;
    color: white;
    position: relative;
}

.modal-header h3 {
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h3 i {
    font-size: 2rem;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
}

.modal-body p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.modal-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

.modal-example {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid var(--bp-primary);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.modal-example h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--bp-primary);
    margin: 0 0 12px 0;
}

.modal-example p {
    margin: 0;
}

.modal-example code {
    background: rgba(59, 130, 246, 0.08);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9375rem;
    color: var(--bp-primary);
    font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════
   🚀 ROADMAP TIMELINE
   ════════════════════════════════════════════════════════════════ */

.roadmap-timeline {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 35px;
    bottom: 35px;
    width: 5px;
    background: var(--bp-gradient-primary);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: -70px;
    top: 0;
    width: 55px;
    height: 55px;
    background: var(--bp-gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    z-index: 2;
    border: 4px solid white;
}

body.dark-mode .timeline-marker {
    border-color: #0f172a;
}

.timeline-marker.q2 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.timeline-marker.q3 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.timeline-marker.q4 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.timeline-marker.q5 {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.timeline-content {
    background: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-smooth);
}

body.dark-mode .timeline-content {
    background: #1e293b;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.timeline-content h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 18px 0;
}

.timeline-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-tasks li {
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 14px;
}

.timeline-tasks li i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.timeline-tasks li i.fa-check-circle {
    color: var(--bp-success);
}

.timeline-tasks li i.fa-spinner {
    color: #f59e0b;
}

.timeline-tasks li i.fa-clock {
    color: var(--text-light);
}

/* ════════════════════════════════════════════════════════════════
   🤝 RETENTION STRATEGIES
   ════════════════════════════════════════════════════════════════ */

.retention-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.retention-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-smooth);
}

body.dark-mode .retention-card {
    background: #1e293b;
}

.retention-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.retention-icon {
    width: 65px;
    height: 65px;
    background: var(--bp-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.retention-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 14px 0;
}

.retention-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.retention-card ul {
    padding-left: 28px;
    margin: 0;
}

.retention-card ul li {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ════════════════════════════════════════════════════════════════
   ♟ COMPETITIVE ANALYSIS
   ════════════════════════════════════════════════════════════════ */

.competitive-advantages {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.advantage-detail-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 24px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-smooth);
}

body.dark-mode .advantage-detail-card {
    background: #1e293b;
}

.advantage-detail-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.advantage-number {
    width: 55px;
    height: 55px;
    background: var(--bp-gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.advantage-content {
    flex: 1;
}

.advantage-content h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 14px 0;
}

.advantage-content h4 i {
    color: var(--bp-primary);
    margin-right: 10px;
}

.advantage-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.moats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.moat-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-smooth);
}

body.dark-mode .moat-card {
    background: #1e293b;
}

.moat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.moat-icon {
    width: 75px;
    height: 75px;
    background: var(--bp-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.125rem;
    color: white;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.moat-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 14px 0;
}

.moat-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Competitive Table Icons */
.competitive-table i.yes {
    color: var(--bp-success);
    font-size: 1.375rem;
}

.competitive-table i.no {
    color: #cbd5e1;
    font-size: 1.375rem;
}

.competitive-table i.partial {
    color: #f59e0b;
    font-size: 1.375rem;
}

.competitive-table i.pending {
    color: #94a3b8;
    font-size: 1.125rem;
}

.competitive-table td.us {
    background: rgba(16, 185, 129, 0.05);
    font-weight: 700;
}

.competitive-table thead th.us {
    background: var(--bp-success);
}

.competitive-table .feature-name {
    font-weight: 700;
    color: var(--text-primary);
    min-width: 220px;
}

/* ════════════════════════════════════════════════════════════════
   ⚠ RISK ANALYSIS
   ════════════════════════════════════════════════════════════════ */

.risks-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.risk-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 6px solid var(--bp-danger);
    transition: var(--transition-smooth);
}

body.dark-mode .risk-card {
    background: #1e293b;
}

.risk-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.12);
}

.risk-header {
    margin-bottom: 18px;
}

.risk-severity {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.risk-severity.high {
    background: rgba(239, 68, 68, 0.15);
    color: var(--bp-danger);
}

.risk-severity.medium {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.risk-severity.low {
    background: rgba(16, 185, 129, 0.15);
    color: var(--bp-success);
}

.risk-header h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.risk-header h4 i {
    color: var(--bp-danger);
    margin-right: 10px;
}

.risk-description {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
}

.risk-mitigation {
    background: rgba(16, 185, 129, 0.05);
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.risk-mitigation h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--bp-success);
    margin: 0 0 14px 0;
}

.risk-mitigation h5 i {
    margin-right: 10px;
}

.risk-mitigation ul {
    padding-left: 28px;
    margin: 0;
}

.risk-mitigation ul li {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.risk-probability {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(59, 130, 246, 0.05);
    padding: 14px;
    border-radius: 10px;
}

.prob-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 700;
}

.prob-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════
   📱 RESPONSIVE - MOBILE OPTIMIZATIONS
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .bp-header {
        padding: 60px 30px;
    }

    .bp-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .simulator-controls-grid,
    .simulation-results-grid {
        grid-template-columns: 1fr;
    }

    .ltv-cac-analysis,
    .payback-calculation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bp-header {
        min-height: auto;
        padding: 60px 24px;
    }

    .bp-logo-section {
        flex-direction: column;
        text-align: center;
    }

    .bp-logo {
        margin: 0 auto;
    }

    .bp-title {
        font-size: 2.25rem;
        text-align: center;
    }

    .bp-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }

    .bp-tagline {
        text-align: center;
    }

    .bp-meta {
        justify-content: center;
    }

    .section-title {
        font-size: 1.75rem;
        flex-direction: column;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .subsection-title {
        font-size: 1.3rem;
    }

    .highlights-grid,
    .scenario-selector-grid,
    .simulator-controls-grid,
    .simulation-results-grid {
        grid-template-columns: 1fr;
    }

    .simulator-actions {
        flex-direction: column;
    }

    .bp-btn {
        width: 100%;
    }

    .table-actions {
        flex-direction: column;
    }

    .modal-container {
        width: 95%;
    }

    .modal-header {
        padding: 24px;
    }

    .modal-body {
        padding: 24px;
    }

    .roadmap-timeline {
        padding-left: 50px;
    }

    .roadmap-timeline::before {
        left: 12px;
    }

    .timeline-marker {
        left: -50px;
        width: 45px;
        height: 45px;
        font-size: 0.8125rem;
    }

    .advantage-detail-card {
        flex-direction: column;
        text-align: center;
    }

    .advantage-number {
        margin: 0 auto;
    }

    .value-prop-item {
        flex-direction: column;
        text-align: center;
    }

    .vp-number {
        margin: 0 auto 16px;
    }
}

@media (max-width: 480px) {
    .bp-header {
        padding: 40px 16px;
    }

    .bp-title {
        font-size: 2rem;
    }

    .bp-subtitle {
        font-size: 1.125rem;
    }

    .meta-item {
        font-size: 0.875rem;
        padding: 8px 14px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .subsection-title {
        font-size: 1.125rem;
    }

    .chart-container,
    .scenario-selector,
    .comparison-table-section {
        padding: 20px;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        margin: 0 auto 16px;
    }

    .result-card {
        flex-direction: column;
        text-align: center;
    }

    .result-icon {
        margin: 0 auto 14px;
    }

    .financial-table thead th,
    .financial-table tbody td {
        padding: 12px 10px;
        font-size: 0.8125rem;
    }

    .roadmap-timeline {
        padding-left: 40px;
    }

    .timeline-marker {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .modal-header h3 {
        font-size: 1.375rem;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
}

/* ════════════════════════════════════════════════════════════════
   🖨 PRINT STYLES
   ════════════════════════════════════════════════════════════════ */

@media print {
    .sidebar,
    .top-header,
    .bp-nav,
    .simulator-actions,
    .table-actions,
    .apply-scenario-btn,
    .scenario-selector,
    .particles-background,
    .modal-overlay {
        display: none !important;
    }

    .main-content {
        margin-left: 0 !important;
    }

    .bp-section {
        display: block !important;
        page-break-after: always;
    }

    .bp-header {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    body {
        background: white !important;
    }

    .chart-container,
    .financial-table,
    .comparison-table-section {
        page-break-inside: avoid;
    }
}

/* ════════════════════════════════════════════════════════════════
   🎨 UTILITY CLASSES
   ════════════════════════════════════════════════════════════════ */

.text-gradient-primary {
    background: var(--bp-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-shine {
    background: var(--bp-gradient-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 8s linear infinite;
}

.bg-gradient-primary {
    background: var(--bp-gradient-primary);
}

.bg-gradient-hero {
    background: var(--bp-gradient-hero);
}

.shadow-primary {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.shadow-primary-lg {
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.4);
}

/* ════════════════════════════════════════════════════════════════
   FIN DU CSS - VERSION 4.0 ULTRA DYNAMIQUE COMPLÈTE
   ════════════════════════════════════════════════════════════════ */

/* Notifications de sauvegarde */
.save-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.save-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.save-notification.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.save-notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.save-notification i {
    font-size: 18px;
}

/* ════════════════════════════════════════════════════════════════
   VALUATION SECTION STYLES
   ════════════════════════════════════════════════════════════ */

/* Current Valuation (Pre-Revenue) */
.current-valuation-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    color: white;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.current-valuation-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.current-valuation-banner h3 {
    color: white !important;
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.current-valuation-banner p {
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.current-val-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.current-val-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.current-val-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.current-val-card h4 {
    color: white !important;
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.current-val-card .val-amount {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.current-val-card .val-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Valuation Summary Cards */
.valuation-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.val-summary-card {
    background: var(--card-background);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.val-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bp-primary), var(--bp-secondary));
}

.val-summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
    border-color: var(--bp-primary);
}

.val-summary-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.val-summary-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
}

.val-summary-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.val-summary-value {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bp-primary), var(--bp-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.val-summary-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Funding Roadmap */
.funding-roadmap-timeline {
    position: relative;
    padding: 40px 0;
}

.funding-round-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.funding-round-item::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 64px;
    bottom: -50px;
    width: 3px;
    background: linear-gradient(180deg, var(--bp-primary) 0%, transparent 100%);
}

.funding-round-item:last-child::before {
    display: none;
}

.round-marker {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.round-content {
    flex: 1;
    background: var(--card-background);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--bp-primary);
}

.round-content h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.round-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.round-metric {
    padding: 12px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--bp-primary);
}

.round-metric-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.round-metric-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bp-primary);
}

/* Comparable Companies Table */
.comparable-companies-table {
    background: var(--card-background);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.comparable-companies-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparable-companies-table th {
    background: linear-gradient(135deg, var(--bp-primary), var(--bp-secondary));
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparable-companies-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(203, 213, 225, 0.3);
    font-size: 0.95rem;
}

.comparable-companies-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.company-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    margin-right: 12px;
    vertical-align: middle;
}

.multiple-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.multiple-badge.low {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.multiple-badge.medium {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.multiple-badge.high {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .current-valuation-banner {
        padding: 28px 20px;
    }
    
    .current-val-grid {
        grid-template-columns: 1fr;
    }
    
    .valuation-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .funding-round-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .funding-round-item::before {
        left: 31px;
        top: 80px;
    }
    
    .round-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .val-summary-value {
        font-size: 1.8rem;
    }
    
    .round-metrics {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Adjustments */
body.dark-mode .current-val-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .val-summary-card {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(59, 130, 246, 0.2);
}

body.dark-mode .round-content {
    background: rgba(15, 23, 42, 0.8);
    border-left-color: var(--bp-secondary);
}

body.dark-mode .comparable-companies-table {
    background: rgba(15, 23, 42, 0.8);
}

body.dark-mode .comparable-companies-table td {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}