@import url('https://fonts.googleapis.com/css2?family=Afacad:wght@300;400;500;600;700&family=Caveat:wght@400;500;600&family=Inter:wght@300;400;500;600&family=Righteous&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --bg-primary: #0a0f1e;
            --bg-card: rgba(255, 255, 255, 0.03);
            --bg-card-hover: rgba(255, 255, 255, 0.05);
            --border-color: rgba(255, 255, 255, 0.1);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.8);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --input-bg: rgba(255, 255, 255, 0.05);
            --input-bg-focus: rgba(255, 255, 255, 0.08);
            --gradient-start: #2466ee;
            --gradient-end: #00d4ff;
            --shadow-color: rgba(36, 102, 238, 0.3);
            --handwritten-color: rgba(255, 255, 255, 0.85);
        }
        
        @media (prefers-color-scheme: light) {
            :root {
                --bg-primary: #f6faff;
                --bg-card: rgba(255, 255, 255, 0.9);
                --bg-card-hover: rgba(255, 255, 255, 1);
                --border-color: rgba(3, 29, 51, 0.1);
                --text-primary: #031d33;
                --text-secondary: #043864;
                --text-tertiary: #666666;
                --input-bg: rgba(255, 255, 255, 1);
                --input-bg-focus: rgba(255, 255, 255, 1);
                --gradient-start: #2466ee;
                --gradient-end: #00d4ff;
                --shadow-color: rgba(3, 29, 51, 0.08);
                --handwritten-color: #333333;
            }
            
            .logo-image {
                filter: drop-shadow(0 2px 10px rgba(3, 29, 51, 0.2)) !important;
            }
        }

        /* Theme toggle overrides */
        html[data-theme="light"] {
            --bg-primary: #f6faff;
            --bg-card: rgba(255, 255, 255, 0.9);
            --bg-card-hover: rgba(255, 255, 255, 1);
            --border-color: rgba(3, 29, 51, 0.1);
            --text-primary: #031d33;
            --text-secondary: #043864;
            --text-tertiary: #666666;
            --input-bg: rgba(255, 255, 255, 1);
            --input-bg-focus: rgba(255, 255, 255, 1);
            --shadow-color: rgba(3, 29, 51, 0.08);
            --handwritten-color: #333333;
        }
        html[data-theme="light"] .logo-image { filter: drop-shadow(0 2px 10px rgba(3, 29, 51, 0.2)) !important; }
        html[data-theme="light"] .progress-indicator { color: #0a0f1e; }
        html[data-theme="dark"] {
            --bg-primary: #0a0f1e;
            --bg-card: rgba(255, 255, 255, 0.03);
            --bg-card-hover: rgba(255, 255, 255, 0.05);
            --border-color: rgba(255, 255, 255, 0.1);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.8);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --input-bg: rgba(255, 255, 255, 0.05);
            --input-bg-focus: rgba(255, 255, 255, 0.08);
            --shadow-color: rgba(36, 102, 238, 0.3);
            --handwritten-color: rgba(255, 255, 255, 0.85);
        }
        .theme-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px var(--shadow-color);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .theme-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 20px var(--shadow-color);
        }
        .theme-toggle svg {
            width: 22px;
            height: 22px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            padding: 30px 20px;
            min-height: 100vh;
        }
        
        /* NAVIGATION SUPÉRIEURE */
        .top-nav {
            max-width: 1000px;
            margin: 0 auto 30px auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            flex-wrap: nowrap;
        }
        
        .nav-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .nav-button:hover {
            background: rgba(36, 102, 238, 0.1);
            border-color: #2466ee;
            color: #2466ee;
        }
        
        .nav-button.left:hover {
            transform: translateX(-3px);
        }
        
        .nav-button.right:hover {
            transform: translateX(3px);
        }
        
        .nav-button svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        
        .nav-button img {
            width: 20px;
            height: 20px;
            object-fit: contain;
            flex-shrink: 0;
        }
        
        .nav-button .nav-text {
            display: inline;
        }

        .nav-left-wrapper, .nav-right-wrapper {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .nav-left-wrapper { align-items: flex-start; }
        .nav-right-wrapper { align-items: flex-end; }

        .handwritten-note {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-left: 25px;
            animation: wiggle 3s ease-in-out infinite;
        }

        .handwritten-arrow {
            width: 40px;
            height: 50px;
            color: var(--handwritten-color);
            flex-shrink: 0;
            opacity: 0.7;
        }

        .handwritten-text {
            font-family: 'Caveat', cursive;
            font-size: 22px;
            color: var(--handwritten-color);
            line-height: 1.2;
            transform: rotate(-1deg);
            opacity: 0.7;
        }

        @keyframes wiggle {
            0%, 100% { transform: rotate(0deg) translateY(0); }
            50% { transform: rotate(1deg) translateY(-2px); }
        }

        .handwritten-note.right-note {
            margin-left: 0;
            margin-right: 25px;
        }

        .handwritten-note.right-note .handwritten-text {
            text-align: right;
            transform: rotate(1deg);
        }

        .handwritten-arrow.arrow-right {
            transform: scaleX(-1);
        }

        
        /* CONTAINER */
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* HEADER */
        .header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeIn 0.8s ease;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .logo-container {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .logo-link {
            text-decoration: none;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 25px;
        }
        
        /* Wrapper pour le logo avec effet rotatif */
        .logo-wrapper {
            position: relative;
            display: inline-block;
        }
        
        /* Logo avec drop-shadow */
        .logo-image {
            width: 100px;
            height: auto;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease-out;
            filter: drop-shadow(0 0 20px rgba(36, 102, 238, 0.5));
        }
        
        .logo-link:hover .logo-image {
            transform: scale(1.05);
        }
        
        /* Rayons de lumière rotatifs - FIXÉS AU SOMMET DU PHARE */
        .lighthouse-beams {
            position: absolute;
            top: -25%;
            left: 50%;
            transform: translateX(-50%);
            transform-origin: center center;
            width: 90px;
            height: 90px;
            z-index: 1;
            pointer-events: none;
            animation: rotateBeams 8s linear infinite;
        }
        
        /* Faisceau lumineux 1 (principal - cyan) */
        .beam {
            position: absolute;
            top: 50%;
            left: 50%;
            transform-origin: 0 0;
            pointer-events: none;
        }
        
        .beam-1 {
            width: 60px;
            height: 22px;
            background: linear-gradient(90deg, 
                rgba(0, 212, 255, 0.5) 0%,
                rgba(0, 212, 255, 0.3) 30%,
                rgba(0, 212, 255, 0.1) 60%,
                transparent 100%);
            transform: translate(-4px, -11px) rotate(0deg);
            transform-origin: 0 center;
            filter: blur(6px);
            clip-path: polygon(0 35%, 100% 0%, 100% 100%, 0 65%);
        }
        
        /* Faisceau lumineux 2 (secondaire - bleu) */
        .beam-2 {
            width: 50px;
            height: 18px;
            background: linear-gradient(90deg, 
                rgba(36, 102, 238, 0.4) 0%,
                rgba(36, 102, 238, 0.25) 30%,
                rgba(36, 102, 238, 0.1) 60%,
                transparent 100%);
            transform: translate(-4px, -9px) rotate(180deg);
            transform-origin: 0 center;
            filter: blur(6px);
            clip-path: polygon(0 35%, 100% 0%, 100% 100%, 0 65%);
        }
        
        /* Animation de rotation des faisceaux */
        @keyframes rotateBeams {
            0% {
                transform: translateX(-50%) rotate(0deg);
            }
            100% {
                transform: translateX(-50%) rotate(360deg);
            }
        }
        
        .brand-name {
            font-family: 'Righteous', sans-serif;
            font-size: 64px;
            font-weight: 700;
            letter-spacing: -2px;
            margin: 0;
        }
        
        .lumen {
            background: linear-gradient(135deg, #2466ee 0%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .brand-subtitle {
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 40px;
        }
        
        .brand-link {
            color: var(--text-tertiary);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .brand-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #2466ee, #00d4ff);
            transition: width 0.3s ease;
        }
        
        .brand-link:hover {
            color: var(--text-primary);
            background: var(--bg-card);
        }
        
        .brand-link:hover::before {
            width: 80%;
        }
        
        .brand-link svg {
            width: 14px;
            height: 14px;
            opacity: 0;
            transform: translateX(-5px);
            transition: all 0.3s ease;
        }
        
        .brand-link:hover svg {
            opacity: 1;
            transform: translateX(0);
        }
        
        .page-title {
            font-family: 'Afacad', sans-serif;
            font-size: 42px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .highlight {
            background: linear-gradient(135deg, #2466ee 0%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }
        
        /* RESULTS SUMMARY */
        .results-summary {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
            animation: fadeIn 0.6s ease;
        }
        
        .summary-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .summary-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .summary-card:hover {
            background: var(--bg-card-hover);
            border-color: rgba(36, 102, 238, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(36, 102, 238, 0.2);
        }
        
        .summary-card:hover::before {
            opacity: 1;
        }
        
        .summary-card.recettes {
            border-color: rgba(36, 102, 238, 0.5);
            --accent-color: #2466ee;
        }
        
        .summary-card.charges {
            border-color: rgba(255, 77, 77, 0.5);
            --accent-color: #ff4d4d;
        }
        
        .summary-card.epargne {
            background: linear-gradient(135deg, #2466ee 0%, #00d4ff 100%);
            border: none;
            box-shadow: 0 8px 25px rgba(36, 102, 238, 0.3);
        }
        
        .summary-card.epargne:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(36, 102, 238, 0.4);
        }
        
        .summary-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 12px;
            background: rgba(36, 102, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .summary-card.recettes .summary-icon {
            background: rgba(36, 102, 238, 0.15);
            color: #2466ee;
        }
        
        .summary-card.charges .summary-icon {
            background: rgba(255, 77, 77, 0.15);
            color: #ff4d4d;
        }
        
        .summary-card.epargne .summary-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .summary-card:hover .summary-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .summary-card.epargne .summary-label,
        .summary-card.epargne .summary-value,
        .summary-card.epargne .summary-percentage {
            color: white;
        }
        
        .summary-label {
            font-size: 11px;
            color: var(--text-secondary);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 600;
        }
        
        .summary-value {
            font-family: 'Afacad', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
        }
        
        .summary-percentage {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin-top: 8px;
        }
        
        .summary-card.epargne .summary-percentage {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* TREE CONTAINER */
        .tree-container {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 24px;
            box-shadow: 0 4px 20px var(--shadow-color);
            margin-bottom: 30px;
        }
        
        .tree-section {
            margin-bottom: 40px;
        }
        
        .tree-section:last-child {
            margin-bottom: 0;
        }
        
        /* NODE STYLES */
        .node {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: var(--bg-card-hover);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            margin-bottom: 15px;
        }
        
        .node:hover {
            background: var(--input-bg-focus);
            border-color: rgba(36, 102, 238, 0.4);
            transform: translateX(3px);
        }
        
        .node.type-recette {
            border-left: 4px solid #2466ee;
        }
        
        .node.type-charge {
            border-left: 4px solid #ff4d4d;
        }
        
        .node.root {
            background: linear-gradient(135deg, #2466ee 0%, #00d4ff 100%);
            border: none;
            color: white;
            margin-bottom: 25px;
        }
        
        .node-expand-btn {
            width: 36px;
            height: 36px;
            min-width: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(36, 102, 238, 0.1);
            border: none;
            border-radius: 10px;
            color: #2466ee;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .node-expand-btn:hover {
            background: rgba(36, 102, 238, 0.2);
        }
        
        .node-expand-btn:active {
            transform: scale(0.95);
        }
        
        .node.root .node-expand-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .node-content {
            flex: 1;
            min-width: 0;
        }
        
        .node-name {
            font-family: 'Afacad', sans-serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .node.root .node-name {
            color: white;
        }
        
        .node-amount {
            font-family: 'Afacad', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #2466ee;
            white-space: nowrap;
        }
        
        .node.type-charge .node-amount {
            color: #ff4d4d;
        }
        
        .node.root .node-amount {
            color: white;
        }
        
        .node-count {
            font-size: 12px;
            color: var(--text-tertiary);
            margin-left: 8px;
        }
        
        .node.root .node-count {
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* CHILDREN CONTAINER */
        .children-container {
            padding-left: 20px;
            border-left: 2px solid var(--border-color);
            margin-left: 18px;
            margin-top: 10px;
        }
        
        .children-container.hidden {
            display: none;
        }
        
        .leaf-node {
            padding: 16px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .leaf-node:hover {
            background: var(--bg-card-hover);
            border-color: rgba(36, 102, 238, 0.3);
        }
        
        .leaf-node.type-recette {
            border-left: 3px solid #2466ee;
        }
        
        .leaf-node.type-charge {
            border-left: 3px solid #ff4d4d;
        }
        
        .leaf-name {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
            flex: 1;
            pointer-events: none;
        }
        
        .leaf-amount {
            font-family: 'Afacad', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #2466ee;
            margin-left: 15px;
            white-space: nowrap;
            padding: 6px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .leaf-node:hover .leaf-amount {
            background: rgba(36, 102, 238, 0.1);
            transform: scale(1.05);
        }
        
        .leaf-node.type-charge .leaf-amount {
            color: #ff4d4d;
        }
        
        .leaf-node.type-charge:hover .leaf-amount {
            background: rgba(255, 77, 77, 0.1);
        }
        
        /* EDIT INPUT */
        .edit-input {
            font-family: 'Afacad', sans-serif;
            font-size: 18px;
            font-weight: 600;
            padding: 8px 12px;
            background: var(--input-bg-focus);
            border: 2px solid #2466ee;
            border-radius: 8px;
            color: var(--text-primary);
            width: 120px;
            text-align: right;
            outline: none;
            box-shadow: 0 0 0 4px rgba(36, 102, 238, 0.15);
            pointer-events: auto;
        }
        
        .edit-input:focus {
            border-color: #00d4ff;
            box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2);
        }
        
        /* Suppression des flèches sur input number */
        .edit-input::-webkit-inner-spin-button,
        .edit-input::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        
        .edit-input {
            -moz-appearance: textfield;
        }
        
        @media (max-width: 768px) {
            .handwritten-note { display: none; }
            .edit-input {
                font-size: 20px;
                padding: 10px 14px;
                width: 140px;
            }
        }
        
        /* CTA BUTTON */
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            padding: 18px 32px;
            background: linear-gradient(135deg, #2466ee 0%, #00d4ff 100%);
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(36, 102, 238, 0.4);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(36, 102, 238, 0.5);
        }
        
        .cta-container {
            text-align: center;
            margin-top: 40px;
        }
        
        /* RESPONSIVE */
        @media (max-width: 768px) {
            body {
                padding: 15px 10px;
            }
            
            .container {
                max-width: 100%;
            }
            
            .top-nav {
                margin-bottom: 20px;
                padding: 0 10px;
                gap: 10px;
            }
            
            .nav-button {
                padding: 8px 10px;
                font-size: 11px;
                gap: 5px;
                border-radius: 8px;
            }
            
            .logo-wrapper {
                transform: scale(0.8);
            }
            
            .logo-image {
                width: 70px;
            }

            .lighthouse-beams {
        top: -35%;
    }
            
            .brand-name {
                font-size: 40px;
            }
            
            .brand-subtitle {
                font-size: 10px;
                margin-bottom: 25px;
            }
            
            .page-title {
                font-size: 26px;
                margin-bottom: 10px;
            }
            
            .page-subtitle {
                font-size: 13px;
                margin-bottom: 20px;
            }
            
            .results-summary {
                grid-template-columns: 1fr;
                gap: 10px;
                margin-bottom: 20px;
            }
            
            .summary-card {
                padding: 16px 14px;
                border-radius: 14px;
            }
            
            .summary-icon {
                width: 35px;
                height: 35px;
                margin-bottom: 8px;
            }
            
            .summary-icon svg {
                width: 18px;
                height: 18px;
            }
            
            .summary-label {
                font-size: 10px;
                margin-bottom: 8px;
                letter-spacing: 1px;
            }
            
            .summary-value {
                font-size: 26px;
                margin-bottom: 5px;
            }
            
            .summary-percentage {
                font-size: 11px;
            }
            
            .tree-container {
                padding: 18px 12px;
                border-radius: 18px;
                margin-bottom: 20px;
            }
            
            .tree-section {
                margin-bottom: 25px;
            }
            
            .node {
                padding: 12px;
                gap: 10px;
                border-radius: 12px;
                margin-bottom: 10px;
            }
            
            .node-expand-btn {
                width: 28px;
                height: 28px;
                min-width: 28px;
                border-radius: 8px;
            }
            
            .node-expand-btn svg {
                width: 14px;
                height: 14px;
            }
            
            .node-name {
                font-size: 14px;
            }
            
            .node-amount {
                font-size: 17px;
            }
            
            .children-container {
                padding-left: 12px;
                margin-left: 8px;
                margin-top: 8px;
            }
            
            .leaf-node {
                padding: 10px 12px;
                flex-direction: row;
                align-items: center;
                gap: 8px;
                margin-bottom: 8px;
                border-radius: 10px;
            }
            
            .leaf-name {
                font-size: 13px;
            }
            
            .leaf-amount {
                margin-left: 0;
                font-size: 16px;
                padding: 6px 10px;
                white-space: nowrap;
            }
            
            .edit-input {
                font-size: 16px;
                padding: 8px 10px;
                width: 120px;
            }
            
            .cta-container {
                margin-top: 25px;
            }
            
            .cta-button {
                font-size: 13px;
                padding: 13px 20px;
                border-radius: 10px;
                gap: 8px;
            }
            
            .cta-button svg {
                width: 16px;
                height: 16px;
            }
            
            /* Lead magnet mobile */
            .locked-section { 
                padding: 25px 12px; 
                min-height: 320px;
                border-radius: 16px;
                margin: 20px 0;
            }
            
            .locked-overlay { 
                padding: 20px 12px; 
            }
            
            .lock-icon { 
                width: 55px; 
                height: 55px; 
                margin-bottom: 15px;
                border-radius: 16px;
            }
            
            .lock-icon svg { 
                width: 26px; 
                height: 26px; 
            }
            
            .unlock-title { 
                font-size: 20px; 
                margin-bottom: 10px;
                line-height: 1.3;
            }
            
            .unlock-subtitle { 
                font-size: 13px; 
                margin-bottom: 18px;
                line-height: 1.4;
            }
            
            .unlock-benefits {
                margin-bottom: 18px;
            }
            
            .unlock-benefit { 
                font-size: 12px; 
                gap: 8px; 
                margin-bottom: 8px;
                line-height: 1.3;
            }
            
            .unlock-benefit svg { 
                width: 16px; 
                height: 16px; 
            }
            
            .email-form { 
                gap: 8px; 
            }
            
            .email-form input[type="email"],
            .email-form input[type="tel"],
            .email-form select { 
                padding: 11px 14px 11px 38px; 
                font-size: 13px;
                border-radius: 8px;
            }
            
            .email-input-wrapper svg {
                left: 12px;
                width: 16px;
                height: 16px;
            }
            
            .unlock-button { 
                padding: 12px 24px; 
                font-size: 13px; 
                letter-spacing: 0.8px;
                border-radius: 8px;
            }
            
            .bonus-tag { 
                font-size: 11px; 
                padding: 6px 12px; 
                gap: 5px; 
                margin-top: 10px;
                border-radius: 16px;
            }
            
            .bonus-tag svg { 
                width: 13px; 
                height: 13px; 
            }
            
            .confirmation-section { 
                padding: 35px 16px;
                border-radius: 16px;
                margin: 20px 0;
            }
            
            .confirmation-icon { 
                width: 70px; 
                height: 70px; 
                margin-bottom: 20px; 
            }
            
            .confirmation-icon svg { 
                width: 35px; 
                height: 35px; 
            }
            
            .confirmation-title { 
                font-size: 24px; 
                margin-bottom: 14px; 
            }
            
            .confirmation-text { 
                font-size: 14px; 
                margin-bottom: 20px;
                line-height: 1.6;
            }
            
            .confirmation-details { 
                padding: 18px;
                border-radius: 12px;
            }
            
            .confirmation-detail { 
                font-size: 13px; 
                gap: 10px; 
                margin-bottom: 10px;
                line-height: 1.5;
            }
            
            .confirmation-detail svg { 
                width: 18px; 
                height: 18px; 
            }
            
            /* SEO Content Mobile */
            .seo-content {
                margin-top: 40px;
            }
            
            .card {
                padding: 20px 16px;
                margin-bottom: 16px;
                border-radius: 16px;
            }
            
            .card h2 {
                font-size: 22px !important;
                margin-bottom: 16px !important;
                gap: 12px !important;
            }
            
            .card h2 span {
                height: 22px !important;
            }
            
            .card h3 {
                font-size: 18px !important;
                margin: 20px 0 12px 0 !important;
            }
            
            .card p {
                font-size: 14px !important;
                line-height: 1.6 !important;
                margin-bottom: 16px !important;
            }
            
            /* Stats grid mobile */
            .card > div[style*="grid-template-columns: repeat(3, 1fr)"] {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
                margin: 20px 0 !important;
            }
            
            .card > div > div[style*="font-size: 42px"] {
                font-size: 32px !important;
            }
            
            .card > div > div > div[style*="font-size: 13px"] {
                font-size: 12px !important;
            }
            
            /* Rules grid mobile */
            .card > div[style*="grid-template-columns: repeat(2, 1fr)"] {
                grid-template-columns: 1fr !important;
                gap: 10px !important;
                margin: 16px 0 !important;
            }
            
            .card > div > div[style*="padding: 20px"] {
                padding: 14px !important;
            }
            
            .card > div > div h4 {
                font-size: 14px !important;
            }
            
            .card > div > div p {
                font-size: 12px !important;
            }
            
            /* Timeline mobile */
            .card > div[style*="display: grid"][style*="grid-template-columns: repeat(3, 1fr)"] > div[style*="text-align: center"] {
                padding: 16px !important;
            }
            
            .card > div > div > div[style*="font-size: 32px"] {
                font-size: 24px !important;
            }
            
            .card > div > div > div[style*="font-size: 18px"] {
                font-size: 16px !important;
            }
            
            /* Highlight boxes mobile */
            .card > div[style*="background: linear-gradient"][style*="border-left"] {
                padding: 14px 16px !important;
                margin: 16px 0 !important;
                border-radius: 10px !important;
            }
            
            .card > div > h4 {
                font-size: 15px !important;
                margin-bottom: 10px !important;
            }
            
            /* Checklist mobile */
            .card > div[style*="display: grid; gap: 15px"] > div {
                gap: 10px !important;
            }
            
            .card > div > div > div[style*="width: 24px"] {
                width: 20px !important;
                height: 20px !important;
            }
            
            .card > div > div > div > div[style*="font-weight: 600"] {
                font-size: 13px !important;
            }
            
            .card > div > div > div > div[style*="font-size: 14px"] {
                font-size: 12px !important;
            }
            
            /* CTA final mobile */
            .card > div[style*="text-align: center"][style*="background: linear-gradient"] {
                padding: 20px !important;
                border-radius: 12px !important;
            }
            
            .card > div > h3 {
                font-size: 20px !important;
                margin-bottom: 12px !important;
            }
            
            .card > div > p {
                font-size: 14px !important;
                margin-bottom: 20px !important;
            }
            
            .card > div > a {
                padding: 12px 24px !important;
                font-size: 13px !important;
            }
        }
        
        @media (max-width: 520px) {
            .top-nav {
                margin-bottom: 15px;
                gap: 8px;
                padding: 0 8px;
            }
            
            .nav-button {
                padding: 8px 8px;
                font-size: 11px;
                gap: 4px;
            }
        }
        
        @media (max-width: 380px) {
            .nav-button .nav-text {
                display: none;
            }
            
            .nav-button {
                padding: 10px;
                justify-content: center;
            }
        }
        
        /* ICONS */
        .icon {
            width: 20px;
            height: 20px;
        }
        
        .icon-sm {
            width: 16px;
            height: 16px;
        }
        
        /* LEAD MAGNET STYLES - VERSION COMPACTE */
        .locked-section {
            position: relative;
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(36, 102, 238, 0.4);
            padding: 40px 30px;
            border-radius: 20px;
            margin: 30px 0;
            overflow: hidden;
            min-height: 400px;
        }
        
        .locked-content {
            filter: blur(12px);
            opacity: 0.2;
            pointer-events: none;
            user-select: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .locked-overlay {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            text-align: center;
            z-index: 10;
        }
        
        .lock-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #2466ee 0%, #00d4ff 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(36, 102, 238, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
            animation: lockPulse 3s ease-in-out infinite;
            position: relative;
            flex-shrink: 0;
        }
        
        .lock-icon::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(135deg, rgba(36, 102, 238, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
            border-radius: 23px;
            z-index: -1;
            filter: blur(10px);
            animation: lockGlow 3s ease-in-out infinite;
        }
        
        @keyframes lockPulse {
            0%, 100% { transform: scale(1) translateY(0); }
            50% { transform: scale(1.03) translateY(-2px); }
        }
        
        @keyframes lockGlow {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }
        
        .lock-icon svg { 
            width: 35px; 
            height: 35px; 
            stroke: white; 
            fill: none; 
            stroke-width: 2.5;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
        
        .unlock-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
            font-family: 'Afacad', sans-serif;
            line-height: 1.2;
        }
        
        .unlock-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 25px;
            line-height: 1.5;
            max-width: 500px;
        }
        
        .unlock-benefits {
            text-align: left;
            max-width: 500px;
            margin: 0 auto 25px auto;
            width: 100%;
        }
        
        .unlock-benefit {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.4;
        }
        
        .unlock-benefit svg {
            width: 20px;
            height: 20px;
            stroke: #00d4ff;
            fill: none;
            stroke-width: 2.5;
            flex-shrink: 0;
            margin-top: 1px;
        }
        
        .email-form { 
            display: flex; 
            flex-direction: column; 
            gap: 12px; 
            max-width: 450px; 
            margin: 0 auto;
            width: 100%;
        }
        
        .email-input-wrapper { position: relative; }
        .email-input-wrapper svg {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            stroke: var(--text-tertiary);
            fill: none;
            stroke-width: 2;
        }
        
        .email-form input[type="email"] {
            width: 100%;
            padding: 14px 18px 14px 45px;
            font-size: 15px;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid var(--border-color);
            color: #031d33;
            border-radius: 10px;
        }
        
        .email-form input[type="tel"] {
            width: 100%;
            padding: 14px 18px 14px 45px;
            font-size: 15px;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid var(--border-color);
            color: #031d33;
            border-radius: 10px;
        }
        
        .email-form select {
            width: 100%;
            padding: 14px 18px 14px 45px;
            font-size: 15px;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid var(--border-color);
            color: #031d33;
            border-radius: 10px;
            cursor: pointer;
            appearance: none;
            background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23666%27 stroke-width=%272%27%3e%3cpolyline points=%276 9 12 15 18 9%27/%3e%3c/svg%3e');
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 20px;
        }
        
        .email-form input[type="email"]:focus,
        .email-form input[type="tel"]:focus,
        .email-form select:focus { 
            border-color: #2466ee; 
            background: white;
            outline: none;
        }
        
        .unlock-button {
            background: linear-gradient(90deg, #2466ee, #00d4ff, #2466ee);
            background-size: 200% 100%;
            animation: gradient-move 3s ease infinite;
            box-shadow: 0 8px 30px rgba(36, 102, 238, 0.5);
            color: white;
            border: none;
            padding: 16px 35px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        
        .unlock-button:hover {
            animation-duration: 1.5s;
            box-shadow: 0 12px 40px rgba(36, 102, 238, 0.7);
            transform: translateY(-2px);
        }
        
        .bonus-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(0, 212, 255, 0.15);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #00d4ff;
            margin-top: 15px;
        }
        
        .bonus-tag svg { width: 16px; height: 16px; stroke: #00d4ff; fill: none; stroke-width: 2; }
        
        /* CONFIRMATION SECTION */
        .confirmation-section {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 212, 255, 0.4);
            padding: 60px 40px;
            border-radius: 20px;
            margin: 30px 0;
            animation: fadeIn 0.6s ease;
        }
        
        .confirmation-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .confirmation-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px auto;
            background: linear-gradient(135deg, #00d4ff 0%, #2466ee 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
            animation: successPulse 2s ease-in-out infinite;
        }
        
        @keyframes successPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .confirmation-icon svg {
            width: 50px;
            height: 50px;
            stroke: white;
            fill: none;
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .confirmation-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            font-family: 'Afacad', sans-serif;
        }
        
        .confirmation-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }
        
        .confirmation-details {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(36, 102, 238, 0.1) 100%);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .confirmation-detail {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
            text-align: left;
        }
        
        .confirmation-detail:last-child {
            margin-bottom: 0;
        }
        
        .confirmation-detail svg {
            width: 24px;
            height: 24px;
            stroke: #00d4ff;
            fill: none;
            stroke-width: 2.5;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .confirmation-detail span {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-secondary);
        }
        
        .confirmation-detail strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        @keyframes gradient-move {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .faq-section { margin-top: 30px; }
        .faq-item { background: var(--input-bg); border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
        .faq-question { padding: 18px 20px; font-weight: 600; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s ease; }
        .faq-question:hover { background: rgba(36, 102, 238, 0.05); }
        .faq-question::after { content: '+'; font-size: 20px; color: #2466ee; transition: transform 0.3s ease; }
        .faq-item.active .faq-question::after { transform: rotate(45deg); }
        .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
        .faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 500px; }
        .faq-answer p { margin: 0; }