/* ===== RESET & BASE ===== */
/* ===== POPUP PRINCIPALE ===== */
        .cyber-popup {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 99999;
            display: none;
            justify-content: center;
            align-items: center;
        }
        .cyber-popup.active {
            display: flex;
        }

        /* Canvas de fond */
        .cyber-popup #bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            opacity: 0.5;
            pointer-events: none;
        }

        /* Overlay de grille cognitive */
        .cyber-popup .neural-overlay {
            position: fixed;
            inset: 0;
            background: 
                linear-gradient(0deg, rgba(0, 180, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(180, 0, 255, 0.03) 1px, transparent 1px),
                radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
            background-size: 40px 40px, 40px 40px, 100% 100%;
            z-index: 1;
            pointer-events: none;
            animation: pulseGrid 8s infinite alternate;
        }

        @keyframes pulseGrid {
            0% { opacity: 0.3; }
            100% { opacity: 0.9; }
        }

        .cyber-popup .flyer-container {
            position: fixed;
            inset: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            padding: 15px;
        }

        .cyber-popup .flyer {
            width: 1400px;
            height: 800px;
            max-width: 98vw;
            max-height: 94vh;
            position: relative;
            perspective: 3500px;
        }

        /* CARD PRINCIPALE */
        .cyber-popup .card {
            width: 100%;
            height: 100%;
            background: rgba(8, 15, 30, 0.88);
            backdrop-filter: blur(25px) saturate(200%);
            -webkit-backdrop-filter: blur(25px) saturate(200%);
            border-radius: 60px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            box-shadow: 
                0 40px 120px rgba(0, 0, 0, 0.9),
                0 0 0 2px rgba(0, 255, 255, 0.2) inset,
                0 0 80px rgba(0, 255, 255, 0.3),
                0 0 40px rgba(150, 0, 255, 0.4);
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
            transform-style: preserve-3d;
            animation: neuroBreath 6s infinite alternate;
        }

        @keyframes neuroBreath {
            0% { box-shadow: 0 40px 120px rgba(0,0,0,0.9), 0 0 0 2px rgba(0,255,255,0.2) inset, 0 0 60px rgba(0,255,255,0.3), 0 0 30px rgba(150,0,255,0.3); }
            100% { box-shadow: 0 50px 150px rgba(150,0,255,0.5), 0 0 0 3px rgba(255,0,255,0.3) inset, 0 0 100px rgba(255,0,255,0.4), 0 0 60px rgba(0,255,255,0.5); }
        }

        .cyber-popup .header {
            padding: 20px 35px 10px;
            border-bottom: 1px solid rgba(0, 255, 255, 0.3);
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cyber-popup .header-left {
            display: flex;
            flex-direction: column;
        }

        .cyber-popup .badge-top {
            font-family: 'Space Grotesk', monospace;
            font-size: 0.85rem;
            color: #aaffff;
            letter-spacing: 4px;
            margin-bottom: 5px;
            text-shadow: 0 0 15px #0ff;
        }

        .cyber-popup .title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 4px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #fff, #a0f0ff, #d0b0ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 50px rgba(0, 200, 255, 0.6);
            line-height: 1;
        }

        .cyber-popup .header-right {
            display: flex;
            gap: 20px;
        }

        .cyber-popup .header-icon {
            font-size: 2.5rem;
            filter: drop-shadow(0 0 15px #ff00ff);
            animation: iconNeuro 3s infinite;
        }

        @keyframes iconNeuro {
            0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
            50% { transform: scale(1.15) rotate(5deg); opacity: 1; filter: drop-shadow(0 0 25px cyan); }
            100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
        }

        .cyber-popup .scan-line {
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #0ff, #f0f, transparent);
            animation: scanMove 4s linear infinite;
            opacity: 0.7;
        }

        @keyframes scanMove {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .cyber-popup .main-content {
            display: flex;
            flex: 1;
            padding: 15px 25px;
            gap: 18px;
            min-height: 0;
            height: calc(100% - 120px);
        }

        /* Colonne Attaque (ex deep) */
        .cyber-popup .attack-col {
            flex: 1;
            background: linear-gradient(145deg, rgba(20, 30, 80, 0.25), rgba(40, 10, 70, 0.2));
            border: 1px solid rgba(100, 100, 255, 0.5);
            border-radius: 40px;
            padding: 18px;
            backdrop-filter: blur(8px);
            display: flex;
            flex-direction: column;
            box-shadow: 0 0 50px rgba(0, 150, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cyber-popup .attack-col::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 30%, rgba(70, 0, 255, 0.2), transparent 70%);
            pointer-events: none;
        }

        .cyber-popup .col-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(100, 100, 255, 0.3);
            padding-bottom: 8px;
        }

        .cyber-popup .col-header h3 {
            font-size: 1.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #b0b0ff, #8080ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px #4466ff;
        }

        .cyber-popup .attack-visual {
            height: 110px;
            background: rgba(10, 10, 40, 0.6);
            border-radius: 30px;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #7799ff;
        }

        .cyber-popup .skull-container {
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: center;
            animation: pulseNeuron 3s infinite alternate;
            z-index: 2;
        }

        @keyframes pulseNeuron {
            0% { transform: scale(1); filter: drop-shadow(0 0 10px #00aaff); }
            100% { transform: scale(1.1); filter: drop-shadow(0 0 30px #cc88ff); }
        }

        .cyber-popup .skull {
            font-size: 3.5rem;
        }

        .cyber-popup .matrix-rain {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, #88aaff 1.5px, transparent 1.5px);
            background-size: 20px 20px;
            animation: netShift 15s linear infinite;
            z-index: 1;
        }

        @keyframes netShift {
            0% { background-position: 0 0; }
            100% { background-position: 40px 40px; }
        }

        .cyber-popup .attack-explanation {
            font-size: 0.8rem;
            line-height: 1.5;
            color: #bbcaff;
            margin: 10px 0;
            background: rgba(0, 50, 100, 0.15);
            padding: 10px 12px;
            border-radius: 20px;
            border-left: 4px solid #7799ff;
        }

        /* Colonne Défense (ex genai) */
        .cyber-popup .defense-col {
            flex: 1;
            background: linear-gradient(145deg, rgba(80, 20, 120, 0.2), rgba(40, 60, 150, 0.15));
            border: 1px solid rgba(200, 100, 255, 0.5);
            border-radius: 40px;
            padding: 18px;
            backdrop-filter: blur(8px);
            display: flex;
            flex-direction: column;
            box-shadow: 0 0 50px rgba(150, 0, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cyber-popup .defense-col::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 70%, rgba(200, 0, 255, 0.15), transparent 70%);
            pointer-events: none;
        }

        .cyber-popup .col-header-defense {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(200, 100, 255, 0.3);
            padding-bottom: 8px;
        }

        .cyber-popup .col-header-defense h3 {
            font-size: 1.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #e0b0ff, #c080ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px #aa44ff;
        }

        .cyber-popup .defense-visual {
            height: 110px;
            background: rgba(40, 10, 60, 0.6);
            border-radius: 30px;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #cc88ff;
        }

        .cyber-popup .shield-container {
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: center;
            animation: floatGen 4s infinite alternate;
            z-index: 2;
        }

        @keyframes floatGen {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-10px) rotate(2deg); }
        }

        .cyber-popup .shield {
            font-size: 3.2rem;
        }

        .cyber-popup .shield-grid {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 40%, #ff88ff22, transparent 50%);
            animation: particleWave 6s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes particleWave {
            0% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.2); }
            100% { opacity: 0.3; transform: scale(1); }
        }

        .cyber-popup .defense-explanation {
            font-size: 0.8rem;
            line-height: 1.5;
            color: #e0c0ff;
            margin: 10px 0;
            background: rgba(100, 0, 150, 0.15);
            padding: 10px 12px;
            border-radius: 20px;
            border-left: 4px solid #cc88ff;
        }

        /* Colonne centrale */
        .cyber-popup .center-col {
            flex: 1.3;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .cyber-popup .pricing-row {
            display: flex;
            gap: 10px;
        }

        .cyber-popup .pricing-mini {
            flex: 1;
            background: rgba(0, 30, 50, 0.6);
            border-radius: 24px;
            padding: 12px;
            border: 1px solid #0ff;
            backdrop-filter: blur(8px);
        }

        .cyber-popup .pricing-mini.accel {
            border-color: #f0f;
            background: rgba(50, 0, 60, 0.6);
            box-shadow: 0 0 30px #ff00ff40;
        }

        .cyber-popup .pricing-header {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: #0ff;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .cyber-popup .pricing-amount {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0ff;
            text-shadow: 0 0 15px #0ff;
            line-height: 1;
        }

        .cyber-popup .accel .pricing-amount {
            color: #f0f;
            text-shadow: 0 0 15px #f0f;
        }

        .cyber-popup .pricing-detail {
            font-size: 0.65rem;
            color: #b0d0ff;
        }

        .cyber-popup .inscription-badge {
            background: rgba(150, 0, 255, 0.25);
            border: 1px solid #c08eff;
            border-radius: 24px;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 1rem;
            font-weight: 600;
            color: #ecf5ff;
            cursor: pointer;
        }

        .cyber-popup .inscription-badge span:last-child {
            font-weight: 800;
            color: #f0b0ff;
            font-size: 1.4rem;
            text-shadow: 0 0 15px #ffaaff;
        }

        .cyber-popup .compliance-box {
            background: rgba(0, 255, 200, 0.05);
            border-radius: 20px;
            padding: 12px 15px;
            border: 1px solid #0ff;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #aafff0;
        }

        .cyber-popup .modules-section {
            background: rgba(10, 10, 30, 0.4);
            border-radius: 30px;
            padding: 12px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .cyber-popup .modules-title {
            color: #b0f0ff;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 10px;
            font-family: 'Space Grotesk', monospace;
        }

        .cyber-popup .modules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            overflow-y: auto;
            max-height: 150px;
            padding-right: 5px;
        }

        .cyber-popup .modules-grid::-webkit-scrollbar {
            width: 5px;
        }

        .cyber-popup .modules-grid::-webkit-scrollbar-thumb {
            background: #0ff;
            border-radius: 10px;
        }

        .cyber-popup .module-item {
            background: rgba(0, 200, 255, 0.05);
            border: 1px solid rgba(0, 200, 255, 0.2);
            border-radius: 18px;
            padding: 8px 10px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.2);
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(5px);
            color: #ecf5ff;
        }

        .cyber-popup .module-item:hover {
            background: rgba(150, 0, 255, 0.2);
            transform: translateX(5px) scale(1.02);
            border-color: #f0f;
            box-shadow: 0 0 20px #ff00ff;
        }

        .cyber-popup .module-icon {
            font-size: 1.2rem;
        }

        .cyber-popup .footer {
            padding: 10px 30px 15px;
            border-top: 1px solid rgba(0, 255, 255, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: #ecf5ff;
        }

        .cyber-popup .footer-items {
            display: flex;
            gap: 30px;
        }

        .cyber-popup .footer-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cyber-popup .qr-mini {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #0ff, #f0f);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #000;
            box-shadow: 0 0 30px #f0f;
            font-weight: bold;
        }

        /* Bouton fermeture cyber */
        .cyber-popup .cyber-close {
            position: absolute;
            top: 20px;
            right: 25px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid #f0f;
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 100000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            box-shadow: 0 0 20px #f0f;
        }

        .cyber-popup .cyber-close:hover {
            background: #f0f;
            color: #000;
            transform: rotate(90deg);
            box-shadow: 0 0 30px #ff00ff;
        }

        /* ===== MODALES ===== */
        .cyber-popup .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cyber-popup .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .cyber-popup .modal-content {
            width: 90%;
            max-width: 500px;
            background: rgba(12, 20, 45, 0.98);
            backdrop-filter: blur(30px);
            border: 2px solid #a0f;
            border-radius: 40px;
            padding: 35px;
            position: relative;
            box-shadow: 0 40px 120px rgba(150, 0, 255, 0.5);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            color: #f0f0ff;
        }

        .cyber-popup .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .cyber-popup .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid #f0f;
            background: transparent;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .cyber-popup .modal-close:hover {
            background: #f0f;
            color: #000;
            transform: rotate(90deg);
        }

        .cyber-popup .modal-title {
            color: #b0a0ff;
            font-size: 2rem;
            margin-bottom: 20px;
            font-family: 'Space Grotesk', monospace;
        }

        .cyber-popup .modal-desc {
            font-size: 1rem;
            margin-bottom: 25px;
            color: #d0d0ff;
            line-height: 1.6;
        }

        .cyber-popup .modal-details {
            background: rgba(30, 10, 50, 0.6);
            border-radius: 25px;
            padding: 20px;
            margin-bottom: 25px;
            border: 1px solid #a0f;
        }

        .cyber-popup .detail-item {
            display: flex;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(170, 0, 255, 0.2);
        }

        .cyber-popup .detail-item:last-child {
            border-bottom: none;
        }

        .cyber-popup .detail-label {
            width: 110px;
            color: #b0f0ff;
            font-family: 'Space Grotesk', monospace;
        }

        .cyber-popup .modal-btn {
            padding: 14px 30px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }

        .cyber-popup .modal-btn-primary {
            background: linear-gradient(135deg, #a0f, #80f);
            color: white;
        }

        .cyber-popup .modal-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px #a0f;
        }

        .cyber-popup .modal-btn-secondary {
            background: transparent;
            border: 1px solid #a0f;
            color: #a0f;
        }

        /* ===== FORMULAIRES NEURO ===== */
        .cyber-popup .inscription-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cyber-popup .inscription-modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .cyber-popup .inscription-modal-content {
            width: 95%;
            max-width: 1200px;
            background: rgba(12, 20, 45, 0.98);
            border: 2px solid #a0f;
            border-radius: 40px;
            padding: 30px 35px;
            position: relative;
            transform: scale(0.95);
            transition: transform 0.3s ease;
            color: #f0f0ff;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 40px 150px rgba(150,0,255,0.6);
        }

        .cyber-popup .inscription-modal-overlay.active .inscription-modal-content {
            transform: scale(1);
        }

        .cyber-popup .inscription-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #f0f;
            background: transparent;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .cyber-popup .inscription-modal-close:hover {
            background: #f0f;
            color: #000;
            transform: rotate(90deg);
        }

        .cyber-popup .inscription-modal-title {
            color: #d0b0ff;
            font-size: 2.2rem;
            margin-bottom: 5px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 0 0 20px #a0f;
        }

        .cyber-popup .inscription-modal-subtitle {
            color: #b0f0ff;
            font-size: 1rem;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(170, 0, 255, 0.3);
            padding-bottom: 10px;
        }

        .cyber-popup .inscription-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 20px;
            flex: 1;
            min-height: 0;
            overflow: hidden;
        }

        .cyber-popup .inscription-form-col {
            overflow-y: auto;
            padding-right: 10px;
            height: 100%;
        }

        .cyber-popup .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 12px;
        }

        .cyber-popup .form-group {
            margin-bottom: 12px;
        }

        .cyber-popup .form-group label {
            display: block;
            color: #b0f0ff;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .cyber-popup .form-control {
            width: 100%;
            padding: 10px 14px;
            background: rgba(10, 20, 40, 0.7);
            border: 1.5px solid rgba(0, 255, 255, 0.3);
            border-radius: 16px;
            color: #ecf5ff;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            outline: none;
            font-family: 'Inter', sans-serif;
        }

        .cyber-popup .form-control:hover {
            border-color: #0ff;
            background: rgba(20, 30, 60, 0.8);
        }

        .cyber-popup .form-control:focus {
            border-color: #f0f;
            box-shadow: 0 0 20px #f0f;
        }

        .cyber-popup .form-control::placeholder {
            color: #8899cc;
        }

        .cyber-popup select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300ffff'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 18px;
            cursor: pointer;
            padding-right: 40px;
        }

        .cyber-popup .radio-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            background: rgba(0, 30, 50, 0.4);
            padding: 12px;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }

        .cyber-popup .radio-label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #b0d0ff;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            flex: 1;
        }

        .cyber-popup .radio-label input[type="radio"] {
            width: 16px;
            height: 16px;
            accent-color: #f0f;
        }

        .cyber-popup .form-check {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 30, 50, 0.4);
            padding: 12px;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            margin: 12px 0;
        }

        .cyber-popup .form-check input {
            width: 16px;
            height: 16px;
            accent-color: #f0f;
        }

        .cyber-popup .form-check label {
            margin-bottom: 0;
            font-size: 0.85rem;
            color: #aaccff;
        }

        .cyber-popup .submit-btn-container {
            margin: 20px 0 10px;
        }

        .cyber-popup .inscription-submit-btn {
            width: 100%;
            padding: 16px 20px;
            background: linear-gradient(135deg, #a0f, #80f);
            border: none;
            border-radius: 40px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.3px;
            box-shadow: 0 0 30px #a0f;
        }

        .cyber-popup .inscription-submit-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 0 45px #f0f;
        }

        .cyber-popup .inscription-submit-btn:disabled {
            background: #555;
            cursor: not-allowed;
            opacity: 0.5;
        }

        .cyber-popup .preview-card {
            background: rgba(20, 20, 50, 0.5);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 30px;
            padding: 18px;
            height: 100%;
            overflow-y: auto;
            color: #c0d0ff;
            backdrop-filter: blur(5px);
        }

        .cyber-popup .preview-card h3 {
            color: #b0f0ff;
            font-size: 1.2rem;
            margin-bottom: 12px;
            font-family: 'Space Grotesk', sans-serif;
            border-bottom: 1px solid #0ff;
            padding-bottom: 8px;
        }

        .cyber-popup .preview-card p {
            margin: 6px 0;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cyber-popup .preview-card strong {
            color: #ffb0ff;
        }

        .cyber-popup .preview-card hr {
            border: none;
            border-top: 1px solid #a0f;
            margin: 10px 0;
        }

        .cyber-popup .alert-message {
            background: rgba(255, 0, 255, 0.1);
            border-left: 4px solid #f0f;
            padding: 10px;
            border-radius: 16px;
            font-size: 0.85rem;
            color: #ffc0ff;
            margin-top: 10px;
        }

        .cyber-popup .form-payment-footer {
            margin: 15px 0;
            background: rgba(0, 50, 70, 0.4);
            border-radius: 20px;
            padding: 15px;
            border: 1px solid #0ff;
            color: #b0f0ff;
            font-size: 0.9rem;
        }

        .cyber-popup .mobile-warning {
            background: rgba(255, 0, 255, 0.15);
            border-left: 4px solid #f0f;
            color: #ffc0ff;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media screen and (max-width: 1000px) {
            .cyber-popup .flyer-container {
                overflow-y: auto;
                align-items: flex-start;
                padding: 15px 10px;
            }
            .cyber-popup .flyer {
                max-height: none;
                height: auto;
            }
            .cyber-popup .card {
                height: auto;
            }
            .cyber-popup .main-content {
                flex-direction: column;
                height: auto;
                padding: 15px;
            }
            .cyber-popup .attack-col,
            .cyber-popup .defense-col,
            .cyber-popup .center-col {
                width: 100%;
            }
            .cyber-popup .title {
                font-size: 2rem;
            }
        }

        @media screen and (max-width: 768px) {
            .cyber-popup .pricing-row {
                flex-direction: column;
            }
            .cyber-popup .footer {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            .cyber-popup .modules-grid {
                grid-template-columns: 1fr;
            }
            .cyber-popup .inscription-grid {
                grid-template-columns: 1fr;
            }
            .cyber-popup .form-row {
                grid-template-columns: 1fr;
            }
        }