        :root {
            /* Palette Bancaire Sobre */
            --navy-900: #0F172A;
            --navy-800: #1E293B;
            --navy-700: #334155;
            --navy-600: #475569;
            --navy-500: #64748B;
            
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-400: #94A3B8;
            --gray-500: #64748B;
            --gray-600: #475569;
            
            --success: #059669;
            --success-light: #D1FAE5;
            --accent: #0EA5E9;
            --accent-light: #E0F2FE;
            --warning: #D97706;
            --warning-light: #FEF3C7;
            
            --white: #FFFFFF;
            --background: #f6f4f0;
            --btn-primary: #799A88;
            
            --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { height: 100%; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--background);
            color: var(--navy-800);
            min-height: 100%;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        
        /* ========== INTRO PAGE ========== */
        .intro-page {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--background);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .intro-page.hidden {
            opacity: 0;
            transform: scale(1.05);
            pointer-events: none;
        }
        
        .intro-logo-container {
            position: relative;
            margin-bottom: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .intro-logo {
            position: relative;
        }
        
        .intro-logo img {
            height: 50px;
            position: relative;
            z-index: 2;
            animation: logo-fade-in 1s ease-out;
        }
        
        /* Ligne élégante animée sous le logo */
        .intro-line {
            width: 0;
            height: 2px;
            margin-top: 24px;
            background: var(--btn-primary);
            border-radius: 2px;
            animation: line-expand 1.2s ease-out 0.3s forwards;
        }
        
        @keyframes logo-fade-in {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes line-expand {
            0% {
                width: 0;
                opacity: 0;
            }
            100% {
                width: 100px;
                opacity: 1;
            }
        }
        
        .intro-btn {
            background: var(--btn-primary);
            color: white;
            border: none;
            padding: 16px 56px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }
        
        .intro-btn:hover {
            background: #6a8a79;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* ========== TRANSITION COUPLE ========== */
        .transition-page {
            display: none;
            text-align: center;
            padding: 60px 24px;
        }
        
        .transition-page.active {
            display: block;
        }
        
        .transition-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 32px;
            background: linear-gradient(135deg, var(--success-light) 0%, #A7F3D0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .transition-icon svg {
            width: 48px;
            height: 48px;
            stroke: var(--success);
        }
        
        .transition-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 12px;
        }
        
        .transition-subtitle {
            font-size: 16px;
            color: var(--gray-500);
            margin-bottom: 32px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .transition-summary {
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 32px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }
        
        .transition-summary-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .transition-summary-title svg {
            width: 18px;
            height: 18px;
            stroke: var(--success);
        }
        
        .transition-summary-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-100);
            font-size: 14px;
        }
        
        .transition-summary-item:last-child {
            border-bottom: none;
        }
        
        .transition-summary-label {
            color: var(--gray-500);
        }
        
        .transition-summary-value {
            font-weight: 600;
            color: var(--navy-800);
        }
        
        .transition-btn {
            background: var(--btn-primary);
            color: white;
            border: none;
            padding: 16px 48px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }
        
        .transition-btn:hover {
            background: #6a8a79;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* ========== PERSON TABS (for couple mode) ========== */
        .person-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
            background: var(--gray-100);
            padding: 4px;
            border-radius: 12px;
        }
        
        .person-tab {
            flex: 1;
            padding: 12px 20px;
            border: none;
            background: transparent;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-500);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .person-tab:hover {
            color: var(--navy-800);
        }
        
        .person-tab.active {
            background: var(--white);
            color: var(--navy-900);
            box-shadow: var(--shadow-sm);
        }
        
        .person-tab svg {
            width: 18px;
            height: 18px;
        }
        
        .person-tab .tab-status {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gray-300);
        }
        
        .person-tab .tab-status.completed {
            background: var(--success);
        }
        
        /* ========== HEADER ========== */
        .fixed-header-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: var(--white);
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .header-spacer {
            display: none;
        }
        
        .header {
            background: var(--white);
            padding: 10px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .header-left, .header-right {
            flex: 1;
            min-width: 150px;
        }
        
        .header-left {
            display: flex;
            justify-content: flex-start;
        }
        
        .header-right {
            display: flex;
            justify-content: flex-end;
        }
        
        .logo {
            flex-shrink: 0;
        }
        
        .header-person-tabs {
            display: flex;
            gap: 4px;
            background: var(--gray-100);
            padding: 3px;
            border-radius: 8px;
        }
        
        .header-person-tab {
            padding: 6px 16px;
            border: none;
            background: transparent;
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-500);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .header-person-tab:hover {
            color: var(--navy-800);
        }
        
        .header-person-tab.active {
            background: var(--white);
            color: var(--navy-900);
            box-shadow: var(--shadow-sm);
        }
        
        .header-person-tab.completed .header-tab-name::after {
            content: ' ✓';
            color: var(--success);
            font-size: 11px;
        }
        
        /* ========== PROGRESS BAR ========== */
        .progress-container {
            background: var(--white);
            padding: 8px 24px 12px;
            border-top: 1px solid var(--gray-100);
        }
        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 0;
        }
        .progress-step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            padding: 4px 6px;
            border-radius: 8px;
            transition: all 0.2s ease;
            flex: 1;
            max-width: 90px;
        }
        .progress-step-item:hover {
            background: var(--gray-50);
        }
        .progress-step-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .progress-step-icon svg {
            width: 12px;
            height: 12px;
            stroke: var(--gray-400);
            transition: all 0.3s ease;
        }
        .progress-step-label {
            font-size: 9px;
            color: var(--gray-400);
            text-align: center;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .progress-step-item.active .progress-step-icon {
            background: var(--btn-primary);
            border-color: var(--btn-primary);
            box-shadow: 0 2px 8px rgba(121, 154, 136, 0.4);
        }
        .progress-step-item.active .progress-step-icon svg {
            stroke: white;
        }
        .progress-step-item.active .progress-step-label {
            color: var(--btn-primary);
            font-weight: 600;
        }
        .progress-step-item.completed .progress-step-icon {
            background: var(--success-light);
            border: 2px solid var(--success);
        }
        .progress-step-item.completed .progress-step-icon svg {
            stroke: var(--success);
        }
        .progress-step-item.completed .progress-step-label {
            color: var(--success);
        }
        
        /* Spacer pour compenser le header fixe */
        .header-spacer {
            height: 120px;
        }
        
        @media (max-width: 768px) {
            .progress-step-label {
                display: none;
            }
            .progress-step-item {
                padding: 4px 2px;
            }
            .progress-step-icon {
                width: 24px;
                height: 24px;
            }
            .header-spacer {
                height: 90px;
            }
        }
        
        /* Footer fixe */
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 1px solid var(--gray-200);
            padding: 8px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            z-index: 90;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .footer-brand {
            font-size: 11px;
            color: var(--gray-400);
        }
        .footer-separator {
            color: var(--gray-300);
            font-size: 11px;
        }
        .footer-swiss {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: var(--gray-400);
        }
        .footer-swiss svg {
            width: 12px;
            height: 12px;
        }
        
        /* ========== SIDEBAR RÉSUMÉ ========== */
        .layout-container {
            display: flex;
            gap: 24px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 32px 24px 80px;
            justify-content: center;
        }
        
        .layout-container.with-sidebar {
            justify-content: flex-start;
        }
        
        .layout-container.with-double-sidebar {
            justify-content: space-between;
            max-width: 1400px;
        }
        
        .main-container {
            flex: 1;
            max-width: 720px;
        }
        
        /* Sidebar wrapper pour mode couple */
        .sidebar-wrapper {
            display: flex;
            gap: 16px;
            flex-shrink: 0;
        }
        
        .sidebar {
            width: 240px;
            flex-shrink: 0;
            display: none;
        }
        
        .sidebar.visible {
            display: block;
        }
        
        .sidebar-p2 {
            width: 240px;
        }
        
        .sidebar-p2 .sidebar-header {
            background: linear-gradient(135deg, #6B8DD6 0%, #4A6BC9 100%);
        }
        
        .sidebar-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 14px;
            padding: 0;
            position: sticky;
            top: 100px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            overflow: hidden;
            max-height: calc(100vh - 120px);
            display: flex;
            flex-direction: column;
        }
        
        .sidebar-header {
            background: linear-gradient(135deg, #799A88 0%, #5a7a68 100%);
            padding: 10px 14px;
            color: white;
            flex-shrink: 0;
        }
        
        .sidebar-profile {
            margin-bottom: 6px;
            padding-bottom: 6px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        
        .sidebar-user-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 1px;
        }
        
        .sidebar-user-details {
            font-size: 10px;
            opacity: 0.85;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .sidebar-user-profession {
            font-size: 9px;
            opacity: 0.7;
            margin-top: 1px;
            font-style: italic;
        }
        
        .sidebar-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
        }
        
        .sidebar-title svg {
            width: 14px;
            height: 14px;
            opacity: 0.9;
        }
        
        .sidebar-body {
            padding: 10px 14px;
            overflow-y: auto;
            flex: 1;
        }
        
        .sidebar-section {
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px dashed var(--gray-200);
        }
        
        .sidebar-section:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .sidebar-section-title {
            font-size: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-400);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .sidebar-section-title::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--btn-primary);
        }
        
        .sidebar-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--gray-50);
            padding: 8px 10px;
            border-radius: 8px;
            margin-bottom: 6px;
        }
        
        .sidebar-total-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--navy-800);
        }
        
        .sidebar-total-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--btn-primary);
        }
        
        .sidebar-details {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        
        .sidebar-detail {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4px 8px;
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 5px;
        }
        
        .sidebar-detail-label {
            font-size: 10px;
            color: var(--gray-600);
        }
        
        .sidebar-detail-value {
            font-size: 10px;
            font-weight: 600;
            color: var(--navy-800);
        }
        
        .sidebar-detail-value.muted {
            color: var(--gray-400);
            font-weight: 400;
        }
        
        .sidebar-badge {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            padding: 3px 8px;
            background: var(--success-light);
            color: var(--success);
            border-radius: 12px;
            font-size: 9px;
            font-weight: 600;
        }
        
        /* Sidebar répartition */
        .sidebar-repartition {
            margin-top: 4px;
        }
        
        .sidebar-repartition-bar {
            height: 4px;
            background: var(--gray-200);
            border-radius: 2px;
            overflow: hidden;
            display: flex;
        }
        
        .sidebar-bar-regulier {
            background: var(--btn-primary);
            transition: width 0.3s ease;
        }
        
        .sidebar-bar-flexible {
            background: #2B3659;
            transition: width 0.3s ease;
        }
        
        .sidebar-repartition-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 4px;
        }
        
        .sidebar-repartition-item {
            display: flex;
            align-items: center;
            gap: 3px;
            font-size: 9px;
            color: var(--gray-600);
        }
        
        .sidebar-dot-regulier, .sidebar-dot-flexible {
            width: 4px;
            height: 4px;
            border-radius: 50%;
        }
        
        .sidebar-dot-regulier {
            background: var(--btn-primary);
        }
        
        .sidebar-dot-flexible {
            background: #2B3659;
        }
        
        .sidebar-repartition-value {
            font-weight: 600;
            color: var(--navy-800);
        }
        
        .sidebar-repartition-amounts {
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid var(--gray-200);
        }
        
        .sidebar-amount-item {
            display: flex;
            justify-content: space-between;
            font-size: 9px;
            color: var(--gray-600);
            margin-bottom: 2px;
        }
        
        .sidebar-amount-item span:last-child {
            font-weight: 600;
            color: var(--navy-800);
        }
        
        /* Sidebar versement compact */
        .sidebar-versement-compact {
            font-size: 9px;
        }
        
        .sidebar-versement-bar {
            height: 4px;
            background: var(--gray-200);
            border-radius: 2px;
            overflow: hidden;
            display: flex;
            margin-bottom: 4px;
        }
        
        .sidebar-versement-row {
            display: flex;
            justify-content: space-between;
            color: var(--gray-600);
            margin-bottom: 1px;
        }
        
        .sidebar-versement-row span:last-child {
            font-weight: 600;
            color: var(--navy-800);
        }
        
        .dot-green, .dot-blue {
            display: inline-block;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            margin-right: 3px;
            vertical-align: middle;
        }
        
        .dot-green {
            background: var(--btn-primary);
        }
        
        .dot-blue {
            background: #2B3659;
        }
        
        /* Sidebar max compact */
        .sidebar-max-compact {
            text-align: center;
        }
        
        .sidebar-max-total {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--btn-primary);
            margin-bottom: 1px;
        }
        
        .sidebar-max-detail {
            font-size: 9px;
            color: var(--gray-500);
        }
        
        /* Sidebar tags pour projets */
        .sidebar-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 3px;
        }
        
        .sidebar-tag {
            display: inline-block;
            padding: 2px 6px;
            background: var(--gray-100);
            color: var(--gray-700);
            border-radius: 8px;
            font-size: 9px;
            font-weight: 500;
        }
        
        /* Sidebar profil badge */
        .sidebar-profil-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
        }
        
        /* Sidebar strategy */
        .sidebar-strategy {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .sidebar-strategy-item {
            display: flex;
            justify-content: space-between;
            font-size: 9px;
            color: var(--gray-600);
        }
        
        .sidebar-strategy-item span:last-child {
            font-weight: 600;
            color: var(--navy-800);
        }
        
        /* Sidebar strategy compact */
        .sidebar-strategy-compact {
            display: flex;
            flex-direction: column;
            gap: 1px;
            font-size: 9px;
            color: var(--gray-600);
        }
        
        .sidebar-strategy-compact span {
            display: flex;
            justify-content: space-between;
        }
        
        /* Sidebar companies */
        .sidebar-companies {
            font-size: 9px;
            font-weight: 500;
            color: var(--navy-800);
            line-height: 1.3;
        }
        
        /* Sidebar company */
        .sidebar-company {
            font-size: 9px;
            font-weight: 600;
            color: var(--navy-800);
        }
        
        /* Sidebar economie compact */
        .sidebar-economie {
            display: flex;
            align-items: baseline;
            gap: 3px;
            margin-top: 1px;
        }
        
        .sidebar-economie-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--success);
        }
        
        .sidebar-economie-label {
            font-size: 9px;
            color: var(--gray-500);
        }
        
        /* Profil investisseur result */
        .profil-result {
            margin-top: 24px;
            padding: 20px;
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
        }
        
        .profil-result-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 16px;
            text-align: center;
        }
        
        .profil-cards {
            display: flex;
            gap: 8px;
            justify-content: center;
        }
        
        .profil-card.active {
            opacity: 1;
            border-color: var(--btn-primary);
            background: rgba(121, 154, 136, 0.1);
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(121, 154, 136, 0.2);
        }
        
        .profil-card-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 8px;
        }
        
        .profil-card-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--gray-400);
        }
        
        .profil-card.active .profil-card-icon svg {
            stroke: var(--btn-primary);
        }
        
        .profil-card-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-500);
            margin-bottom: 2px;
        }
        
        .profil-card.active .profil-card-name {
            color: var(--btn-primary);
        }
        
        .profil-card-desc {
            font-size: 10px;
            color: var(--gray-400);
        }
        
        .profil-card.active .profil-card-desc {
            color: var(--gray-600);
        }
        
        .profil-subtitle {
            font-size: 12px;
            color: var(--gray-500);
            text-align: center;
            margin-bottom: 16px;
        }
        
        .profil-card {
            flex: 1;
            max-width: 100px;
            padding: 12px 8px;
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0.5;
            cursor: pointer;
        }
        
        .profil-card:hover {
            opacity: 0.8;
            border-color: var(--gray-300);
        }
        
        .profil-card.recommended {
            position: relative;
        }
        
        .profil-card.recommended::after {
            content: '★';
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--btn-primary);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Info box profil */
        .profil-info-box {
            margin-top: 20px;
            padding: 16px;
            border-radius: 12px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        
        .profil-info-box.info {
            background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
            border: 1px solid #93C5FD;
        }
        
        .profil-info-box.warning {
            background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
            border: 1px solid #F59E0B;
        }
        
        .profil-info-box.success {
            background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
            border: 1px solid #6EE7B7;
        }
        
        .profil-info-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }
        
        .profil-info-box.info .profil-info-icon svg {
            stroke: #3B82F6;
        }
        
        .profil-info-box.warning .profil-info-icon svg {
            stroke: #F59E0B;
        }
        
        .profil-info-box.success .profil-info-icon svg {
            stroke: #10B981;
        }
        
        .profil-info-content {
            flex: 1;
        }
        
        .profil-info-title {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        
        .profil-info-box.info .profil-info-title {
            color: #1E40AF;
        }
        
        .profil-info-box.warning .profil-info-title {
            color: #92400E;
        }
        
        .profil-info-box.success .profil-info-title {
            color: #065F46;
        }
        
        .profil-info-text {
            font-size: 12px;
            line-height: 1.5;
        }
        
        .profil-info-box.info .profil-info-text {
            color: #1E3A8A;
        }
        
        .profil-info-box.warning .profil-info-text {
            color: #78350F;
        }
        
        .profil-info-box.success .profil-info-text {
            color: #064E3B;
        }
        
        /* Location options */
        .location-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .location-btn {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
            text-align: left;
        }
        
        .location-btn:hover {
            border-color: var(--gray-300);
            background: var(--gray-50);
        }
        
        .location-btn.selected {
            border-color: var(--btn-primary);
            background: rgba(121, 154, 136, 0.05);
        }
        
        .location-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
        }
        
        .location-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--gray-400);
        }
        
        .location-btn.selected .location-icon svg {
            stroke: var(--btn-primary);
        }
        
        .location-info {
            flex: 1;
        }
        
        .location-name {
            font-weight: 600;
            font-size: 15px;
            color: var(--navy-800);
            margin-bottom: 2px;
        }
        
        .location-address {
            font-size: 13px;
            color: var(--gray-500);
        }
        
        .location-note {
            font-size: 12px;
            color: var(--danger);
            margin-top: 4px;
            font-weight: 500;
        }
        
        .location-check {
            width: 24px;
            height: 24px;
            border: 2px solid var(--gray-300);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: transparent;
            flex-shrink: 0;
        }
        
        .location-btn.selected .location-check {
            background: var(--btn-primary);
            border-color: var(--btn-primary);
            color: white;
        }
        
        .form-row {
            display: flex;
            gap: 16px;
        }
        
        /* JANE Bonus Box */
        .jane-bonus-box {
            margin-top: 24px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 16px;
            padding: 24px;
            color: white;
        }
        
        .jane-bonus-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .jane-bonus-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: white;
        }
        
        .jane-bonus-logo span {
            color: #FFD700;
        }
        
        .jane-bonus-title {
            font-size: 16px;
            font-weight: 600;
            opacity: 0.9;
        }
        
        .jane-bonus-content {
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 16px;
        }
        
        .jane-bonus-item {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .jane-bonus-item:last-of-type {
            border-bottom: none;
        }
        
        .jane-bonus-value {
            font-weight: 600;
            color: #90EE90;
        }
        
        .jane-bonus-total {
            display: flex;
            justify-content: space-between;
            font-size: 16px;
            font-weight: 700;
            padding-top: 12px;
            margin-top: 8px;
            border-top: 2px solid rgba(255,255,255,0.2);
        }
        
        .jane-bonus-total span:last-child {
            color: #FFD700;
            font-size: 20px;
        }
        
        .jane-bonus-note {
            font-size: 11px;
            opacity: 0.7;
            margin-top: 16px;
            line-height: 1.5;
        }
        
        /* Jane Hero Section */
        .jane-hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 20px;
            padding: 48px 32px;
            text-align: center;
            color: white;
            margin-bottom: 32px;
        }
        
        .jane-hero-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 4px;
        }
        
        .jane-hero-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .jane-hero-subtitle {
            font-size: 16px;
            opacity: 0.8;
        }
        
        /* Jane Benefits */
        .jane-benefits {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .jane-benefit-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
        }
        
        .jane-benefit-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            background: rgba(121, 154, 136, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .jane-benefit-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--btn-primary);
        }
        
        .jane-benefit-card h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 8px;
        }
        
        .jane-benefit-card p {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.5;
        }
        
        /* Jane Plus Section */
        .jane-plus-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border: 2px solid var(--gray-200);
            border-radius: 20px;
            padding: 32px;
            margin-bottom: 24px;
        }
        
        .jane-plus-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .jane-plus-badge {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #1a1a2e;
        }
        
        .jane-plus-badge span {
            color: #FFD700;
        }
        
        .jane-plus-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--navy-800);
        }
        
        .jane-plus-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .jane-plus-feature {
            display: flex;
            gap: 12px;
            padding: 16px;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
        }
        
        .jane-plus-feature-icon {
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .jane-plus-feature-content h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 4px;
        }
        
        .jane-plus-feature-content p {
            font-size: 12px;
            color: var(--gray-600);
            line-height: 1.4;
        }
        
        .jane-plus-calculation {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 16px;
            padding: 24px;
            color: white;
        }
        
        .jane-plus-calc-title {
            font-size: 14px;
            font-weight: 600;
            opacity: 0.9;
            margin-bottom: 16px;
        }
        
        .jane-plus-calc-row {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .jane-plus-calc-value {
            color: #90EE90;
            font-weight: 600;
        }
        
        .jane-plus-calc-total {
            display: flex;
            justify-content: space-between;
            font-size: 16px;
            font-weight: 700;
            padding-top: 16px;
            margin-top: 8px;
        }
        
        .jane-plus-calc-total span:last-child {
            color: #FFD700;
            font-size: 20px;
        }
        
        .sidebar-empty {
            text-align: center;
            padding: 30px 20px;
            color: var(--gray-400);
            font-size: 13px;
        }
        
        @media (max-width: 1000px) {
            .layout-container {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
                order: -1;
            }
            .sidebar-card {
                position: relative;
                top: 0;
            }
        }
        
        /* ========== STEP SECTIONS ========== */
        .step-section {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        .step-section.active { display: block; }
        
        /* Masquer le contenu de step-7 pendant l'animation d'analyse */
        #step-7 .capital-estimate-card,
        #step-7 .recommendation-intro,
        #step-7 .insurance-cards-container,
        #step-7 .nav-buttons {
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        #step-7.content-visible .capital-estimate-card,
        #step-7.content-visible .recommendation-intro,
        #step-7.content-visible .insurance-cards-container,
        #step-7.content-visible .nav-buttons {
            opacity: 1;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 24px;
            letter-spacing: -0.5px;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 15px;
            color: var(--gray-500);
            margin-bottom: 24px;
            text-align: center;
        }
        
        /* ========== CARDS ========== */
        .card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 32px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
        }
        
        .card-header {
            margin-bottom: 24px;
        }
        
        .card-title-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .card-icon-svg {
            width: 24px;
            height: 24px;
            color: var(--btn-primary);
            flex-shrink: 0;
        }
        
        .card-icon {
            width: 48px;
            height: 48px;
            background: var(--gray-100);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
        }
        
        .card-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--navy-900);
            letter-spacing: -0.3px;
        }
        
        .card-subtitle {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.5;
        }
        
        /* ========== FORM ELEMENTS ========== */
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 8px;
        }
        
        .form-input, .form-select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            color: var(--navy-800);
            background: var(--white);
            transition: all 0.2s;
        }
        
        .form-input:focus, .form-select:focus {
            outline: none;
            border-color: var(--navy-600);
            box-shadow: 0 0 0 3px rgba(51, 65, 85, 0.1);
        }
        
        .form-input::placeholder {
            color: var(--gray-400);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        @media (max-width: 500px) {
            .form-row { grid-template-columns: 1fr; }
        }
        
        .form-hint {
            font-size: 12px;
            color: var(--gray-500);
            margin-top: 6px;
        }
        
        .horizon-hint {
            background: var(--success-light);
            color: var(--success);
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
        }
        
        /* Checkbox styling */
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            font-size: 14px;
            color: var(--navy-800);
        }
        
        .checkbox-label input[type="checkbox"] {
            display: none;
        }
        
        .checkbox-custom {
            width: 20px;
            height: 20px;
            border: 2px solid var(--gray-300);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            flex-shrink: 0;
        }
        
        .checkbox-custom::after {
            content: '✓';
            font-size: 12px;
            color: white;
            opacity: 0;
            transform: scale(0);
            transition: all 0.2s;
        }
        
        .checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
            background: var(--btn-primary);
            border-color: var(--btn-primary);
        }
        
        .checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
            opacity: 1;
            transform: scale(1);
        }
        
        .checkbox-text {
            color: var(--gray-600);
        }
        
        .choice-btn-small {
            padding: 12px 16px;
        }
        
        .choice-btn-small .choice-content {
            padding: 0;
        }
        
        .choice-btn-small .choice-label {
            font-size: 14px;
        }
        
        /* Épargne split */
        .epargne-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }
        
        .epargne-block {
            padding: 20px;
            border-radius: 12px;
            border: 2px solid var(--gray-200);
            background: var(--white);
        }
        
        .epargne-regulier {
            border-color: var(--btn-primary);
            background: rgba(121, 154, 136, 0.05);
        }
        
        .epargne-flexible {
            border-color: #2B3659;
            background: rgba(43, 54, 89, 0.03);
        }
        
        .epargne-block-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .epargne-block-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy-800);
        }
        
        .epargne-input-row {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .epargne-currency {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-500);
        }
        
        .epargne-input {
            flex: 1;
            padding: 10px 12px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            font-family: 'Space Grotesk', sans-serif;
            text-align: right;
            width: 100%;
        }
        
        .epargne-input:focus {
            outline: none;
            border-color: var(--btn-primary);
        }
        
        .epargne-period {
            font-size: 13px;
            color: var(--gray-500);
        }
        
        .epargne-hint {
            font-size: 12px;
            color: var(--gray-500);
            margin-top: 8px;
        }
        
        .epargne-total-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 16px;
        }
        
        .epargne-total-label {
            font-size: 14px;
            color: var(--gray-600);
        }
        
        .epargne-total-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--navy-900);
        }
        
        .epargne-total-max {
            font-size: 13px;
            color: var(--gray-400);
        }
        
        .epargne-bar-container {
            margin-bottom: 24px;
        }
        
        .epargne-bar {
            height: 12px;
            background: var(--gray-100);
            border-radius: 6px;
            overflow: hidden;
            display: flex;
        }
        
        .epargne-bar-regulier {
            background: var(--btn-primary);
            transition: width 0.3s ease;
        }
        
        .epargne-bar-flexible {
            background: #2B3659;
            transition: width 0.3s ease;
        }
        
        .epargne-bar-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 12px;
            color: var(--gray-600);
        }
        
        .dot-regulier, .dot-flexible {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 4px;
        }
        
        .dot-regulier {
            background: var(--btn-primary);
        }
        
        .dot-flexible {
            background: #2B3659;
        }
        
        .epargne-bar-existing {
            background: #9CA3AF;
            transition: width 0.3s ease;
        }
        
        .dot-existing {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 4px;
            background: #9CA3AF;
        }
        
        /* 3e piliers existants */
        .existing-3p-container {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 16px;
            margin-top: 16px;
        }
        
        .existing-3p-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            font-size: 13px;
            font-weight: 600;
            color: var(--navy-800);
        }
        
        .btn-add-3p {
            background: var(--btn-primary);
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .btn-add-3p:hover {
            background: #5a7a68;
        }
        
        .existing-3p-item {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 8px;
        }
        
        .existing-3p-row {
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }
        
        .existing-3p-field {
            flex: 1;
        }
        
        .existing-3p-field label {
            display: block;
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        
        .form-select-small, .form-input-small {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            font-size: 13px;
            background: var(--white);
        }
        
        .btn-remove-3p {
            background: #fee2e2;
            color: #dc2626;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            font-size: 18px;
            cursor: pointer;
            flex-shrink: 0;
        }
        
        .btn-remove-3p:hover {
            background: #fecaca;
        }
        
        .existing-3p-total {
            display: flex;
            justify-content: space-between;
            padding-top: 12px;
            border-top: 1px dashed var(--gray-300);
            margin-top: 4px;
            font-size: 13px;
            font-weight: 600;
            color: var(--navy-800);
        }
        
        @media (max-width: 600px) {
            .existing-3p-row {
                flex-wrap: wrap;
            }
            .existing-3p-field {
                min-width: calc(50% - 5px);
            }
        }
        
        @media (max-width: 500px) {
            .epargne-split {
                grid-template-columns: 1fr;
            }
        }
        
        /* Knowledge grid */
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        
        .knowledge-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .knowledge-item:hover {
            border-color: var(--gray-300);
            background: var(--gray-50);
        }
        
        .knowledge-item input {
            display: none;
        }
        
        .knowledge-check {
            width: 18px;
            height: 18px;
            border: 2px solid var(--gray-300);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            flex-shrink: 0;
        }
        
        .knowledge-item input:checked + .knowledge-check {
            background: var(--btn-primary);
            border-color: var(--btn-primary);
        }
        
        .knowledge-item input:checked + .knowledge-check::after {
            content: '✓';
            color: white;
            font-size: 12px;
            font-weight: 700;
        }
        
        .knowledge-label {
            font-size: 13px;
            color: var(--navy-800);
        }
        
        @media (max-width: 600px) {
            .knowledge-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 400px) {
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Inline choices */
        .inline-choices {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .inline-choice-btn {
            padding: 10px 20px;
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--navy-800);
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .inline-choice-btn:hover {
            border-color: var(--gray-300);
            background: var(--gray-50);
        }
        
        .inline-choice-btn.selected {
            border-color: var(--btn-primary);
            background: rgba(121, 154, 136, 0.1);
            color: var(--btn-primary);
            font-weight: 600;
        }
        
        /* ========== CHOICE BUTTONS ========== */
        .choices-grid {
            display: grid;
            gap: 12px;
        }
        .choices-grid.cols-2 { grid-template-columns: 1fr 1fr; }
        .choices-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
        
        @media (max-width: 600px) {
            .choices-grid.cols-2, .choices-grid.cols-3 { grid-template-columns: 1fr; }
        }
        
        .choice-btn {
            padding: 16px;
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
            text-align: left;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .choice-btn:hover {
            border-color: var(--gray-300);
            background: var(--gray-50);
        }
        
        .choice-btn.selected {
            border-color: var(--btn-primary);
            background: var(--gray-50);
        }
        
        .choice-icon {
            font-size: 24px;
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background: var(--gray-100);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .choice-btn.selected .choice-icon {
            background: var(--btn-primary);
        }
        
        .choice-icon-svg {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            background: var(--gray-100);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        
        .choice-icon-svg svg {
            width: 100%;
            height: 100%;
            stroke: var(--gray-500);
        }
        
        .choice-btn.selected .choice-icon-svg {
            background: rgba(121, 154, 136, 0.15);
        }
        
        .choice-btn.selected .choice-icon-svg svg {
            stroke: var(--btn-primary);
        }
        
        .choice-content { flex: 1; }
        
        .choice-label {
            font-weight: 600;
            font-size: 15px;
            color: var(--navy-800);
            margin-bottom: 2px;
        }
        
        .choice-desc {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.4;
        }
        
        .choice-check {
            width: 22px;
            height: 22px;
            border: 2px solid var(--gray-300);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: transparent;
            flex-shrink: 0;
            transition: all 0.2s;
        }
        
        .choice-btn.selected .choice-check {
            background: var(--btn-primary);
            border-color: var(--btn-primary);
            color: white;
        }
        
        /* ========== SLIDERS ========== */
        .slider-container {
            padding: 20px 0;
        }
        
        .slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        
        .slider-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--navy-900);
        }
        
        .slider-value small {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-500);
        }
        
        .custom-slider {
            -webkit-appearance: none;
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: var(--gray-200);
            outline: none;
            cursor: pointer;
        }
        
        .custom-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--btn-primary);
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: transform 0.2s;
        }
        
        .custom-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
        }
        
        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 12px;
            color: var(--gray-400);
        }
        
        /* ========== RISK PROFILE ========== */
        .risk-scale {
            display: flex;
            flex-direction: row;
            gap: 8px;
            margin: 16px 0;
        }
        
        .risk-level {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px 12px;
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            cursor: pointer;
            text-align: center;
            transition: all 0.2s;
            flex: 1;
        }
        
        .risk-level:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
        }
        
        .risk-level.selected {
            background: var(--gray-50);
        }
        
        .risk-level.selected.risk-low { 
            border-color: var(--success);
            background: var(--success-light);
        }
        .risk-level.selected.risk-medium { 
            border-color: var(--warning);
            background: rgba(245, 158, 11, 0.1);
        }
        .risk-level.selected.risk-high { 
            border-color: #DC2626;
            background: rgba(220, 38, 38, 0.1);
        }
        
        .risk-indicator {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .risk-level:nth-child(1) .risk-indicator { background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%); }
        .risk-level:nth-child(2) .risk-indicator { background: linear-gradient(135deg, #D1FAE5 0%, #FEF3C7 100%); }
        .risk-level:nth-child(3) .risk-indicator { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); }
        .risk-level:nth-child(4) .risk-indicator { background: linear-gradient(135deg, #FDE68A 0%, #FECACA 100%); }
        .risk-level:nth-child(5) .risk-indicator { background: linear-gradient(135deg, #FECACA 0%, #FCA5A5 100%); }
        
        .risk-indicator-bars {
            display: flex;
            gap: 3px;
            align-items: flex-end;
            height: 24px;
        }
        
        .risk-indicator-bar {
            width: 6px;
            border-radius: 2px;
            transition: all 0.2s;
        }
        
        .risk-level:nth-child(1) .risk-indicator-bar { background: #10B981; }
        .risk-level:nth-child(1) .risk-indicator-bar:nth-child(1) { height: 8px; }
        .risk-level:nth-child(1) .risk-indicator-bar:nth-child(2) { height: 4px; opacity: 0.3; }
        .risk-level:nth-child(1) .risk-indicator-bar:nth-child(3) { height: 4px; opacity: 0.3; }
        .risk-level:nth-child(1) .risk-indicator-bar:nth-child(4) { height: 4px; opacity: 0.3; }
        
        .risk-level:nth-child(2) .risk-indicator-bar { background: #34D399; }
        .risk-level:nth-child(2) .risk-indicator-bar:nth-child(1) { height: 8px; }
        .risk-level:nth-child(2) .risk-indicator-bar:nth-child(2) { height: 12px; }
        .risk-level:nth-child(2) .risk-indicator-bar:nth-child(3) { height: 4px; opacity: 0.3; }
        .risk-level:nth-child(2) .risk-indicator-bar:nth-child(4) { height: 4px; opacity: 0.3; }
        
        .risk-level:nth-child(3) .risk-indicator-bar { background: #F59E0B; }
        .risk-level:nth-child(3) .risk-indicator-bar:nth-child(1) { height: 8px; }
        .risk-level:nth-child(3) .risk-indicator-bar:nth-child(2) { height: 12px; }
        .risk-level:nth-child(3) .risk-indicator-bar:nth-child(3) { height: 16px; }
        .risk-level:nth-child(3) .risk-indicator-bar:nth-child(4) { height: 4px; opacity: 0.3; }
        
        .risk-level:nth-child(4) .risk-indicator-bar { background: #F97316; }
        .risk-level:nth-child(4) .risk-indicator-bar:nth-child(1) { height: 8px; }
        .risk-level:nth-child(4) .risk-indicator-bar:nth-child(2) { height: 12px; }
        .risk-level:nth-child(4) .risk-indicator-bar:nth-child(3) { height: 16px; }
        .risk-level:nth-child(4) .risk-indicator-bar:nth-child(4) { height: 20px; }
        
        .risk-level:nth-child(5) .risk-indicator-bar { background: #DC2626; }
        .risk-level:nth-child(5) .risk-indicator-bar:nth-child(1) { height: 8px; }
        .risk-level:nth-child(5) .risk-indicator-bar:nth-child(2) { height: 12px; }
        .risk-level:nth-child(5) .risk-indicator-bar:nth-child(3) { height: 18px; }
        .risk-level:nth-child(5) .risk-indicator-bar:nth-child(4) { height: 24px; }
        
        .risk-content {
            flex: 1;
        }
        
        .risk-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--navy-900);
            margin-bottom: 2px;
        }
        
        .risk-detail {
            font-size: 11px;
            color: var(--gray-500);
        }
        
        .risk-level.selected .risk-label {
            color: var(--navy-900);
        }
        
        .risk-check {
            display: none;
        }
        
        @media (max-width: 600px) {
            .risk-scale {
                flex-wrap: wrap;
            }
            .risk-level {
                flex: 1 1 calc(50% - 4px);
                min-width: 120px;
            }
            .risk-level:last-child {
                flex: 1 1 100%;
            }
        }
        
        /* ========== ANALYSE LOADING SCREEN ========== */
        .analysis-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--background);
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        
        .analysis-overlay.visible {
            opacity: 1;
            pointer-events: all;
        }
        
        .analysis-content {
            text-align: center;
            padding: 40px;
        }
        
        .analysis-icon {
            width: 140px;
            height: 140px;
            margin: 0 auto 32px;
            position: relative;
        }
        
        .analysis-circle-outer {
            position: absolute;
            top: 0;
            left: 0;
            width: 140px;
            height: 140px;
            border: 2px solid rgba(240, 128, 128, 0.3);
            border-radius: 50%;
            animation: pulse-outer 2s ease-in-out infinite;
        }
        
        .analysis-circle-inner {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 110px;
            height: 110px;
            background: rgba(240, 128, 128, 0.15);
            border-radius: 50%;
            animation: pulse-inner 2s ease-in-out infinite;
        }
        
        .analysis-magnifier {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            animation: search-move 3s ease-in-out infinite;
        }
        
        .analysis-magnifier svg {
            width: 100%;
            height: 100%;
        }
        
        @keyframes pulse-outer {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 1; }
        }
        
        @keyframes pulse-inner {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
        }
        
        @keyframes search-move {
            0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
            25% { transform: translate(-40%, -60%) rotate(-10deg); }
            50% { transform: translate(-50%, -50%) rotate(0deg); }
            75% { transform: translate(-60%, -40%) rotate(10deg); }
        }
        
        .analysis-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 12px;
        }
        
        .analysis-subtitle {
            font-size: 16px;
            color: var(--gray-500);
            margin-bottom: 32px;
        }
        
        .analysis-progress {
            width: 300px;
            height: 6px;
            background: var(--gray-200);
            border-radius: 3px;
            margin: 0 auto 40px;
            overflow: hidden;
        }
        
        .analysis-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #F08080 0%, #E57373 100%);
            border-radius: 3px;
            width: 0%;
            transition: width 0.3s ease;
        }
        
        .analysis-steps {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
            max-width: 280px;
            margin: 0 auto;
        }
        
        .analysis-step {
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0.4;
            transition: all 0.3s ease;
        }
        
        .analysis-step.active {
            opacity: 1;
        }
        
        .analysis-step.completed {
            opacity: 0.6;
        }
        
        .analysis-step-number {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--gray-200);
            color: var(--gray-500);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .analysis-step.active .analysis-step-number {
            background: #F08080;
            color: white;
        }
        
        .analysis-step.completed .analysis-step-number {
            background: var(--btn-primary);
            color: white;
        }
        
        .analysis-step-text {
            font-size: 15px;
            color: var(--gray-500);
            transition: all 0.3s ease;
        }
        
        .analysis-step.active .analysis-step-text {
            color: var(--navy-900);
            font-weight: 600;
        }
        
        /* ========== STRATEGY DISPLAY ========== */
        .strategy-card {
            background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
            border-radius: 16px;
            padding: 32px;
            color: white;
            margin-bottom: 24px;
        }
        
        .strategy-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            margin-bottom: 8px;
        }
        
        .strategy-headline {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        
        .strategy-breakdown {
            display: grid;
            gap: 16px;
        }
        
        .strategy-item {
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .strategy-item-label {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .strategy-item-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        
        .strategy-item-text h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        
        .strategy-item-text p {
            font-size: 12px;
            opacity: 0.7;
        }
        
        .strategy-item-amount {
            font-size: 20px;
            font-weight: 700;
        }
        
        .strategy-total {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .strategy-total-label {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .strategy-total-amount {
            font-size: 28px;
            font-weight: 700;
        }
        
        /* ========== CAPITAL ESTIMATE CARD ========== */
        .capital-estimate-card {
            background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
            border-radius: 16px;
            padding: 24px;
            color: white;
            margin-bottom: 24px;
        }
        
        .capital-estimate-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }
        
        .capital-estimate-icon {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .capital-estimate-icon svg {
            width: 24px;
            height: 24px;
            stroke: #4ADE80;
        }
        
        .capital-estimate-label {
            font-size: 13px;
            opacity: 0.8;
            margin-bottom: 4px;
        }
        
        .capital-estimate-amount {
            font-size: 32px;
            font-weight: 700;
            color: #4ADE80;
        }
        
        .capital-estimate-details {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            padding: 16px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .capital-estimate-detail {
            text-align: center;
        }
        
        .capital-estimate-detail .detail-label {
            font-size: 11px;
            opacity: 0.7;
            display: block;
            margin-bottom: 4px;
        }
        
        .capital-estimate-detail .detail-value {
            font-size: 16px;
            font-weight: 600;
        }
        
        .capital-estimate-detail .detail-value.highlight {
            color: #4ADE80;
        }
        
        .capital-estimate-note {
            font-size: 11px;
            opacity: 0.6;
            margin-top: 12px;
            text-align: center;
        }
        
        /* ========== RECOMMENDATION INTRO ========== */
        .recommendation-intro {
            text-align: center;
            margin-bottom: 24px;
        }
        
        .recommendation-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 8px;
        }
        
        .recommendation-subtitle {
            font-size: 14px;
            color: var(--gray-500);
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* ========== INSURANCE CARDS IMPROVED ========== */
        .insurance-cards-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .insurance-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .insurance-card:hover {
            border-color: var(--gray-300);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        
        .insurance-card.selected {
            border-color: var(--btn-primary);
            box-shadow: 0 0 0 3px rgba(121, 154, 136, 0.2);
        }
        
        .insurance-card.recommended {
            border-color: var(--btn-primary);
        }
        
        .insurance-card-badge {
            background: linear-gradient(90deg, var(--btn-primary) 0%, #5a9a78 100%);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 6px 16px;
            text-align: center;
        }
        
        .insurance-card-main {
            padding: 20px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        
        .insurance-card-logo {
            width: 80px;
            height: 60px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            padding: 8px;
        }
        
        .insurance-card-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .insurance-card-content {
            flex: 1;
        }
        
        .insurance-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        .insurance-card-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy-900);
        }
        
        .insurance-card-type {
            font-size: 12px;
            color: var(--gray-500);
            background: var(--gray-100);
            padding: 4px 10px;
            border-radius: 20px;
        }
        
        .insurance-card-desc {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.5;
            margin-bottom: 12px;
        }
        
        .insurance-card-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }
        
        .insurance-highlight {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--gray-600);
            background: var(--gray-50);
            padding: 6px 12px;
            border-radius: 20px;
        }
        
        .insurance-highlight svg {
            width: 14px;
            height: 14px;
            stroke: var(--success);
        }
        
        .insurance-card-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-100);
        }
        
        .insurance-stat {
            text-align: center;
        }
        
        .insurance-stat-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy-900);
        }
        
        .insurance-stat-value.positive {
            color: var(--success);
        }
        
        .insurance-stat-label {
            font-size: 10px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        .insurance-card-check {
            width: 28px;
            height: 28px;
            border: 2px solid var(--gray-300);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: transparent;
            flex-shrink: 0;
            transition: all 0.2s;
        }
        
        .insurance-card.selected .insurance-card-check {
            background: var(--btn-primary);
            border-color: var(--btn-primary);
            color: white;
        }
        
        @media (max-width: 600px) {
            .capital-estimate-details {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .insurance-card-main {
                flex-direction: column;
                align-items: stretch;
            }
            .insurance-card-logo {
                width: 100%;
                height: 50px;
            }
            .insurance-card-stats {
                grid-template-columns: 1fr;
            }
        }
        
        /* ========== OTHER COMPANIES COMPACT ========== */
        .other-companies-section {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px dashed var(--gray-300);
        }
        
        .other-companies-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-500);
            margin-bottom: 16px;
            text-align: center;
        }
        
        .other-companies-grid {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .insurance-card-compact {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 10px;
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 180px;
            flex: 0 1 auto;
        }
        
        .insurance-card-compact:hover {
            border-color: var(--gray-300);
            box-shadow: var(--shadow-sm);
        }
        
        .insurance-card-compact.selected {
            border-color: var(--btn-primary);
            background: rgba(121, 154, 136, 0.05);
        }
        
        .insurance-compact-logo {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-50);
            flex-shrink: 0;
        }
        
        .insurance-compact-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .insurance-compact-info {
            flex: 1;
        }
        
        .insurance-compact-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--navy-800);
        }
        
        .insurance-compact-perf {
            font-size: 11px;
            color: var(--success);
            font-weight: 500;
        }
        
        .insurance-compact-check {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid var(--gray-300);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: transparent;
            transition: all 0.2s;
            flex-shrink: 0;
        }
        
        .insurance-card-compact.selected .insurance-compact-check {
            background: var(--btn-primary);
            border-color: var(--btn-primary);
            color: white;
        }
        
        /* ========== COMPANY CARDS ========== */
        .companies-grid {
            display: grid;
            gap: 16px;
        }
        
        .company-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        
        .company-card:hover {
            border-color: var(--gray-300);
            box-shadow: var(--shadow-md);
        }
        
        .company-card.selected {
            border-color: var(--btn-primary);
            background: var(--gray-50);
        }
        
        .company-logo {
            width: 70px;
            height: 50px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--navy-700);
            flex-shrink: 0;
            padding: 6px;
            border: 1px solid var(--gray-200);
        }
        
        .company-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .company-info { flex: 1; }
        
        .company-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 4px;
        }
        
        .company-type {
            font-size: 12px;
            color: var(--gray-500);
            margin-bottom: 8px;
        }
        
        .company-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        
        .company-tag {
            font-size: 11px;
            padding: 4px 10px;
            background: var(--gray-100);
            border-radius: 100px;
            color: var(--gray-600);
        }
        
        .company-tag.highlight {
            background: var(--success-light);
            color: var(--success);
        }
        
        .company-check {
            width: 24px;
            height: 24px;
            border: 2px solid var(--gray-300);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: transparent;
            flex-shrink: 0;
        }
        
        .company-card.selected .company-check {
            background: var(--btn-primary);
            border-color: var(--btn-primary);
            color: white;
        }
        
        .company-card.recommended {
            border-color: var(--btn-primary);
            background: rgba(121, 154, 136, 0.05);
        }
        
        .company-recommend {
            font-size: 11px;
            font-weight: 600;
            color: var(--btn-primary);
            background: rgba(121, 154, 136, 0.15);
            padding: 4px 10px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 6px;
        }
        
        /* ========== SECTION DIVIDER ========== */
        .section-divider {
            text-align: center;
            margin: 32px 0;
            position: relative;
        }
        
        .section-divider::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            height: 1px;
            background: var(--gray-200);
        }
        
        .section-divider span {
            background: var(--background);
            padding: 0 16px;
            position: relative;
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 500;
        }
        
        /* ========== NAVIGATION BUTTONS ========== */
        .nav-buttons {
            display: flex;
            gap: 12px;
            margin-top: 32px;
        }
        
        .btn {
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }
        
        .btn-primary {
            background: var(--btn-primary);
            color: white;
            flex: 1;
        }
        
        .btn-primary:hover {
            background: #678a78;
        }
        
        .btn-primary:disabled {
            background: var(--gray-300);
            cursor: not-allowed;
        }
        
        .btn-secondary {
            background: var(--white);
            color: var(--navy-800);
            border: 1px solid var(--gray-300);
        }
        
        .btn-secondary:hover {
            background: var(--gray-50);
        }
        
        /* ========== INFO BOX ========== */
        .info-box {
            background: var(--accent-light);
            border: 1px solid var(--accent);
            border-radius: 10px;
            padding: 16px;
            margin: 20px 0;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }
        
        .info-box-icon {
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .info-box-content {
            font-size: 14px;
            color: var(--navy-800);
            line-height: 1.5;
        }
        
        .info-box-content strong {
            color: var(--navy-900);
        }
        
        /* ========== SAVINGS DISPLAY ========== */
        .savings-box {
            background: var(--success-light);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            margin: 24px 0;
        }
        
        .savings-label {
            font-size: 13px;
            color: var(--success);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        
        .savings-amount {
            font-size: 36px;
            font-weight: 700;
            color: var(--success);
        }
        
        .savings-detail {
            font-size: 13px;
            color: var(--gray-600);
            margin-top: 8px;
        }
        
        /* ========== CALENDAR ========== */
        .calendar-container {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
        }
        
        .calendar-header {
            background: var(--btn-primary);
            color: white;
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .calendar-month {
            font-weight: 600;
            font-size: 16px;
        }
        
        .calendar-nav {
            display: flex;
            gap: 8px;
        }
        
        .calendar-nav button {
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
        }
        
        .calendar-nav button:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: var(--gray-200);
        }
        
        .calendar-day-header {
            background: var(--gray-100);
            padding: 12px;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-500);
        }
        
        .calendar-day {
            background: var(--white);
            padding: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
            min-height: 48px;
        }
        
        .calendar-day:hover:not(.disabled):not(.empty) {
            background: var(--gray-50);
        }
        
        .calendar-day.selected {
            background: var(--btn-primary);
            color: white;
            font-weight: 600;
        }
        
        .calendar-day.disabled {
            color: var(--gray-300);
            cursor: not-allowed;
        }
        
        .calendar-day.empty {
            cursor: default;
        }
        
        .calendar-day.today {
            font-weight: 700;
            color: var(--accent);
        }
        
        /* ========== TIME SLOTS ========== */
        .time-slots {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-top: 16px;
        }
        
        @media (max-width: 500px) {
            .time-slots { grid-template-columns: repeat(3, 1fr); }
        }
        
        .time-slot {
            padding: 12px;
            background: var(--gray-100);
            border: 2px solid transparent;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .time-slot:hover {
            border-color: var(--gray-300);
        }
        
        .time-slot.selected {
            background: var(--btn-primary);
            color: white;
            border-color: var(--btn-primary);
        }
        
        /* ========== SUMMARY ========== */
        .summary-section {
            margin-bottom: 24px;
        }
        
        .summary-title {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-500);
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .summary-items {
            background: var(--gray-50);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .summary-item {
            padding: 14px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .summary-item:last-child {
            border-bottom: none;
        }
        
        .summary-item-label {
            font-size: 14px;
            color: var(--gray-600);
        }
        
        .summary-item-value {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy-900);
        }
        
        /* ========== CONFIRMATION ========== */
        .confirmation-box {
            background: var(--success-light);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
        }
        
        .confirmation-icon {
            width: 64px;
            height: 64px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            margin: 0 auto 24px;
        }
        
        .confirmation-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 8px;
        }
        
        .confirmation-subtitle {
            font-size: 15px;
            color: var(--gray-600);
            margin-bottom: 24px;
        }
        
        /* ========== RESPONSIVE ========== */
        @media (max-width: 600px) {
            .main-container {
                padding: 20px 16px 80px;
            }
            
            .card {
                padding: 24px 20px;
            }
            
            .strategy-card {
                padding: 24px;
            }
            
            .strategy-item {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            
            .strategy-item-label {
                flex-direction: column;
            }
        }
