.hero-gradient {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.server-icon {
    animation: float 6s ease-in-out infinite;
}

.shield-icon {
    animation: float 4s ease-in-out infinite 1s;
}

.rocket-icon {
    animation: float 5s ease-in-out infinite 0.5s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 32, 78, 0.15);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 32, 78, 0.2);
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 32, 78, 0.2);
    background: white;
}







.custom-primary {
            color: #FF204E;
        }
        .custom-secondary {
            color: #A0153E;
        }
        .bg-custom-primary {
            background-color: #FF204E;
        }
        .bg-custom-secondary {
            background-color: #A0153E;
        }
        .hover\:bg-custom-secondary:hover {
            background-color: #A0153E;
        }
        .border-custom-primary {
            border-color: #FF204E;
        }
        
        /* Comparison Table Styles */
        .comparison-table {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .comparison-table th {
            background-color: #FF204E;
            color: white;
            font-weight: 600;
            padding: 1.25rem;
            text-align: left;
        }
        .comparison-table td {
            padding: 1.25rem;
            border-bottom: 1px solid #e5e7eb;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        .comparison-table tr:hover {
            background-color: #f3f4f6;
        }
        
        /* Feature Card Styles */
        .feature-card {
            transition: all 0.3s ease;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #FF204E, #A0153E);
            z-index: 2;
        }
        
        /* Testimonial Card Styles */
        .testimonial-card {
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 80px;
            font-family: Georgia, serif;
            color: rgba(255, 32, 78, 0.1);
            line-height: 1;
        }
        
        /* Use Case Card Styles */
        .usecase-card {
            transition: all 0.3s ease;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        .usecase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .usecase-card-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #FF204E, #A0153E);
            color: white;
            font-size: 24px;
        }
        
        /* Section Headings */
        .section-heading {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }
        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #FF204E, #A0153E);
            border-radius: 2px;
        }
        
        /* Animated Checkmark */
        .animated-check {
            display: inline-block;
            width: 24px;
            height: 24px;
            margin-right: 8px;
        }
        .animated-check svg {
            width: 100%;
            height: 100%;
            fill: #FF204E;
        }




        .vps-tab-btn {
            transition: all 0.3s ease;
        }
        
        .vps-tab-btn.active {
            background-color: #FF204E;
            color: white;
        }
        
        .vps-tab-btn:not(.active):hover {
            background-color: rgba(255, 32, 78, 0.1);
        }
        
        .vps-pricing-card {
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .vps-pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: #FF204E;
        }
        
        .vps-pricing-card .vps-price {
            color: #FF204E;
        }
        
        .vps-buy-btn {
            background-color: #FF204E;
            transition: all 0.3s ease;
        }
        
        .vps-buy-btn:hover {
            background-color: #A0153E;
            transform: translateY(-2px);
        }
        
        .vps-tab-content {
            display: none;
        }
        
        .vps-tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .vps-feature-list li {
            position: relative;
            padding-left: 1.5rem;
        }
        
        .vps-feature-list li:before {
            content: "✓";
            color: #FF204E;
            position: absolute;
            left: 0;
            font-weight: bold;
        }