     /* © support.nextforge.fr 1.1.0 rapport */
        
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #171717;
            font-family: 'Open Sans', sans-serif;
            overflow-x: hidden;
        }
        
        .nav-transparent {
            background: transparent;
            backdrop-filter: none;
        }
        
        .nav-solid {
            background: rgba(23, 23, 23, 0.95);
            backdrop-filter: blur(10px);
        }
        
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(4px);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: #1a1a1a;
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            z-index: 101;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-content.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }
        
        .project-select-card {
            background: #262626;
            border: 2px solid transparent;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .project-select-card:hover {
            border-color: #e23636;
            background: #2a2a2a;
        }
        
        .project-select-card.selected {
            border-color: #e23636;
            background: rgba(226, 54, 54, 0.1);
        }
        
        .form-input {
            width: 100%;
            background: #262626;
            border: 1px solid #333;
            color: white;
            padding: 14px 16px;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #e23636;
        }
        
        .form-input::placeholder {
            color: #666;
        }
        
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 20px;
            padding-right: 44px;
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .type-btn {
            flex: 1;
            padding: 16px;
            background: #262626;
            border: 2px solid transparent;
            color: #999;
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .type-btn:hover {
            border-color: #444;
            color: white;
        }
        
        .type-btn.active {
            border-color: #e23636;
            background: rgba(226, 54, 54, 0.1);
            color: white;
        }
        
        .type-btn svg {
            width: 24px;
            height: 24px;
        }
        
        .btn-primary {
            display: inline-block;
            padding: 16px 40px;
            background: #e23636;
            color: white;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #c42d2d;
            transform: translateY(-2px);
        }
        
        .btn-primary:disabled {
            background: #444;
            cursor: not-allowed;
            transform: none;
        }
        
        .btn-secondary {
            display: inline-block;
            padding: 16px 40px;
            background: transparent;
            border: 2px solid #444;
            color: #999;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            border-color: #666;
            color: white;
        }
        
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            max-width: 80vw;
            height: 100vh;
            background: #171717;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 999;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            margin: 6px 0;
            transition: all 0.3s ease;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .step-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #333;
            transition: all 0.3s ease;
        }
        
        .step-dot.active {
            background: #e23636;
            width: 30px;
            border-radius: 5px;
        }
        
        .step-dot.completed {
            background: #e23636;
        }
        
        @keyframes checkmark {
            0% {
                stroke-dashoffset: 100;
            }
            100% {
                stroke-dashoffset: 0;
            }
        }
        
        .checkmark-circle {
            stroke-dasharray: 166;
            stroke-dashoffset: 166;
            animation: checkmark 0.6s ease-in-out forwards;
        }
        
        .checkmark-check {
            stroke-dasharray: 48;
            stroke-dashoffset: 48;
            animation: checkmark 0.3s 0.3s ease-in-out forwards;
        }
        
        .step-section {
            display: none;
        }
        
        .step-section.active {
            display: block;
        }