/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Next-Level Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

/* Animated Background */
.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.loading-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.loading-particles .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.loading-particles .particle:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.loading-particles .particle:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.loading-particles .particle:nth-child(4) { top: 60%; left: 80%; animation-delay: 3s; }
.loading-particles .particle:nth-child(5) { bottom: 20%; right: 30%; animation-delay: 4s; }
.loading-particles .particle:nth-child(6) { top: 40%; left: 50%; animation-delay: 5s; }
.loading-particles .particle:nth-child(7) { bottom: 60%; left: 10%; animation-delay: 6s; }
.loading-particles .particle:nth-child(8) { top: 80%; right: 20%; animation-delay: 7s; }
.loading-particles .particle:nth-child(9) { bottom: 10%; left: 70%; animation-delay: 8s; }
.loading-particles .particle:nth-child(10) { top: 30%; right: 60%; animation-delay: 9s; }
.loading-particles .particle:nth-child(11) { bottom: 70%; right: 10%; animation-delay: 10s; }
.loading-particles .particle:nth-child(12) { top: 70%; left: 30%; animation-delay: 11s; }

.loading-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.loading-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: gradientPulse 4s ease-in-out infinite;
}

.loading-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    animation: logoSectionEntrance 1s ease-out 0.5s both;
}

.logo-text-section {
    margin-top: 1.5rem;
    text-align: center;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
    animation: titleGlow 3s ease-in-out infinite;
}

.brand-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Progress Section */
.progress-section {
    margin-bottom: 3rem;
    animation: progressEntrance 1s ease-out 1s both;
}

.progress-container {
    max-width: 400px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    width: 0%;
    animation: progressFill 3s ease-out 1.5s forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.progress-percentage {
    font-weight: 700;
    color: #667eea;
}

.progress-status {
    color: rgba(255, 255, 255, 0.8);
}

/* Loading Steps */
.loading-steps {
    margin-bottom: 3rem;
    animation: stepsEntrance 1s ease-out 1.5s both;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.step.active {
    opacity: 1;
    transform: translateX(0);
}

.step.completed {
    opacity: 0.8;
    transform: translateX(0);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-icon i {
    color: white;
    font-size: 1.1rem;
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step-title {
    font-weight: 600;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Loading Animation */
.loading-animation {
    animation: animationEntrance 1s ease-out 2s both;
}

.loading-rings {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.ring {
    position: absolute;
    border: 2px solid transparent;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: ringSpin 2s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.ring-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #764ba2;
    animation-delay: 0.3s;
}

.ring-3 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: #10b981;
    animation-delay: 0.6s;
}

/* Loading Screen Logo */
.brand-logo-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-icon-loading {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoEntrance 1.5s ease-out;
}

.logo-shield-loading {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: shieldGlow 3s ease-in-out infinite;
}

.logo-shield-loading i {
    color: white;
    font-size: 3.2rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    animation: iconPulse 2s ease-in-out infinite;
}

.logo-server-loading {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(16, 185, 129, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: serverFloat 2.5s ease-in-out infinite;
}

.logo-server-loading i {
    color: white;
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text-loading {
    display: flex;
    align-items: baseline;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-brand-loading {
    color: white;
}

.logo-accent-loading {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    animation-delay: 0.2s;
    border-top-color: rgba(255,255,255,0.8);
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    animation-delay: 0.4s;
    border-top-color: rgba(255,255,255,0.6);
}

.loading-text {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Main Content */
.main-content {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

.main-content.hidden {
    opacity: 0;
}

/* Premium Brand Header */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(25px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(102, 126, 234, 0.05);
    border-bottom: 1px solid rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* New Brand Logo Design */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
    position: relative;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shield {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.logo-shield i {
    color: white;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-server {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.logo-server i {
    color: white;
    font-size: 0.7rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.logo-text {
    display: flex;
    align-items: baseline;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.logo-brand {
    color: #1a1a1a;
}

.logo-accent {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #667eea;
}

.coming-soon {
    position: relative;
}

.badge {
    background: #ff6b6b;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

/* Auth Buttons */
.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-login:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid #667eea;
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-register:hover {
    background: linear-gradient(135deg, #5a6fd8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.coming-soon {
    position: relative;
}

.badge {
    background: #ff6b6b;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

/* Mobile Auth Section */
.mobile-auth-item {
    display: none;
}

.mobile-auth-section {
    margin-top: 2rem;
    padding: 2rem;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 8px;
}

.auth-divider {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.auth-divider span {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-login-mobile,
.btn-register-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-login-mobile {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.btn-login-mobile:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-register-mobile {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-register-mobile:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a5acd);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-login-mobile i,
.btn-register-mobile i {
    font-size: 1.1rem;
}

.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-login {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.btn-login:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-register:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a5acd);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* AI-Powered Floating Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { 
        transform: translateY(100vh) rotate(0deg); 
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { 
        transform: translateY(-100px) rotate(360deg); 
        opacity: 0;
    }
}

/* AI-Powered Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    z-index: 2;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 10%;
    right: 60%;
    animation-delay: 8s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-15px) rotate(240deg); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(245, 247, 250, 0.9) 0%, 
        rgba(195, 207, 226, 0.8) 50%, 
        rgba(245, 247, 250, 0.9) 100%);
}

/* Hero Container */
.hero-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Text */
.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.title-line {
    display: block;
    animation: slideInUp 1s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.title-line:nth-child(3) { animation-delay: 0.8s; }

.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.btn-hero {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

.server-tower {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.server-slot {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.server-slot:hover::before {
    left: 100%;
}

.server-slot.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.server-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.server-slot i {
    font-size: 1.5rem;
    color: #667eea;
}

.server-base {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.base-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1.5s both;
}

.base-line:nth-child(2) { animation-delay: 1.7s; }
.base-line:nth-child(3) { animation-delay: 1.9s; }

/* Data Flow */
.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #667eea, transparent);
    animation: dataFlow 3s ease-in-out infinite;
}

.stream-1 {
    height: 100px;
    left: 20%;
    animation-delay: 0s;
}

.stream-2 {
    height: 80px;
    left: 50%;
    animation-delay: 1s;
}

.stream-3 {
    height: 120px;
    right: 30%;
    animation-delay: 2s;
}

@keyframes dataFlow {
    0%, 100% { 
        transform: translateY(-100px);
        opacity: 0;
    }
    50% { 
        transform: translateY(100px);
        opacity: 1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #667eea, transparent);
    border-radius: 1px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.scroll-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.content-wrapper {
    text-align: center;
    max-width: 800px;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.6)); }
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.9;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Button States */
.btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Magnetic Effect for Navigation */
.nav-item {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Modal Mobile Improvements */
    .premium-modal {
        max-width: 95%;
        margin: 1rem;
        width: 95%;
        border-radius: 20px;
    }
    
    .premium-header {
        padding: 2.5rem 2rem 2rem;
        min-height: 180px;
    }
    
    .modal-logo .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .modal-logo .logo-text {
        font-size: 1.6rem;
    }
    
    .header-content h2 {
        font-size: 1.8rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    .premium-body {
        padding: 2.5rem 2rem;
    }
    
    .premium-options {
        flex-direction: column;
        gap: 2rem;
    }
    
    .premium-option {
        padding: 3rem 2rem;
        min-width: auto;
    }
    
    .premium-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        white-space: normal;
    }
    
    .premium-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        white-space: normal;
    }
    
    .option-features {
        gap: 0.5rem;
    }
    
    .option-features span {
        font-size: 0.95rem;
        white-space: normal;
    }
    
    .premium-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }
    
    .premium-icon i {
        font-size: 2rem;
    }
    
    .option-arrow {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 120px 2rem 2rem;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    .dropdown-menu li a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-auth {
        display: none;
    }
    
    /* Mobile Auth Section */
    .mobile-auth-item {
        display: block;
        margin-top: 2rem;
    }
    
    .mobile-auth-section {
        margin-top: 0;
        padding: 2rem;
        border-top: 1px solid #eee;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .auth-divider {
        text-align: center;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .auth-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #eee;
    }
    
    .auth-divider span {
        background: white;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    
    .mobile-auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-login-mobile,
    .btn-register-mobile {
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .btn-login-mobile {
        background: transparent;
        color: #667eea;
        border: 2px solid #667eea;
    }
    
    .btn-login-mobile:hover {
        background: #667eea;
        color: white;
    }
    
    .btn-register-mobile {
        background: #667eea;
        color: white;
    }
    
    .btn-register-mobile:hover {
        background: #5a6fd8;
    }
}

/* AI-Powered Brand Footer */
.brand-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.brand-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.brand-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Header */
.footer-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Logo */
.brand-logo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-icon-footer {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shield-footer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.logo-shield-footer i {
    color: white;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-server-footer {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.4);
}

.logo-server-footer i {
    color: white;
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.logo-text-footer {
    display: flex;
    align-items: baseline;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-brand-footer {
    color: white;
}

.logo-accent-footer {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 1rem;
}

.footer-section ul li a:hover::before {
    width: 8px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.social-link i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Footer Decoration */
.footer-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.decoration-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    max-width: 200px;
}

.decoration-dots {
    display: flex;
    gap: 0.5rem;
}

.decoration-dots span {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.decoration-dots span:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration-dots span:nth-child(3) {
    animation-delay: 1s;
}

/* AI-Enhanced Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(102, 126, 234, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

/* NEW STUNNING LOGIN MODAL */
.new-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.new-modal.show {
    display: flex !important;
}

.new-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    backdrop-filter: blur(20px);
}

.backdrop-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: particleSwirl 20s ease-in-out infinite;
}

.backdrop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

.new-modal-container {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    width: 90%;
    max-width: 800px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(226, 232, 240, 0.5);
    animation: modalSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}









/* NEW MODAL CLOSE BUTTON */
.new-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    color: #64748b;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.new-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.1);
}

/* NEW MODAL HEADER */
.new-modal-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-icon-new {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.logo-shield-new {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.logo-shield-new i {
    color: white;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-server-new {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.logo-server-new i {
    color: white;
    font-size: 0.75rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.logo-text-new {
    display: flex;
    align-items: baseline;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.logo-brand-new {
    color: #1a1a1a;
}

.logo-accent-new {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.header-title {
    text-align: center;
}

.header-title h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.025em;
}

.header-title p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}


/* NEW MODAL BODY */
.new-modal-body {
    padding: 2rem;
    background: #ffffff;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.access-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.access-card:hover .card-glow {
    left: 100%;
}

.access-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.access-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-content {
    z-index: 2;
    position: relative;
    flex: 1;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b !important;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.card-content p {
    font-size: 0.95rem;
    color: #64748b !important;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.card-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.card-features span i {
    color: #10b981;
    font-size: 0.75rem;
}

.card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    transition: all 0.4s ease;
    z-index: 2;
}

.access-card:hover .card-arrow {
    color: #3b82f6;
    transform: translateX(4px);
}

/* NEW MODAL FOOTER */
.new-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.security-info i {
    color: #10b981;
    font-size: 1rem;
}

/* AMAZING ANIMATIONS */
@keyframes modalSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes particleSwirl {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(120deg) scale(1.1);
    }
    66% {
        transform: rotate(240deg) scale(0.9);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .new-modal-container {
        width: 95%;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .new-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .header-logo h1 {
        font-size: 1.5rem;
    }
    
    .header-title h2 {
        font-size: 1.5rem;
    }
    
    .header-title p {
        font-size: 0.95rem;
    }
    
    .new-modal-body {
        padding: 1.5rem;
    }
    
    .access-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .access-card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .card-icon i {
        font-size: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.125rem;
    }
    
    .card-content p {
        font-size: 0.875rem;
    }
    
    .new-modal-footer {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-icon-new {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon-new i:first-child {
        font-size: 1.2rem;
        top: 6px;
        left: 6px;
    }
    
    .logo-icon-new i:last-child {
        font-size: 0.875rem;
        bottom: 6px;
        right: 6px;
    }
    
    .header-logo h1 {
        font-size: 1.375rem;
    }
    
    .new-modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes logoEntrance {
    0% { 
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes shieldGlow {
    0%, 100% { 
        box-shadow: 
            0 15px 40px rgba(102, 126, 234, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 20px 50px rgba(102, 126, 234, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.2);
    }
}

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

@keyframes serverFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(2deg); }
    50% { transform: translateY(-4px) rotate(0deg); }
    75% { transform: translateY(-2px) rotate(-2deg); }
}

/* New Loading Screen Animations */
@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 1; }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes gradientPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

@keyframes logoSectionEntrance {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3)); }
    50% { filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.5)); }
}

@keyframes progressEntrance {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

@keyframes stepsEntrance {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes animationEntrance {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes ringSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.header-content h2 {
    color: #0f172a;
    font-weight: 800;
    font-size: 2.25rem;
    margin: 0;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.header-content p {
    color: #64748b;
    font-size: 1.25rem;
    margin: 0;
    text-align: center;
    line-height: 1.5;
    max-width: 500px;
    font-weight: 500;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.875rem;
    border-radius: 14px;
    transition: all 0.2s ease;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: #f1f5f9;
    color: #334155;
    border-color: #cbd5e1;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.premium-body {
    padding: 3rem;
}

.premium-options {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-between;
}

.premium-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #334155;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 240px;
}

.premium-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.premium-option:hover::before {
    opacity: 1;
}

.option-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.premium-option:hover .option-glow {
    left: 100%;
}

.premium-option:hover {
    border-color: #3b82f6;
    background: #f8fafc;
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.premium-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-option:hover .premium-icon::before {
    opacity: 0.3;
}

.premium-option:hover .premium-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.premium-icon i {
    color: white;
    font-size: 2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}



.premium-content {
    flex: 1;
    text-align: center;
    width: 100%;
}

.premium-content h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111827;
    text-align: center;
    line-height: 1.2;
}

.premium-content p {
    color: #3b82f6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.option-features span {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.option-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.premium-option:hover .option-arrow {
    color: #3b82f6;
    transform: translateX(4px);
}

/* Modal Footer */
.modal-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
    text-align: center;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    color: #16a34a;
    font-weight: 600;
    font-size: 0.85rem;
}

.security-badge i {
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 400px;
}

.server-card {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.server-card:nth-child(1) { animation-delay: 0s; }
.server-card:nth-child(2) { animation-delay: 1.5s; }
.server-card:nth-child(3) { animation-delay: 3s; }
.server-card:nth-child(4) { animation-delay: 4.5s; }

.server-card i {
    font-size: 2.5rem;
    color: #667eea;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

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

/* AI-Powered Mobile Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .dropdown-menu {
        min-width: 240px;
    }
    
    /* Tablet Footer Styles */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
    }
    
    .hamburger:hover {
        background: rgba(102, 126, 234, 0.1);
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(20px) saturate(180%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        padding: 0;
        overflow-y: auto;
        gap: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
        pointer-events: none;
    }
    
    .nav-item {
        width: 100%;
        margin: 0.5rem 0;
        position: relative;
    }
    
    .nav-link {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 1rem;
        border: none;
        padding: 0;
        min-width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li {
        margin: 0.5rem 0;
    }
    
    .dropdown-menu li a {
        padding: 1rem 2rem;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin: 0 1rem;
        font-size: 1rem;
        font-weight: 500;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .dropdown-menu li a:hover {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
        transform: translateX(10px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    }
    
        .mobile-auth-section {
        display: block !important;
        margin-top: auto;
        padding: 2rem;
    }
    
    .nav-menu-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 120px 2rem 2rem;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1.1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo a {
        font-size: 1.5rem;
    }
    
    .nav-logo i {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        padding: 100px 1rem 2rem;
    }
    
    .nav-link {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .dropdown-menu li a {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        margin: 0 0.5rem;
    }
    
    .nav-auth {
        bottom: 1.5rem;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
    
    .main-content-area {
        padding: 100px 1rem 60px;
    }
    
    /* Mobile Footer Styles */
    .footer-container {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    /* Mobile Hero Styles */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-hero {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .server-rack {
        padding: 1.5rem;
    }
    
    .server-slot {
        padding: 0.75rem;
    }
    
    .server-slot i {
        font-size: 1.2rem;
    }
    
    /* Mobile Modal Styles */
    .premium-modal {
        margin: 5% auto;
        width: 95%;
        max-width: 500px;
        border-radius: 20px;
    }
    
    .premium-header {
        padding: 2.5rem 2rem 2rem;
        min-height: 180px;
    }
    
    .premium-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-header p {
        font-size: 1.1rem;
    }
    
    .premium-body {
        padding: 2.5rem 2rem;
    }
    
    .premium-option {
        padding: 3rem 2rem;
    }
    
    .premium-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }
    
    .premium-icon i {
        font-size: 2rem;
    }
    
    .premium-content h3 {
        font-size: 1.4rem;
    }
    
    .option-features {
        font-size: 0.95rem;
    }
}

/* Mobile Menu Animation Enhancements */
@media (max-width: 768px) {
    .nav-menu {
        transform: translateX(-100%);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.6s; }
    
    /* Mobile dropdown animations */
    .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Mobile dropdown indicator */
    .dropdown .nav-link i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .nav-link i {
        transform: rotate(180deg);
    }
}

/* ===================================
   AMAZING NEW PRICING SECTION STYLES
   =================================== */

.pricing-section-new {
    padding: 120px 0 !important;
    position: relative !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    overflow: hidden !important;
    min-height: 600px !important;
}

/* Animated Background Elements */
.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-price-tags {
    position: absolute;
    width: 100%;
    height: 100%;
}

.price-tag {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: priceTagFloat 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.money-flow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.money-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, #10b981, transparent);
    animation: moneyFlow 4s linear infinite;
}

.value-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.value-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: valueParticleFloat 5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.pricing-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 130, 246, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    animation: gridMove 8s linear infinite;
}

/* Pricing Header */
.pricing-header-new {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.pricing-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

.pricing-title-new {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #1e293b, #3b82f6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    color: #1e293b !important;
}

.pricing-subtitle-new {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Cards Grid */
.pricing-cards-new {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 4rem !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Individual Pricing Cards */
.pricing-card-new {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 24px !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(226, 232, 240, 0.6) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    min-height: 500px !important;
}

.pricing-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Featured Card (Most Popular) */
.pricing-card-new.featured-new {
    border: 2px solid #3b82f6;
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.2);
}

.pricing-card-new.featured-new:hover {
    transform: scale(1.02) translateY(-12px);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.25);
}

/* Enterprise Card */
.pricing-card-new.enterprise-new {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(59, 130, 246, 0.05));
}

.pricing-card-new.enterprise-new:hover {
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}

/* Card Glow Effect */
.card-glow-new {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.pricing-card-new:hover .card-glow-new {
    left: 100%;
}

/* Popular Badge */
.popular-badge-new {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    z-index: 10;
    animation: popularBadgePulse 2s ease-in-out infinite;
}

/* Enterprise Badge */
.enterprise-badge-new {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

/* Card Content */
.card-content-new {
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 5;
}

/* Plan Badge */
.plan-badge-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.plan-badge-new i {
    color: #3b82f6;
    font-size: 1.25rem;
}

/* Price Display */
.price-display-new {
    text-align: center;
    margin-bottom: 3rem;
}

.price-amount-new {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.currency-new {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b82f6;
    margin-right: 0.25rem;
}

.amount-new {
    font-size: 4rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.cents-new {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.contact-new {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period-new {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.price-note-new {
    font-size: 0.875rem;
    color: #94a3b8;
    font-style: italic;
}

/* Features List */
.features-new {
    margin-bottom: 3rem;
}

.feature-item-new {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item-new:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(8px);
}

.feature-icon-new {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.feature-item-new:hover .feature-icon-new {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.feature-text-new {
    flex: 1;
}

.feature-title-new {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.feature-desc-new {
    display: block;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Buttons */
.btn-new {
    width: 100%;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

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

.btn-starter {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-starter:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.btn-professional {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-professional:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-business {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-business:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.btn-enterprise {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-enterprise:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

/* Pricing Footer */
.pricing-footer-new {
    text-align: center;
    position: relative;
    z-index: 10;
}

.guarantee-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.guarantee-badge-new i {
    font-size: 2rem;
    color: #f59e0b;
}

.guarantee-text-new h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.guarantee-text-new p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-feature-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.4);
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
}

.footer-feature-new:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.footer-feature-new i {
    color: #3b82f6;
    font-size: 1.125rem;
}

/* AMAZING PRICING ANIMATIONS */
@keyframes priceTagFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: translateY(-30px) rotate(0deg);
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    }
    75% {
        transform: translateY(-15px) rotate(-5deg);
        box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    }
}

@keyframes moneyFlow {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

@keyframes valueParticleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
    66% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0.8;
    }
}

@keyframes popularBadgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
    .pricing-cards-new {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .pricing-section-new {
        padding: 80px 0 !important;
    }
    
    .pricing-title-new {
        font-size: 2.5rem !important;
    }
    
    .pricing-subtitle-new {
        font-size: 1.125rem !important;
    }
    
    .pricing-cards-new {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .pricing-card-new.featured-new {
        transform: none !important;
    }
    
    .card-content-new {
        padding: 2rem 1.5rem !important;
    }
    
    .amount-new {
        font-size: 3rem !important;
    }
    
    .cents-new {
        font-size: 1.5rem !important;
    }
    
    .contact-new {
        font-size: 2rem !important;
    }
    
    .feature-item-new {
        padding: 0.75rem !important;
    }
    
    .feature-icon-new {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .guarantee-badge-new {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.25rem 1.5rem !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .pricing-title-new {
        font-size: 2rem !important;
    }
    
    .pricing-card-new {
        padding: 1.5rem !important;
        margin: 0 0.5rem !important;
    }
    
    .amount-new {
        font-size: 2.5rem !important;
    }
    
    .btn-new {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
}

/* ====================================
   AMAZING NEW SERVICES SECTION STYLES
   ==================================== */

.services-section-new {
    padding: 120px 0 !important;
    position: relative !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    overflow: hidden !important;
    min-height: 100vh !important;
}



.floating-service-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.service-icon-float {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: serviceIconFloat 8s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
}

.data-flow-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flow-line {
    position: absolute;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: dataLineFlow 6s linear infinite;
}

.tech-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f59e0b;
    border-radius: 50%;
    animation: techParticleFloat 7s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.services-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 130, 246, 0.15) 1px, transparent 0);
    background-size: 50px 50px;
    animation: servicesGridMove 10s linear infinite;
}

/* Services Header */
.services-header-new {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.services-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    margin-bottom: 2.5rem;
    animation: servicesBadgePulse 3s ease-in-out infinite;
}

.services-title-new {
    font-size: 4rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #ffffff, #e2e8f0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 2rem !important;
    line-height: 1.1 !important;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.services-subtitle-new {
    font-size: 1.375rem !important;
    color: #94a3b8 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.7 !important;
}

/* ======================================
   REVOLUTIONARY SERVICE TABS SYSTEM
   ====================================== */

/* Service Tabs System Container */
.service-tabs-system {
    margin-bottom: 5rem !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Tab Navigation */
.tab-navigation {
    position: relative !important;
    margin: 40px 0 3rem 0 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 25px 0.5rem 0.5rem 0.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    overflow: visible !important;
}

.tab-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.5rem !important;
    position: relative !important;
    overflow: visible !important;
}

.service-tab {
    background: transparent !important;
    border: none !important;
    padding: 1.5rem 1rem !important;
    border-radius: 16px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.7) !important;
    min-height: 140px !important;
    margin-top: 25px !important;
}

.service-tab:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.service-tab.active {
    background: rgba(59, 130, 246, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
}

.tab-icon {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
    transition: all 0.3s ease !important;
}

.service-tab.active .tab-icon {
    color: #3b82f6 !important;
    transform: scale(1.1) !important;
}

.tab-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
}

.tab-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.tab-subtitle {
    font-size: 0.75rem !important;
    opacity: 0.8 !important;
    font-weight: 500 !important;
}

.popular-indicator {
    position: absolute !important;
    top: -30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 15px !important;
    animation: popularTagPulse 2s ease-in-out infinite !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5) !important;
    z-index: 100 !important;
    white-space: nowrap !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.tab-indicator {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 3px !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border-radius: 2px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 25% !important;
    transform: translateX(0) !important;
}

/* Tab Content Area */
.tab-content-area {
    position: relative !important;
    min-height: 600px !important;
}

.tab-content {
    display: none !important;
    animation: tabContentSlideIn 0.6s ease-out !important;
}

.tab-content.active {
    display: block !important;
}

/* Service Showcase */
.service-showcase {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(25px) !important;
    border-radius: 24px !important;
    padding: 3rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Service Hero Section */
.service-hero {
    text-align: center !important;
    margin-bottom: 4rem !important;
    position: relative !important;
}

.service-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(59, 130, 246, 0.2) !important;
    color: #3b82f6 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    margin-bottom: 2rem !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    animation: badgePulse 3s ease-in-out infinite !important;
}

.gaming-badge {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.web-badge {
    background: rgba(139, 92, 246, 0.2) !important;
    color: #8b5cf6 !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.wordpress-badge {
    background: rgba(245, 158, 11, 0.2) !important;
    color: #f59e0b !important;
    border-color: rgba(245, 158, 11, 0.3) !important;
}

.service-hero h3 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

.service-lead {
    font-size: 1.25rem !important;
    color: #94a3b8 !important;
    line-height: 1.6 !important;
    margin-bottom: 3rem !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Key Stats */
.key-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.stat-item {
    text-align: center !important;
    padding: 2rem 1rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.stat-number {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #3b82f6 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.stat-label {
    color: #cbd5e1 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Action Buttons */
.action-buttons {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    margin-bottom: 4rem !important;
}

.btn-primary-tab, .btn-secondary-tab {
    padding: 1.25rem 2rem !important;
    border: none !important;
    border-radius: 16px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    text-decoration: none !important;
}

.btn-primary-tab {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

.btn-primary-tab.gaming {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
}

.btn-primary-tab.web {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4) !important;
}

.btn-primary-tab.wordpress {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4) !important;
}

.btn-primary-tab:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6) !important;
}

.btn-secondary-tab {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.btn-secondary-tab:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Service Features Detailed */
.service-features-detailed {
    margin-bottom: 4rem !important;
}

.service-features-detailed h4 {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.feature-icon-detailed {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.5rem !important;
    margin: 0 auto 1.5rem !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
}

.feature-icon-detailed.gaming {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
}

.feature-icon-detailed.web {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3) !important;
}

.feature-icon-detailed.wordpress {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3) !important;
}

.feature-card h5 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 1rem !important;
}

.feature-card p {
    color: #94a3b8 !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
}

/* Use Cases Section */
.use-cases-section {
    text-align: center !important;
}

.use-cases-section h4 {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 2rem !important;
}

.use-cases-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
}

.use-case {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 16px !important;
    padding: 1.5rem 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.use-case:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-3px) !important;
}

.use-case i {
    font-size: 1.5rem !important;
    color: #3b82f6 !important;
    margin-bottom: 1rem !important;
}

.use-case h6 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 0.5rem !important;
}

.use-case p {
    color: #94a3b8 !important;
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
}

/* ====================================
   GLOBAL CONTAINER STYLES
   ==================================== */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    position: relative !important;
    z-index: 10 !important;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
    }
}

@media (max-width: 1240px) {
    .container {
        padding: 0 2rem !important;
    }
}

/* Make sections more compact on larger screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px !important;
    }
}

/* Ensure no sections are too wide */
.hero-section-clean .container,
.services-section-new .container,
.why-choose-section .container,
.pricing-section-new .container,
.cta-section .container {
    max-width: 1200px !important;
}

/* ====================================
   WHITE INTERACTIVE HERO SECTION
   ==================================== */

/* Main Hero Section */
.hero-section-white {
    min-height: 100vh !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    padding: 160px 0 120px 0 !important;
}

/* Hero Background */
.hero-background-white {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
}

/* Floating Shapes for White Hero */
.floating-shape {
    position: absolute !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)) !important;
    border-radius: 20px !important;
    animation: shapeFloat 6s ease-in-out infinite !important;
}

.floating-shape.shape-1 {
    width: 100px !important;
    height: 100px !important;
    top: 10% !important;
    left: 5% !important;
    animation-delay: 0s !important;
    border-radius: 50% !important;
}

.floating-shape.shape-2 {
    width: 80px !important;
    height: 120px !important;
    top: 20% !important;
    right: 10% !important;
    animation-delay: 1s !important;
    transform: rotate(45deg) !important;
}

.floating-shape.shape-3 {
    width: 60px !important;
    height: 60px !important;
    bottom: 30% !important;
    left: 15% !important;
    animation-delay: 2s !important;
}

.floating-shape.shape-4 {
    width: 120px !important;
    height: 80px !important;
    bottom: 15% !important;
    right: 20% !important;
    animation-delay: 3s !important;
    border-radius: 50% !important;
}

.floating-shape.shape-5 {
    width: 90px !important;
    height: 90px !important;
    top: 60% !important;
    left: 25% !important;
    animation-delay: 4s !important;
    transform: rotate(-30deg) !important;
}

/* Hero Particles White */
.hero-particles-white {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite !important;
}

/* Hero Grid White */
.hero-grid-white {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px !important;
    animation: gridMove 30s linear infinite !important;
    pointer-events: none !important;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.shape {
    position: absolute !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)) !important;
    border-radius: 20px !important;
    animation: shapeFloat 6s ease-in-out infinite !important;
}

.shape-1 {
    width: 100px !important;
    height: 100px !important;
    top: 10% !important;
    left: 5% !important;
    animation-delay: 0s !important;
    border-radius: 50% !important;
}

.shape-2 {
    width: 80px !important;
    height: 120px !important;
    top: 20% !important;
    right: 10% !important;
    animation-delay: 1s !important;
    transform: rotate(45deg) !important;
}

.shape-3 {
    width: 60px !important;
    height: 60px !important;
    bottom: 30% !important;
    left: 15% !important;
    animation-delay: 2s !important;
}

.shape-4 {
    width: 120px !important;
    height: 80px !important;
    bottom: 15% !important;
    right: 20% !important;
    animation-delay: 3s !important;
    border-radius: 50% !important;
}

.shape-5 {
    width: 90px !important;
    height: 90px !important;
    top: 60% !important;
    left: 25% !important;
    animation-delay: 4s !important;
    transform: rotate(-30deg) !important;
}

.shape-6 {
    width: 70px !important;
    height: 110px !important;
    top: 40% !important;
    right: 30% !important;
    animation-delay: 5s !important;
    transform: rotate(15deg) !important;
}

@keyframes shapeFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) !important; 
        opacity: 0.3 !important;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg) !important; 
        opacity: 0.6 !important;
    }
}

/* Network Canvas for White Theme */
.network-canvas-white {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    opacity: 0.4 !important;
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%) !important;
    pointer-events: none !important;
}

/* Floating Particles */
.floating-particles {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.particle-white {
    position: absolute !important;
    width: 6px !important;
    height: 6px !important;
    background: #3b82f6 !important;
    border-radius: 50% !important;
    opacity: 0.6 !important;
    animation: particleFloatWhite 15s linear infinite !important;
    animation-delay: var(--delay) !important;
}

@keyframes particleFloatWhite {
    0% {
        transform: translateY(100vh) translateX(0) !important;
        opacity: 0 !important;
    }
    10% {
        opacity: 0.6 !important;
    }
    90% {
        opacity: 0.6 !important;
    }
    100% {
        transform: translateY(-100px) translateX(50px) !important;
        opacity: 0 !important;
    }
}

.particle-white:nth-child(1) { left: 20% !important; }
.particle-white:nth-child(2) { left: 40% !important; }
.particle-white:nth-child(3) { left: 60% !important; }
.particle-white:nth-child(4) { left: 80% !important; }
.particle-white:nth-child(5) { left: 10% !important; }

/* Hero Content */
.hero-content-white {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Status Badge */
.status-badge-white {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(59, 130, 246, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 50px !important;
    padding: 0.75rem 1.5rem !important;
    margin-bottom: 2rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #1e40af !important;
    animation: statusBadgeGlowWhite 3s ease-in-out infinite !important;
    position: relative !important;
}

.status-indicator {
    width: 8px !important;
    height: 8px !important;
    background: #10b981 !important;
    border-radius: 50% !important;
    margin-right: 0.75rem !important;
    animation: statusPulseWhite 2s ease-in-out infinite !important;
}

@keyframes statusPulseWhite {
    0%, 100% { 
        transform: scale(1) !important; 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7) !important; 
    }
    50% { 
        transform: scale(1.2) !important; 
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0) !important; 
    }
}

@keyframes statusBadgeGlowWhite {
    0%, 100% { box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2) !important; }
    50% { box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3) !important; }
}

/* Hero Title */
.hero-title-white {
    font-size: 4rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    color: #1e293b !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.title-main {
    display: block !important;
    animation: titleSlideUp 1s ease-out 0.2s forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.title-highlight {
    display: block !important;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: titleSlideUp 1s ease-out 0.4s forwards, gradientShiftWhite 3s ease-in-out infinite !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.title-sub {
    display: block !important;
    color: #64748b !important;
    font-weight: 700 !important;
    animation: titleSlideUp 1s ease-out 0.6s forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes titleSlideUp {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@keyframes gradientShiftWhite {
    0%, 100% { background-position: 0% 50% !important; }
    50% { background-position: 100% 50% !important; }
}

/* Hero Description */
.hero-description-white {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: #475569 !important;
    margin-bottom: 3rem !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    animation: descriptionFadeInWhite 1s ease-out 0.8s forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes descriptionFadeInWhite {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Feature Highlights */
.feature-highlights {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
    animation: featuresSlideUp 1s ease-out 1s forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes featuresSlideUp {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Key Propositions in Hero */
.key-propositions-white {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
    animation: featuresSlideUp 1s ease-out 1s forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.proposition {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 1rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.proposition:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.proposition::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.proposition:hover::before {
    opacity: 1 !important;
}

.proposition i {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease !important;
}

.proposition:hover i {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

.proposition span {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    white-space: nowrap !important;
}

.feature-item-white {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    text-align: left !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.feature-item-white:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.feature-item-white::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.feature-item-white:hover::before {
    opacity: 1 !important;
}

.feature-icon-white {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
    font-size: 1.5rem !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25) !important;
}

.feature-icon-white i {
    color: white !important;
    font-size: 1.5rem !important;
    display: block !important;
}

.feature-item-white .feature-icon-white i {
    color: white !important;
}

.feature-text h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
}

.feature-item-white h3 {
    color: #1e293b !important;
}

.feature-item-white .feature-text h3 {
    color: #1e293b !important;
}

.feature-text p {
    color: #64748b !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.feature-item-white .feature-text p {
    color: #64748b !important;
}

.feature-item-white p {
    color: #64748b !important;
}

/* CTA Buttons */
.hero-cta-white {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 4rem !important;
    animation: ctaSlideUp 1s ease-out 1.2s forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes ctaSlideUp {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.btn-primary-white {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border: none !important;
    border-radius: 16px !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 1.25rem 3rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3) !important;
}

.btn-primary-white:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4) !important;
}

.btn-content {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.btn-text {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
}

.btn-price {
    font-size: 0.875rem !important;
    opacity: 0.9 !important;
    font-weight: 500 !important;
}

.btn-arrow-white {
    font-size: 1rem !important;
    transition: transform 0.3s ease !important;
}

.btn-primary-white:hover .btn-arrow-white {
    transform: translateX(5px) !important;
}

.btn-secondary-white {
    background: rgba(59, 130, 246, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 12px !important;
    color: #1e40af !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.btn-secondary-white:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2) !important;
}

/* CTA Button Variants for Hero */
.cta-btn-primary-white {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border: none !important;
    border-radius: 16px !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 1.25rem 3rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3) !important;
    font-size: 1.125rem !important;
}

.cta-btn-primary-white:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4) !important;
    text-decoration: none !important;
    color: white !important;
}

.cta-btn-primary-white span {
    color: white !important;
    font-weight: 700 !important;
}

.cta-btn-primary-white i {
    font-size: 1rem !important;
    transition: transform 0.3s ease !important;
}

.cta-btn-primary-white:hover i {
    transform: translateX(5px) !important;
}

.cta-btn-secondary-white {
    background: rgba(59, 130, 246, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 12px !important;
    color: #1e40af !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.cta-btn-secondary-white:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2) !important;
    text-decoration: none !important;
    color: #1e40af !important;
}

.cta-btn-secondary-white span {
    color: #1e40af !important;
    font-weight: 600 !important;
}

.cta-btn-secondary-white i {
    color: #1e40af !important;
}

/* Social Proof */
.social-proof-white {
    animation: socialProofSlideUp 1s ease-out 1.4s forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes socialProofSlideUp {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Social Proof Section - Unified Container Style */
.social-proof-white {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 3rem !important;
    padding: 2.5rem !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15) !important;
    animation: socialProofSlideUp 1s ease-out 1.4s forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    position: relative !important;
    overflow: hidden !important;
}

.social-proof-white::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981) !important;
    opacity: 1 !important;
}

.proof-item {
    text-align: center !important;
    padding: 1.5rem !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.proof-item:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

.proof-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.proof-item:hover::before {
    opacity: 1 !important;
}

.proof-number {
    display: block !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.5rem !important;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
}

.proof-label {
    display: block !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

.stats-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.stat-item-white {
    text-align: center !important;
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #3b82f6 !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    animation: numberCountWhite 2s ease-out 1.6s forwards !important;
}

.stat-item-white .stat-number {
    color: #3b82f6 !important;
}

.stats-row .stat-number {
    color: #3b82f6 !important;
}

.stat-label {
    color: #64748b !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.stat-item-white .stat-label {
    color: #64748b !important;
}

.stats-row .stat-label {
    color: #64748b !important;
}

@keyframes numberCountWhite {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.trust-badges-white {
    display: flex !important;
    justify-content: center !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
}

.trust-badge {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.5rem !important;
    color: #475569 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1) !important;
}

.trust-badge i {
    color: #3b82f6 !important;
    font-size: 1rem !important;
}

/* White Hero Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-section-white {
        padding: 140px 0 100px 0 !important;
    }
    
    .hero-title-white {
        font-size: 3rem !important;
    }
    
    .feature-highlights {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .hero-section-white {
        padding: 120px 0 80px 0 !important;
        min-height: 90vh !important;
    }
    
    .hero-content-white {
        padding: 0 1rem !important;
    }
    
    .hero-title-white {
        font-size: 2.5rem !important;
        gap: 0.25rem !important;
    }
    
    .hero-description-white {
        font-size: 1.125rem !important;
        margin-bottom: 2rem !important;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .feature-item-white {
        padding: 1.5rem !important;
    }
    
    .feature-icon-white {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .hero-cta-white {
        gap: 1rem !important;
        margin-bottom: 3rem !important;
    }
    
    .btn-primary-white {
        padding: 1rem 2rem !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .btn-secondary-white {
        padding: 0.875rem 1.5rem !important;
    }
    
    .cta-btn-primary-white {
        padding: 1rem 2rem !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .cta-btn-secondary-white {
        padding: 0.875rem 1.5rem !important;
    }
    
    .key-propositions-white {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .proposition {
        padding: 0.75rem 1rem !important;
        gap: 0.5rem !important;
    }
    
    .proposition i {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .proposition span {
        font-size: 0.875rem !important;
    }
    
    .social-proof-white {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        padding: 2rem !important;
        margin-top: 2rem !important;
    }
    
    .proof-item {
        padding: 1.25rem !important;
    }
    
    .proof-number {
        font-size: 2.5rem !important;
    }
    
    .proof-label {
        font-size: 0.875rem !important;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .trust-badges-white {
        gap: 1rem !important;
    }
    
    .trust-badge {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Disable network canvas on mobile for performance */
    .network-canvas-white {
        display: none !important;
    }
    
    .geometric-shapes .shape {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .hero-section-white {
        padding: 100px 0 60px 0 !important;
    }
    
    .hero-title-white {
        font-size: 2rem !important;
    }
    
    .hero-description-white {
        font-size: 1rem !important;
    }
    
    .status-badge-white {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    .key-propositions-white {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .proposition {
        padding: 0.75rem 1rem !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
    }
    
    .proposition i {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.875rem !important;
    }
    
    .proposition span {
        font-size: 0.8rem !important;
    }
    
    .social-proof-white {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 1rem !important;
        margin-top: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .proof-number {
        font-size: 1.75rem !important;
    }
    
    .proof-label {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    .stats-row {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .trust-badges-white {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .geometric-shapes {
        display: none !important;
    }
    
    .floating-particles {
        display: none !important;
    }
}

/* Animated Particles */
.particles-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.particle {
    position: absolute !important;
    width: 4px !important;
    height: 4px !important;
    background: #3b82f6 !important;
    border-radius: 50% !important;
    opacity: 0.6 !important;
    animation: particleMove var(--duration) linear infinite !important;
    animation-delay: var(--delay) !important;
}

@keyframes particleMove {
    0% {
        transform: translateY(100vh) translateX(0) !important;
        opacity: 0 !important;
    }
    10% {
        opacity: 1 !important;
    }
    90% {
        opacity: 1 !important;
    }
    100% {
        transform: translateY(-100px) translateX(100px) !important;
        opacity: 0 !important;
    }
}

.particle:nth-child(1) { left: 10% !important; }
.particle:nth-child(2) { left: 30% !important; }
.particle:nth-child(3) { left: 50% !important; }
.particle:nth-child(4) { left: 70% !important; }
.particle:nth-child(5) { left: 90% !important; }

/* Hero Content */
.hero-content-interactive {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Status Badge */
.status-badge-interactive {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(16, 185, 129, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 50px !important;
    padding: 0.75rem 1.5rem !important;
    margin-bottom: 2rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #10b981 !important;
    animation: statusBadgeGlow 3s ease-in-out infinite !important;
}

.status-pulse {
    position: absolute !important;
    top: 50% !important;
    left: 1rem !important;
    transform: translateY(-50%) !important;
    width: 8px !important;
    height: 8px !important;
    background: #10b981 !important;
    border-radius: 50% !important;
    animation: statusPulseAnimation 2s ease-in-out infinite !important;
}

@keyframes statusPulseAnimation {
    0%, 100% { transform: translateY(-50%) scale(1) !important; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7) !important; }
    50% { transform: translateY(-50%) scale(1.2) !important; box-shadow: 0 0 0 10px rgba(16, 185, 129, 0) !important; }
}

@keyframes statusBadgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3) !important; }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.5) !important; }
}

.status-content {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-left: 1rem !important;
}

.status-icon {
    font-size: 1rem !important;
    color: #10b981 !important;
}

/* Hero Title */
.hero-title-interactive {
    font-size: 4rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.title-line-1, .title-line-2, .title-line-3 {
    display: block !important;
    animation: titleLineReveal 1s ease-out forwards !important;
    opacity: 0 !important;
    transform: translateY(30px) !important;
}

.title-line-1 { animation-delay: 0.2s !important; }
.title-line-2 { animation-delay: 0.4s !important; }
.title-line-3 { animation-delay: 0.6s !important; }

@keyframes titleLineReveal {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.gradient-text-interactive {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: gradientShift 3s ease-in-out infinite !important;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50% !important; }
    50% { background-position: 100% 50% !important; }
}

/* Hero Description */
.hero-description-interactive {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: #cbd5e1 !important;
    margin-bottom: 3rem !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    animation: descriptionFadeIn 1s ease-out 0.8s forwards !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

@keyframes descriptionFadeIn {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Value Propositions */
.value-propositions {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
    animation: propositionsFadeIn 1s ease-out 1s forwards !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

@keyframes propositionsFadeIn {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.value-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    text-align: left !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.value-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.value-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.value-item:hover::before {
    opacity: 1 !important;
}

.value-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
    font-size: 1.5rem !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
}

.value-content h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 0.5rem !important;
}

.value-content p {
    color: #cbd5e1 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Hero CTA Buttons */
.hero-cta-interactive {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 4rem !important;
    animation: ctaFadeIn 1s ease-out 1.2s forwards !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

@keyframes ctaFadeIn {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.btn-primary-interactive {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border: none !important;
    border-radius: 16px !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 1.25rem 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.25rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3) !important;
}

.btn-primary-interactive:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4) !important;
}

.btn-primary-interactive .btn-text {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
}

.btn-primary-interactive .btn-subtext {
    font-size: 0.875rem !important;
    opacity: 0.9 !important;
    font-weight: 500 !important;
}

.btn-primary-interactive .btn-arrow {
    position: absolute !important;
    right: 1.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1rem !important;
    transition: transform 0.3s ease !important;
}

.btn-primary-interactive:hover .btn-arrow {
    transform: translateY(-50%) translateX(5px) !important;
}

.btn-secondary-interactive {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: white !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.btn-secondary-interactive:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.btn-secondary-interactive .btn-icon {
    font-size: 1.25rem !important;
    color: #3b82f6 !important;
}

/* Trust Section */
.trust-section-interactive {
    animation: trustFadeIn 1s ease-out 1.4s forwards !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

@keyframes trustFadeIn {
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.trust-stats {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.trust-stat {
    text-align: center !important;
}

.stat-number-interactive {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #3b82f6 !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    animation: numberCount 2s ease-out 1.6s forwards !important;
}

.stat-label-interactive {
    color: #94a3b8 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

@keyframes numberCount {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.trust-badges {
    display: flex !important;
    justify-content: center !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
}

.badge-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.5rem !important;
    color: #cbd5e1 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) !important;
}

.badge-item i {
    color: #3b82f6 !important;
    font-size: 1rem !important;
}

/* Interactive Hero Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-section-interactive {
        padding: 100px 0 !important;
    }
    
    .hero-title-interactive {
        font-size: 3rem !important;
    }
    
    .value-propositions {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .floating-element {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
}

@media (max-width: 768px) {
    .hero-section-interactive {
        padding: 80px 0 !important;
        min-height: 90vh !important;
    }
    
    .hero-content-interactive {
        padding: 0 1rem !important;
    }
    
    .hero-title-interactive {
        font-size: 2.5rem !important;
        gap: 0.25rem !important;
    }
    
    .hero-description-interactive {
        font-size: 1.125rem !important;
        margin-bottom: 2rem !important;
    }
    
    .value-propositions {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .value-item {
        padding: 1.5rem !important;
    }
    
    .value-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .hero-cta-interactive {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 3rem !important;
    }
    
    .btn-primary-interactive {
        padding: 1rem 2rem !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .btn-secondary-interactive {
        padding: 0.875rem 1.5rem !important;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .stat-number-interactive {
        font-size: 2rem !important;
    }
    
    .trust-badges {
        gap: 1rem !important;
    }
    
    .badge-item {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    .floating-element {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    /* Disable network canvas on mobile for performance */
    .network-canvas {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-section-interactive {
        padding: 60px 0 !important;
    }
    
    .hero-title-interactive {
        font-size: 2rem !important;
    }
    
    .hero-description-interactive {
        font-size: 1rem !important;
    }
    
    .status-badge-interactive {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    .trust-stats {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .stat-number-interactive {
        font-size: 1.75rem !important;
    }
    
    .trust-badges {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .floating-elements {
        display: none !important;
    }
    
    .particles-container {
        display: none !important;
    }
}

/* CLEAN MODERN HERO SECTION */
.hero-section-clean {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Subtle Background Elements */
.hero-bg-clean {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.08));
    top: 50%;
    right: 10%;
    animation-delay: 7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.1));
    bottom: 20%;
    left: 30%;
    animation-delay: 14s;
}

/* Hero Content */
.hero-content-clean {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title-clean {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description-clean {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Key Benefits */
.key-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-item i {
    color: #3b82f6;
    font-size: 1.125rem;
}

/* Action Buttons */
.hero-actions-clean {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary-clean, .btn-secondary-clean {
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-clean {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

.btn-secondary-clean {
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-clean:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero-title-clean {
        font-size: 3.5rem !important;
    }
    
    .hero-description-clean {
        font-size: 1.125rem !important;
    }
    
    .orb-1, .orb-2, .orb-3 {
        width: 250px !important;
        height: 250px !important;
    }
}

@media (max-width: 768px) {
    .hero-section-clean {
        padding: 100px 0 60px !important;
    }
    
    .hero-title-clean {
        font-size: 2.5rem !important;
    }
    
    .hero-description-clean {
        font-size: 1.125rem !important;
        margin-bottom: 2rem !important;
    }
    
    .key-benefits {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-actions-clean {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-bottom: 3rem !important;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .orb-1, .orb-2, .orb-3 {
        width: 200px !important;
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .hero-title-clean {
        font-size: 2rem !important;
    }
    
    .status-badge {
        font-size: 0.75rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .benefit-item {
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .trust-item {
        padding: 1rem !important;
    }
    
    .trust-number {
        font-size: 1.5rem !important;
    }
}

/* ====================================
   WHY CHOOSE US SECTION STYLES
   ==================================== */
.why-choose-section {
    padding: 120px 0 !important;
    position: relative !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    overflow: hidden !important;
}

.section-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.left-animations, .right-animations {
    position: absolute !important;
    width: 50% !important;
    height: 100% !important;
}

.left-animations {
    left: 0 !important;
}

.right-animations {
    right: 0 !important;
}

.floating-icon {
    position: absolute !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.5rem !important;
    animation: iconFloat 6s ease-in-out infinite !important;
}

.icon-1 {
    top: 20% !important;
    left: 10% !important;
    animation-delay: 0s !important;
}

.icon-2 {
    top: 50% !important;
    left: 5% !important;
    animation-delay: 2s !important;
}

.icon-3 {
    top: 80% !important;
    left: 15% !important;
    animation-delay: 4s !important;
}

.pulse-circle {
    position: absolute !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
    border-radius: 50% !important;
    animation: pulseCircle 4s ease-in-out infinite !important;
}

.circle-1 {
    width: 200px !important;
    height: 200px !important;
    top: 15% !important;
    left: 5% !important;
    animation-delay: 0s !important;
}

.circle-2 {
    width: 150px !important;
    height: 150px !important;
    top: 45% !important;
    left: 8% !important;
    animation-delay: 1s !important;
}

.circle-3 {
    width: 100px !important;
    height: 100px !important;
    top: 75% !important;
    left: 12% !important;
    animation-delay: 2s !important;
}

.data-stream {
    position: absolute !important;
    width: 2px !important;
    height: 100px !important;
    background: linear-gradient(180deg, transparent, #3b82f6, transparent) !important;
    animation: dataStreamFlow 3s ease-in-out infinite !important;
}

.stream-1 {
    top: 10% !important;
    right: 20% !important;
    animation-delay: 0s !important;
}

.stream-2 {
    top: 40% !important;
    right: 10% !important;
    animation-delay: 1s !important;
}

.stream-3 {
    top: 70% !important;
    right: 25% !important;
    animation-delay: 2s !important;
}

.energy-ring {
    position: absolute !important;
    border: 3px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 50% !important;
    animation: energyRingPulse 5s ease-in-out infinite !important;
}

.ring-1 {
    width: 300px !important;
    height: 300px !important;
    top: 20% !important;
    right: 15% !important;
    animation-delay: 0s !important;
}

.ring-2 {
    width: 200px !important;
    height: 200px !important;
    top: 60% !important;
    right: 8% !important;
    animation-delay: 2.5s !important;
}

.particle-field {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
}

.particle {
    position: absolute !important;
    width: 4px !important;
    height: 4px !important;
    background: #10b981 !important;
    border-radius: 50% !important;
    animation: cardParticleFloat 8s ease-in-out infinite !important;
}

.particle:nth-child(1) { top: 15%; right: 30%; animation-delay: 0s; }
.particle:nth-child(2) { top: 35%; right: 40%; animation-delay: 1s; }
.particle:nth-child(3) { top: 55%; right: 20%; animation-delay: 2s; }
.particle:nth-child(4) { top: 75%; right: 35%; animation-delay: 3s; }
.particle:nth-child(5) { top: 25%; right: 15%; animation-delay: 4s; }
.particle:nth-child(6) { top: 65%; right: 45%; animation-delay: 5s; }

.section-header {
    text-align: center !important;
    position: relative !important;
    z-index: 10 !important;
    margin-bottom: 4rem !important;
}

.header-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    margin-bottom: 2rem !important;
    color: #60a5fa !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
}

.header-badge i {
    color: #3b82f6 !important;
}

.section-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
}

.title-line {
    display: block !important;
}

.section-subtitle {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: #94a3b8 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.content-split {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    position: relative !important;
    z-index: 10 !important;
}

.left-content, .right-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    padding: 2.5rem !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

.feature-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.feature-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
    font-size: 2rem !important;
    color: white !important;
    animation: iconGlow 3s ease-in-out infinite !important;
}

.feature-text h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 1rem !important;
}

.feature-text p {
    color: #94a3b8 !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.performance-metrics, .security-features, .support-stats, .scaling-features {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.metric, .stat {
    text-align: center !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 1rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex: 1 !important;
    min-width: 120px !important;
}

.metric-value, .stat-number {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #3b82f6 !important;
    display: block !important;
}

.metric-label, .stat-label {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-top: 0.25rem !important;
}

.feature-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    color: #60a5fa !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    margin: 0.25rem 0.25rem 0.25rem 0 !important;
}

.feature-tag i {
    color: #3b82f6 !important;
}

/* Animations for Why Choose Us */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes pulseCircle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes dataStreamFlow {
    0% { opacity: 0; transform: translateY(-50px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(50px); }
}

@keyframes energyRingPulse {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.05) rotate(180deg); }
}

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

/* Responsive for Why Choose Us */
@media (max-width: 768px) {
    .content-split {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .section-title {
        font-size: 2.5rem !important;
    }
    
    .feature-item {
        padding: 2rem !important;
    }
    
    .floating-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
}

/* Extra small devices for Why Choose Us */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem !important;
    }
    
    .feature-item {
        padding: 1.5rem !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .feature-text h3 {
        font-size: 1.25rem !important;
    }
    
    .metric, .stat {
        min-width: 100px !important;
        padding: 0.75rem !important;
    }
}

/* ====================================
   CTA SECTION STYLES
   ==================================== */
.cta-section {
    padding: 120px 0 0 0 !important;
    position: relative !important;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    overflow: hidden !important;
}

.cta-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.cta-particles .particle {
    position: absolute !important;
    width: 6px !important;
    height: 6px !important;
    background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
    border-radius: 50% !important;
    animation: ctaParticleFloat 10s ease-in-out infinite !important;
}

.cta-particles .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.cta-particles .particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; }
.cta-particles .particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.cta-particles .particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }
.cta-particles .particle:nth-child(5) { top: 40%; left: 90%; animation-delay: 8s; }
.cta-particles .particle:nth-child(6) { top: 70%; left: 5%; animation-delay: 10s; }

.cta-grid {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px) !important;
    background-size: 50px 50px !important;
    animation: ctaGridMove 20s linear infinite !important;
}

.cta-glow {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 600px !important;
    height: 600px !important;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    animation: ctaGlowPulse 8s ease-in-out infinite !important;
}

.cta-shapes {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
}

.shape {
    position: absolute !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05)) !important;
    border-radius: 20px !important;
    animation: ctaShapeFloat 15s ease-in-out infinite !important;
}

.shape-1 {
    width: 100px !important;
    height: 100px !important;
    top: 15% !important;
    left: 10% !important;
    animation-delay: 0s !important;
}

.shape-2 {
    width: 150px !important;
    height: 150px !important;
    top: 60% !important;
    right: 15% !important;
    animation-delay: 5s !important;
}

.shape-3 {
    width: 80px !important;
    height: 80px !important;
    bottom: 20% !important;
    left: 20% !important;
    animation-delay: 10s !important;
}

.cta-content {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding-bottom: 80px !important;
}

.cta-content h2 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

.cta-content p {
    font-size: 1.25rem !important;
    color: #94a3b8 !important;
    margin-bottom: 3rem !important;
    line-height: 1.6 !important;
}

.cta-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important;
}

.cta-buttons .btn {
    padding: 1.25rem 2.5rem !important;
    border-radius: 16px !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4) !important;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6) !important;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1) !important;
}

/* CTA Animations */
@keyframes ctaParticleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(0.8); opacity: 0.8; }
    75% { transform: translateY(-40px) scale(1.1); opacity: 0.4; }
}

@keyframes ctaGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes ctaGlowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes ctaShapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-30px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(3deg); }
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0 0 0 !important;
    }
    
    .cta-content {
        padding-bottom: 60px !important;
    }
    
    .cta-content h2 {
        font-size: 2rem !important;
    }
    
    .cta-content p {
        font-size: 1.125rem !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cta-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
    }
}

/* Extra small devices for CTA */
@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0 0 0 !important;
    }
    
    .cta-content {
        padding-bottom: 40px !important;
    }
    
    .cta-content h2 {
        font-size: 1.75rem !important;
    }
    
    .cta-content p {
        font-size: 1rem !important;
    }
    
    .cta-buttons .btn {
        padding: 1rem 1.5rem !important;
        font-size: 0.875rem !important;
        max-width: 250px !important;
    }
}

/* ====================================
   INTERACTIVE EFFECTS & ANIMATIONS
   ==================================== */

/* Ripple Effect */
.ripple-effect {
    position: absolute !important;
    border-radius: 50% !important;
    background: rgba(59, 130, 246, 0.3) !important;
    transform: scale(0) !important;
    animation: ripple 0.6s linear !important;
    pointer-events: none !important;
}

@keyframes ripple {
    to {
        transform: scale(4) !important;
        opacity: 0 !important;
    }
}

/* Smooth Reveal Animations */
.animate-prepare {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Enhanced Button Interactions */
.btn-primary-clean, .btn-secondary-clean, 
.btn-primary-tab, .btn-secondary-tab, 
.btn-new {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary-clean::before, .btn-secondary-clean::before,
.btn-primary-tab::before, .btn-secondary-tab::before,
.btn-new::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s !important;
}

.btn-primary-clean:hover::before, .btn-secondary-clean:hover::before,
.btn-primary-tab:hover::before, .btn-secondary-tab:hover::before,
.btn-new:hover::before {
    left: 100% !important;
}

/* Shared Hosting Specific Styles */
.hosting-features-section {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
    position: relative !important;
}



/* Pricing Section Enhancements */
.pricing-section {
    padding: 120px 0 140px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
    position: relative !important;
}

.pricing-header {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 4rem auto !important;
}

.pricing-header .section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 50px !important;
    color: #1e40af !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease !important;
}

.pricing-header .section-badge:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-2px) !important;
}

.pricing-header .section-badge i {
    color: #3b82f6 !important;
    font-size: 1rem !important;
}

.pricing-header h2 {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    line-height: 1.1 !important;
}

.pricing-header p {
    font-size: 1.25rem !important;
    color: #475569 !important;
    line-height: 1.6 !important;
}

/* Enhanced Pricing Table */
.unified-pricing-table {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 3rem !important;
}

.unified-pricing-table::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4) !important;
    opacity: 1 !important;
}

.pricing-comparison-table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
    padding: 1.5rem 1rem !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1) !important;
    vertical-align: middle !important;
}

.features-header {
    background: rgba(59, 130, 246, 0.05) !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    text-align: left !important;
    padding-left: 2rem !important;
    border-top-left-radius: 12px !important;
}

.plan-header {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.plan-header:hover {
    background: rgba(59, 130, 246, 0.05) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
    transform: translateY(-2px) !important;
}

.plan-header.featured {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    color: white !important;
    border: 2px solid #3b82f6 !important;
    transform: scale(1.05) !important;
    z-index: 2 !important;
}

.plan-header.featured .plan-name,
.plan-header.featured .plan-price,
.plan-header.featured .plan-desc {
    color: white !important;
}

.plan-name {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
}

.plan-price {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0.25rem !important;
    margin: 1rem 0 !important;
}

.plan-price .currency {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

.plan-price .amount {
    font-size: 3rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.plan-price .period {
    font-size: 1rem !important;
    font-weight: 500 !important;
    opacity: 0.8 !important;
}

.plan-desc {
    font-size: 0.875rem !important;
    color: #64748b !important;
    margin-bottom: 1rem !important;
}

.feature-name {
    text-align: left !important;
    padding-left: 2rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
}

.feature-value {
    font-weight: 600 !important;
    color: #1e293b !important;
}

.feature-cta {
    padding: 2rem 1rem !important;
    border-bottom: none !important;
}

.plan-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
    min-height: 48px !important;
}

.plan-cta-btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3) !important;
    text-decoration: none !important;
    color: white !important;
}

.plan-cta-btn.featured {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
}

.plan-cta-btn.featured:hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4) !important;
}



.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    border-radius: 24px !important;
    padding: 2.5rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.feature-card:hover::before {
    opacity: 1 !important;
}

.feature-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
    font-size: 2rem !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease !important;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4) !important;
}

.feature-content h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.feature-content p {
    color: #475569 !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.feature-benefits {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.feature-benefits li {
    display: flex !important;
    align-items: center !important;
    color: #475569 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.875rem !important;
}

.feature-benefits li:before {
    content: '✓' !important;
    color: #10b981 !important;
    font-weight: bold !important;
    margin-right: 0.75rem !important;
    font-size: 1rem !important;
}

/* Performance Section */
.performance-section {
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
    color: #1e293b !important;
}

.performance-header {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 4rem auto !important;
}

.performance-header .section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 50px !important;
    color: #1e40af !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease !important;
}

.performance-header .section-badge:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-2px) !important;
}

.performance-header .section-badge i {
    color: #3b82f6 !important;
    font-size: 1rem !important;
}

.performance-header h2 {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    line-height: 1.1 !important;
}

.performance-header p {
    font-size: 1.25rem !important;
    color: #475569 !important;
    line-height: 1.6 !important;
}

.performance-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
}

.performance-metric {
    text-align: center !important;
    padding: 2rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.performance-metric:hover {
    transform: translateY(-5px) !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.performance-metric::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.performance-metric:hover::before {
    opacity: 1 !important;
}

.metric-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem auto !important;
    font-size: 2rem !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.performance-metric:hover .metric-icon {
    transform: scale(1.1) !important;
}

.metric-number {
    font-size: 3rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.5rem !important;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1 !important;
}

.metric-label {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.metric-content p {
    color: #475569 !important;
    line-height: 1.5 !important;
}

/* Enhanced Card Hover Effects */
.pricing-card-new, .feature-item, .trust-item, .benefit-item, .feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pricing-card-new:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

/* Shared Hosting Mobile Responsiveness */
@media (max-width: 1024px) {
    .social-proof-white {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.25rem !important;
        padding: 2rem !important;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .feature-card {
        padding: 2rem !important;
    }
    
    .feature-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.75rem !important;
    }
    
    .performance-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .performance-metric {
        padding: 1.5rem !important;
    }
    
    .metric-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .metric-number {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .hosting-features-section {
        padding: 60px 0 !important;
    }
    
    .pricing-section {
        padding: 80px 0 100px 0 !important;
    }
    
    .pricing-header h2 {
        font-size: 2.5rem !important;
    }
    
    .pricing-header p {
        font-size: 1.125rem !important;
    }
    
    .unified-pricing-table {
        padding: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .pricing-comparison-table th,
    .pricing-comparison-table td {
        padding: 1rem 0.5rem !important;
        font-size: 0.875rem !important;
    }
    
    .plan-name {
        font-size: 1.25rem !important;
    }
    
    .plan-price .amount {
        font-size: 2.5rem !important;
    }
    
    .plan-price .currency {
        font-size: 1rem !important;
    }
    
    .plan-price .period {
        font-size: 0.875rem !important;
    }
    
    .feature-name {
        padding-left: 1rem !important;
        font-size: 0.875rem !important;
    }
    

    
    .plan-cta-btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.875rem !important;
        min-height: 44px !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .feature-content h3 {
        font-size: 1.25rem !important;
    }
    
    .performance-section {
        padding: 80px 0 !important;
    }
    
    .performance-header h2 {
        font-size: 2.5rem !important;
    }
    
    .performance-header p {
        font-size: 1.125rem !important;
    }
    
    .performance-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .performance-metric {
        padding: 1.5rem !important;
    }
    
    .metric-number {
        font-size: 2.25rem !important;
    }
    
    .metric-label {
        font-size: 1.125rem !important;
    }
}

@media (max-width: 480px) {
    .hosting-features-section {
        padding: 40px 0 !important;
    }
    
    .feature-card {
        padding: 1.25rem !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .pricing-section {
        padding: 60px 0 80px 0 !important;
    }
    
    .pricing-header h2 {
        font-size: 2rem !important;
    }
    
    .unified-pricing-table {
        padding: 1rem !important;
        border-radius: 16px !important;
    }
    
    .pricing-comparison-table th,
    .pricing-comparison-table td {
        padding: 0.75rem 0.25rem !important;
        font-size: 0.8rem !important;
    }
    
    .plan-name {
        font-size: 1.125rem !important;
    }
    
    .plan-price .amount {
        font-size: 2rem !important;
    }
    
    .plan-price .currency {
        font-size: 0.875rem !important;
    }
    
    .plan-price .period {
        font-size: 0.75rem !important;
    }
    
    .plan-desc {
        font-size: 0.75rem !important;
    }
    
    .feature-name {
        padding-left: 0.5rem !important;
        font-size: 0.8rem !important;
    }
    

    
    .plan-cta-btn {
        padding: 0.75rem 1rem !important;
        font-size: 0.8rem !important;
        min-height: 40px !important;
    }
    
    .performance-section {
        padding: 60px 0 !important;
    }
    
    .performance-header h2 {
        font-size: 2rem !important;
    }
    
    .performance-metric {
        padding: 1.25rem !important;
    }
    
    .metric-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .metric-number {
        font-size: 2rem !important;
    }
}

.feature-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.2) !important;
}

.trust-item:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2) !important;
}

.benefit-item:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2) !important;
}

/* Service Tab Enhanced Interactions */
.service-tab {
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-tab:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2) !important;
}

.service-tab.active {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    color: white !important;
}

/* Parallax Scrolling Effects */
.orb-1, .orb-2, .orb-3 {
    will-change: transform !important;
}

/* Enhanced Hero Title Animation */
.hero-title-clean {
    opacity: 0 !important;
    animation: titleFadeIn 1s ease-out 0.5s forwards !important;
}

@keyframes titleFadeIn {
    to {
        opacity: 1 !important;
    }
}

/* Staggered Animation Delays */
.animate-prepare:nth-child(1) { transition-delay: 0.1s !important; }
.animate-prepare:nth-child(2) { transition-delay: 0.2s !important; }
.animate-prepare:nth-child(3) { transition-delay: 0.3s !important; }
.animate-prepare:nth-child(4) { transition-delay: 0.4s !important; }
.animate-prepare:nth-child(5) { transition-delay: 0.5s !important; }
.animate-prepare:nth-child(6) { transition-delay: 0.6s !important; }

/* Enhanced Background Animations */
.gradient-orb {
    animation: orbFloat 20s ease-in-out infinite, orbPulse 4s ease-in-out infinite !important;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.6 !important; filter: blur(40px) !important; }
    50% { opacity: 0.8 !important; filter: blur(30px) !important; }
}

/* Interactive Status Dot */
.status-dot {
    animation: statusPulse 2s ease-in-out infinite, statusGlow 3s ease-in-out infinite !important;
}

@keyframes statusGlow {
    0%, 100% { box-shadow: 0 0 5px #10b981 !important; }
    50% { box-shadow: 0 0 15px #10b981, 0 0 25px rgba(16, 185, 129, 0.5) !important; }
}

/* Smooth Scrolling for All Browsers */
html {
    scroll-behavior: smooth !important;
}

/* Mobile Responsive Interactive Effects */
@media (max-width: 768px) {
    .animate-prepare {
        transform: translateY(20px) !important;
    }
    
    .pricing-card-new:hover {
        transform: translateY(-4px) scale(1.01) !important;
    }
    
    .feature-item:hover {
        transform: translateY(-3px) !important;
    }
    
    .trust-item:hover {
        transform: translateY(-3px) scale(1.02) !important;
    }
    
    .benefit-item:hover {
        transform: translateY(-2px) scale(1.01) !important;
    }
    
    .service-tab:hover {
        transform: translateY(-2px) !important;
    }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) and (orientation: portrait) {
    .orb-1, .orb-2, .orb-3 {
        will-change: auto !important;
    }
}

/* Services Footer */
.services-footer-new {
    text-align: center !important;
    position: relative !important;
    z-index: 10 !important;
}

.support-badge-new {
    display: inline-flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(25px) !important;
    padding: 2rem 3rem !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 4rem !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
}

.support-badge-new i {
    font-size: 2.5rem !important;
    color: #10b981 !important;
}

.support-text-new h4 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin: 0 0 0.5rem 0 !important;
}

.support-text-new p {
    font-size: 1rem !important;
    color: #94a3b8 !important;
    margin: 0 !important;
}

.service-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.stat-item-new {
    text-align: center !important;
    padding: 2rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease !important;
}

.stat-item-new:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.stat-item-new i {
    color: #3b82f6 !important;
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
}

.stat-number {
    font-size: 2.25rem !important;
    font-weight: 900 !important;
    color: white !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.stat-label {
    font-size: 1rem !important;
    color: #94a3b8 !important;
    font-weight: 600 !important;
}

/* AMAZING SERVICES ANIMATIONS */
@keyframes serviceIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    }
    25% {
        transform: translateY(-20px) rotate(3deg) scale(1.05);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
    }
    50% {
        transform: translateY(-35px) rotate(0deg) scale(1.1);
        box-shadow: 0 25px 60px rgba(59, 130, 246, 0.6);
    }
    75% {
        transform: translateY(-20px) rotate(-3deg) scale(1.05);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
    }
}

@keyframes dataLineFlow {
    0% {
        transform: translateX(-300px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 300px));
        opacity: 0;
    }
}

@keyframes techParticleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
    66% {
        transform: translateY(-15px) scale(0.9);
        opacity: 0.8;
    }
}

@keyframes servicesGridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes servicesBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
    }
}

@keyframes featuredBadgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.7);
    }
}

@keyframes iconPulseAnimation {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* NEW INNOVATIVE SERVICES ANIMATIONS */
@keyframes hubPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6);
    }
}

@keyframes popularTagPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.6);
    }
}

@keyframes connectionFlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

@keyframes serviceDetailSlide {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes tabContentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-section-new {
        padding: 80px 0 !important;
    }
    
    .services-title-new {
        font-size: 2.5rem !important;
    }
    
    .services-subtitle-new {
        font-size: 1.125rem !important;
    }
    
    .tab-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.25rem !important;
    }
    
    .service-tab {
        padding: 1rem 0.5rem !important;
        min-height: 110px !important;
    }
    
    .popular-indicator {
        top: -25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        font-size: 0.6rem !important;
        padding: 0.3rem 0.8rem !important;
        z-index: 100 !important;
    }
    
    .tab-title {
        font-size: 0.875rem !important;
    }
    
    .tab-subtitle {
        font-size: 0.625rem !important;
    }
    
    .service-showcase {
        padding: 2rem !important;
    }
    
    .service-hero h3 {
        font-size: 2rem !important;
    }
    
    .service-lead {
        font-size: 1.125rem !important;
    }
    
    .key-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .stat-item {
        padding: 1.5rem 0.75rem !important;
        min-height: 120px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .action-buttons {
        flex-direction: column !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .service-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .stat-item-new {
        padding: 1.5rem 1rem !important;
        min-height: 140px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .stat-item-new i {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .stat-item-new .stat-number {
        font-size: 1.75rem !important;
        line-height: 1.1 !important;
    }
    
    .stat-item-new .stat-label {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Why Choose Us Section Mobile Responsiveness */
    .performance-metrics, .security-features, .support-stats, .scaling-features {
        gap: 0.75rem !important;
        justify-content: center !important;
    }
    
    .metric, .stat {
        padding: 1rem 0.75rem !important;
        min-width: 100px !important;
        min-height: 80px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        flex: 1 1 120px !important;
    }
    
    .metric-value, .stat-number {
        font-size: 1.25rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.25rem !important;
    }
    
    .metric-label, .stat-label {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .support-badge-new {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem 2rem !important;
    }
}

/* Extra small devices for Services */
@media (max-width: 480px) {
    .services-title-new {
        font-size: 2rem !important;
    }
    
    .service-tab {
        padding: 0.75rem 0.25rem !important;
        min-height: 100px !important;
        margin-top: 20px !important;
    }
    
    .tab-title {
        font-size: 0.75rem !important;
    }
    
    .popular-indicator {
        top: -25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        font-size: 0.55rem !important;
        padding: 0.25rem 0.6rem !important;
        z-index: 100 !important;
    }
    
    /* Key Stats Mobile */
    .key-stats {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .stat-item {
        padding: 1rem 0.5rem !important;
        min-height: 100px !important;
    }
    
    .stat-number {
        font-size: 1.25rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }
    
    /* Service Stats Mobile */
    .service-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .stat-item-new {
        padding: 1.25rem 0.75rem !important;
        min-height: 120px !important;
    }
    
    .stat-item-new .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-item-new .stat-label {
        font-size: 0.7rem !important;
    }
    
    /* Why Choose Us Stats Mobile */
    .performance-metrics, .security-features, .support-stats, .scaling-features {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .metric, .stat {
        min-width: 80px !important;
        min-height: 70px !important;
        padding: 0.75rem 0.5rem !important;
    }
    
    .metric-value, .stat-number {
        font-size: 1.1rem !important;
    }
    
    .metric-label, .stat-label {
        font-size: 0.65rem !important;
    }
    
    .tab-subtitle {
        font-size: 0.5rem !important;
    }
    
    .popular-indicator {
        font-size: 0.4rem !important;
        padding: 0.1rem 0.3rem !important;
    }
    
    .service-hero h3 {
        font-size: 1.5rem !important;
    }
    
    .service-lead {
        font-size: 1rem !important;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ====================================
   VPS LINUX PAGE STYLES
   ==================================== */

/* Operating Systems Section */
.os-section {
    padding: 120px 0 !important;
    background: white !important;
    position: relative !important;
}

.os-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.os-header .section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    color: #3b82f6 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.os-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.os-header p {
    font-size: 1.1rem !important;
    color: #64748b !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.os-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 4rem !important;
}

.os-card {
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.os-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.os-card.featured {
    border-color: #3b82f6 !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(255, 255, 255, 1) 100%) !important;
}

.os-card.featured::before {
    content: "Most Popular" !important;
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 15px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
}

.os-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 1.5rem auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    border-radius: 20px !important;
    border: 2px solid #e2e8f0 !important;
}

.os-icon img {
    width: 50px !important;
    height: 50px !important;
}

.os-content h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
}

.os-versions {
    color: #3b82f6 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.os-description {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
}

.os-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: center !important;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 15px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
}

.os-footer {
    text-align: center !important;
}

.custom-os-info {
    background: #f8fafc !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    border: 1px solid #e2e8f0 !important;
}

.custom-os-info h4 {
    color: #1e293b !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.custom-os-info p {
    color: #64748b !important;
    margin-bottom: 1.5rem !important;
}

/* Data Centers Section */
.datacenter-section {
    padding: 120px 0 !important;
    background: #f8fafc !important;
    position: relative !important;
    overflow: hidden !important;
}

.datacenter-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
}

.datacenter-particles {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%) !important;
    animation: particleFloatWhite 20s ease-in-out infinite !important;
}

.datacenter-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.datacenter-header .section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    color: #3b82f6 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.datacenter-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.datacenter-header p {
    font-size: 1.1rem !important;
    color: #64748b !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

.datacenter-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.datacenter-card {
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.datacenter-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.datacenter-card.featured {
    border-color: #22c55e !important;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, rgba(255, 255, 255, 1) 100%) !important;
}

.datacenter-card.featured::before {
    content: "Recommended" !important;
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 15px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
}

.datacenter-flag {
    font-size: 2.5rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.datacenter-card h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
}

.datacenter-specs {
    margin-bottom: 1.5rem !important;
}

.datacenter-specs .spec-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 0.75rem !important;
    color: #64748b !important;
    font-size: 0.9rem !important;
}

.datacenter-specs .spec-item i {
    color: #3b82f6 !important;
    width: 16px !important;
}

.datacenter-status {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem !important;
    background: #f8fafc !important;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
}

.status-indicator {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    animation: statusPulseWhite 2s ease-in-out infinite !important;
}

.status-indicator.online {
    background: #22c55e !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5) !important;
}

.datacenter-status span {
    color: #22c55e !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

.datacenter-footer {
    text-align: center !important;
}

.expansion-notice {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%) !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
}

.expansion-notice h4 {
    color: #1e293b !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.expansion-notice p {
    color: #64748b !important;
    margin: 0 !important;
}

.expansion-notice a {
    color: #3b82f6 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.expansion-notice a:hover {
    text-decoration: underline !important;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 4rem !important;
}

.testimonials-section h3 {
    text-align: center !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 3rem !important;
}

.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
}

.testimonial-card {
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.testimonial-content p {
    color: #64748b !important;
    font-style: italic !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.05rem !important;
}

.testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
}

.author-avatar {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
}

.author-info h4 {
    color: #1e293b !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.25rem !important;
}

.author-info span {
    color: #64748b !important;
    font-size: 0.9rem !important;
}

.testimonial-rating {
    display: flex !important;
    gap: 0.25rem !important;
}

.testimonial-rating i {
    color: #f59e0b !important;
}

/* Enhanced Advantage Items */
.advantages-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-bottom: 4rem !important;
}

.advantage-item {
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.advantage-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.advantage-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    color: white !important;
    margin-bottom: 2rem !important;
}

.advantage-content h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.advantage-content p {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.advantage-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
}

.advantage-stats .stat {
    text-align: center !important;
    padding: 1rem !important;
    background: #f8fafc !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
}

.advantage-stats .stat-number {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #3b82f6 !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
}

.advantage-stats .stat-label {
    color: #64748b !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

/* VPS Resource Specs Enhancement */
.resource-specs {
    background: #f8fafc !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin-bottom: 2rem !important;
    border: 1px solid #e2e8f0 !important;
}

.spec-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 1rem !important;
}

.spec-item:last-child {
    margin-bottom: 0 !important;
}

.spec-item i {
    color: #3b82f6 !important;
    width: 20px !important;
    font-size: 1.1rem !important;
}

.spec-label {
    color: #64748b !important;
    font-weight: 500 !important;
    min-width: 80px !important;
}

.spec-value {
    color: #1e293b !important;
    font-weight: 600 !important;
}

/* Feature List Enhancement */
.feature-list h4 {
    color: #1e293b !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.feature-list ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.feature-list li {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.5rem 0 !important;
    color: #64748b !important;
    font-size: 0.95rem !important;
}

.feature-list li i {
    color: #22c55e !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
}

/* Plan Note Enhancement */
.plan-note {
    color: #22c55e !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    margin-top: 0.75rem !important;
    text-align: center !important;
}

/* Addon List */
.pricing-addons {
    margin-top: 2rem !important;
    padding-top: 2rem !important;
    border-top: 1px solid #e2e8f0 !important;
}

.pricing-addons h4 {
    color: #1e293b !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.addon-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    justify-content: center !important;
}

.addon-item {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
}

/* Support Buttons */
.support-buttons {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.contact-support {
    background: #f8fafc !important;
    padding: 3rem !important;
    border-radius: 20px !important;
    border: 1px solid #e2e8f0 !important;
    text-align: center !important;
}

.contact-support h4 {
    color: #1e293b !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

.contact-support p {
    color: #64748b !important;
    margin-bottom: 2rem !important;
    font-size: 1.05rem !important;
}

/* CTA Guarantee */
.cta-guarantee {
    margin-top: 3rem !important;
    display: flex !important;
    justify-content: center !important;
}

.guarantee-badge {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    padding: 1.5rem 2rem !important;
    backdrop-filter: blur(10px) !important;
}

.guarantee-badge i {
    color: #f59e0b !important;
    font-size: 2rem !important;
}

.guarantee-text {
    display: flex !important;
    flex-direction: column !important;
}

.guarantee-title {
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.25rem !important;
}

.guarantee-subtitle {
    color: #cbd5e1 !important;
    font-size: 0.9rem !important;
}

/* FAQ Section Styling */
.faq-section {
    padding: 120px 0 !important;
    background: #f8fafc !important;
    position: relative !important;
}

.faq-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.faq-header .section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    color: #3b82f6 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.faq-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.faq-header p {
    font-size: 1.1rem !important;
    color: #64748b !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Why Choose Section Header Fix */
.why-choose-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

/* Disable any floating icons */
.floating-icons {
    display: none !important;
}

.why-choose-background .floating-icons {
    display: none !important;
}

.cta-feature i {
    display: none !important;
}

.why-choose-header .section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    color: white !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.why-choose-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.why-choose-header p {
    font-size: 1.1rem !important;
    color: #cbd5e1 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Pricing Header Enhancement */
.pricing-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.pricing-header .section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    color: #3b82f6 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.pricing-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.pricing-header p {
    font-size: 1.1rem !important;
    color: #64748b !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Unified Pricing Table Design */
.pricing-table-section {
    padding: 120px 0 !important;
    position: relative !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    overflow: hidden !important;
}

/* Unified Pricing Container */
.unified-pricing-table {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

.table-wrapper {
    background: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Main Table */
.pricing-comparison-table {
    width: 100% !important;
    border-collapse: collapse !important;
    min-width: 900px !important;
}

/* Table Header */
.plans-header th {
    border: none !important;
    vertical-align: top !important;
}

.features-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    color: white !important;
    padding: 2rem 1.5rem !important;
    text-align: center !important;
    position: relative !important;
    width: 200px !important;
}

.features-header h3 {
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
}

.plan-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    color: white !important;
    padding: 2rem 1.5rem !important;
    text-align: center !important;
    position: relative !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    min-width: 160px !important;
}

.plan-header.featured {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    position: relative !important;
    z-index: 5 !important;
}



.plan-info h4 {
    margin: 0 0 1rem 0 !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: white !important;
}

.plan-price {
    display: flex !important;
    justify-content: center !important;
    align-items: baseline !important;
    margin-bottom: 0.75rem !important;
    flex-wrap: nowrap !important;
    gap: 0.25rem !important;
}

.plan-price .currency {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #cbd5e1 !important;
    flex-shrink: 0 !important;
}

.plan-price .amount {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: white !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.plan-price .period {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #cbd5e1 !important;
    flex-shrink: 0 !important;
}

.plan-desc {
    color: #cbd5e1 !important;
    font-size: 0.85rem !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

/* Table Body */
.section-divider td {
    background: #f8fafc !important;
    padding: 1rem 1.5rem !important;
    border-top: 2px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    font-weight: 700 !important;
    color: #1e293b !important;
}

.section-divider h5 {
    margin: 0 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Feature Rows */
.pricing-comparison-table tbody tr {
    transition: all 0.2s ease !important;
}

.pricing-comparison-table tbody tr:hover {
    background: #f8fafc !important;
}

.feature-name {
    padding: 1.25rem 1.5rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    font-size: 0.95rem !important;
    background: rgba(248, 250, 252, 0.5) !important;
    border-right: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.feature-value {
    padding: 1.25rem 1rem !important;
    text-align: center !important;
    font-weight: 500 !important;
    color: #475569 !important;
    font-size: 0.9rem !important;
    border-left: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    transition: all 0.2s ease !important;
}

.feature-value.featured {
    background: rgba(59, 130, 246, 0.05) !important;
    color: #3b82f6 !important;
    font-weight: 600 !important;
}

.feature-value.check {
    color: #10b981 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.feature-value.cross {
    color: #ef4444 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

/* Table Footer */
.cta-row td {
    background: #f8fafc !important;
    padding: 2rem 1.5rem !important;
    border-top: 2px solid #e2e8f0 !important;
    vertical-align: middle !important;
}

.guarantee-cell {
    text-align: center !important;
}

.guarantee-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: #10b981 !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

.guarantee-info i {
    font-size: 1.25rem !important;
}

.cta-cell {
    text-align: center !important;
    border-left: 1px solid #e2e8f0 !important;
}

.cta-cell.featured {
    background: rgba(59, 130, 246, 0.05) !important;
}

.table-cta-btn {
    width: 100% !important;
    max-width: 140px !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.table-cta-btn.btn-outline {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
}

.table-cta-btn.btn-outline:hover {
    background: #3b82f6 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3) !important;
}

.table-cta-btn.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    border: 2px solid transparent !important;
}

.table-cta-btn.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4) !important;
}

/* Enhanced Pricing Footer */
.pricing-footer {
    text-align: center !important;
    color: #64748b !important;
    font-size: 1rem !important;
    margin-top: 3rem !important;
}

.pricing-footer i {
    color: #3b82f6 !important;
    margin-right: 0.5rem !important;
}

/* New CTA Section Styling */
.cta-section-new {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    color: white !important;
}

.cta-background-new {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.cta-particles-new {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%) !important;
    animation: particleFloatWhite 20s ease-in-out infinite !important;
}

.cta-gradient-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%) !important;
}

.cta-content-new {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
}

.cta-header-new {
    margin-bottom: 2rem !important;
}

.cta-badge {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(59, 130, 246, 0.2) !important;
    border: 1px solid rgba(59, 130, 246, 0.4) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    color: #60a5fa !important;
}

.cta-header-new h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: white !important;
}

.cta-header-new p {
    font-size: 1.1rem !important;
    color: #cbd5e1 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.cta-actions {
    text-align: center !important;
}

.action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
    flex-wrap: wrap !important;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2.5rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4) !important;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.cta-guarantee-new {
    text-align: center !important;
}

.guarantee-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.guarantee-text strong {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #60a5fa !important;
}

.guarantee-text span {
    font-size: 0.9rem !important;
    color: #94a3b8 !important;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .os-grid {
        grid-template-columns: 1fr !important;
    }
    
    .datacenter-grid {
        grid-template-columns: 1fr !important;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    .advantage-stats {
        grid-template-columns: 1fr !important;
    }
    
    .support-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .addon-list {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .guarantee-badge {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    /* Mobile Header Adjustments */
    .faq-header h2,
    .why-choose-header h2,
    .pricing-header h2 {
        font-size: 2rem !important;
    }
    
    .faq-header p,
    .why-choose-header p,
    .pricing-header p {
        font-size: 1rem !important;
        padding: 0 1rem !important;
    }
    
    /* Unified Pricing Table Mobile - Fully Responsive */
    .pricing-table-section {
        padding: 60px 0 !important;
    }
    
    .unified-pricing-table {
        padding: 0 !important;
    }
    
    .table-wrapper {
        margin: 0 !important;
        border-radius: 8px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .pricing-comparison-table {
        min-width: 350px !important;
        font-size: 0.6rem !important;
    }
    
    /* Mobile Header - Compact */
    .features-header {
        padding: 0.5rem 0.2rem !important;
        width: 50px !important;
    }
    
    .features-header h3 {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
    }
    
    .plan-header {
        padding: 0.5rem 0.2rem !important;
        min-width: 60px !important;
        max-width: 70px !important;
    }
    
    .plan-info h4 {
        font-size: 0.5rem !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.1 !important;
    }
    
    .plan-price {
        margin-bottom: 0.4rem !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: baseline !important;
        justify-content: center !important;
        gap: 0.1rem !important;
        flex-wrap: nowrap !important;
    }
    
    .plan-price .currency {
        font-size: 0.35rem !important;
        flex-shrink: 0 !important;
    }
    
    .plan-price .amount {
        font-size: 0.65rem !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    
    .plan-price .period {
        font-size: 0.3rem !important;
        flex-shrink: 0 !important;
    }
    
    .plan-desc {
        font-size: 0.45rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }
    
    /* Mobile Table Body - Optimized */
    .section-divider td {
        padding: 0.75rem 0.6rem !important;
    }
    
    .section-divider h5 {
        font-size: 0.8rem !important;
    }
    
    .feature-name {
        padding: 0.4rem 0.2rem !important;
        font-size: 0.55rem !important;
        line-height: 1.2 !important;
        width: 50px !important;
    }
    
    .feature-value {
        padding: 0.4rem 0.15rem !important;
        font-size: 0.5rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .feature-value.check,
    .feature-value.cross {
        font-size: 0.9rem !important;
    }
    
    /* Mobile Footer - Compact */
    .cta-row td {
        padding: 1.25rem 0.4rem !important;
    }
    
    .guarantee-info {
        font-size: 0.65rem !important;
        gap: 0.2rem !important;
    }
    
    .guarantee-info i {
        font-size: 0.9rem !important;
    }
    
    .table-cta-btn {
        max-width: 50px !important;
        padding: 0.3rem 0.4rem !important;
        font-size: 0.5rem !important;
        border-radius: 4px !important;
    }
}

/* Additional Tablet Breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .unified-pricing-table {
        padding: 0 0.5rem !important;
    }
    
    .pricing-comparison-table {
        min-width: 600px !important;
    }
    
    .plan-header {
        min-width: 100px !important;
        padding: 1rem 0.5rem !important;
    }
    
    .plan-info h4 {
        font-size: 1.1rem !important;
    }
    
    .plan-price .amount {
        font-size: 2rem !important;
    }
    
    .feature-name {
        padding: 1.1rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
    
    .feature-value {
        padding: 1.1rem 0.75rem !important;
        font-size: 0.85rem !important;
    }
    
    .table-cta-btn {
        max-width: 120px !important;
        padding: 0.8rem 1.25rem !important;
        font-size: 0.85rem !important;
    }
}

/* Small Mobile Optimization */
@media (max-width: 480px) {
    .pricing-comparison-table {
        min-width: 320px !important;
        font-size: 0.55rem !important;
    }
    
    .features-header {
        width: 45px !important;
        padding: 0.4rem 0.15rem !important;
    }
    
    .features-header h3 {
        font-size: 0.5rem !important;
    }
    
    .plan-header {
        min-width: 55px !important;
        max-width: 65px !important;
        padding: 0.4rem 0.15rem !important;
    }
    
    .plan-info h4 {
        font-size: 0.45rem !important;
        margin-bottom: 0.15rem !important;
    }
    
    .plan-price {
        margin-bottom: 0.25rem !important;
        gap: 0.05rem !important;
    }
    
    .plan-price .currency {
        font-size: 0.3rem !important;
    }
    
    .plan-price .amount {
        font-size: 0.55rem !important;
    }
    
    .plan-price .period {
        font-size: 0.25rem !important;
    }
    
    .plan-desc {
        font-size: 0.35rem !important;
    }
    
    .feature-name {
        width: 45px !important;
        padding: 0.3rem 0.15rem !important;
        font-size: 0.45rem !important;
    }
    
    .feature-value {
        padding: 0.3rem 0.1rem !important;
        font-size: 0.4rem !important;
    }
    
    .table-cta-btn {
        max-width: 75px !important;
        padding: 0.5rem 0.5rem !important;
        font-size: 0.7rem !important;
    }
    
    .guarantee-info {
        font-size: 0.6rem !important;
    }
    
    .guarantee-info i {
        font-size: 0.8rem !important;
    }
}

/* Mobile Pricing Cards */
.mobile-pricing-cards {
    display: none !important;
    padding: 2rem 1rem !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    position: relative !important;
}

.cards-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
}

.cards-header h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.cards-indicators {
    display: flex !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
}

.indicator {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #cbd5e1 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.indicator.active {
    background: #3b82f6 !important;
    transform: scale(1.2) !important;
}

.cards-container {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    height: 600px !important;
}

.pricing-card {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    opacity: 0 !important;
    transform: translateX(100%) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
}

.pricing-card.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.pricing-card.prev {
    transform: translateX(-100%) !important;
}

.card-header {
    text-align: center !important;
    padding-bottom: 1.5rem !important;
    border-bottom: 2px solid #f1f5f9 !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
}

.card-header.featured {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem !important;
}



.card-header h4 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: inherit !important;
}

.card-price {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0.25rem !important;
    margin-bottom: 1rem !important;
}

.card-price .currency {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: inherit !important;
}

.card-price .amount {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: inherit !important;
}

.card-price .period {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: inherit !important;
}

.card-desc {
    font-size: 1rem !important;
    color: inherit !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.8 !important;
}

.card-cta-btn {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.card-cta-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
}

.card-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.card-features {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-top: 1rem !important;
}

.feature-group h5 {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

.feature-group ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.feature-group ul li {
    padding: 0.5rem 0 !important;
    color: #64748b !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
}

.feature-group ul li strong {
    color: #1e293b !important;
}

.swipe-hint {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 1.5rem !important;
    padding: 1rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border-radius: 12px !important;
    color: #3b82f6 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.swipe-hint i {
    font-size: 1.2rem !important;
    animation: swipeAnimation 2s infinite !important;
}

@keyframes swipeAnimation {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

/* Show mobile cards on mobile, hide table */
@media (max-width: 768px) {
    .mobile-pricing-cards {
        display: block !important;
    }
    
    .unified-pricing-table {
        display: none !important;
    }
}

/* Windows VPS Specific Styles */
.vps-hero-section {
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.network-canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
}

.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
}

.hero-badge .badge-icon {
    font-size: 1.2rem !important;
}

.vps-hero-section h1 {
    font-size: 4rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.1 !important;
}

.hero-description {
    font-size: 1.25rem !important;
    color: #64748b !important;
    margin-bottom: 3rem !important;
    max-width: 800px !important;
    mx: auto !important;
    line-height: 1.6 !important;
}

.hero-features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
    max-width: 900px !important;
    mx: auto !important;
}

.hero-features .feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1.5rem !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.hero-features .feature-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.hero-features .feature-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.5rem !important;
    flex-shrink: 0 !important;
}

.hero-features .feature-content h3 {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
}

.hero-features .feature-content p {
    color: #64748b !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.hero-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin-bottom: 4rem !important;
    flex-wrap: wrap !important;
}

.cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4) !important;
}

.cta-button.primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6) !important;
}

.cta-button.secondary {
    background: white !important;
    color: #1e293b !important;
    border: 2px solid #e2e8f0 !important;
}

.cta-button.secondary:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-2px) !important;
}

.hero-trust-indicators {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: 2rem !important;
    max-width: 600px !important;
    mx: auto !important;
}

.trust-item {
    text-align: center !important;
}

.trust-number {
    display: block !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #3b82f6 !important;
    margin-bottom: 0.5rem !important;
}

.trust-label {
    font-size: 0.9rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

/* OS Section Styles */
.os-section {
    padding: 120px 0 !important;
    background: white !important;
    position: relative !important;
}

.os-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.os-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 2px solid #f1f5f9 !important;
    position: relative !important;
}

.os-card.featured {
    border-color: #3b82f6 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

.os-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

.os-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
}

.os-info h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.os-info p {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.os-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.os-features li {
    padding: 0.5rem 0 !important;
    color: #64748b !important;
    font-size: 0.9rem !important;
    position: relative !important;
    padding-left: 1.5rem !important;
}

.os-features li:before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: #10b981 !important;
    font-weight: bold !important;
}

/* VPS Features Section */
.vps-features-section {
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.feature-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 1px solid #f1f5f9 !important;
}

.feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

.feature-card .feature-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.75rem !important;
    margin-bottom: 1.5rem !important;
}

.feature-card .feature-content h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.feature-card .feature-content p {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Datacenter Section */
.datacenter-section {
    padding: 120px 0 !important;
    background: white !important;
}

.datacenter-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.datacenter-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    text-align: center !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 2px solid #f1f5f9 !important;
}

.datacenter-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
    border-color: #3b82f6 !important;
}

.datacenter-flag {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
}

.datacenter-card h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
}

.datacenter-card p {
    color: #64748b !important;
    margin-bottom: 1rem !important;
}

.datacenter-features {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
}

.datacenter-features .feature {
    background: #f1f5f9 !important;
    color: #475569 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

/* Why Choose Section Enhancements */
.advantages-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

.advantage-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    padding: 2rem !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.advantage-item:hover {
    transform: translateX(10px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.advantage-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.5rem !important;
    flex-shrink: 0 !important;
}

.advantage-content h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.75rem !important;
}

.advantage-content p {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.why-choose-visual {
    position: relative !important;
    padding: 2rem !important;
}

.visual-container {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
}

.visual-element {
    position: absolute !important;
    background: white !important;
    border-radius: 16px !important;
    padding: 1.5rem !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    min-width: 120px !important;
    animation: elementFloat 6s ease-in-out infinite !important;
}

.visual-element.element-1 {
    top: 10% !important;
    left: 10% !important;
    animation-delay: 0s !important;
}

.visual-element.element-2 {
    top: 20% !important;
    right: 15% !important;
    animation-delay: 1.5s !important;
}

.visual-element.element-3 {
    bottom: 30% !important;
    left: 20% !important;
    animation-delay: 3s !important;
}

.visual-element.element-4 {
    bottom: 10% !important;
    right: 10% !important;
    animation-delay: 4.5s !important;
}

.visual-element i {
    font-size: 2rem !important;
    color: #3b82f6 !important;
}

.visual-element span {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
}

@keyframes elementFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Windows VPS Mobile Responsive Styles */
@media (max-width: 768px) {
    .vps-hero-section {
        padding: 100px 0 80px 0 !important;
    }
    
    .vps-hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-features .feature-item {
        padding: 1rem !important;
    }
    
    .hero-features .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .hero-cta {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 3rem !important;
    }
    
    .cta-button {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
    }
    
    .hero-trust-indicators {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .trust-number {
        font-size: 2rem !important;
    }
    
    .trust-label {
        font-size: 0.8rem !important;
    }
    
    /* OS Section Mobile */
    .os-section {
        padding: 80px 0 !important;
    }
    
    .os-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .os-card {
        padding: 1.5rem !important;
    }
    
    .os-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    /* Features Section Mobile */
    .vps-features-section {
        padding: 80px 0 !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
    
    .feature-card .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    /* Datacenter Section Mobile */
    .datacenter-section {
        padding: 80px 0 !important;
    }
    
    .datacenter-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .datacenter-card {
        padding: 1.5rem !important;
    }
    
    .datacenter-flag {
        font-size: 2.5rem !important;
    }
    
    .datacenter-features {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    /* Why Choose Section Mobile */
    .advantage-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem !important;
    }
    
    .advantage-item:hover {
        transform: translateY(-5px) !important;
    }
    
    .advantage-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .why-choose-visual {
        display: none !important;
    }
    
    .visual-container {
        height: 200px !important;
    }
    
    .visual-element {
        padding: 1rem !important;
        min-width: 80px !important;
    }
    
    .visual-element i {
        font-size: 1.5rem !important;
    }
    
    .visual-element span {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .vps-hero-section h1 {
        font-size: 2rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-trust-indicators {
        grid-template-columns: 1fr !important;
    }
    
    .datacenter-grid {
        grid-template-columns: 1fr !important;
    }
    
    .os-card,
    .feature-card,
    .datacenter-card {
        padding: 1rem !important;
    }
}

/* Section Header Shared Styles */
.section-header {
    text-align: center !important;
    margin-bottom: 3rem !important;
}

.section-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.section-header p {
    font-size: 1.125rem !important;
    color: #64748b !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
        padding: 0 1rem !important;
    }
}

/* Additional responsive styles for very small screens */
@media (max-width: 320px) {
    .pricing-comparison-table {
        min-width: 280px !important;
    }
    
    .features-header {
        width: 40px !important;
    }
    
    .plan-header {
        min-width: 50px !important;
        max-width: 55px !important;
    }
    
    .plan-info h4 {
        font-size: 0.4rem !important;
    }
    
    .plan-price .currency {
        font-size: 0.25rem !important;
    }
    
    .plan-price .amount {
        font-size: 0.5rem !important;
    }
    
    .plan-price .period {
        font-size: 0.2rem !important;
    }
    
    .feature-name {
        width: 40px !important;
        font-size: 0.4rem !important;
    }
    
    .feature-value {
        font-size: 0.35rem !important;
    }
    
    .table-cta-btn {
        max-width: 45px !important;
        padding: 0.2rem 0.2rem !important;
        font-size: 0.35rem !important;
    }
}

/* Back to main mobile styles */
@media (max-width: 768px) {
    /* CTA Section Mobile */
    .cta-section-new {
        padding: 60px 0 !important;
    }
    
    .cta-header-new {
        margin-bottom: 1.5rem !important;
    }
    
    .cta-header-new h2 {
        font-size: 2rem !important;
    }
    
    .cta-header-new p {
        font-size: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .action-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100% !important;
        max-width: 280px !important;
    }
}

/* End of VPS Linux Page Styles */

.terminal-grid {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: 
        linear-gradient(rgba(34, 197, 94, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.1) 1px, transparent 1px) !important;
    background-size: 50px 50px !important;
    animation: terminalGridMove 20s linear infinite !important;
}

@keyframes terminalGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.code-particles {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.code-particle {
    position: absolute !important;
    color: #22c55e !important;
    font-family: 'Courier New', monospace !important;
    font-size: 0.9rem !important;
    opacity: 0.6 !important;
    animation: codeParticleFloat 15s linear infinite !important;
}

.code-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.code-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.code-particle:nth-child(3) { top: 40%; left: 60%; animation-delay: 4s; }
.code-particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 6s; }
.code-particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 8s; }
.code-particle:nth-child(6) { top: 70%; left: 40%; animation-delay: 10s; }

@keyframes codeParticleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.network-nodes {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.node {
    position: absolute !important;
    width: 8px !important;
    height: 8px !important;
    background: radial-gradient(circle, #3b82f6, #1d4ed8) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5) !important;
    animation: nodeFloat 8s ease-in-out infinite !important;
}

.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 40%; left: 85%; animation-delay: 1.6s; }
.node-3 { top: 60%; left: 25%; animation-delay: 3.2s; }
.node-4 { top: 80%; left: 75%; animation-delay: 4.8s; }
.node-5 { top: 30%; left: 50%; animation-delay: 6.4s; }

@keyframes nodeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -10px) scale(1.2); }
    50% { transform: translate(-10px, 20px) scale(0.8); }
    75% { transform: translate(15px, 10px) scale(1.1); }
}

.vps-hero-content {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
}

.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(34, 197, 94, 0.1) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    color: #22c55e !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
    animation: heroBadgePulse 3s ease-in-out infinite !important;
}

@keyframes heroBadgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.5); }
}

.vps-hero-title {
    font-size: 4rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 2rem !important;
    color: white !important;
}

.title-line-1, .title-line-2 {
    display: block !important;
    animation: titleSlideInVPS 1s ease-out forwards !important;
}

.title-line-1 { animation-delay: 0.2s; opacity: 0; }
.title-line-2 { animation-delay: 0.4s; opacity: 0; }

.title-highlight {
    display: block !important;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 3rem !important;
    margin-top: 0.5rem !important;
    animation: titleSlideInVPS 1s ease-out 0.6s forwards !important;
    opacity: 0 !important;
}

@keyframes titleSlideInVPS {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.vps-hero-description {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: #cbd5e1 !important;
    max-width: 700px !important;
    margin: 0 auto 3rem auto !important;
    animation: titleSlideInVPS 1s ease-out 0.8s forwards !important;
    opacity: 0 !important;
}

.vps-key-highlights {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
    animation: titleSlideInVPS 1s ease-out 1s forwards !important;
    opacity: 0 !important;
}

.highlight-item {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    background: rgba(30, 41, 59, 0.8) !important;
    padding: 1.5rem !important;
    border-radius: 15px !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease !important;
}

.highlight-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
}

.highlight-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    color: white !important;
}

.highlight-content h3 {
    color: white !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.25rem !important;
}

.highlight-content p {
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.vps-hero-cta {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin-bottom: 3rem !important;
    animation: titleSlideInVPS 1s ease-out 1.2s forwards !important;
    opacity: 0 !important;
}

.btn-primary-vps, .btn-secondary-vps {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 1.1rem !important;
}

.btn-primary-vps {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    border: none !important;
}

.btn-primary-vps:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4) !important;
}

.btn-secondary-vps {
    background: rgba(30, 41, 59, 0.8) !important;
    color: white !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
}

.btn-secondary-vps:hover {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
    transform: translateY(-2px) !important;
}

.vps-trust-indicators {
    display: flex !important;
    justify-content: center !important;
    gap: 3rem !important;
    animation: titleSlideInVPS 1s ease-out 1.4s forwards !important;
    opacity: 0 !important;
}

.trust-item {
    text-align: center !important;
}

.trust-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #3b82f6 !important;
    display: block !important;
}

.trust-label {
    font-size: 0.9rem !important;
    color: #94a3b8 !important;
    margin-top: 0.25rem !important;
}

/* VPS Pricing Section */
.vps-pricing-section {
    padding: 120px 0 !important;
    background: #f8fafc !important;
    position: relative !important;
    overflow: hidden !important;
}

.vps-pricing-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
}

.pricing-particles {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%) !important;
    animation: pricingParticleFloat 15s ease-in-out infinite !important;
}

@keyframes pricingParticleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(180deg); }
}

.pricing-grid {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    animation: pricingGridMove 25s linear infinite !important;
}

@keyframes pricingGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.vps-pricing-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.vps-pricing-header .section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    color: #3b82f6 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.vps-pricing-header h2 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.vps-pricing-header p {
    font-size: 1.2rem !important;
    color: #64748b !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.vps-pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.vps-plan {
    background: white !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    border: 2px solid rgba(59, 130, 246, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.vps-plan:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.vps-plan.popular {
    border-color: #3b82f6 !important;
    transform: scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2) !important;
}

.vps-plan.popular:hover {
    transform: scale(1.05) translateY(-10px) !important;
}

.popular-badge {
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 15px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

.plan-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
    padding-bottom: 2rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.plan-header h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.plan-price {
    display: flex !important;
    justify-content: center !important;
    align-items: baseline !important;
    margin-bottom: 1rem !important;
}

.plan-price .currency {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
}

.plan-price .amount {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: #3b82f6 !important;
}

.plan-price .period {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: #64748b !important;
}

.plan-description {
    color: #64748b !important;
    font-size: 1rem !important;
    margin: 0 !important;
}

.plan-features {
    margin-bottom: 2rem !important;
}

.feature-group {
    margin-bottom: 1.5rem !important;
}

.feature-group h4 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 0.75rem !important;
}

.feature-group ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.feature-group li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 0 !important;
    color: #64748b !important;
}

.feature-group li i {
    color: #22c55e !important;
    font-size: 0.9rem !important;
}

.feature-group li i.fas.fa-crown {
    color: #f59e0b !important;
}

.plan-footer {
    text-align: center !important;
}

.btn-plan, .btn-plan-popular {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    justify-content: center !important;
}

.btn-plan {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
}

.btn-plan:hover {
    background: #3b82f6 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.btn-plan-popular {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
}

.btn-plan-popular:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4) !important;
}

.pricing-footer {
    text-align: center !important;
    color: #64748b !important;
    font-size: 1rem !important;
}

.pricing-footer i {
    color: #3b82f6 !important;
    margin-right: 0.5rem !important;
}

/* Basic VPS Sections */
.vps-features-section, .vps-specs-section, .vps-use-cases-section,
.vps-performance-section, .vps-management-section, .vps-security-section,
.vps-support-section, .vps-faq-section, .vps-cta-section {
    padding: 80px 0 !important;
    position: relative !important;
}

.vps-features-section, .vps-use-cases-section, .vps-management-section, .vps-support-section {
    background: white !important;
}

.vps-specs-section, .vps-performance-section, .vps-security-section, .vps-faq-section {
    background: #f8fafc !important;
}

.vps-cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    color: white !important;
}

/* Section Headers */
.vps-features-header, .vps-specs-header, .vps-use-cases-header,
.vps-performance-header, .vps-management-header, .vps-security-header,
.vps-support-header, .vps-faq-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.section-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    color: #3b82f6 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.vps-features-header h2, .vps-specs-header h2, .vps-use-cases-header h2,
.vps-performance-header h2, .vps-management-header h2, .vps-security-header h2,
.vps-support-header h2, .vps-faq-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.vps-features-header p, .vps-specs-header p, .vps-use-cases-header p,
.vps-performance-header p, .vps-management-header p, .vps-security-header p,
.vps-support-header p, .vps-faq-header p {
    font-size: 1.1rem !important;
    color: #64748b !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Grid Layouts */
.vps-features-grid, .use-cases-grid, .management-features-grid,
.support-features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
}

.vps-specs-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
}

/* Feature Cards */
.feature-card, .use-case-card, .management-feature, .support-feature {
    background: white !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.feature-card:hover, .use-case-card:hover, .management-feature:hover, .support-feature:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.feature-icon, .use-case-icon, .management-icon, .support-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    color: white !important;
    margin-bottom: 1.5rem !important;
}

.feature-content h3, .use-case-card h3, .management-feature h3, .support-feature h3 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.feature-content p, .use-case-card p, .management-feature p, .support-feature p {
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.faq-item {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.faq-question {
    padding: 1.5rem !important;
    background: white !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

.faq-question:hover {
    background: #f8fafc !important;
}

.faq-question h3 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin: 0 !important;
}

.faq-question i {
    color: #3b82f6 !important;
    transition: transform 0.3s ease !important;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg) !important;
}

.faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    background: #f8fafc !important;
}

.faq-item.open .faq-answer {
    max-height: 500px !important;
}

.faq-answer p {
    padding: 1.5rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.faq-footer {
    text-align: center !important;
    margin-top: 3rem !important;
    color: #64748b !important;
}

.faq-footer a {
    color: #3b82f6 !important;
    text-decoration: none !important;
}

.faq-footer a:hover {
    text-decoration: underline !important;
}

/* CTA Section */
.vps-cta-content {
    text-align: center !important;
}

.cta-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 1rem !important;
}

.cta-header p {
    font-size: 1.2rem !important;
    color: #cbd5e1 !important;
    margin-bottom: 2rem !important;
}

.cta-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
}

.btn-cta-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4) !important;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* Mobile Responsive for VPS Page */
@media (max-width: 768px) {
    .vps-hero-title {
        font-size: 2.5rem !important;
    }
    
    .title-highlight {
        font-size: 2rem !important;
    }
    
    .vps-key-highlights {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .vps-trust-indicators {
        gap: 1.5rem !important;
    }
    
    .vps-hero-cta {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .vps-pricing-grid {
        grid-template-columns: 1fr !important;
    }
    
    .vps-features-grid, .use-cases-grid, .management-features-grid, .support-features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .vps-specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* ===== DEDICATED SERVERS SPECIFIC STYLES ===== */

/* Industries Showcase Section */
.industries-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-header h2 {
    color: white;
    margin-bottom: 15px;
}

.showcase-header p {
    color: #cbd5e1;
    font-size: 18px;
}

.industries-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-showcase {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.industry-showcase.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

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

.industry-icon-modern {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.performance-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: pulse-ring 3s infinite;
}

.ring-1 {
    width: 160px;
    height: 160px;
    top: -80px;
    left: -80px;
    animation-delay: 0s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation-delay: 1s;
}

.ring-3 {
    width: 240px;
    height: 240px;
    top: -120px;
    left: -120px;
    animation-delay: 2s;
}

@keyframes pulse-ring {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.showcase-content {
    padding-left: 20px;
}

.industry-label {
    display: inline-block;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.showcase-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.showcase-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.metrics-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-item i {
    font-size: 12px;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
}

.nav-btn:hover,
.nav-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
}

.nav-btn i {
    font-size: 24px;
    margin-bottom: 5px;
}

.nav-btn span {
    font-size: 14px;
    font-weight: 600;
}

/* Server Specifications Section */
.server-specifications {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.servers-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.server-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.server-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.server-item.featured {
    border-color: #3b82f6;
    border-width: 2px;
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
}

.popular-label {
    position: absolute;
    top: -10px;
    left: 30px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.server-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec {
    font-size: 14px;
    color: #64748b;
    padding: 3px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.server-price {
    text-align: center;
    padding: 0 20px;
}

.server-price .price {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    display: block;
    line-height: 1;
}

.server-price .period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.server-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 140px;
}

.order-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.order-btn.featured {
    background: linear-gradient(135deg, #059669, #047857);
}

.order-btn.featured:hover {
    box-shadow: 0 8px 16px rgba(5, 150, 105, 0.3);
}

.configure-btn {
    background: transparent;
    color: #3b82f6;
    padding: 10px 20px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.configure-btn:hover {
    background: #3b82f6;
    color: white;
}

.custom-server {
    margin-top: 40px;
    text-align: center;
}

.custom-content {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.custom-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.custom-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
}

.custom-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* ===== MINECRAFT HOSTING STYLES ===== */

/* Game Features Section */
.game-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.feature-benefits li {
    font-size: 14px;
    color: #64748b;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Minecraft Pricing Section */
.minecraft-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.minecraft-pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.minecraft-pricing-section .pricing-header h2 {
    color: white;
}

.minecraft-pricing-section .pricing-header p {
    color: #cbd5e1;
}

.minecraft-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-card.featured {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.plan-specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.plan-specs span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.plan-price .price {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.plan-price .period {
    font-size: 16px;
    color: #cbd5e1;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #cbd5e1;
}

.plan-features .feature-item i {
    color: #10b981;
    font-size: 12px;
    width: 16px;
}

.plan-cta {
    display: block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.plan-cta.featured {
    background: linear-gradient(135deg, #10b981, #059669);
}

.plan-cta.featured:hover {
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.custom-plan {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.custom-plan h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.custom-plan p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.custom-cta {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Minecraft Versions Section */
.minecraft-versions {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.versions-header {
    text-align: center;
    margin-bottom: 60px;
}

.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.version-category {
    text-align: center;
}

.version-category h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.versions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.version-tag {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.version-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Performance Section */
.performance-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.performance-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.performance-metric {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.performance-metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
}

.metric-content .metric-number {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    display: block;
    margin-bottom: 5px;
}

.metric-content .metric-label {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.metric-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* ===== CS:GO HOSTING STYLES ===== */

/* CS:GO Pricing Section */
.csgo-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.csgo-pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.csgo-pricing-section .pricing-header h2 {
    color: white;
}

.csgo-pricing-section .pricing-header p {
    color: #cbd5e1;
}

.csgo-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* CS:GO Modes Section */
.csgo-modes {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.modes-header {
    text-align: center;
    margin-bottom: 60px;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mode-category {
    text-align: center;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.mode-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.mode-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 25px;
}

.mode-category h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.modes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.mode-tag {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.mode-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

/* ===== RUST HOSTING STYLES ===== */

/* Rust Pricing Section */
.rust-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #451a03 0%, #78350f 100%);
    color: white;
}

.rust-pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.rust-pricing-section .pricing-header h2 {
    color: white;
}

.rust-pricing-section .pricing-header p {
    color: #fcd34d;
}

.rust-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Rust Plugins Section */
.rust-plugins {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.plugins-header {
    text-align: center;
    margin-bottom: 60px;
}

.plugins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.plugin-category {
    text-align: center;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.plugin-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.plugin-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ea580c, #c2410c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 25px;
}

.plugin-category h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.plugins-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.plugin-tag {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.plugin-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(234, 88, 12, 0.3);
}

/* ===== ARK HOSTING STYLES ===== */

/* ARK Pricing Section */
.ark-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
}

.ark-pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.ark-pricing-section .pricing-header h2 {
    color: white;
}

.ark-pricing-section .pricing-header p {
    color: #a5b4fc;
}

.ark-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* ARK Content Section */
.ark-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.content-category {
    text-align: center;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.content-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 25px;
}

.content-category h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.content-tag {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.content-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.3);
}

/* ===== GMOD HOSTING STYLES ===== */
.gmod-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    color: white;
}

.gmod-pricing-section .pricing-header h2 { color: white; }
.gmod-pricing-section .pricing-header p { color: #a7f3d0; }

.gmod-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gmod-modes {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* ===== VALHEIM HOSTING STYLES ===== */
.valheim-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #92400e 0%, #b45309 100%);
    color: white;
}

.valheim-pricing-section .pricing-header h2 { color: white; }
.valheim-pricing-section .pricing-header p { color: #fed7aa; }

.valheim-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* ===== DISCORD BOT HOSTING STYLES ===== */
.discord-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #5865f2 0%, #4f46e5 100%);
    color: white;
}

.discord-pricing-section .pricing-header h2 { color: white; }
.discord-pricing-section .pricing-header p { color: #c7d2fe; }

.discord-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* ===== DOMAIN REGISTRATION STYLES ===== */
.domain-search {
    margin: 40px 0;
    text-align: center;
}

.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto 20px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.domain-input {
    flex: 1;
    padding: 20px 30px;
    font-size: 18px;
    border: none;
    outline: none;
    background: white;
}

.search-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.popular-tlds {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tld-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.domain-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.category-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.category-card.featured {
    border-color: #3b82f6;
    border-width: 2px;
    transform: scale(1.02);
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
}

.category-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.category-card p {
    color: #64748b;
    margin-bottom: 0;
}

.domain-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.domain-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.domain-ext {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.domain-price {
    font-size: 16px;
    font-weight: 600;
    color: #059669;
}

.domain-price small {
    font-size: 12px;
    color: #64748b;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-methods {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.methods-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.method-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 25px;
}

.method-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.method-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature {
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.method-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-header h2 {
    color: white;
}

.form-header p {
    color: #cbd5e1;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #cbd5e1;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-btn {
        border-radius: 0 0 15px 15px;
    }
    
    .domain-input {
        border-radius: 15px 15px 0 0;
    }
}

/* Dedicated Pricing Section */
.dedicated-pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.dedicated-pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.server-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.server-card.featured {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-color: #1d4ed8;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.server-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.server-card.featured .server-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.server-icon-compact {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.server-card.featured .server-icon-compact {
    background: rgba(255, 255, 255, 0.2);
}

.server-icon-compact svg {
    width: 24px;
    height: 24px;
}

.server-title {
    flex: 1;
}

.server-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.server-card.featured .server-title h3 {
    color: white;
}

.server-subtitle {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-card.featured .server-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.server-price {
    text-align: right;
    flex-shrink: 0;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    display: block;
    line-height: 1;
}

.server-card.featured .price-amount {
    color: white;
}

.price-period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.server-card.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.server-specs-compact {
    margin-bottom: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.server-card.featured .spec-row {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    min-width: 60px;
}

.server-card.featured .spec-label {
    color: rgba(255, 255, 255, 0.8);
}

.spec-value {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    text-align: right;
    flex: 1;
}

.server-card.featured .spec-value {
    color: white;
}

.server-features-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.server-features-compact .feature-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.server-card.featured .server-features-compact .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.server-action {
    margin-top: auto;
}

.configure-btn-compact {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.configure-btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.configure-btn-compact.featured {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.configure-btn-compact.featured:hover {
    background: rgba(255, 255, 255, 0.3);
}

.configure-btn-compact.custom {
    background: linear-gradient(135deg, #10b981, #059669);
}

.configure-btn-compact.custom:hover {
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.custom-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-color: #cbd5e1;
}

.custom-description {
    margin-bottom: 20px;
}

.custom-description p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Dedicated Servers */
@media (max-width: 1200px) {
    .servers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .industry-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 40px;
    }
    
    .showcase-content {
        padding-left: 0;
    }
    
    .metrics-row {
        justify-content: center;
        gap: 20px;
    }
    
    .config-options {
        grid-template-columns: 1fr;
    }
    
    .carousel-navigation {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-btn {
        min-width: 100px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .industries-showcase {
        padding: 60px 0;
    }
    
    .industry-showcase {
        padding: 30px;
        margin: 0 15px;
    }
    
    .industry-icon-modern {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .showcase-content h3 {
        font-size: 24px;
    }
    
    .showcase-content p {
        font-size: 16px;
    }
    
    .metrics-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .metric {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .metric-value {
        font-size: 20px;
    }
    
    .features-list {
        justify-content: center;
    }
    
    .server-specifications {
        padding: 60px 0;
    }
    
    .servers-list {
        gap: 15px;
    }
    
    .server-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .server-actions {
        min-width: auto;
        width: 100%;
    }
    
    .dedicated-pricing-section {
        padding: 60px 0;
    }
    
    .servers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .server-card {
        padding: 20px;
    }
    
    .server-header {
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .server-icon-compact {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .server-icon-compact svg {
        width: 20px;
        height: 20px;
    }
    
    .server-title h3 {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .dedicated-pricing-section {
        padding: 50px 0;
    }
    
    .industry-card {
        padding: 25px;
    }
    
    .server-card {
        padding: 18px;
    }
    
    .server-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .server-price {
        text-align: center;
    }
    
    .price-amount {
        font-size: 20px;
    }
    
    .server-icon-compact {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .server-icon-compact svg {
        width: 18px;
        height: 18px;
    }
    
    .configure-btn-compact {
        padding: 14px 16px;
        font-size: 13px;
    }
}

/* ===== MEDIUM PRIORITY PAGES STYLES ===== */

/* Server Solutions Page Styles */
.server-solutions {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.solution-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.solution-card.featured {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.solution-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.solution-content p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.solution-features {
    margin-bottom: 30px;
}

.solution-features .feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #475569;
}

.solution-features .feature-item i {
    color: #10b981;
    font-size: 14px;
}

.solution-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.solution-actions .btn-primary,
.solution-actions .btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.solution-actions .btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.solution-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.solution-actions .btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Performance Comparison */
.performance-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.header-cell {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cell:last-child {
    border-right: none;
}

.header-cell.featured {
    background: rgba(255, 255, 255, 0.1);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.table-row:last-child {
    border-bottom: none;
}

.row-label {
    padding: 20px;
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.row-value {
    padding: 20px;
    text-align: center;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-value.featured {
    background: #f0f9ff;
    color: #1d4ed8;
    font-weight: 600;
}

/* Use Cases */
.use-cases {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.use-cases-header {
    text-align: center;
    margin-bottom: 60px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.use-case-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.use-case-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.use-case-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.use-case-link:hover {
    color: #1d4ed8;
}

/* Game Hosting Page Styles */
.featured-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.games-header {
    text-align: center;
    margin-bottom: 60px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.game-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.game-card.featured {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.game-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.game-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.game-content p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.game-features {
    margin-bottom: 25px;
}

.game-features .feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #475569;
}

.game-features .feature-item i {
    color: #10b981;
    font-size: 14px;
}

.game-pricing {
    margin-bottom: 25px;
}

.game-pricing .price {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
}

.game-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.game-actions .btn-primary,
.game-actions .btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.game-actions .btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.game-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.game-actions .btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Game Features Overview */
.game-features-overview {
    padding: 80px 0;
    background: white;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Game Comparison */
.game-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.game-comparison .comparison-table {
    max-width: 1200px;
}

.game-comparison .table-header {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.game-comparison .table-row {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

/* Game Servers Grid Page Styles */
.game-servers-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    min-height: 600px;
}

.game-servers-grid .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.games-header {
    text-align: center;
    margin-bottom: 60px;
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
    min-height: 400px;
}

.game-server-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.game-server-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    transform: translateY(-8px);
}

.game-server-card.featured {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.game-server-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-server-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-server-card:hover .game-server-image img {
    transform: scale(1.05);
}

.game-server-content {
    padding: 30px;
}

.game-server-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.game-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.game-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.game-info p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.game-features {
    margin-bottom: 25px;
}

.game-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #475569;
}

.game-features .feature-item i {
    color: #10b981;
    font-size: 14px;
    width: 16px;
}

.game-pricing {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 8px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3b82f6;
}

.period {
    color: #64748b;
    font-size: 16px;
}

.server-specs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.server-specs span:nth-child(2) {
    color: #cbd5e1;
}

.game-actions {
    display: flex;
    gap: 15px;
}

.game-actions .btn-primary,
.game-actions .btn-secondary {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.game-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.game-actions .btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.game-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.game-actions .btn-secondary:hover {
    background: #3b82f6;
    color: white;
}



/* Game Categories Page Styles (keeping for backward compatibility) */
.game-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.categories-header {
    text-align: center;
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.category-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.category-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.category-content p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.game-list {
    margin-bottom: 25px;
}

.game-link {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    margin: 5px;
    padding: 8px 16px;
    background: #f0f9ff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.game-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Server Features */
.server-features {
    padding: 80px 0;
    background: white;
}

.server-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.server-features .feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.server-features .feature-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.feature-list {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.feature-list li {
    color: #64748b;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Pricing Overview */
.pricing-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-overview .comparison-table {
    max-width: 1200px;
}

.pricing-overview .table-header {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.pricing-overview .table-row {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.row-action {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-small {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Game VPS Page Styles */
.game-vps-plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.plan-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.plan-card.featured {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.plan-header p {
    color: #64748b;
    margin-bottom: 25px;
}

.plan-specs {
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #475569;
}

.spec-item i {
    color: #3b82f6;
    font-size: 16px;
    width: 20px;
}

.plan-price {
    margin-bottom: 30px;
}

.plan-price .price {
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
}

.plan-price .period {
    color: #64748b;
    font-size: 16px;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features .feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #475569;
}

.plan-features .feature-item i {
    color: #10b981;
    font-size: 14px;
}

.plan-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.plan-cta .btn-primary,
.plan-cta .btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-cta .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.plan-cta .btn-primary.featured {
    background: linear-gradient(135deg, #10b981, #059669);
}

.plan-cta .btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.plan-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.plan-cta .btn-primary.featured:hover {
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.plan-cta .btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Supported Games */
.supported-games {
    padding: 80px 0;
    background: white;
}

.games-header {
    text-align: center;
    margin-bottom: 60px;
}

.supported-games .games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-category {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.game-category:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.game-category .category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.game-category h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.game-category .game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.game-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* VPS Features */
.vps-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.vps-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vps-features .feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.vps-features .feature-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

/* Responsive Styles for Medium Priority Pages */
@media (max-width: 768px) {
    .solutions-grid,
    .games-grid,
    .categories-grid,
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card,
    .game-card,
    .category-card,
    .plan-card {
        padding: 30px 20px;
    }
    
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-header,
    .table-row {
        min-width: 600px;
    }
    
    .use-cases-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .use-case-card,
    .feature-card {
        padding: 25px 20px;
    }
    
    .solution-actions,
    .game-actions,
    .plan-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .solution-actions .btn-primary,
    .solution-actions .btn-secondary,
    .game-actions .btn-primary,
    .game-actions .btn-secondary,
    .plan-cta .btn-primary,
    .plan-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Game Servers Grid Responsive */
    .games-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-server-card {
        margin: 0 10px;
    }
    
    .game-server-content {
        padding: 20px;
    }
    
    .game-server-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .game-icon {
        margin: 0 auto;
    }
    
    .game-actions {
        flex-direction: column;
        gap: 10px;
    }
    

}

@media (max-width: 480px) {
    .server-solutions,
    .featured-games,
    .game-categories,
    .game-vps-plans,
    .game-servers-grid,
    .performance-comparison,
    .use-cases,
    .game-features-overview,
    .game-comparison,
    .server-features,
    .pricing-overview,
    .supported-games,
    .vps-features {
        padding: 60px 0;
    }
    
    .solutions-header,
    .games-header,
    .categories-header,
    .plans-header,
    .comparison-header,
    .use-cases-header,
    .features-header,
    .pricing-header {
        margin-bottom: 40px;
    }
    
    .solution-card,
    .game-card,
    .category-card,
    .plan-card,
    .use-case-card,
    .feature-card,
    .game-category,
    .game-server-card {
        padding: 25px 15px;
    }
    
    .solution-icon,
    .game-icon,
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .plan-specs .spec-item {
        font-size: 14px;
    }
    
    .plan-price .price {
        font-size: 28px;
    }
}
