@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);
            min-height: 100vh;
            padding: 40px 20px;
            color: var(--text-primary);
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
        }
        
        /* 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 {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeIn 0.8s ease;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            margin-bottom: 20px;
        }
        
        .logo-link {
            text-decoration: none;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 25px;
        }
        
        .logo-wrapper {
            position: relative;
            display: inline-block;
        }

        .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-image:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 30px rgba(36, 102, 238, 0.7));
        }

        .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;
        }

        .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%);
        }

        .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%);
        }

        @keyframes rotateBeams {
            0% {
                transform: translateX(-50%) rotate(0deg);
            }
            100% {
                transform: translateX(-50%) rotate(360deg);
            }
        }
        
        .brand-name {
            font-size: 64px;
            font-weight: 700;
            font-family: 'Righteous', sans-serif;
            color: var(--text-primary);
            letter-spacing: -2px;
        }
        
        .brand-name .lumen {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 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-size: 42px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 15px;
            font-family: 'Afacad', sans-serif;
        }
        
        .page-title .highlight {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-subtitle {
            font-size: 16px;
            color: var(--text-tertiary);
            font-weight: 300;
            margin-bottom: 40px;
        }
        
        .card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            padding: 35px;
            border-radius: 24px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px var(--shadow-color);
        }
        
        .card:hover {
            background: var(--bg-card-hover);
            border-color: rgba(36, 102, 238, 0.3);
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 25px;
            font-family: 'Afacad', sans-serif;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .section-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            border-radius: 2px;
        }
        
        .form-grid {
            display: grid;
            gap: 20px;
        }
        
        .form-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .form-field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        label {
            font-weight: 500;
            color: var(--text-secondary);
            font-size: 15px;
            font-family: 'Inter', sans-serif;
        }
        
        input[type="text"], input[type="email"], input[type="tel"], select {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            background: var(--input-bg);
            color: var(--text-primary);
            transition: all 0.3s ease;
        }
        
        input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus {
            outline: none;
            border-color: #2466ee;
            background: var(--input-bg-focus);
            box-shadow: 0 0 0 3px rgba(36, 102, 238, 0.1);
        }
        
        select option {
            background: var(--bg-primary);
            color: var(--text-primary);
        }
        
        .results {
            display: none;
            animation: fadeIn 0.6s ease;
            margin-top: 40px;
        }
        
        .results.visible {
            display: block;
        }
        
        .results-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .results-header h2 {
            font-size: 32px;
            font-weight: 600;
            color: var(--text-primary);
            font-family: 'Afacad', sans-serif;
            margin-bottom: 10px;
        }
        
        .result-box {
            background: linear-gradient(90deg, #003d6b 0%, #2466ee 100%);
            color: white;
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(36, 102, 238, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }
        
        .result-box h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
            font-family: 'Afacad', sans-serif;
        }
        
        .result-box .label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
        }
        
        .result-box .big-number {
            font-family: 'Afacad', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            line-height: 1.1;
        }
        
        .result-box .economy-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .valuation-range {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            flex-wrap: wrap;
        }
        
        .range-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .range-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .range-value {
            font-size: 24px;
            font-weight: 600;
            color: white;
            font-family: 'Afacad', sans-serif;
        }
        
        .range-separator {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 300;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            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);
            margin-top: 30px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(36, 102, 238, 0.5);
        }

        /* LEAD MAGNET STYLES */
        .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;
        }
        
        .email-form input[type="email"]:focus,
        .email-form input[type="tel"]:focus,
        .email-form select:focus { 
            border-color: #2466ee; 
            background: white; 
        }
        
        .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%; }
        }
        
        /* SEO Content Styles */
        .seo-content {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            padding: 40px;
            border-radius: 24px;
            margin-top: 50px;
            box-shadow: 0 4px 20px var(--shadow-color);
        }
        
        .seo-content h2 {
            font-size: 28px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 40px 0 20px 0;
            font-family: 'Afacad', sans-serif;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .seo-content h2:first-of-type {
            margin-top: 0;
        }
        
        .seo-content h2::before {
            content: '';
            width: 4px;
            height: 28px;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            border-radius: 2px;
        }
        
        .seo-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 30px 0 15px 0;
            font-family: 'Afacad', sans-serif;
        }
        
        .seo-content p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .seo-content a {
            color: #4a8fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .seo-content a:hover {
            color: #00d4ff;
            text-decoration: underline;
        }
        
        .seo-content ul {
            margin: 20px 0;
            padding-left: 25px;
        }
        
        .seo-content li {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        
        .seo-content .highlight-box {
            background: linear-gradient(135deg, rgba(36, 102, 238, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
            border: 1px solid rgba(36, 102, 238, 0.3);
            padding: 25px;
            border-radius: 16px;
            margin: 30px 0;
        }
        
        .seo-content .highlight-box p {
            margin-bottom: 0;
        }
        
        .method-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .method-card {
            background: var(--bg-card-hover);
            border: 1px solid var(--border-color);
            padding: 25px;
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .method-card:hover {
            border-color: rgba(36, 102, 238, 0.4);
            transform: translateY(-3px);
        }
        
        .method-card h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            font-family: 'Afacad', sans-serif;
        }
        
        .method-card p {
            font-size: 14px;
            margin-bottom: 0;
        }
        
        .cta-section {
            background: linear-gradient(135deg, rgba(36, 102, 238, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
            border: 1px solid rgba(36, 102, 238, 0.3);
            padding: 40px;
            border-radius: 20px;
            margin-top: 40px;
            text-align: center;
        }
        
        .cta-section h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .cta-section p {
            margin-bottom: 25px;
        }
        
        .cta-section .cta-button {
            display: inline-flex;
            width: auto;
            margin-top: 0;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .handwritten-note { display: none; }
            body {
                padding: 20px 8px;
            }
            
            .top-nav {
                margin-bottom: 20px;
                padding: 0 15px;
                gap: 12px;
            }
            
            .nav-button {
                padding: 10px 12px;
                font-size: 12px;
                gap: 6px;
                border-radius: 8px;
                flex-shrink: 1;
                min-width: 0;
            }
            
            .nav-button svg {
                width: 16px;
                height: 16px;
            }
            
            .nav-button img {
                width: 18px;
                height: 18px;
            }
            
            .logo-image {
                width: 90px;
            }

            .lighthouse-beams {
        top: -30%;
    }
            
            .brand-name {
                font-size: 56px;
            }
            
            .page-title {
                font-size: 32px;
            }
            
            .card {
                padding: 25px;
            }
            
            .section-title {
                font-size: 18px;
            }
            
            input[type="text"], select {
                padding: 12px 16px;
                font-size: 15px;
            }
            
            .results-grid {
                grid-template-columns: 1fr;
            }
            
            .result-box {
                padding: 25px;
            }
            
            .result-box .big-number {
                font-size: 40px;
            }
            
            .cta-button {
                padding: 16px 28px;
                font-size: 15px;
            }
            
            .seo-content {
                padding: 25px;
            }
            
            .seo-content h2 {
                font-size: 22px;
            }
            
            .seo-content h3 {
                font-size: 18px;
            }

            /* Lead magnet mobile */
            .locked-section { padding: 30px 15px; min-height: 350px; }
            .locked-overlay { padding: 25px 15px; }
            .lock-icon { width: 60px; height: 60px; margin-bottom: 18px; }
            .lock-icon svg { width: 30px; height: 30px; }
            .unlock-title { font-size: 22px; margin-bottom: 12px; }
            .unlock-subtitle { font-size: 14px; margin-bottom: 20px; }
            .unlock-benefit { font-size: 13px; gap: 10px; margin-bottom: 10px; }
            .unlock-benefit svg { width: 18px; height: 18px; }
            .email-form { gap: 10px; }
            .email-form input[type="email"],
            .email-form input[type="tel"],
            .email-form select { 
                padding: 13px 16px 13px 42px; 
                font-size: 14px; 
            }
            .unlock-button { padding: 14px 30px; font-size: 14px; letter-spacing: 1px; }
            .bonus-tag { font-size: 12px; padding: 7px 14px; gap: 6px; margin-top: 12px; }
            .bonus-tag svg { width: 14px; height: 14px; }
            
            .confirmation-section { padding: 40px 20px; }
            .confirmation-icon { width: 80px; height: 80px; margin-bottom: 25px; }
            .confirmation-icon svg { width: 40px; height: 40px; }
            .confirmation-title { font-size: 26px; margin-bottom: 16px; }
            .confirmation-text { font-size: 15px; margin-bottom: 25px; }
            .confirmation-details { padding: 20px; }
            .confirmation-detail { font-size: 14px; gap: 12px; margin-bottom: 12px; }
            .confirmation-detail svg { width: 20px; height: 20px; }
        }
        
        @media (max-width: 520px) {
            .top-nav {
                margin-bottom: 15px;
                gap: 8px;
                padding: 0 8px;
            }
            
            .nav-button {
                padding: 8px 8px;
                font-size: 11px;
                gap: 4px;
            }
            
            .nav-button svg {
                width: 14px;
                height: 14px;
            }
            
            .nav-button img {
                width: 16px;
                height: 16px;
            }
        }
        
        @media (max-width: 380px) {
            .nav-button .nav-text {
                display: none;
            }
            
            .nav-button {
                padding: 10px;
                justify-content: center;
            }
        }
        .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; }