/* banner */
/* ==================== HOSTING BANNER WRAPPER ==================== */
        .hosting-banner-main-wrapper {
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.95) 50%, rgba(15, 20, 25, 0.95) 100%);
            overflow: hidden;
            padding: 20px;
        }

        /* ==================== BACKGROUND ANIMATION CONTAINER ==================== */
        .hosting-bg-animation-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        /* ==================== SERVER RACK LINES ==================== */
        .hosting-server-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
            animation: hosting-line-pulse 3s ease-in-out infinite;
        }

        .hosting-server-line-1 {
            width: 100%;
            height: 2px;
            top: 20%;
            left: 0;
            animation-delay: 0s;
        }

        .hosting-server-line-2 {
            width: 100%;
            height: 2px;
            top: 40%;
            left: 0;
            animation-delay: 1s;
        }

        .hosting-server-line-3 {
            width: 100%;
            height: 2px;
            top: 60%;
            left: 0;
            animation-delay: 2s;
        }

        .hosting-server-line-4 {
            width: 100%;
            height: 2px;
            top: 80%;
            left: 0;
            animation-delay: 3s;
        }

        @keyframes hosting-line-pulse {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 0.4; }
        }

        /* ==================== FLOATING SERVER ICONS ==================== */
        .hosting-server-icon {
            position: absolute;
            font-size: 40px;
            opacity: 0.08;
            animation: hosting-icon-drift 8s ease-in-out infinite;
        }

        .hosting-server-icon-1 {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .hosting-server-icon-2 {
            top: 50%;
            right: 15%;
            animation-delay: 2s;
        }

        .hosting-server-icon-3 {
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .hosting-server-icon-4 {
            top: 70%;
            right: 10%;
            animation-delay: 6s;
        }

        @keyframes hosting-icon-drift {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.1); }
        }

        /* ==================== GRADIENT OVERLAY ==================== */
        .hosting-gradient-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 25% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
        }

        /* ==================== MAIN CONTENT LAYOUT (NORMAL ORDER) ==================== */
        .hosting-content-layout-standard {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 55px;
            align-items: center;
            max-width: 1400px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* ==================== LEFT CONTENT COLUMN ==================== */
        .hosting-left-content-column {
            animation: hosting-left-fade-in 1.1s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes hosting-left-fade-in {
            from {
                opacity: 0;
                transform: translateX(-75px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ==================== MAIN HEADLINE ==================== */
        .hosting-main-headline {
            font-size: clamp(2.3rem, 6.5vw, 4.2rem);
            color: #fff;
            margin-bottom: 22px;
            line-height: 1.1;
            font-weight: 950;
            letter-spacing: -1px;
        }

        .hosting-headline-gradient-text {
            background: linear-gradient(135deg, #ff6b35 0%, #fa926c 50%, #fa926c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ==================== DESCRIPTION TEXT ==================== */
        .hosting-description-text {
            font-size: clamp(1.05rem, 2.8vw, 1.3rem);
            color: #d5d5d5;
            margin-bottom: 28px;
            line-height: 1.75;
        }

        .hosting-description-highlight {
            color: #ff6b35;
            font-weight: 800;
        }

        /* ==================== HOSTING PLANS SHOWCASE ==================== */
        .hosting-plans-showcase-box {
            background: rgba(34, 197, 94, 0.08);
            border: 2px solid rgba(34, 197, 94, 0.2);
            border-radius: 16px;
            padding: 22px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .hosting-plans-label {
            color: #ff6b35;
            font-size: 0.93rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.1px;
            margin-bottom: 14px;
        }

        .hosting-plans-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px;
        }

        .hosting-plan-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #b8b8b8;
            font-size: 0.9rem;
        }

        .hosting-plan-badge {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #ff6b35, #fa926c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 13px;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* ==================== CTA BUTTONS ==================== */
        .hosting-cta-buttons-group {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .hosting-btn-base {
            padding: 15px 42px;
            border: none;
            border-radius: 50px;
            font-size: 1.07rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
        }

        .hosting-btn-primary-green {
            background: linear-gradient(135deg, #fa926c 0%, #ff6b35 100%);
            color: #fff;
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
        }

        .hosting-btn-primary-green:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px #ff6b35;
        }

        .hosting-btn-secondary-outline {
            background: transparent;
            color: #ff6b35;
            border: 2px solid #ff6b35;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
        }

        .hosting-btn-secondary-outline:hover {
            background: #ff6b35;
            transform: translateY(-4px);
            box-shadow: 0 10px 35px #ff6b35;
        }

        .hosting-btn-base::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.25);
            transition: left 0.4s ease;
        }

        .hosting-btn-base:hover::before {
            left: 100%;
        }

        /* ==================== STATS DISPLAY ==================== */
        .hosting-stats-display {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .hosting-stat-item {
            display: flex;
            flex-direction: column;
        }

        .hosting-stat-number {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6b35, #fa926c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hosting-stat-label {
            font-size: 0.9rem;
            color: #888;
            margin-top: 5px;
        }

        /* ==================== RIGHT VISUAL COLUMN ==================== */
        .hosting-right-visual-column {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: hosting-right-fade-in 1.1s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation-delay: 0.2s;
        }

        @keyframes hosting-right-fade-in {
            from {
                opacity: 0;
                transform: translateX(75px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ==================== VISUAL CONTAINER ==================== */
        .hosting-visual-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ==================== HOSTING SHOWCASE CARD ==================== */
        .hosting-showcase-card {
            width: 85%;
            height: 85%;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(34, 197, 94, 0.25);
            border-radius: 24px;
            backdrop-filter: blur(15px);
            padding: 42px;
            position: relative;
            overflow: hidden;
            animation: hosting-card-lift-hover 6s ease-in-out infinite;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        @keyframes hosting-card-lift-hover {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-16px); }
        }

        .hosting-showcase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff6b35, #fa926c, transparent);
            animation: hosting-card-border-glow 4s ease-in-out infinite;
        }

        @keyframes hosting-card-border-glow {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }

        .hosting-showcase-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff6b35, transparent);
            animation: hosting-card-bottom-glow 4s ease-in-out infinite;
            animation-delay: 2s;
        }

        @keyframes hosting-card-bottom-glow {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.8; }
        }

        /* ==================== SERVER EMOJI ICON ==================== */
        .hosting-server-icon-main {
            font-size: 90px;
            margin-bottom: 28px;
            animation: hosting-icon-pulse-scale 4s ease-in-out infinite;
        }

        @keyframes hosting-icon-pulse-scale {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }

        /* ==================== HOSTING STATS WRAPPER ==================== */
        .hosting-stats-wrapper {
            text-align: center;
            width: 100%;
        }

        .hosting-showcase-title {
            color: #fff;
            font-size: 1.9rem;
            margin-bottom: 14px;
            font-weight: 900;
        }

        .hosting-showcase-desc {
            color: #aaa;
            font-size: 0.96rem;
            margin-bottom: 26px;
            line-height: 1.6;
        }

        /* ==================== HOSTING METRICS ==================== */
        .hosting-metrics-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .hosting-metric-box {
            background: rgba(34, 197, 94, 0.08);
            border: 1px solid rgba(34, 197, 94, 0.2);
            padding: 12px;
            border-radius: 8px;
        }

        .hosting-metric-value {
            color: #ff6b35;
            font-weight: 800;
            font-size: 1.1rem;
        }

        .hosting-metric-name {
            color: #777;
            font-size: 0.8rem;
            margin-top: 4px;
        }

        /* ==================== RESPONSIVE TABLET (768PX) ==================== */
        @media (max-width: 768px) {
            .hosting-content-layout-standard {
                grid-template-columns: 1fr;
                gap: 35px;
                padding: 20px;
            }

            .hosting-main-headline {
                font-size: 1.9rem;
            }

            .hosting-description-text {
                font-size: 1rem;
            }

            .hosting-cta-buttons-group {
                gap: 12px;
            }

            .hosting-btn-base {
                padding: 12px 32px;
                font-size: 0.95rem;
            }

            .hosting-visual-container {
                height: 350px;
            }

            .hosting-showcase-card {
                padding: 30px;
            }

            .hosting-server-icon-main {
                font-size: 65px;
            }

            .hosting-showcase-title {
                font-size: 1.5rem;
            }

            .hosting-server-line {
                opacity: 0.5;
            }
        }

        /* ==================== RESPONSIVE MOBILE (480PX) ==================== */
        @media (max-width: 480px) {
            .hosting-banner-main-wrapper {
                min-height: 100vh;
                padding: 12px;
            }

            .hosting-main-headline {
                font-size: 1.4rem;
            }

            .hosting-description-text {
                font-size: 0.9rem;
            }

            .hosting-cta-buttons-group {
                flex-direction: column;
                gap: 10px;
            }

            .hosting-btn-base {
                width: 100%;
                text-align: center;
                padding: 11px 24px;
                font-size: 0.9rem;
            }

            .hosting-visual-container {
                height: 280px;
            }

            .hosting-showcase-card {
                padding: 20px;
            }

            .hosting-server-icon-main {
                font-size: 50px;
            }

            .hosting-showcase-title {
                font-size: 1.2rem;
            }

            .hosting-plan-item {
                font-size: 0.8rem;
            }

            .hosting-stats-display {
                gap: 20px;
            }

            .hosting-stat-number {
                font-size: 1.6rem;
            }

            .hosting-plans-grid {
                grid-template-columns: 1fr;
            }

            .hosting-server-icon {
                opacity: 0.04;
            }
        }

        /* ==================== PAGE LOAD ANIMATION ==================== */
        @keyframes hosting-page-load {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .hosting-banner-main-wrapper {
            animation: hosting-page-load 1.4s ease-out;
        }
