        :root {
            --bg: #000000;
            --surface: #0a0a0a;
            --surface-hover: #111111;
            --accent: #ff4d00;
            --accent-glow: rgba(255, 77, 0, 0.3);
            --accent-light: #ff6a26;
            --text-main: #ffffff;
            --text-muted: #888888;
            --border: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 255, 255, 0.15);
            --glass-bg: rgba(10, 10, 10, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
        }


        
        .resume-banner {
            background: linear-gradient(90deg, rgba(255,123,0,0.2), transparent);
            border-left: 4px solid var(--accent-glow);
            padding: 15px 25px;
            border-radius: 12px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            animation: slideInLeft 0.5s ease-out;
        }
        @keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text-main);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Raycast Glow Blob */
        body::before {
            content: "";
            position: fixed;
            top: -10%;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 60vh;
            background: radial-gradient(circle at center, rgba(255, 77, 0, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: -10;
        }


        @keyframes modalPop {
            from { opacity: 0; transform: scale(0.9) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

    @keyframes float {
        0% { transform: translateY(0px) scale(1); }
        100% { transform: translateY(50px) scale(1.1); }
    }

    /* === PREMIUM ANIMATIONS === */
    @keyframes neural-pulse {
        0% { transform: scale(0.6); opacity: 0; }
        50% { opacity: 0.5; }
        100% { transform: scale(1.4); opacity: 0; }
    }
    @keyframes neural-float {
        0%, 100% { transform: translateY(0) scale(1); filter: brightness(1); }
        50% { transform: translateY(-10px) scale(1.05); filter: brightness(1.3); }
    }
    @keyframes rotate-slow {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    @keyframes draw-check {
        to { stroke-dashoffset: 0; }
    }

    .neural-loader {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .neural-core {
        width: 40px;
        height: 40px;
        background: radial-gradient(circle, #fff, var(--accent-light));
        border-radius: 50%;
        box-shadow: 0 0 40px var(--accent), 0 0 80px rgba(249,115,22,0.3);
        animation: neural-float 3s infinite ease-in-out;
        z-index: 2;
    }
    .neural-ring {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 1px solid rgba(249,115,22,0.3);
        border-radius: 50%;
        animation: neural-pulse 2s infinite ease-out;
    }
    .neural-ring:nth-child(2) { animation-delay: 0.6s; }
    .neural-ring:nth-child(3) { animation-delay: 1.2s; }
    
    .neural-orbit {
        position: absolute;
        width: 80%;
        height: 80%;
        border: 1px dashed rgba(255,255,255,0.1);
        border-radius: 50%;
        animation: rotate-slow 10s linear infinite;
    }
    .neural-dot {
        position: absolute;
        top: -4px;
        left: 50%;
        width: 8px;
        height: 8px;
        background: var(--accent-light);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--accent-light);
    }

    .success-icon-animated {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: rgba(34,197,94,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .shield-animated {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: rgba(255,255,255,0.03);
        border: 2px solid var(--accent);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(45deg);
        animation: neural-float 4s infinite ease-in-out;
    }
    .shield-inner { transform: rotate(-45deg); font-size: 32px; }

    /* DASHBOARD BADGES & ICONS */
    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .status-badge.completed { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
    .status-badge.pending { background: rgba(249,115,22,0.1); color: var(--accent-light); border: 1px solid rgba(249,115,22,0.2); }
    .status-badge.failed { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
    
    .status-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
        box-shadow: 0 0 10px currentColor;
    }
    .pulse-dot { animation: neural-pulse 1.5s infinite; }

    .del-btn-premium {
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--glass-border);
        color: var(--text-muted);
        transition: all 0.3s;
    }
    .del-btn-premium:hover {
        background: rgba(239,68,68,0.1);
        color: #ef4444;
        border-color: rgba(239,68,68,0.3);
        transform: scale(1.05);
    }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-light);
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        .logo span { color: var(--text-main); }

        nav {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 10px 30px;
            border-radius: 40px;
            border: 1px solid var(--glass-border);
            display: flex;
            gap: 30px;
        }
        nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        nav a:hover, nav a.active { color: var(--text-main); }

        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .login { color: var(--text-main); text-decoration: none; font-size: 14px; }
        
        /* Shimmer Effect for Buttons */
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        .btn-primary {
            background: linear-gradient(90deg, var(--accent), #ff7b00, var(--accent));
            background-size: 200% 100%;
            animation: shimmer 3s infinite linear;
            color: #000;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 20px rgba(255, 77, 0, 0.3);
        }
        .btn-primary:hover {
            transform: scale(1.02) translateY(-2px);
            box-shadow: 0 12px 30px rgba(255, 77, 0, 0.4);
        }
        .btn-primary:active { transform: scale(0.98); }
        .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            filter: grayscale(1);
        }

        .hero {
            text-align: center;
            padding: 120px 0 80px;
            position: relative;
        }
        .hero h1 {
            font-size: clamp(48px, 8vw, 92px);
            font-weight: 800;
            letter-spacing: -3px;
            line-height: 0.95;
            margin-bottom: 24px;
            background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.5));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto 48px;
            line-height: 1.6;
            font-weight: 500;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
            padding-bottom: 80px;
        }

        .glass-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
        }
        .glass-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            background: rgba(255,255,255,0.05);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        }
        
        .pricing-grid .glass-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 123, 0, 0.3);
        }

        /* Выделение премиум тарифа */
        .premium-card {
            border: 1px solid rgba(255, 123, 0, 0.5) !important;
            box-shadow: 0 20px 50px rgba(255, 123, 0, 0.15) !important;
            transform: scale(1.05) !important;
            position: relative;
            z-index: 2;
            overflow: visible !important;
        }
        .premium-card::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, var(--accent-glow), transparent, var(--accent-light));
            border-radius: 24px;
            z-index: -1;
            opacity: 0.3;
            animation: borderPulse 4s infinite alternate;
        }
        @keyframes borderPulse {
            from { opacity: 0.2; filter: blur(2px); }
            to { opacity: 0.5; filter: blur(5px); }
        }
        .premium-card .badge {
            background: var(--accent-glow);
            color: white;
            border: none;
            font-weight: bold;
        }

        .premium-card::before {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 150px; height: 150px;
            background: radial-gradient(circle, rgba(255,123,0,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .badge {
            display: inline-block;
            border: 1px solid var(--glass-border);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .card-title {
            font-size: 18px;
            letter-spacing: 1px;
            margin-bottom: 5px;
            color: var(--text-muted);
        }

        .price {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
        }
        .price span { font-size: 16px; color: var(--text-muted); font-weight: 400; }

        .features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }
        .features li {
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0,0,0,0.2);
            padding: 10px 15px;
            border-radius: 8px;
        }
        .features li::before {
            content: '✓';
            color: var(--accent-light);
            font-weight: bold;
        }

        .btn-card {
            width: 100%;
            padding: 15px;
            border-radius: 12px;
            border: none;
            background: linear-gradient(90deg, rgba(255,123,0,0.8), rgba(212,85,0,0.8));
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
        }
        .btn-card:hover { opacity: 0.9; }

        /* ================= ДОБАВЛЕННЫЕ СТИЛИ ДЛЯ ФОРМ И ИНТЕРФЕЙСА ================= */
        
        @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    @keyframes slideInRight {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
    }
    @keyframes scan {
        0% { transform: translateY(-100%); }
        100% { transform: translateY(100%); }
    }
    .gradient-text {
            background: linear-gradient(to right, #fff, var(--accent), #fff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 5s infinite linear;
        }

        /* Marquee Animation for Reviews */
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .reviews-marquee-container {
            overflow: hidden;
            padding: 40px 0;
            position: relative;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        .reviews-marquee-content {
            display: flex;
            gap: 24px;
            width: max-content;
            animation: marquee 40s linear infinite;
        }
        .reviews-marquee-content:hover { animation-play-state: paused; }
        .reviews-marquee-content .review-card { width: 350px; flex-shrink: 0; }

        /* FAQ Accordion (Bento Style) */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 60px;
        }
        .faq-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        .faq-item:hover {
            background: rgba(255,255,255,0.04);
            border-color: var(--border-hover);
            transform: translateY(-2px);
        }
        .faq-question {
            font-weight: 700;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            color: #fff;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin-top: 0;
            opacity: 0;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            margin-top: 20px;
            opacity: 1;
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            background: rgba(255, 123, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            transition: 0.4s;
            flex-shrink: 0;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: var(--accent);
            color: #000;
        }

        /* Скрытие стандартных стрелок в полях number */
        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        input[type=number] {
            -moz-appearance: textfield;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            color: var(--text-main);
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }
        .form-control:focus {
            background: rgba(255, 123, 0, 0.05);
            border-color: var(--accent-light);
            box-shadow: 0 0 20px rgba(255, 123, 0, 0.1);
        }
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ff7b00' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            padding-right: 45px;
            cursor: pointer;
        }
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
        }

        .volume-toggle {
            display: flex;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 6px;
            gap: 6px;
            margin-bottom: 15px;
        }
        .volume-btn {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            border: none;
            background: transparent;
            color: var(--text-muted);
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
            transition: 0.3s;
        }
        .volume-btn.active {
            background: rgba(255, 123, 0, 0.1);
            color: var(--accent-light);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .price-box {
            background: linear-gradient(135deg, rgba(255, 123, 0, 0.08), rgba(255, 123, 0, 0.03));
            border: 1px solid rgba(255, 123, 0, 0.2);
            border-radius: 24px;
            padding: 35px;
            text-align: center;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }
        .price-value {
            font-size: 48px;
            font-weight: 900;
            color: var(--accent-light);
            text-shadow: 0 0 30px rgba(255, 123, 0, 0.3);
            margin-bottom: 5px;
            position: relative;
            z-index: 2;
        }
        .price-label {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        /* Custom Select Styling */
        .custom-select-wrapper {
            position: relative;
            width: 100%;
        }
        .custom-select-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            cursor: pointer;
            transition: 0.3s;
        }
        .custom-select-trigger:hover {
            border-color: rgba(255, 123, 0, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }
        .custom-select-trigger::after {
            content: '';
            width: 10px;
            height: 6px;
            background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23ff7b00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
            transition: 0.3s;
        }
        .custom-select-wrapper.open .custom-select-trigger::after {
            transform: rotate(180deg);
        }
        .custom-options {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: rgba(26, 20, 18, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 8px;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: 0.3s;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        .custom-select-wrapper.open .custom-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .custom-option {
            padding: 12px 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
            font-size: 14px;
            color: var(--text-muted);
        }
        .custom-option:hover {
            background: rgba(255, 123, 0, 0.1);
            color: var(--text-main);
        }
        .custom-option.selected {
            background: rgba(255, 123, 0, 0.2);
            color: var(--accent-light);
        }

        .form-card {
            background: rgba(26, 20, 18, 0.6);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 40px 100px rgba(0,0,0,0.6);
            position: relative;
        }

        /* Шаги (Wizard) */
        .step-indicator {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 48px;
            padding: 0 20px;
        }
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 2;
        }
        .step-number {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--surface);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--text-muted);
            transition: all 0.3s;
        }
        .step.active .step-number {
            background: var(--accent);
            border-color: var(--accent);
            color: #000;
            box-shadow: 0 0 20px var(--accent-glow);
        }
        .step.completed .step-number {
            background: #fff;
            border-color: #fff;
            color: #000;
        }
        .step-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .step.active .step-label { color: #fff; }
        .step-line {
            flex: 1;
            height: 1px;
            background: var(--border);
            margin: 0 15px;
            margin-top: -24px;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid var(--glass-border);
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Прогресс-бар */
        .progress-container {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-light), var(--accent-glow));
            width: 0%;
            transition: width 0.5s ease-out;
        }

        /* Скроллбар для черновика */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-glow);
            border-radius: 4px;
        }

        .del-btn {
            background: rgba(231, 76, 60, 0.1);
            border: 1px solid rgba(231, 76, 60, 0.1);
            color: #e74c3c;
            cursor: pointer;
            transition: all 0.3s;
        }
        .del-btn:hover {
            background: #e74c3c;
            color: white;
            box-shadow: 0 0 15px rgba(231, 76, 60, 0.3);
            border-color: #e74c3c;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* ============ 5-STEP WIZARD STYLES ============ */

        .price-tag {
            background: linear-gradient(135deg, rgba(255,123,0,0.15), rgba(255,170,85,0.08));
            border: 1px solid rgba(255,123,0,0.3);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            margin-top: 20px;
        }
        .price-tag .amount {
            font-size: 36px;
            font-weight: 700;
            color: var(--accent-light);
        }
        .price-tag .label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* Payment */
        .payment-card {
            background: rgba(0,0,0,0.3);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 30px;
            max-width: 420px;
            margin: 0 auto;
        }
        .card-inputs {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }
        .card-inputs input {
            flex: 1;
            text-align: center;
            letter-spacing: 3px;
            font-size: 18px;
            font-weight: 600;
        }
        .card-row {
            display: flex;
            gap: 15px;
        }
        .card-row > div { flex: 1; }
        .payment-success {
            text-align: center;
            padding: 40px;
            animation: fadeIn 0.5s;
        }
        @keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

        /* Tab Switcher */
        .tab-switcher {
            display: flex;
            background: rgba(0,0,0,0.3);
            border-radius: 12px;
            padding: 4px;
            margin-bottom: 25px;
            border: 1px solid var(--glass-border);
        }
        .tab-btn {
            flex: 1;
            padding: 12px;
            border: none;
            background: transparent;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .tab-btn.active {
            background: rgba(255,123,0,0.2);
            color: var(--accent-light);
            font-weight: 600;
        }

        /* Drag Zone */
        .drag-zone {
            border: 2px dashed rgba(255,255,255,0.15);
            border-radius: 16px;
            padding: 50px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .drag-zone:hover, .drag-zone.dragover {
            border-color: var(--accent-light);
            background: rgba(255,123,0,0.05);
        }
        .drag-zone .icon { font-size: 48px; margin-bottom: 15px; }
        .drag-zone .title { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
        .drag-zone .hint { font-size: 13px; color: var(--text-muted); }

        /* Format Grid */
        .format-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .format-group label {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }
        .margins-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        /* Glass Logout Button - Apple Style */
        .glass-btn-logout {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-left: 10px;
        }
        .glass-btn-logout:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
            color: var(--accent-light);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        /* Toggle */
        .toggle-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .toggle-row:last-child { border-bottom: none; }
        .toggle-label { font-size: 14px; }
        .toggle {
            position: relative;
            width: 48px;
            height: 26px;
            background: rgba(255,255,255,0.1);
            border-radius: 13px;
            cursor: pointer;
            transition: background 0.3s;
            border: none;
        }
        .toggle.on { background: var(--accent-glow); }
        .toggle::after {
            content: '';
            position: absolute;
            top: 3px; left: 3px;
            width: 20px; height: 20px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s;
        }
        .toggle.on::after { transform: translateX(22px); }

        /* Chapter/Source Editor */
        .editor-block {
            background: rgba(0,0,0,0.2);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 12px;
            position: relative;
        }
        .editor-block .block-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .editor-block .block-num {
            font-weight: 700;
            color: var(--accent-light);
            font-size: 14px;
        }
        .source-url-row {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            align-items: center;
        }
        .source-url-input {
            flex: 1;
            font-size: 12px;
            background: rgba(0,0,0,0.3) !important;
            border-color: rgba(255,255,255,0.1) !important;
            height: 36px;
            margin-bottom: 0 !important;
        }
        .visit-link-btn {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,123,0,0.1);
            border: 1px solid rgba(255,123,0,0.3);
            border-radius: 8px;
            color: var(--accent-light);
            text-decoration: none;
            transition: all 0.2s;
            flex-shrink: 0;
        }
        .visit-link-btn:hover {
            background: var(--accent-light);
            color: white;
            box-shadow: 0 0 15px rgba(255,123,0,0.3);
        }
        .visit-link-btn.disabled {
            opacity: 0.3;
            pointer-events: none;
            filter: grayscale(1);
        }
        .sub-block {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 8px;
            margin-left: 20px;
        }
        .sub-block .sub-num {
            min-width: 30px;
            padding-top: 10px;
            font-weight: 600;
            color: var(--text-muted);
            font-size: 13px;
        }
        .add-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(255,123,0,0.1);
            border: 1px dashed rgba(255,123,0,0.4);
            border-radius: 10px;
            color: var(--accent-light);
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .add-btn:hover {
            background: rgba(255,123,0,0.2);
            border-color: var(--accent-light);
        }
        .del-btn {
            background: none;
            border: none;
            color: rgba(231,76,60,0.6);
            cursor: pointer;
            font-size: 16px;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
        }
        .del-btn:hover { color: var(--danger); background: rgba(231,76,60,0.1); }

        .source-url {
            font-size: 12px;
            margin-top: 6px;
        }
        .source-url input {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 6px;
            color: var(--accent-light);
            padding: 6px 10px;
            font-size: 12px;
            width: 100%;
        }

        @media (max-width: 1100px) {
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 700px) {
            .pricing-grid, .grid-2 { grid-template-columns: 1fr; }
            nav { display: none; }
            .hero h1 { font-size: 42px; }
            .step span { display: none; }
            .site-footer .footer-links { flex-direction: column; gap: 10px; }
            .cookie-banner { flex-direction: column; text-align: center; }
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 30px 40px;
            text-align: center;
            color: var(--text-muted);
            font-size: 13px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--accent-light); }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 10, 8, 0.97);
            border-top: 1px solid rgba(255,123,0,0.2);
            padding: 18px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            z-index: 9999;
            backdrop-filter: blur(20px);
            animation: slideUp 0.4s ease-out;
        }
        @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
        .cookie-banner p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.5;
        }
        .cookie-banner a { color: var(--accent-light); text-decoration: underline; }
        .cookie-btn {
            padding: 10px 28px;
            background: var(--accent-glow);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            transition: transform 0.2s;
        }
        .cookie-btn:hover { transform: scale(1.05); }

        /* Auth Modal & Profile */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            z-index: 10000;
            display: none;
            align-items: center; justify-content: center;
        }

        .auth-card {
            background: #1a1412;
            width: 100%; max-width: 400px;
            padding: 40px;
            border-radius: 24px;
            border: 1px solid rgba(255,123,0,0.1);
            text-align: center;
        }
        .auth-card h2 { margin-bottom: 30px; font-size: 28px; }
        .auth-buttons { display: flex; flex-direction: column; gap: 15px; }
        .social-btn {
            display: flex; align-items: center; justify-content: center; gap: 12px;
            padding: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03); color: white; cursor: pointer;
            font-weight: 500; transition: 0.2s;
        }
        .social-btn:hover { background: rgba(255,255,255,0.08); border-color: var(--accent-light); }
        .social-btn img { width: 24px; height: 24px; }

        .user-nav { display: flex; align-items: center; gap: 15px; }
        .user-balance {
            background: rgba(255,123,0,0.1);
            padding: 5px 12px; border-radius: 20px;
            color: var(--accent-light); font-weight: 600; font-size: 14px;
        }
        .user-avatar {
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--accent-glow); cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            border: 2px solid transparent; transition: 0.2s;
        }
        .user-avatar:hover { border-color: var(--accent-light); }

        .dashboard-grid {
            display: grid; grid-template-columns: 1fr 300px; gap: 40px; margin-top: 40px;
        }
        .works-list { display: flex; flex-direction: column; gap: 15px; }
        .work-card {
            background: rgba(255,255,255,0.03);
            padding: 20px; border-radius: 16px;
            display: flex; justify-content: space-between; align-items: center;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .work-info h4 { margin: 0 0 5px 0; color: var(--text-main); }
        .work-info p { margin: 0; font-size: 13px; color: var(--text-muted); }

        /* Features Section */
        .features-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 80px 0;
        }
        .feature-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 24px;
            transition: 0.3s;
        }
        .feature-item:hover {
            background: rgba(255,255,255,0.05);
            transform: translateY(-5px);
            border-color: rgba(255,123,0,0.3);
        }
        .feature-icon {
            font-size: 32px;
            margin-bottom: 20px;
            display: block;
        }
        .feature-item h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--text-main);
        }
        .feature-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .reviews-section { margin-top: 120px; padding-bottom: 120px; }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-section { margin-top: 120px; margin-bottom: 50px; }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .review-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
            border: 1px solid var(--border);
            padding: 32px;
            border-radius: 24px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(20px);
        }
        .review-card:hover { 
            transform: translateY(-8px); 
            border-color: var(--border-hover);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }
        .review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
        .review-avatar { 
            width: 44px; height: 44px; border-radius: 12px; 
            background: var(--accent); 
            display: flex; align-items: center; justify-content: center; 
            font-weight: 800; font-size: 18px; color: #000;
        }
        .review-name { font-weight: 700; font-size: 16px; color: var(--text-main); }
        .review-rating { color: var(--accent); margin-bottom: 18px; display: flex; gap: 4px; }
        .review-text { 
            font-size: 15px; 
            line-height: 1.6; 
            color: var(--text-muted); 
            font-weight: 400;
        }
        .review-date { font-size: 11px; color: rgba(255,255,255,0.1); margin-top: 24px; text-align: right; text-transform: uppercase; letter-spacing: 1px; }
        .btn-add-review { 
            margin-top: 40px; padding: 12px 30px; border-radius: 30px; 
            background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); 
            color: var(--text-main); cursor: pointer; transition: 0.3s;
            font-size: 14px; display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-add-review:hover { background: var(--glass-bg); border-color: var(--accent-glow); }
        
        .admin-del-btn {
            position: absolute; top: 15px; right: 15px;
            background: rgba(231, 76, 60, 0.2); color: #e74c3c;
            border: none; padding: 5px 10px; border-radius: 8px; font-size: 10px; cursor: pointer;
            opacity: 0.5; transition: 0.3s;
        }
        .admin-del-btn:hover { opacity: 1; background: rgba(231, 76, 60, 0.4); }

        /* Premium Footer Nav */
        .footer-nav-premium {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 15px;
            padding: 10px 16px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .footer-nav-item .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: 0.3s;
        }
        .footer-nav-item:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            transform: translateX(5px);
            border-color: rgba(255, 123, 0, 0.2);
        }
        .footer-nav-item:hover .dot {
            background: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
        }
        .footer-nav-item.active {
            background: rgba(255, 123, 0, 0.08);
            border-color: rgba(255, 123, 0, 0.3);
            color: #fff;
        }
        .footer-nav-item.active .dot {
            background: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
        }

        @keyframes pulse-orange {
            0% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(255, 123, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0); }
        }
        .support-fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff7b00, #ffaa55);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(255,123,0,0.6);
            border: 2px solid rgba(255,255,255,0.2);
            z-index: 10001;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: pulse-orange 2s infinite;
        }
        .support-fab:hover { 
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 15px 40px rgba(255,123,0,0.6);
        }
        .support-card {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            background: #1a1412;
            border-radius: 20px;
            border: 1px solid rgba(255,123,0,0.2);
            padding: 25px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(30px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }
        .support-card.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }
        .popular-tag {
            position: absolute; top: -12px; right: 20px;
            background: linear-gradient(135deg, #ff7b00, #ffaa55);
            padding: 4px 12px; border-radius: 12px;
            font-size: 11px; font-weight: 800; color: white;
            box-shadow: 0 5px 15px rgba(255,123,0,0.3);
            z-index: 10;
        }

        /* Blur Overlay */
        .editor-container-locked {
            position: relative;
            min-height: 400px;
        }
        .content-blur {
            filter: blur(8px) grayscale(0.5);
            opacity: 0.6;
            pointer-events: none;
            user-select: none;
            transition: all 0.5s ease;
        }
        .lock-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
            background: radial-gradient(circle at center, rgba(15, 10, 8, 0.4) 0%, rgba(15, 10, 8, 0.8) 100%);
            border-radius: 20px;
            backdrop-filter: blur(2px);
        }
        .lock-plate {
            background: rgba(15, 10, 8, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 123, 0, 0.5);
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            max-width: 400px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.8);
            animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 101;
            position: relative;
        }
        .lock-plate h3 {
            font-size: 24px;
            margin-bottom: 12px;
            background: linear-gradient(90deg, var(--accent-light), var(--accent-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        @keyframes pageFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        body {
            animation: pageFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            background: #0a0a0a; /* Prevent white flash */
        }
        .fade-out {
            opacity: 0 !important;
            transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
        }
    

    
        .ambient-layer {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0;
            animation: blobFadeIn 3s ease-out forwards;
            will-change: transform, opacity;
        }

        /* Blob 1 — тёплый оранжевый, левый верх */
        .blob-1 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 80, 0, 0.22) 0%, rgba(255, 120, 0, 0.08) 50%, transparent 70%);
            top: -15%;
            left: -10%;
            animation-delay: 0s;
            animation: blobFadeIn 3s ease-out forwards, drift1 18s ease-in-out infinite 3s;
        }

        /* Blob 2 — пурпурно-красный, правый верх */
        .blob-2 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(180, 30, 80, 0.18) 0%, rgba(220, 50, 50, 0.06) 50%, transparent 70%);
            top: -5%;
            right: -8%;
            animation: blobFadeIn 3s ease-out 0.8s forwards, drift2 22s ease-in-out infinite 3s;
        }

        /* Blob 3 — холодный синий, центр низ */
        .blob-3 {
            width: 800px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 80, 200, 0.1) 0%, rgba(50, 100, 255, 0.04) 50%, transparent 70%);
            bottom: 10%;
            left: 20%;
            animation: blobFadeIn 3s ease-out 1.5s forwards, drift3 26s ease-in-out infinite 3s;
        }

        /* Blob 4 — золотой, центр */
        .blob-4 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 170, 0, 0.12) 0%, rgba(255, 200, 50, 0.04) 50%, transparent 70%);
            top: 35%;
            left: 40%;
            animation: blobFadeIn 3s ease-out 2s forwards, drift4 20s ease-in-out infinite 3s;
        }

        @keyframes blobFadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        @keyframes drift1 {
            0%   { transform: translate(0px, 0px) scale(1); }
            25%  { transform: translate(60px, 40px) scale(1.08); }
            50%  { transform: translate(20px, 80px) scale(0.95); }
            75%  { transform: translate(-40px, 30px) scale(1.05); }
            100% { transform: translate(0px, 0px) scale(1); }
        }

        @keyframes drift2 {
            0%   { transform: translate(0px, 0px) scale(1); }
            30%  { transform: translate(-70px, 50px) scale(1.1); }
            60%  { transform: translate(-30px, 90px) scale(0.92); }
            100% { transform: translate(0px, 0px) scale(1); }
        }

        @keyframes drift3 {
            0%   { transform: translate(0px, 0px) scale(1); }
            20%  { transform: translate(50px, -30px) scale(1.06); }
            50%  { transform: translate(-60px, -60px) scale(0.94); }
            80%  { transform: translate(30px, -20px) scale(1.04); }
            100% { transform: translate(0px, 0px) scale(1); }
        }

        @keyframes drift4 {
            0%   { transform: translate(0px, 0px) scale(1); }
            35%  { transform: translate(-80px, 60px) scale(1.12); }
            70%  { transform: translate(40px, 40px) scale(0.9); }
            100% { transform: translate(0px, 0px) scale(1); }
        }

        /* Снижаем яркость на нижних блоках, чтобы не мешало читать */
        @media (prefers-reduced-motion: reduce) {
            .blob { animation: blobFadeIn 0.1s forwards; }
        }
    

                    
                        .hero-main-btn {
                            padding: 22px 56px; 
                            font-size: 20px; 
                            border-radius: 18px; 
                            background: linear-gradient(135deg, #ff4d00 0%, #ff7b00 100%);
                            border: none;
                            color: #fff;
                            font-weight: 800;
                            display: flex;
                            align-items: center;
                            gap: 12px;
                            cursor: pointer;
                            position: relative;
                            overflow: hidden;
                            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                            box-shadow: 0 15px 35px rgba(255, 77, 0, 0.3), 0 0 0 0 rgba(255, 77, 0, 0.2);
                        }

                        .hero-main-btn::before {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: -100%;
                            width: 100%;
                            height: 100%;
                            background: linear-gradient(
                                120deg,
                                transparent,
                                rgba(255, 255, 255, 0.3),
                                transparent
                            );
                            transition: all 0.6s;
                        }

                        .hero-main-btn:hover {
                            transform: translateY(-5px) scale(1.02);
                            box-shadow: 0 20px 45px rgba(255, 77, 0, 0.4), 0 0 20px rgba(255, 77, 0, 0.2);
                        }

                        .hero-main-btn:hover::before {
                            left: 100%;
                        }

                        .hero-main-btn:hover svg {
                            transform: translateX(5px);
                        }

                        .hero-main-btn:active {
                            transform: translateY(0) scale(0.98);
                        }
                    
