        :root {
            --nywhashcloud_colors-primary: #e25cff;
            --nywhashcloud_colors-primary-dark: #d700ff;
            --nywhashcloud_colors-primary-light: #f63bed;
            --nywhashcloud_colors-primary-ultra-light: #f8fafc;
            --nywhashcloud_colors-secondary: #64748b;
            --nywhashcloud_colors-accent: #c052ff;
            --nywhashcloud_colors-success: #10b981;
            --nywhashcloud_colors-warning: #f59e0b;
            --nywhashcloud_colors-error: #ef4444;
            --nywhashcloud_colors-bg-primary: #ffffff;
            --nywhashcloud_colors-bg-secondary: #f8fafc;
            --nywhashcloud_colors-text-primary: #1e293b;
            --nywhashcloud_colors-text-secondary: #64748b;
            --nywhashcloud_colors-text-light: #94a3b8;
            --nywhashcloud_colors-border: #e2e8f0;
            --nywhashcloud_colors-border-light: #f1f5f9;
            --nywhashcloud_colors-shadow: rgba(0, 0, 0, 0.05);
            --nywhashcloud_colors-shadow-light: rgba(0, 0, 0, 0.02);
            --nywhashcloud_colors-gradient: linear-gradient(135deg, var(--nywhashcloud_colors-primary), var(--nywhashcloud_colors-primary-dark));
            --nywhashcloud_colors-gradient-hover: linear-gradient(135deg, var(--nywhashcloud_colors-primary-dark), #751eaf);
            --nywhashcloud_colors-radius: 8px;
            --nywhashcloud_colors-radius-sm: 6px;
            --nywhashcloud_colors-transition: all 0.2s ease;
            --nywhashcloud_colors-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
            /* Theme */
            .theme-btn {
                background: none;
                border: 1px solid currentColor;
                color: currentColor;
                padding: 6px 14px;
                font-size: 1rem;
                cursor: pointer;
                border-radius: 4px;
                transition: all 0.25s ease;
                font-weight: 500;
                margin: 0 6px;
                user-select: none;
            }

            .theme-btn:hover,
            .theme-btn:focus {
                background-color: var(--nywhashcloud_colors-primary);
                color: white;
                outline: none;
            }

            [data-theme="dark"] .theme-btn:hover,
            [data-theme="dark"] .theme-btn:focus {
                background-color: var(--nywhashcloud_colors-primary-light);
                color: var(--nywhashcloud_colors-bg-primary);
            }
            ::-webkit-scrollbar {
                width: 8px;
            }

            ::-webkit-scrollbar-track {
                background: var(--nywhashcloud_colors-bg-secondary);
            }

            ::-webkit-scrollbar-thumb {
                background: var(--nywhashcloud_colors-border);
                border-radius: 4px;
            }

            ::-webkit-scrollbar-thumb:hover {
                background: var(--nywhashcloud_colors-primary);
            }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
            transition: all .3s ease-out;
            -webkit-transition: all .3s ease-out;
            -moz-transition: all .3s ease-out;
            -ms-transition: all .3s ease-out;
            -o-transition: all .3s ease-out;
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--nywhashcloud_colors-bg-primary);
            line-height: 1.5;
            color: var(--nywhashcloud_colors-text-primary);
            overflow-x: hidden;
            font-weight: 400;
        }


/* NAVBAR START */
        .nywhashcloud_topbar {
            background: var(--nywhashcloud_colors-gradient);
            padding: 8px 0;
            font-size: 14px;
            color: white;
        }

        .nywhashcloud_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nywhashcloud_topbar_container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nywhashcloud_topbar_contact,
        .nywhashcloud_topbar_actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nywhashcloud_topbar_contact > div,
        .nywhashcloud_topbar_actions > a {
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--nywhashcloud_colors-transition);
            padding: 4px 0;
        }

        .nywhashcloud_topbar_contact i,
        .nywhashcloud_topbar_actions i {
            font-size: 12px;
            opacity: 0.9;
        }

        .nywhashcloud_topbar_actions a {
            color: inherit;
            text-decoration: none;
            font-weight: 500;
            border-radius: var(--nywhashcloud_colors-radius-sm);
            padding: 4px 8px;
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_topbar_actions a:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .nywhashcloud_language_selector {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 4px 8px;
            border-radius: var(--nywhashcloud_colors-radius-sm);
            cursor: default;
            font-size: 13px;
            font-weight: 500;
            transition: var(--nywhashcloud_colors-transition);
            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='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 6px center;
            background-size: 10px;
            padding-right: 24px;
            pointer-events: none;
        }
        .nywhashcloud_navbar {
            background: var(--nywhashcloud_colors-bg-primary);
            box-shadow: 0 1px 3px var(--nywhashcloud_colors-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--nywhashcloud_colors-transition);
            border-bottom: 1px solid var(--nywhashcloud_colors-border);
        }

        .nywhashcloud_navbar.nywhashcloud_scrolled {
            box-shadow: 0 4px 6px var(--nywhashcloud_colors-shadow);
        }

        .nywhashcloud_navbar_container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        .nywhashcloud_logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            width: 220px;
            height: 50px;
            background-image: url('https://static.nywhash.com/partners/nywhash/nywhashcloud_text_color.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .nywhashcloud_logo:hover {
            background-color: rgba(0, 0, 0, 0.07);
        }
        .nywhashcloud_logo img {
            display: none;
        }
        .nywhashcloud_nav_menu {
            display: flex;
            list-style: none;
            gap: 0;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .nywhashcloud_nav_item {
            position: relative;
            height: 100%;
        }

        .nywhashcloud_nav_link {
            color: var(--nywhashcloud_colors-text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 26px 20px;
            display: flex;
            align-items: center;
            position: relative;
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_nav_link:hover {
            color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_nav_link.nywhashcloud_active {
            color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_nav_link.nywhashcloud_active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_dropdown_arrow {
            margin-left: 6px;
            transition: transform 0.2s ease;
            font-size: 10px;
            opacity: 0.7;
        }

        .nywhashcloud_nav_item:hover .nywhashcloud_dropdown_arrow {
            transform: rotate(180deg);
        }
        .nywhashcloud_badge {
            position: absolute;
            top: 6px;
            right: 10px;
            font-size: 9px;
            padding: 2px 6px;
            border-radius: 10px;
            font-weight: 600;
            z-index: 10;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .nywhashcloud_badge_new {
            background: var(--nywhashcloud_colors-success);
            color: white;
        }

        .nywhashcloud_badge_sale {
            background: var(--nywhashcloud_colors-primary);
            color: white;
        }

        .nywhashcloud_badge_hot {
            background: var(--nywhashcloud_colors-warning);
            color: white;
        }
        .nywhashcloud_dropdown_menu {
            position: absolute;
            top: 60px;
            left: 0;
            background: var(--nywhashcloud_colors-bg-primary);
            box-shadow: var(--nywhashcloud_colors-shadow-lg);
            padding: 24px;
            min-width: 500px;
            display: none;
            z-index: 999;
            border-radius: var(--nywhashcloud_colors-radius);
            border: 1px solid var(--nywhashcloud_colors-border);
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            backdrop-filter: blur(10px);
            margin-top: 8px;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.2s ease, transform 0.2s ease;
            border-top: 3px solid var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_nav_item:hover .nywhashcloud_dropdown_menu {
            display: grid;
            opacity: 1;
            transform: translateY(0);
        }

        .nywhashcloud_dropdown_item {
            list-style: none;
        }

        .nywhashcloud_dropdown_link {
            color: var(--nywhashcloud_colors-text-primary);
            text-decoration: none;
            padding: 16px;
            display: flex;
            align-items: flex-start;
            transition: var(--nywhashcloud_colors-transition);
            border-radius: var(--nywhashcloud_colors-radius-sm);
            border-left: 3px solid transparent;
        }

        .nywhashcloud_dropdown_link:hover {
            background: var(--nywhashcloud_colors-primary-ultra-light);
            transform: translateY(-1px);
            border-left-color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_dropdown_icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            border-radius: var(--nywhashcloud_colors-radius-sm);
            flex-shrink: 0;
            background: var(--nywhashcloud_colors-primary-ultra-light);
            color: var(--nywhashcloud_colors-primary);
            font-size: 16px;
            box-shadow: 0 2px 8px var(--nywhashcloud_colors-shadow);
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_dropdown_link:hover .nywhashcloud_dropdown_icon {
            transform: scale(1.05);
            background: var(--nywhashcloud_colors-gradient);
            color: white;
        }

        .nywhashcloud_dropdown_content h4 {
            font-size: 16px;
            margin-bottom: 4px;
            font-weight: 600;
            color: var(--nywhashcloud_colors-text-primary);
        }

        .nywhashcloud_dropdown_content p {
            font-size: 13px;
            color: var(--nywhashcloud_colors-text-secondary);
            line-height: 1.4;
        }
        .nywhashcloud_nav_actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nywhashcloud_cart_icon {
            position: relative;
            color: var(--nywhashcloud_colors-text-primary);
            font-size: 18px;
            text-decoration: none;
            padding: 10px;
            border-radius: 50%;
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_cart_icon:hover {
            background: var(--nywhashcloud_colors-primary-ultra-light);
            color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_cart_count {
            position: absolute;
            top: 4px;
            right: 4px;
            background: var(--nywhashcloud_colors-primary);
            color: white;
            font-size: 10px;
            font-weight: 600;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid white;
        }

        .nywhashcloud_btn {
            padding: 10px 18px;
            border-radius: var(--nywhashcloud_colors-radius-sm);
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
            transition: var(--nywhashcloud_colors-transition);
            border: 1px solid;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .nywhashcloud_btn_login {
            background: transparent;
            border-color: var(--nywhashcloud_colors-border);
            color: var(--nywhashcloud_colors-text-secondary);
        }

        .nywhashcloud_btn_login:hover {
            border-color: var(--nywhashcloud_colors-primary);
            color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_btn_register {
            background: var(--nywhashcloud_colors-primary);
            border-color: var(--nywhashcloud_colors-primary);
            color: white;
        }

        .nywhashcloud_btn_register:hover {
            background: var(--nywhashcloud_colors-primary-dark);
            border-color: var(--nywhashcloud_colors-primary-dark);
        }
        .nywhashcloud_menu_toggle {
            display: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--nywhashcloud_colors-text-primary);
            background: none;
            border: none;
            padding: 8px;
            border-radius: var(--nywhashcloud_colors-radius-sm);
            transition: var(--nywhashcloud_colors-transition);
            position: relative;
            z-index: 1101;
        }

        .nywhashcloud_menu_toggle:hover {
            background: var(--nywhashcloud_colors-primary-ultra-light);
            color: var(--nywhashcloud_colors-primary);
        }
        .nywhashcloud_mobile_menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 350px;
            height: 100vh;
            background: var(--nywhashcloud_colors-bg-primary);
            z-index: 1100;
            transition: right 0.3s ease;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.08);
            overflow-y: auto;
            padding: 20px;
        }

        .nywhashcloud_mobile_menu.nywhashcloud_active {
            right: 0;
        }

        .nywhashcloud_mobile_menu_header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--nywhashcloud_colors-border);
            margin-bottom: 16px;
        }

        .nywhashcloud_mobile_menu_close {
            font-size: 20px;
            background: none;
            border: none;
            color: var(--nywhashcloud_colors-text-primary);
            cursor: pointer;
            padding: 5px;
            border-radius: 5px;
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_mobile_menu_close:hover {
            background: var(--nywhashcloud_colors-primary-ultra-light);
            color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_mobile_nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .nywhashcloud_mobile_nav_item {
            border-bottom: 1px solid var(--nywhashcloud_colors-border);
        }

        .nywhashcloud_mobile_nav_link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            color: var(--nywhashcloud_colors-text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_mobile_nav_link:hover {
            color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_mobile_nav_link.nywhashcloud_active {
            color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_mobile_dropdown_arrow {
            font-size: 12px;
            transition: transform 0.2s ease;
        }

        .nywhashcloud_mobile_nav_link.nywhashcloud_menu_open .nywhashcloud_mobile_dropdown_arrow {
            transform: rotate(180deg);
        }

        .nywhashcloud_mobile_dropdown_menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-left: 12px;
        }

        .nywhashcloud_mobile_dropdown_menu.nywhashcloud_active {
            max-height: 1000px;
        }

        .nywhashcloud_mobile_dropdown_item {
            margin-bottom: 8px;
        }

        .nywhashcloud_mobile_dropdown_link {
            display: flex;
            align-items: center;
            padding: 10px 8px;
            color: var(--nywhashcloud_colors-text-primary);
            text-decoration: none;
            border-radius: var(--nywhashcloud_colors-radius-sm);
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_mobile_dropdown_link:hover {
            background: var(--nywhashcloud_colors-primary-ultra-light);
            color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_mobile_dropdown_icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            border-radius: var(--nywhashcloud_colors-radius-sm);
            flex-shrink: 0;
            background: var(--nywhashcloud_colors-primary);
            color: white;
            font-size: 14px;
        }

        .nywhashcloud_mobile_dropdown_content h4 {
            font-size: 14px;
            margin: 0;
            font-weight: 500;
        }

        .nywhashcloud_mobile_dropdown_content p {
            font-size: 12px;
            margin: 2px 0 0;
            color: var(--nywhashcloud_colors-text-secondary);
        }

        .nywhashcloud_mobile_badge {
            font-size: 9px;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
            margin-left: 8px;
            display: inline-block;
        }

        .nywhashcloud_mobile_menu_footer {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--nywhashcloud_colors-border);
        }

        .nywhashcloud_mobile_menu_actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .nywhashcloud_mobile_menu_overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1099;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nywhashcloud_mobile_menu_overlay.nywhashcloud_active {
            display: block;
            opacity: 1;
        }
        .nywhashcloud_mobile_actions {
            display: none;
            justify-content: center;
            gap: 10px;
            padding: 12px;
            background: var(--nywhashcloud_colors-bg-primary);
            border-top: 1px solid var(--nywhashcloud_colors-border);
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 -2px 10px var(--nywhashcloud_colors-shadow);
        }
        @media (max-width: 992px) {
            .nywhashcloud_nav_menu {
                display: none;
            }

            .nywhashcloud_menu_toggle {
                display: block;
            }

            .nywhashcloud_topbar_contact {
                display: none;
            }

            .nywhashcloud_topbar_container {
                justify-content: center;
            }

            .nywhashcloud_nav_actions {
                display: none;
            }

            .nywhashcloud_mobile_menu {
                display: block;
            }

            .nywhashcloud_mobile_actions {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            .nywhashcloud_topbar_actions {
                gap: 10px;
            }

            .nywhashcloud_topbar_actions a {
                font-size: 12px;
                padding: 4px 6px;
            }

            .nywhashcloud_language_selector {
                padding: 4px 6px;
                font-size: 12px;
            }

            .nywhashcloud_navbar_container {
                height: 60px;
                padding: 0 16px;
            }
        }

        @media (max-width: 576px) {
            .nywhashcloud_container {
                padding: 0 16px;
            }

            .nywhashcloud_topbar {
                padding: 6px 0;
                font-size: 12px;
            }

            .nywhashcloud_topbar_actions {
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px;
            }

            .nywhashcloud_navbar_container {
                height: 56px;
            }

            .nywhashcloud_logo img {
                height: 28px;
            }

            .nywhashcloud_mobile_actions {
                padding: 10px;
                flex-wrap: wrap;
            }

            .nywhashcloud_mobile_menu {
                width: 90%;
                padding: 16px;
            }
        }

        @media (min-width: 993px) {
            .nywhashcloud_mobile_actions {
                display: none;
            }
            
            .nywhashcloud_mobile_menu_overlay {
                display: none !important;
            }
        }

/* NAVBAR END */

/* HERO SECTION START */
    .nywhashcloud_herosection_container {
        width: 100%;
        background: linear-gradient(135deg, #dae7ffff 0%, #FFFFFF 50%, #dae7ffff 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
    }

    .nywhashcloud_herosection_content {
        max-width: 1100px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .nywhashcloud_herosection_text_content {
        display: flex;
        flex-direction: column;
    }

    .nywhashcloud_herosection_badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        background: linear-gradient(135deg, var(--nywhashcloud_colors-primary-ultra-light), rgba(236, 72, 153, 0.05));
        color: var(--nywhashcloud_colors-primary);
        border-radius: 16px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 20px;
        width: fit-content;
        border: 1px solid rgba(139, 92, 246, 0.1);
        animation: nywhashcloud_herosection_pulse 2s infinite;
    }

    .nywhashcloud_herosection_title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--nywhashcloud_colors-text-primary);
        margin-bottom: 16px;
        letter-spacing: -0.01em;
    }

    .nywhashcloud_herosection_highlight {
        background: linear-gradient(135deg, var(--nywhashcloud_colors-primary), var(--nywhashcloud_colors-accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nywhashcloud_herosection_description {
        font-size: 1.05rem;
        line-height: 1.6;
        color: var(--nywhashcloud_colors-text-secondary);
        margin-bottom: 28px;
    }

    .nywhashcloud_herosection_features {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .nywhashcloud_herosection_feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        color: var(--nywhashcloud_colors-text-primary);
        padding: 8px 0;
        transition: all 0.3s ease;
    }

    .nywhashcloud_herosection_feature:hover {
        transform: translateX(5px);
        color: var(--nywhashcloud_colors-primary);
    }

    .nywhashcloud_herosection_feature i {
        color: var(--nywhashcloud_colors-success);
        font-size: 0.9rem;
        width: 16px;
    }

    .nywhashcloud_herosection_actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 32px;
    }

    .nywhashcloud_herosection_button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .nywhashcloud_herosection_button--primary {
        background: linear-gradient(135deg, var(--nywhashcloud_colors-primary), var(--nywhashcloud_colors-accent));
        color: white;
    }

    .nywhashcloud_herosection_button--primary:hover {
        transform: translateY(-2px);
    }

    .nywhashcloud_herosection_button--secondary {
        background-color: var(--nywhashcloud_colors-bg-primary);
        color: var(--nywhashcloud_colors-primary);
        border: 1px solid var(--nywhashcloud_colors-border);
        box-shadow: 0 2px 8px var(--nywhashcloud_colors-shadow);
    }

    .nywhashcloud_herosection_button--secondary:hover {
        background-color: var(--nywhashcloud_colors-primary-ultra-light);
        border-color: var(--nywhashcloud_colors-primary-light);
        transform: translateY(-1px);
    }

    .nywhashcloud_herosection_visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nywhashcloud_herosection_image {
        width: 100%;
        max-width: 320px;
        border-radius: 12px;
        animation: nywhashcloud_herosection_float 3s ease-in-out infinite;
    }

    .nywhashcloud_herosection_stats {
        display: flex;
        gap: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--nywhashcloud_colors-border);
    }

    .nywhashcloud_herosection_stat {
        display: flex;
        flex-direction: column;
    }

    .nywhashcloud_herosection_stat_number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--nywhashcloud_colors-primary);
    }

    .nywhashcloud_herosection_stat_label {
        font-size: 0.85rem;
        color: var(--nywhashcloud_colors-text-secondary);
    }

    .nywhashcloud_herosection_background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
    }

    .nywhashcloud_herosection_floating {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--nywhashcloud_colors-primary-ultra-light), transparent);
        filter: blur(30px);
        animation: nywhashcloud_herosection_float 6s ease-in-out infinite;
    }

    .nywhashcloud_herosection_floating--1 {
        width: 200px;
        height: 200px;
        top: 10%;
        right: 10%;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
        animation-delay: 0s;
    }

    .nywhashcloud_herosection_floating--2 {
        width: 150px;
        height: 150px;
        bottom: 15%;
        left: 5%;
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(139, 92, 246, 0.05));
        animation-delay: 2s;
    }

    .nywhashcloud_herosection_floating--3 {
        width: 120px;
        height: 120px;
        top: 50%;
        right: 20%;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.05));
        animation-delay: 4s;
    }

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

    @keyframes nywhashcloud_herosection_pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.02); }
    }

    @media (max-width: 1024px) {
        .nywhashcloud_herosection_content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .nywhashcloud_herosection_badge {
            align-self: center;
        }

        .nywhashcloud_herosection_actions {
            justify-content: center;
        }

        .nywhashcloud_herosection_visual {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .nywhashcloud_herosection_container {
            padding: 30px 15px;
            min-height: auto;
        }

        .nywhashcloud_herosection_title {
            font-size: 2rem;
        }

        .nywhashcloud_herosection_actions {
            flex-direction: column;
            align-items: center;
        }

        .nywhashcloud_herosection_button {
            width: 100%;
            max-width: 260px;
            justify-content: center;
        }

        .nywhashcloud_herosection_stats {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }

        .nywhashcloud_herosection_image {
            max-width: 280px;
        }
    }

    @media (max-width: 480px) {
        .nywhashcloud_herosection_title {
            font-size: 1.75rem;
        }

        .nywhashcloud_herosection_description {
            font-size: 1rem;
        }

        .nywhashcloud_herosection_actions {
            gap: 10px;
        }
    }
/* HERO SECTION END */

/* DOMAIN START */

.nywhashcloud_domains_container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.nywhashcloud_domains_hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.nywhashcloud_domains_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nywhashcloud_colors-text-primary);
    margin-bottom: 12px;
}

.nywhashcloud_domains_subtitle {
    font-size: 1.1rem;
    color: var(--nywhashcloud_colors-text-secondary);
    margin-bottom: 40px;
}

.nywhashcloud_domains_search_wrapper {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: var(--nywhashcloud_colors-bg-primary);
    border-radius: var(--nywhashcloud_colors-radius);
    box-shadow: var(--nywhashcloud_colors-shadow-lg);
    border: 1px solid var(--nywhashcloud_colors-border);
    overflow: hidden;
    transition: var(--nywhashcloud_colors-transition);
}

.nywhashcloud_domains_search_wrapper:focus-within {
    box-shadow: 0 8px 30px rgba(70, 128, 255, 0.2);
    border-color: var(--nywhashcloud_colors-primary);
    transform: translateY(-2px);
}

.nywhashcloud_domains_search_input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--nywhashcloud_colors-text-primary);
    background: var(--nywhashcloud_colors-bg-primary);
}

.nywhashcloud_domains_search_input::placeholder {
    color: var(--nywhashcloud_colors-text-light);
}

.nywhashcloud_domains_search_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    border: none;
    background: var(--nywhashcloud_colors-gradient);
    color: white;
    cursor: pointer;
    transition: var(--nywhashcloud_colors-transition);
    font-weight: 600;
    font-size: 0.95rem;
}

.nywhashcloud_domains_search_btn:hover {
    background: var(--nywhashcloud_colors-gradient-hover);
}

.nywhashcloud_domains_search_icon {
    width: 18px;
    height: 18px;
}

.nywhashcloud_domains_table_section {
    margin-top: 40px;
}

.nywhashcloud_domains_table_title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--nywhashcloud_colors-text-primary);
    margin-bottom: 12px;
}

.nywhashcloud_domains_table_subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--nywhashcloud_colors-text-secondary);
    margin-bottom: 40px;
}

.nywhashcloud_domains_table_container {
    background: var(--nywhashcloud_colors-bg-primary);
    border-radius: var(--nywhashcloud_colors-radius);
    box-shadow: var(--nywhashcloud_colors-shadow);
    border: 1px solid var(--nywhashcloud_colors-border-light);
    overflow: hidden;
}

.nywhashcloud_domains_table {
    width: 100%;
    border-collapse: collapse;
}

.nywhashcloud_domains_table_head {
    background: var(--nywhashcloud_colors-bg-secondary);
}

.nywhashcloud_domains_table_th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--nywhashcloud_colors-text-primary);
    border-bottom: 1px solid var(--nywhashcloud_colors-border);
    font-size: 0.95rem;
}

.nywhashcloud_domains_table_th:first-child {
    padding-left: 24px;
}

.nywhashcloud_domains_table_th:last-child {
    padding-right: 24px;
}

.nywhashcloud_domains_table_body {
    background: var(--nywhashcloud_colors-bg-primary);
}

.nywhashcloud_domains_table_row {
    border-bottom: 1px solid var(--nywhashcloud_colors-border-light);
    transition: var(--nywhashcloud_colors-transition);
}

.nywhashcloud_domains_table_row:hover {
    background: var(--nywhashcloud_colors-primary-ultra-light);
}

.nywhashcloud_domains_table_row:last-child {
    border-bottom: none;
}

.nywhashcloud_domains_table_td {
    padding: 20px 16px;
    vertical-align: middle;
}

.nywhashcloud_domains_table_td:first-child {
    padding-left: 24px;
}

.nywhashcloud_domains_table_td:last-child {
    padding-right: 24px;
}

.nywhashcloud_domains_extension {
    display: block;
    font-weight: 600;
    color: var(--nywhashcloud_colors-text-primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.nywhashcloud_domains_extension_desc {
    display: block;
    font-size: 0.85rem;
    color: var(--nywhashcloud_colors-text-light);
}

.nywhashcloud_domains_price {
    font-weight: 600;
    color: var(--nywhashcloud_colors-primary);
    font-size: 1rem;
}

.nywhashcloud_domains_table_footer {
    margin-top: 20px;
    text-align: center;
}

.nywhashcloud_domains_note {
    font-size: 0.85rem;
    color: var(--nywhashcloud_colors-text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .nywhashcloud_domains_container {
        padding: 20px 15px;
    }
    
    .nywhashcloud_domains_title {
        font-size: 2rem;
    }
    
    .nywhashcloud_domains_subtitle {
        font-size: 1rem;
    }
    
    .nywhashcloud_domains_search_wrapper {
        flex-direction: column;
    }
    
    .nywhashcloud_domains_search_btn {
        padding: 12px;
        justify-content: center;
    }
    
    .nywhashcloud_domains_table_title {
        font-size: 1.6rem;
    }
    
    .nywhashcloud_domains_table_container {
        overflow-x: auto;
    }
    
    .nywhashcloud_domains_table {
        min-width: 600px;
    }
    
    .nywhashcloud_domains_table_th,
    .nywhashcloud_domains_table_td {
        padding: 15px 12px;
    }
    
    .nywhashcloud_domains_table_th:first-child,
    .nywhashcloud_domains_table_td:first-child {
        padding-left: 16px;
    }
    
    .nywhashcloud_domains_table_th:last-child,
    .nywhashcloud_domains_table_td:last-child {
        padding-right: 16px;
    }
}
/* DOMAIN END */

/* PRICING SECTION START */
         .nywhashcloud_pricing_section {
            padding: 100px 20px;
            background: linear-gradient(180deg, var(--nywhashcloud_colors-bg-secondary) 0%, var(--nywhashcloud_colors-bg-primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .nywhashcloud_pricing_section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(70, 128, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .nywhashcloud_pricing_section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(62, 161, 226, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .nywhashcloud_pricing_container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .nywhashcloud_pricing_header {
            text-align: center;
            margin-bottom: 50px;
            animation: nywhashcloud_pricing_fadeInUp 0.1s ease-out;
        }

        .nywhashcloud_pricing_title {
            font-size: 48px;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 20px;
            background: var(--nywhashcloud_colors-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nywhashcloud_pricing_subtitle {
            font-size: 18px;
            color: var(--nywhashcloud_colors-text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .nywhashcloud_pricing_toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
            animation: nywhashcloud_pricing_fadeInUp 0.8s ease-out 0.2s;
            animation-fill-mode: both;
        }

        .nywhashcloud_pricing_toggle_wrapper {
            background: var(--nywhashcloud_colors-bg-primary);
            border-radius: 50px;
            padding: 6px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--nywhashcloud_colors-shadow-lg);
            border: 1px solid var(--nywhashcloud_colors-border);
            position: relative;
        }

        .nywhashcloud_pricing_toggle_label {
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--nywhashcloud_colors-transition);
            font-weight: 600;
            font-size: 15px;
            color: var(--nywhashcloud_colors-text-secondary);
            position: relative;
            z-index: 1;
        }

        .nywhashcloud_pricing_toggle_label.nywhashcloud_pricing_active {
            background: var(--nywhashcloud_colors-gradient);
            color: var(--nywhashcloud_colors-bg-primary);
            box-shadow: 0 4px 12px rgba(70, 128, 255, 0.3);
        }

        .nywhashcloud_pricing_discount {
            background: var(--nywhashcloud_colors-success);
            color: var(--nywhashcloud_colors-bg-primary);
            padding: 6px 14px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            animation: nywhashcloud_pricing_pulse 5s infinite;
            margin-right: 10px;
        }

        .nywhashcloud_pricing_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .nywhashcloud_pricing_card {
            background: var(--nywhashcloud_colors-bg-primary);
            border-radius: 16px;
            padding: 40px 30px;
            border: 2px solid var(--nywhashcloud_colors-border);
            transition: var(--nywhashcloud_colors-transition);
            position: relative;
            overflow: hidden;
        }

        .nywhashcloud_pricing_card:nth-child(1) { animation-delay: 0.1s; }
        .nywhashcloud_pricing_card:nth-child(2) { animation-delay: 0.2s; }
        .nywhashcloud_pricing_card:nth-child(3) { animation-delay: 0.3s; }
        .nywhashcloud_pricing_card:nth-child(4) { animation-delay: 0.4s; }

        .nywhashcloud_pricing_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--nywhashcloud_colors-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .nywhashcloud_pricing_card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--nywhashcloud_colors-primary-light);
        }

        .nywhashcloud_pricing_card:hover::before {
            transform: scaleX(1);
        }

        .nywhashcloud_pricing_popular {
            border-color: var(--nywhashcloud_colors-primary);
            box-shadow: 0 10px 30px rgba(70, 128, 255, 0.2);
            transform: scale(1.05);
        }

        .nywhashcloud_pricing_popular:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .nywhashcloud_pricing_badge {
            position: absolute;
            top: 10px;
            right: 20px;
            background: var(--nywhashcloud_colors-gradient);
            color: var(--nywhashcloud_colors-bg-primary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(70, 128, 255, 0.3);
        }

        .nywhashcloud_pricing_card_header {
            margin-bottom: 30px;
        }

        .nywhashcloud_pricing_plan_name {
            font-size: 28px;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 10px;
        }

        .nywhashcloud_pricing_plan_desc {
            font-size: 14px;
            color: var(--nywhashcloud_colors-text-secondary);
            line-height: 1.6;
        }

        .nywhashcloud_pricing_price_container {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid var(--nywhashcloud_colors-border-light);
        }

        .nywhashcloud_pricing_price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 8px;
        }

        .nywhashcloud_pricing_currency {
            font-size: 24px;
            font-weight: 600;
            color: var(--nywhashcloud_colors-text-secondary);
        }

        .nywhashcloud_pricing_amount {
            font-size: 52px;
            font-weight: 800;
            color: var(--nywhashcloud_colors-text-primary);
            line-height: 1;
        }

        .nywhashcloud_pricing_period {
            font-size: 18px;
            color: var(--nywhashcloud_colors-text-secondary);
            font-weight: 500;
        }

        .nywhashcloud_pricing_original {
            font-size: 14px;
            color: var(--nywhashcloud_colors-text-light);
            text-decoration: line-through;
        }

        .nywhashcloud_pricing_features {
            margin-bottom: 25px;
        }

        .nywhashcloud_pricing_feature_row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid var(--nywhashcloud_colors-border-light);
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_pricing_feature_row:hover {
            background: var(--nywhashcloud_colors-bg-secondary);
            padding-left: 12px;
            padding-right: 12px;
            border-radius: var(--nywhashcloud_colors-radius-sm);
        }

        .nywhashcloud_pricing_feature_row:last-child {
            border-bottom: none;
        }

        .nywhashcloud_pricing_feature_name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--nywhashcloud_colors-text-secondary);
        }

        .nywhashcloud_pricing_feature_name i {
            color: var(--nywhashcloud_colors-success);
            font-size: 12px;
        }

        .nywhashcloud_pricing_feature_value {
            font-weight: 600;
            color: var(--nywhashcloud_colors-text-primary);
            font-size: 14px;
        }

        .nywhashcloud_pricing_feature_unlimited {
            color: var(--nywhashcloud_colors-primary);
            font-weight: 700;
        }

        .nywhashcloud_pricing_details_toggle {
            margin-bottom: 25px;
        }

        .nywhashcloud_pricing_details_btn {
            width: 100%;
            padding: 12px;
            background: var(--nywhashcloud_colors-bg-secondary);
            border: 1px solid var(--nywhashcloud_colors-border);
            border-radius: var(--nywhashcloud_colors-radius);
            color: var(--nywhashcloud_colors-primary);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--nywhashcloud_colors-transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .nywhashcloud_pricing_details_btn:hover {
            background: var(--nywhashcloud_colors-primary-ultra-light);
            border-color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_pricing_details_btn i {
            transition: transform 0.3s ease;
        }

        .nywhashcloud_pricing_details_content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, margin 0.4s ease;
        }

        .nywhashcloud_pricing_details_content.nywhashcloud_pricing_active {
            max-height: 600px;
            margin-bottom: 25px;
        }

        .nywhashcloud_pricing_common_features {
            background: var(--nywhashcloud_colors-bg-secondary);
            border-radius: var(--nywhashcloud_colors-radius);
            padding: 20px;
            margin-top: 15px;
        }

        .nywhashcloud_pricing_common_title {
            font-size: 16px;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 15px;
        }

        .nywhashcloud_pricing_common_features_list {
            display: grid;
            gap: 12px;
        }

        .nywhashcloud_pricing_common_feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--nywhashcloud_colors-text-secondary);
        }

        .nywhashcloud_pricing_common_feature i {
            color: var(--nywhashcloud_colors-primary);
            font-size: 16px;
        }

        .nywhashcloud_pricing_btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 30px;
            background: var(--nywhashcloud_colors-bg-primary);
            color: var(--nywhashcloud_colors-primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: var(--nywhashcloud_colors-transition);
            border: 2px solid var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_pricing_btn:hover {
            background: var(--nywhashcloud_colors-primary-ultra-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(70, 128, 255, 0.25);
        }

        .nywhashcloud_pricing_btn i {
            transition: transform 0.3s ease;
        }

        .nywhashcloud_pricing_btn:hover i {
            transform: translateX(4px);
        }

        .nywhashcloud_pricing_btn_primary {
            background: var(--nywhashcloud_colors-gradient);
            color: var(--nywhashcloud_colors-bg-primary);
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(70, 128, 255, 0.3);
        }

        .nywhashcloud_pricing_btn_primary:hover {
            background: var(--nywhashcloud_colors-gradient-hover);
            box-shadow: 0 6px 25px rgba(70, 128, 255, 0.4);
        }

        .nywhashcloud_pricing_trust {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            background: var(--nywhashcloud_colors-bg-primary);
            border-radius: 16px;
            padding: 50px 40px;
            box-shadow: var(--nywhashcloud_colors-shadow-lg);
            border: 1px solid var(--nywhashcloud_colors-border);
            animation: nywhashcloud_pricing_fadeInUp 0.1s ease-out 0.1s;
            animation-fill-mode: both;
        }

        .nywhashcloud_pricing_trust_item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nywhashcloud_pricing_trust_icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: var(--nywhashcloud_colors-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(70, 128, 255, 0.2);
        }

        .nywhashcloud_pricing_trust_icon i {
            font-size: 24px;
            color: var(--nywhashcloud_colors-bg-primary);
        }

        .nywhashcloud_pricing_trust_text h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 5px;
        }

        .nywhashcloud_pricing_trust_text p {
            font-size: 14px;
            color: var(--nywhashcloud_colors-text-secondary);
            line-height: 1.5;
        }

        @keyframes nywhashcloud_pricing_fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes nywhashcloud_pricing_pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @media (max-width: 1200px) {
            .nywhashcloud_pricing_grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nywhashcloud_pricing_section {
                padding: 60px 15px;
            }

            .nywhashcloud_pricing_title {
                font-size: 36px;
            }

            .nywhashcloud_pricing_subtitle {
                font-size: 16px;
            }

            .nywhashcloud_pricing_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .nywhashcloud_pricing_popular {
                transform: scale(1);
            }

            .nywhashcloud_pricing_popular:hover {
                transform: translateY(-8px);
            }

            .nywhashcloud_pricing_trust {
                grid-template-columns: 1fr;
                padding: 30px 20px;
                gap: 25px;
            }

            .nywhashcloud_pricing_amount {
                font-size: 42px;
            }

            .nywhashcloud_pricing_toggle_wrapper {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }

            .nywhashcloud_pricing_toggle_label {
                width: 100%;
                text-align: center;
            }
        }

/* PRICING SECTION END */


/* FOOTER START */

/* Footer Section Styles */
.nywhashcloud_footer_section {
    background: var(--nywhashcloud_colors-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.nywhashcloud_footer_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.nywhashcloud_footer_main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Company Info */
.nywhashcloud_company_info {
    max-width: 400px;
}

.nywhashcloud_footer_logo h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--nywhashcloud_colors-primary-ultra-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nywhashcloud_logo_tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-weight: 500;
}

.nywhashcloud_company_description {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 15px;
}

.nywhashcloud_contact_info {
    margin-bottom: 30px;
}

.nywhashcloud_contact_item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--nywhashcloud_colors-transition);
}

.nywhashcloud_contact_item:hover {
    color: white;
    transform: translateX(5px);
}

.nywhashcloud_contact_item i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--nywhashcloud_colors-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.nywhashcloud_social_links {
    display: flex;
    gap: 15px;
}

.nywhashcloud_social_link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--nywhashcloud_colors-transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nywhashcloud_social_link:hover {
    background: var(--nywhashcloud_colors-gradient-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--nywhashcloud_colors-shadow-lg);
}

/* Footer Columns */
.nywhashcloud_footer_column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.nywhashcloud_footer_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--nywhashcloud_colors-primary-ultra-light);
    border-radius: 2px;
}

.nywhashcloud_footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nywhashcloud_footer_links li {
    margin-bottom: 12px;
}

.nywhashcloud_footer_link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--nywhashcloud_colors-transition);
    position: relative;
    display: inline-block;
}

.nywhashcloud_footer_link:hover {
    color: white;
    transform: translateX(5px);
}

.nywhashcloud_footer_link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--nywhashcloud_colors-primary-light);
    border-radius: 50%;
    opacity: 0;
    transition: var(--nywhashcloud_colors-transition);
}

.nywhashcloud_footer_link:hover::before {
    opacity: 1;
    left: -10px;
}

/* Newsletter Column */
.nywhashcloud_newsletter_column {
    max-width: 300px;
}

.nywhashcloud_newsletter_description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.nywhashcloud_newsletter_form {
    margin-bottom: 30px;
}

.nywhashcloud_input_group {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--nywhashcloud_colors-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--nywhashcloud_colors-transition);
}

.nywhashcloud_input_group:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--nywhashcloud_colors-primary-light);
    box-shadow: 0 0 0 3px rgba(70, 128, 255, 0.1);
}

.nywhashcloud_newsletter_input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: white;
    font-size: 14px;
    outline: none;
}

.nywhashcloud_newsletter_input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.nywhashcloud_newsletter_button {
    background: var(--nywhashcloud_colors-gradient);
    border: none;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    transition: var(--nywhashcloud_colors-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nywhashcloud_newsletter_button:hover {
    background: var(--nywhashcloud_colors-gradient-hover);
    transform: scale(1.05);
}

.nywhashcloud_security_badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nywhashcloud_security_badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.nywhashcloud_security_badge i {
    color: var(--nywhashcloud_colors-primary-ultra-light);
    font-size: 16px;
}

/* Footer Bottom */
.nywhashcloud_footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nywhashcloud_copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

.nywhashcloud_legal_links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nywhashcloud_legal_link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--nywhashcloud_colors-transition);
}

.nywhashcloud_legal_link:hover {
    color: white;
}

/* Back to Top Button */
.nywhashcloud_back_to_top {
    position: fixed;
    bottom: 70px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--nywhashcloud_colors-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--nywhashcloud_colors-transition);
    z-index: 1000;
    box-shadow: var(--nywhashcloud_colors-shadow-lg);
}

.nywhashcloud_back_to_top.nywhashcloud_visible {
    opacity: 1;
    visibility: visible;
}

.nywhashcloud_back_to_top:hover {
    transform: translateY(-5px);
    background: var(--nywhashcloud_colors-gradient-hover);
    box-shadow: 0 12px 35px rgba(70, 128, 255, 0.4);
}
@media (max-width: 1200px) {
    .nywhashcloud_footer_main {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
    
    .nywhashcloud_footer_column:nth-child(3) {
        display: none;
    }
}

@media (max-width: 968px) {
    .nywhashcloud_footer_main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }
    
    .nywhashcloud_company_info {
        max-width: none;
    }
    
    .nywhashcloud_newsletter_column {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nywhashcloud_footer_main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0 30px;
    }
    
    .nywhashcloud_footer_bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px 0;
    }
    
    .nywhashcloud_legal_links {
        gap: 20px;
    }
    
    .nywhashcloud_social_links {
        justify-content: center;
    }
    
    .nywhashcloud_back_to_top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .nywhashcloud_footer_container {
        padding: 0 16px;
    }
    
    .nywhashcloud_footer_main {
        padding: 40px 0 25px;
        gap: 25px;
    }
    
    .nywhashcloud_legal_links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .nywhashcloud_input_group {
        flex-direction: column;
    }
    
    .nywhashcloud_newsletter_button {
        padding: 12px;
        border-radius: 0 0 var(--nywhashcloud_colors-radius) var(--nywhashcloud_colors-radius);
    }
    
    .nywhashcloud_newsletter_input {
        padding: 12px 15px;
    }
    
    .nywhashcloud_security_badges {
        justify-content: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .nywhashcloud_social_link,
    .nywhashcloud_footer_link,
    .nywhashcloud_contact_item,
    .nywhashcloud_back_to_top,
    .nywhashcloud_newsletter_button {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .nywhashcloud_footer_section {
        background: var(--nywhashcloud_colors-primary);
        color: var(--nywhashcloud_colors-bg-primary);
    }
    
    .nywhashcloud_social_link,
    .nywhashcloud_input_group {
        border-width: 2px;
        border-color: var(--nywhashcloud_colors-border);
    }
}

@media print {
    .nywhashcloud_footer_section {
        background: white;
        color: black;
    }
    
    .nywhashcloud_back_to_top,
    .nywhashcloud_newsletter_form {
        display: none;
    }
}

/* FOOTER END */

/* FEATURES START */
        .nywhashcloud_features_section {
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .nywhashcloud_features_background_pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.03;
            background-image: radial-gradient(circle at 20px 20px, var(--nywhashcloud_colors-primary) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        .nywhashcloud_features_container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .nywhashcloud_features_header {
            text-align: center;
            margin-bottom: 70px;
            animation: nywhashcloud_features_fadeInUp 0.8s ease-out;
        }

        .nywhashcloud_features_badge {
            display: inline-block;
            padding: 8px 20px;
            background: var(--nywhashcloud_colors-primary-ultra-light);
            color: var(--nywhashcloud_colors-primary);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            border: 1px solid var(--nywhashcloud_colors-border-light);
        }

        .nywhashcloud_features_title {
            font-size: 32px;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .nywhashcloud_features_subtitle {
            font-size: 20px;
            color: var(--nywhashcloud_colors-text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .nywhashcloud_features_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .nywhashcloud_features_card {
            background: var(--nywhashcloud_colors-bg-primary);
            border-radius: var(--nywhashcloud_colors-radius);
            padding: 40px 35px;
            border: 1px solid var(--nywhashcloud_colors-border);
            transition: var(--nywhashcloud_colors-transition);
            position: relative;
            overflow: hidden;
            animation: nywhashcloud_features_fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .nywhashcloud_features_card:nth-child(1) { animation-delay: 0.1s; }
        .nywhashcloud_features_card:nth-child(2) { animation-delay: 0.2s; }
        .nywhashcloud_features_card:nth-child(3) { animation-delay: 0.3s; }
        .nywhashcloud_features_card:nth-child(4) { animation-delay: 0.4s; }
        .nywhashcloud_features_card:nth-child(5) { animation-delay: 0.5s; }
        .nywhashcloud_features_card:nth-child(6) { animation-delay: 0.6s; }

        .nywhashcloud_features_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--nywhashcloud_colors-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .nywhashcloud_features_card:hover {
            transform: translateY(-5px);
            box-shadow: var(--nywhashcloud_colors-shadow-lg);
            border-color: var(--nywhashcloud_colors-border-light);
        }

        .nywhashcloud_features_card:hover::before {
            transform: scaleX(1);
        }

        .nywhashcloud_features_icon_wrapper {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: var(--nywhashcloud_colors-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: var(--nywhashcloud_colors-transition);
            position: relative;
        }

        .nywhashcloud_features_card:hover .nywhashcloud_features_icon_wrapper {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(70, 128, 255, 0.25);
        }

        .nywhashcloud_features_icon {
            font-size: 32px;
            color: var(--nywhashcloud_colors-bg-primary);
        }

        .nywhashcloud_features_card_title {
            font-size: 24px;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .nywhashcloud_features_card_description {
            font-size: 16px;
            color: var(--nywhashcloud_colors-text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .nywhashcloud_features_list {
            list-style: none;
            margin-top: 20px;
        }

        .nywhashcloud_features_list_item {
            padding: 10px 0;
            color: var(--nywhashcloud_colors-text-secondary);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_features_list_item:hover {
            color: var(--nywhashcloud_colors-text-primary);
            padding-left: 8px;
        }

        .nywhashcloud_features_check_icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--nywhashcloud_colors-primary-ultra-light);
            color: var(--nywhashcloud_colors-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
        }

        .nywhashcloud_features_cta_container {
            text-align: center;
            margin-top: 70px;
            animation: nywhashcloud_features_fadeInUp 1s ease-out;
        }

        .nywhashcloud_features_cta_button {
            display: inline-block;
            padding: 18px 45px;
            background: var(--nywhashcloud_colors-gradient);
            color: var(--nywhashcloud_colors-bg-primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: var(--nywhashcloud_colors-transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(70, 128, 255, 0.2);
        }

        .nywhashcloud_features_cta_button:hover {
            background: var(--nywhashcloud_colors-gradient-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(70, 128, 255, 0.3);
        }

        @keyframes nywhashcloud_features_fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .nywhashcloud_features_section {
                padding: 60px 20px;
            }

            .nywhashcloud_features_title {
                font-size: 36px;
            }

            .nywhashcloud_features_subtitle {
                font-size: 18px;
            }

            .nywhashcloud_features_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .nywhashcloud_features_card {
                padding: 30px 25px;
            }

            .nywhashcloud_features_card_title {
                font-size: 22px;
            }
        }
/* FEATURES END */


/* PARTNERS - TECHS START */

        .nywhashcloud_partners_section {
            padding: 5rem 0;
            background-color: var(--nywhashcloud_colors-bg-secondary);
            overflow: hidden;
        }

        .nywhashcloud_partners_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .nywhashcloud_partners_header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .nywhashcloud_partners_title {
            font-size: 32px;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 1rem;
        }

        .nywhashcloud_partners_subtitle {
            font-size: 1.125rem;
            color: var(--nywhashcloud_colors-text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .nywhashcloud_partners_slider {
            position: relative;
            overflow: hidden;
            padding: 1.5rem 0;
        }

        .nywhashcloud_partners_slider::before,
        .nywhashcloud_partners_slider::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
        }

        .nywhashcloud_partners_slider::before {
            left: 0;
            background: linear-gradient(to right, var(--nywhashcloud_colors-bg-secondary), transparent);
        }

        .nywhashcloud_partners_slider::after {
            right: 0;
            background: linear-gradient(to left, var(--nywhashcloud_colors-bg-secondary), transparent);
        }

        .nywhashcloud_partners_track {
            display: flex;
            animation: nywhashcloud_partners_scroll 30s linear infinite;
        }

        .nywhashcloud_partners_logo {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            width: 180px;
            height: 100px;
            margin: 0 1.5rem;
            background-color: var(--nywhashcloud_colors-bg-primary);
            border-radius: var(--nywhashcloud_colors-radius);
            box-shadow: var(--nywhashcloud_colors-shadow-lg);
            transition: var(--nywhashcloud_colors-transition);
            padding: 1rem;
        }

        .nywhashcloud_partners_logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .nywhashcloud_partners_logo img {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_partners_logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        @keyframes nywhashcloud_partners_scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .nywhashcloud_partners_slider:hover .nywhashcloud_partners_track {
            animation-play-state: paused;
        }
        @media (max-width: 768px) {
            .nywhashcloud_partners_section {
                padding: 3rem 0;
            }

            .nywhashcloud_partners_title {
                font-size: 1.75rem;
            }

            .nywhashcloud_partners_subtitle {
                font-size: 1rem;
            }

            .nywhashcloud_partners_logo {
                width: 140px;
                height: 80px;
                margin: 0 1rem;
            }
        }

/* PARTNERS - TECHS END */


/* FAQ START */

        .nywhashcloud_faq_container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .nywhashcloud_faq_header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .nywhashcloud_faq_title {
            font-size: 32px;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 0.5rem;
        }

        .nywhashcloud_faq_subtitle {
            font-size: 1rem;
            color: var(--nywhashcloud_colors-text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .nywhashcloud_faq_list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .nywhashcloud_faq_item {
            background-color: var(--nywhashcloud_colors-bg-primary);
            border-radius: var(--nywhashcloud_colors-radius);
            box-shadow: 0 2px 10px var(--nywhashcloud_colors-shadow);
            border: 1px solid var(--nywhashcloud_colors-border);
            overflow: hidden;
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_faq_item:hover {
            box-shadow: 0 4px 15px var(--nywhashcloud_colors-shadow);
        }

        .nywhashcloud_faq_question {
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background-color: var(--nywhashcloud_colors-bg-primary);
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_faq_question:hover {
            background-color: var(--nywhashcloud_colors-primary-ultra-light);
        }

        .nywhashcloud_faq_question_text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--nywhashcloud_colors-text-primary);
            margin: 0;
        }

        .nywhashcloud_faq_icon {
            color: var(--nywhashcloud_colors-primary);
            transition: var(--nywhashcloud_colors-transition);
            font-size: 1.25rem;
            font-weight: bold;
        }

        .nywhashcloud_faq_answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--nywhashcloud_colors-text-secondary);
            line-height: 1.6;
        }

        .nywhashcloud_faq_item.active .nywhashcloud_faq_answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        .nywhashcloud_faq_item.active .nywhashcloud_faq_icon {
            transform: rotate(45deg);
        }

        .nywhashcloud_faq_actions {
            display: flex;
            justify-content: center;
            margin-top: 2.5rem;
            gap: 1rem;
        }

        .nywhashcloud_faq_button {
            padding: 0.75rem 1.5rem;
            background: var(--nywhashcloud_colors-gradient);
            color: white;
            border: none;
            border-radius: var(--nywhashcloud_colors-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--nywhashcloud_colors-transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nywhashcloud_faq_button:hover {
            background: var(--nywhashcloud_colors-gradient-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(70, 128, 255, 0.3);
        }

        .nywhashcloud_faq_search {
            margin-bottom: 2rem;
            position: relative;
        }

        .nywhashcloud_faq_search_input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 1px solid var(--nywhashcloud_colors-border);
            border-radius: var(--nywhashcloud_colors-radius);
            font-size: 1rem;
            background-color: var(--nywhashcloud_colors-bg-primary);
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_faq_search_input:focus {
            outline: none;
            border-color: var(--nywhashcloud_colors-primary);
            box-shadow: 0 0 0 3px rgba(70, 128, 255, 0.1);
        }

        .nywhashcloud_faq_search_icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--nywhashcloud_colors-text-light);
        }

        .nywhashcloud_faq_no_results {
            text-align: center;
            padding: 2rem;
            color: var(--nywhashcloud_colors-text-secondary);
            display: none;
        }

        @media (max-width: 768px) {
            .nywhashcloud_faq_container {
                padding: 1.5rem 1rem;
            }
            
            .nywhashcloud_faq_title {
                font-size: 1.75rem;
            }
            
            .nywhashcloud_faq_question {
                padding: 1rem 1.25rem;
            }
            
            .nywhashcloud_faq_answer {
                padding: 0 1.25rem;
            }
            
            .nywhashcloud_faq_item.active .nywhashcloud_faq_answer {
                padding: 0 1.25rem 1.25rem;
            }
        }

/* FAQ END */



/* VDS START */
        .nywhashcloud_vds_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .nywhashcloud_vds_header {
            text-align: center;
            margin-bottom: 50px;
        }

        .nywhashcloud_vds_title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 12px;
        }

        .nywhashcloud_vds_subtitle {
            font-size: 1.125rem;
            color: var(--nywhashcloud_colors-text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .nywhashcloud_vds_view_toggle {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
        }

        .nywhashcloud_vds_toggle_btn {
            padding: 12px 28px;
            border: 2px solid var(--nywhashcloud_colors-border);
            background: var(--nywhashcloud_colors-bg-primary);
            color: var(--nywhashcloud_colors-text-secondary);
            border-radius: var(--nywhashcloud_colors-radius);
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            transition: var(--nywhashcloud_colors-transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nywhashcloud_vds_toggle_btn:hover {
            border-color: var(--nywhashcloud_colors-primary);
            color: var(--nywhashcloud_colors-primary);
        }

        .nywhashcloud_vds_toggle_btn.nywhashcloud_vds_active {
            background: var(--nywhashcloud_colors-gradient);
            border-color: var(--nywhashcloud_colors-primary);
            color: white;
        }

        /* Card View Styles - Yenilenmiş Tasarım */
        .nywhashcloud_vds_cards_grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .nywhashcloud_vds_card {
            background: var(--nywhashcloud_colors-bg-primary);
            border: 1px solid var(--nywhashcloud_colors-border);
            border-radius: var(--nywhashcloud_colors-radius);
            padding: 0;
            transition: var(--nywhashcloud_colors-transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .nywhashcloud_vds_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--nywhashcloud_colors-gradient);
            opacity: 1;
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_vds_card:hover {
            transform: translateY(-8px);
            box-shadow: var(--nywhashcloud_colors-shadow-lg);
            border-color: var(--nywhashcloud_colors-primary-light);
        }

        .nywhashcloud_vds_card_header {
            padding: 28px 28px 20px;
            background: var(--nywhashcloud_colors-bg-secondary);
            border-bottom: 1px solid var(--nywhashcloud_colors-border-light);
            text-align: center;
            position: relative;
        }

        .nywhashcloud_vds_card_icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 16px;
            background: var(--nywhashcloud_colors-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(70, 128, 255, 0.3);
        }

        .nywhashcloud_vds_card_name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--nywhashcloud_colors-text-primary);
            margin-bottom: 8px;
        }

        .nywhashcloud_vds_card_price {
            font-size: 2.2rem;
            font-weight: 700;
            background: var(--nywhashcloud_colors-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4px;
        }

        .nywhashcloud_vds_card_price_suffix {
            font-size: 0.95rem;
            color: var(--nywhashcloud_colors-text-secondary);
            font-weight: 400;
        }

        .nywhashcloud_vds_card_description {
            font-size: 0.9rem;
            color: var(--nywhashcloud_colors-text-secondary);
            margin-bottom: 20px;
            padding: 0 28px;
            text-align: center;
        }

        .nywhashcloud_vds_card_features {
            list-style: none;
            margin-bottom: 24px;
            padding: 0 28px;
        }

        .nywhashcloud_vds_card_feature {
            padding: 10px 0;
            color: var(--nywhashcloud_colors-text-secondary);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 12px;
            border-bottom: 1px solid var(--nywhashcloud_colors-border-light);
        }

        .nywhashcloud_vds_card_feature:last-child {
            border-bottom: none;
        }

        .nywhashcloud_vds_card_feature::before {
            content: '✓';
            color: var(--nywhashcloud_colors-success);
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .nywhashcloud_vds_card_feature strong {
            color: var(--nywhashcloud_colors-text-primary);
            font-weight: 600;
        }

        .nywhashcloud_vds_card_button {
            width: calc(100% - 56px);
            margin: 0 28px 28px;
            padding: 14px;
            background: var(--nywhashcloud_colors-gradient);
            color: white;
            border: none;
            border-radius: var(--nywhashcloud_colors-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--nywhashcloud_colors-transition);
            display: block;
            text-align: center;
            text-decoration: none;
        }

        .nywhashcloud_vds_card_button:hover {
            background: var(--nywhashcloud_colors-gradient-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(70, 128, 255, 0.3);
            color: white;
        }

        /* Table View Styles */
        .nywhashcloud_vds_table_wrapper {
            background: var(--nywhashcloud_colors-bg-primary);
            border-radius: var(--nywhashcloud_colors-radius);
            overflow: hidden;
            border: 1px solid var(--nywhashcloud_colors-border);
            box-shadow: 0 2px 8px var(--nywhashcloud_colors-shadow);
        }

        .nywhashcloud_vds_table {
            width: 100%;
            border-collapse: collapse;
        }

        .nywhashcloud_vds_table thead {
            background: var(--nywhashcloud_colors-bg-secondary);
        }

        .nywhashcloud_vds_table th {
            padding: 18px 16px;
            text-align: left;
            font-weight: 600;
            color: var(--nywhashcloud_colors-text-primary);
            font-size: 0.95rem;
            border-bottom: 2px solid var(--nywhashcloud_colors-border);
        }

        .nywhashcloud_vds_table td {
            padding: 20px 16px;
            color: var(--nywhashcloud_colors-text-secondary);
            border-bottom: 1px solid var(--nywhashcloud_colors-border-light);
            font-size: 0.95rem;
        }

        .nywhashcloud_vds_table tbody tr {
            transition: var(--nywhashcloud_colors-transition);
        }

        .nywhashcloud_vds_table tbody tr:hover {
            background: var(--nywhashcloud_colors-bg-secondary);
        }

        .nywhashcloud_vds_table tbody tr:last-child td {
            border-bottom: none;
        }

        .nywhashcloud_vds_table_name {
            font-weight: 600;
            color: var(--nywhashcloud_colors-text-primary);
            font-size: 1.05rem;
        }

        .nywhashcloud_vds_table_price {
            font-weight: 700;
            font-size: 1.25rem;
            background: var(--nywhashcloud_colors-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nywhashcloud_vds_table_button {
            padding: 10px 24px;
            background: var(--nywhashcloud_colors-gradient);
            color: white;
            border: none;
            border-radius: var(--nywhashcloud_colors-radius-sm);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--nywhashcloud_colors-transition);
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }

        .nywhashcloud_vds_table_button:hover {
            background: var(--nywhashcloud_colors-gradient-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(70, 128, 255, 0.25);
            color: white;
        }

        .nywhashcloud_vds_hidden {
            display: none;
        }

        .nywhashcloud_vds_badge {
            display: inline-block;
            padding: 4px 10px;
            background: var(--nywhashcloud_colors-primary-ultra-light);
            color: var(--nywhashcloud_colors-primary);
            border-radius: var(--nywhashcloud_colors-radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 8px;
        }

        @media (max-width: 768px) {
            .nywhashcloud_vds_title {
                font-size: 2rem;
            }

            .nywhashcloud_vds_cards_grid {
                grid-template-columns: 1fr;
            }

            .nywhashcloud_vds_table_wrapper {
                overflow-x: auto;
            }

            .nywhashcloud_vds_table {
                min-width: 800px;
            }

            .nywhashcloud_vds_view_toggle {
                flex-direction: column;
            }

            .nywhashcloud_vds_toggle_btn {
                width: 100%;
                justify-content: center;
            }
        }
/* VDS END */