  :root {
    --primary: #6A5ACD;
    --primary-hover: #483D8B;
    --secondary: #483D8B;
    --accent: #8A2BE2;
    --dark: #1E1E2E;
    --darker: #191927;
    --text: #ffffff;
    --text-secondary: #D8BFD8;
    --bg-primary: #1E1E2E;
    --bg-secondary: #2A2A3E;
    --transition: none;
    --cubic-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --cubic-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-secondary);
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--bg-primary), var(--darker));
    background-attachment: fixed;
    position: relative;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(106, 90, 205, 0.04), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.04), transparent 40%);
    z-index: -1;
    pointer-events: none;
  }
  
  body::after {
    content: '';
    position: fixed;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%236A5ACD' fill-opacity='0.03' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    animation: none;
    z-index: -2;
    pointer-events: none;
  }
  
  .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  *::before, *::after {
    pointer-events: none;
  }

  a, button, .btn, input, select, textarea, .clickable {
    pointer-events: auto;
  }

  
  
  

  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
  }
  
  .spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(106, 90, 205, 0.2);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: rgba(30, 30, 46, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(106, 90, 205, 0.1);
  }
  
  header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(30, 30, 46, 0.95);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    position: relative;
    z-index: 11;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
  }
  
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--transition);
  }
  
  
  
  .logo img {
    height: 60px;
    filter: drop-shadow(0 0 8px rgba(106, 90, 205, 0.4));
    transition: var(--transition);
  }
  
  
  
  .nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
  }
  
  
  
  .nav-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
  }
  
  
  
  .nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 11;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
    position: relative;
    border: none;
    font-family: 'Poppins', sans-serif;
  }
  
  .btn i {
    margin-right: 8px;
    font-size: 1em;
    transition: transform 0.3s ease;
  }
  
  
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary), #8a68ff);
    color: var(--text);
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
  }
  
  .btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(106, 90, 205, 0.4);
  }
  
  .btn-primary:active {
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(106, 90, 205, 0.3);
  }
  
  .btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #5F9EA0);
    color: var(--text);
    box-shadow: 0 4px 15px rgba(72, 61, 139, 0.3);
  }
  
  .btn-secondary:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(72, 61, 139, 0.4);
  }
  
  .btn-secondary:active {
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(72, 61, 139, 0.3);
  }
  
  .btn-outline {
    border: 2px solid var(--primary);
    color: var(--text);
    background: transparent;
  }
  
  .btn-outline:hover {
    background: rgba(106, 90, 205, 0.1);
    box-shadow: 0 4px 12px rgba(106, 90, 205, 0.2);
  }
  
  .btn-outline:active {
    background: rgba(106, 90, 205, 0.15);
    box-shadow: 0 2px 6px rgba(106, 90, 205, 0.2);
  }

  .hero {
    min-height: 100vh;
    padding: 180px 0 100px;
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary), var(--darker));
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  
  .hero-particles, .glowing-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
  }
  
  .hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(106, 90, 205, 0.3);
    box-shadow: 0 0 20px rgba(106, 90, 205, 0.5);
    animation: none;
    z-index: 0;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(106, 90, 205, 0.3), transparent 70%);
    z-index: 1;
    pointer-events: none;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 80%, rgba(138, 43, 226, 0.2), transparent 60%);
    z-index: 1;
    pointer-events: none;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 5;
  }
  
  .text-content {
    flex: 1;
    z-index: 10;
    position: relative;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: none;
    background-size: 200% auto;
    text-shadow: 0 5px 25px rgba(106, 90, 205, 0.15);
  }
  
  .hero p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
  }

  .hero u {
    text-decoration: wavy;
  }
  
  .hero-buttons {
    position: relative;
    z-index: 15;
    display: flex;
    gap: 15px;
  }

  .hero-buttons .btn {
    min-width: 180px;
  }
  
  .server-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 4;
  }
  
  .server-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: none;
    pointer-events: none;
  }
  
  .server-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(106, 90, 205, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: none;
    top: 20%;
    left: 10%;
    pointer-events: none;
  }
  
  .server-image img {
    max-width: 100%;
    height: auto;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 20px rgba(106, 90, 205, 0.4));
    animation: none;
  }
  
  
  
  .dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px 2px var(--primary);
    opacity: 0.3;
    pointer-events: none;
  }

  .stats {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
  }
  
  .stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 20%, rgba(138, 43, 226, 0.15), transparent 60%);
    z-index: 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }
  
  .section-title span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 15px auto 0;
    border-radius: 4px;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
  }
  
  .stat-card {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.5), rgba(30, 30, 46, 0.8));
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(106, 90, 205, 0.15);
    position: relative;
    overflow: hidden;
  }
  
  .stat-card:hover {
    border-color: rgba(106, 90, 205, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  }
  
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
  }
  
  .stat-card::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    display: none;
  }
  
  
  
  
  
  .stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  
  
  .stat-count {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  
  
  .stat-label {
    color: var(--text-secondary);
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  .features {
    padding: 120px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
  }
  
  .features::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 85%, rgba(106, 90, 205, 0.15), transparent 60%);
    z-index: 0;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  
  .feature-card {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.3), rgba(30, 30, 46, 0.9));
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(106, 90, 205, 0.08);
    position: relative;
    overflow: hidden;
  }
  
  .feature-card:hover {
    border-color: rgba(106, 90, 205, 0.2);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  }
  
  .feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    display: none;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(106, 90, 205, 0.08), transparent 70%);
    opacity: 0;
    display: none;
  }
  
  
  
  
  
  
  
  .feature-icon {
    font-size: 2.2rem;
    margin-bottom: 25px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--secondary), var(--accent));
    margin: 0 auto 30px;
    color: var(--text);
    box-shadow: 0 10px 25px rgba(72, 61, 139, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--accent), var(--secondary));
    opacity: 0;
    display: none;
  }
  
  
  
  
  
  .feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text);
    transition: var(--transition);
  }
  
  
  
  .feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
  }

  .partners {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
  }
  
  .partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 20%, rgba(106, 90, 205, 0.15), transparent 60%);
    z-index: 0;
  }
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  
  .partner-card {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.4), rgba(30, 30, 46, 0.8));
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(106, 90, 205, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .partner-card:hover {
    border-color: rgba(106, 90, 205, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  }
  
  .partner-card::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 90, 205, 0.1), transparent 70%);
    top: -50%;
    left: -50%;
    transform: scale(0);
    display: none;
  }
  
  .partner-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, transparent, rgba(106, 90, 205, 0.05), transparent);
    display: none;
  }
  
  
  
  
  
  
  
  .partner-logo {
    margin-bottom: 25px;
    max-width: 200px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(106, 90, 205, 0.3));
    position: relative;
    z-index: 1;
  }
  
  .partner-card:hover .partner-logo {
    opacity: 0.9;
  }
  
  .partner-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  

 .payment-methods {
    padding: 100px 0 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
  }
  
  .payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 80%, rgba(138, 43, 226, 0.12), transparent 60%);
    z-index: 0;
  }

  .payment-slider-container {
    width: 100%;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    height: 150px;
  }
  
  .payment-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  

  .payment-icons-wrapper {
    position: absolute;
    display: flex;
    white-space: nowrap;
    align-items: center;
    height: 100%;
    left: 0;
    animation: slidePayments 30s linear infinite;
  }
  
  .payment-icons {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .payment-icons i {
    font-size: 4rem;
    margin: 0 40px;
    color: var(--text);
    opacity: 0.7;
    transition: var(--transition);
    text-shadow: 0 0 15px rgba(106, 90, 205, 0.3);
    flex-shrink: 0;
  }
  
  @keyframes slidePayments {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  
  .services-showcase {
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: visible;
  }
  
  .services-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 20%, rgba(138, 43, 226, 0.12), transparent 60%);
    z-index: 0;
  }

  .services-slider-container {
    width: 100%;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    height: 180px;
    overflow: visible;
  }
  
  .services-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  

  .services-wrapper {
    position: absolute;
    display: flex;
    white-space: nowrap;
    align-items: center;
    height: 100%;
    left: 0;
    animation: none;
  }
  
  .service-items {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
    padding-right: 30px;
  }

  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 35px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 180px;
    gap: 12px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  
  
  .service-item i {
    font-size: 2.8rem;
    color: var(--accent);
    transition: all 0.3s ease;
  }
  
  
  
  .service-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  

  

  .plan-with-us {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
  }
  
  .plan-with-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 30%, rgba(138, 43, 226, 0.15), transparent 60%);
    z-index: 0;
  }
  
  .plan-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
  }
  
  .plan-text {
    flex: 1;
  }
  
  .plan-text .section-title {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .plan-text .section-title::after {
    margin: 15px 0 0;
  }
  
  .plan-text > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
  }
  
  .plan-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s var(--cubic-smooth);
    padding: 15px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.1), rgba(30, 30, 46, 0.3));
    border: 1px solid rgba(106, 90, 205, 0.05);
  }
  
  .plan-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(106, 90, 205, 0.3);
    transition: all 0.3s ease;
  }
  
  
  .plan-feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
    transition: all 0.3s ease;
  }
  
  .plan-feature-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
  }
  
  .plan-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .floating-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(106, 90, 205, 0.4));
    animation: none;
    z-index: 1;
    position: relative;
  }
  
  .plan-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 90, 205, 0.1), transparent 70%);
    animation: none;
    z-index: 0;
  }
  
  .plan-decoration::before, .plan-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
  }
  
  .plan-decoration::before {
    width: 400px;
    height: 400px;
    top: -50px;
    left: -50px;
    border: 2px dashed rgba(106, 90, 205, 0.2);
    animation: none;
  }
  
  .plan-decoration::after {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    border: 2px dashed rgba(138, 43, 226, 0.15);
    animation: none;
  }

  .cta {
    padding: 120px 0;
    background: linear-gradient(145deg, #483D8B, #8A2BE2);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  
  
  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--text);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: none;
  }
  
  .cta p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: none;
  }
  
  .cta .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    padding: 15px 35px;
    position: relative;
    overflow: hidden;
  }
  
  .cta .btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .cta .btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    display: none;
  }
  
  .cta .btn-primary i {
    margin-right: 10px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
  }

  footer {
    background-color: var(--darker);
    padding: 100px 0 30px;
    color: var(--text-secondary);
    position: relative;
    margin-top: 0;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    opacity: 0.7;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 70px;
  }
  
  .footer-logo {
    flex: 1;
    min-width: 280px;
    position: relative;
  }
  
  .footer-logo img {
    height: 60px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(106, 90, 205, 0.3));
    transition: var(--transition);
  }
  
  
  .footer-logo p {
    max-width: 320px;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(106, 90, 205, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 90, 205, 0.2);
  }
  
  .social-icon:hover {
    background: rgba(106, 90, 205, 0.2);
    border-color: rgba(106, 90, 205, 0.4);
  }
  

  .abuseipdb-badge {
    margin-top: 50px;
    max-width: 100%;
    overflow: show;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
  }
  
  .footer-link-group h4 {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
  }
  
  .footer-link-group h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
  }
  
  .footer-link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    padding-left: 0;
  }
  
  .footer-link-group a:hover {
    color: var(--text);
  }
  
  .company-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(176, 176, 192, 0.1);
  }
  
  .company-info p {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 0;
  }
  
  .company-info p i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
    text-align: center;
  }
  
  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(176, 176, 192, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    position: relative;
  }
  
  .copyright {
    font-size: 1.05rem;
    opacity: 0.8;
  }
  
  .footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 1.05rem;
    opacity: 0.8;
  }
  
  .footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
  }

  .reveal-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.1, 0.25, 1), 
                transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  
  .reveal-item.active {
    opacity: 1;
    transform: translateY(0);
  }

  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 8px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    border: 3px solid var(--bg-secondary);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
  

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

  @media (max-width: 1200px) {
    .hero h1 {
      font-size: 3.5rem;
    }
    
    .section-title {
      font-size: 2.4rem;
    }
    
    .cta h2 {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 992px) {
    .hero {
      padding: 160px 0 80px;
    }
    
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
    
    .text-content {
      margin-bottom: 60px;
    }
    
    .hero-buttons {
      margin: 0 auto;
      justify-content: center;
    }
    
    .server-image {
      width: 80%;
      margin: 0 auto;
    }
    
    .feature-card, .stat-card, .partner-card {
      padding: 35px 25px;
    }
    
    .plan-content {
      flex-direction: column;
    }
    
    .plan-text .section-title {
      text-align: center;
    }
    
    .plan-text .section-title::after {
      margin: 15px auto 0;
    }
    
    .plan-text > p {
      text-align: center;
      margin: 0 auto 40px;
    }
    
    .plan-text .btn-primary {
      display: block;
      width: max-content;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.8rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    .nav-toggle {
      display: block;
    }
    
    .logo-text {
      display: none;
    }

    .service-item {
      min-width: 150px;
      padding: 20px 25px;
    }

    .service-item i {
      font-size: 2.2rem;
    }

    .service-item span {
      font-size: 0.9rem;
    }

    .services-slider-container {
      height: 160px;
    }
    
    .server-image {
      display: none;
    }
    
    .plan-image {
      display: none;
    }
    
    .nav-menu {
      position: fixed;
      top: 80px;
      right: -100%;
      flex-direction: column;
      background-color: rgba(42, 42, 62, 0.95);
      width: 100%;
      text-align: center;
      transition: var(--transition);
      padding: 30px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
      border: 1px solid rgba(106, 90, 205, 0.15);
      border-top: none;
      backdrop-filter: blur(10px);
      border-radius: 0 0 16px 16px;
      z-index: 10;
    }
    
    .nav-menu.active {
      right: 0;
    }
    
    .nav-menu .nav-link {
      width: 100%;
      justify-content: center;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 50px;
    }
    
    .footer-links {
      width: 100%;
      justify-content: space-between;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
    
    .footer-info {
      justify-content: center;
    }
  
    .cta h2 {
      font-size: 2.5rem;
    }
    
    .cta p {
      font-size: 1.1rem;
    }
    
    .payment-icons i {
      font-size: 3rem;
      margin: 0 25px;
    }
    
    .stat-count {
      font-size: 2.8rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }

    .hero-buttons .btn {
      width: 100%;
      min-width: auto;
    }
    
    .btn {
      width: 100%;
      min-width: auto;
    }
    
    .hero h1 {
      font-size: 2.3rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .stat-card, .feature-card, .partner-card {
      padding: 30px 20px;
    }

    .service-item {
      min-width: 130px;
      padding: 18px 20px;
    }

    .service-item i {
      font-size: 2rem;
    }

    .service-item span {
      font-size: 0.85rem;
    }

    .services-slider-container {
      height: 140px;
    }

    .services-showcase {
      padding: 60px 0;
    }
    
    .stat-count {
      font-size: 2.2rem;
    }
    
    .feature-icon {
      width: 70px;
      height: 70px;
      line-height: 70px;
      font-size: 1.8rem;
    }
    
    .feature-card h3 {
      font-size: 1.5rem;
    }
    
    .feature-card p {
      font-size: 1rem;
    }
    
    .footer-links {
      gap: 30px;
    }
    
    .footer-link-group h4 {
      font-size: 1.2rem;
    }
    
    .cta h2 {
      font-size: 2rem;
    }
    
    .stat-label {
      font-size: 1.1rem;
    }
  }

  
  .pricing {
    padding: 120px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
  }

  .pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 30%, rgba(138, 43, 226, 0.15), transparent 60%);
    z-index: 0;
  }

  .section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }

  .pricing-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
  }

  .price-card {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.5), rgba(30, 30, 46, 0.8));
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s var(--cubic-smooth);
    border: 1px solid rgba(106, 90, 205, 0.1);
    position: relative;
    overflow: hidden;
  }

  .price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .price-card:hover::before {
    transform: scaleX(1);
  }
  
  .price-card:hover {
    border-color: rgba(106, 90, 205, 0.2);
  }

  .price-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
  }


  .price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
  }

  .price-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
  }

  .price-value span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
    margin-top: 5px;
  }

  .price-card p {
    color: var(--text-secondary);
    font-size: 1rem;
  }

  
  .storage-card .price-value {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .free-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
  }

  .price-detail {
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .price-detail span {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  
  .dedicated-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(106, 90, 205, 0.3);
  }

  .price-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  
  .coming-soon-card {
    position: relative;
    opacity: 0.85;
  }

  .coming-soon-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.05), rgba(138, 43, 226, 0.05));
    border-radius: 20px;
    pointer-events: none;
  }

  .coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFA500, #FF6B35);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    animation: none;
    position: relative;
    z-index: 1;
  }

  

  
  .configurator-cta {
    position: relative;
    margin-top: 60px;
    z-index: 1;
  }

  .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(106, 90, 205, 0.2), transparent 70%);
    filter: blur(40px);
    animation: none;
    z-index: -1;
  }

  .cta-content-wrapper {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.6), rgba(30, 30, 46, 0.9));
    border-radius: 30px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 2px solid rgba(106, 90, 205, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .cta-content-wrapper:hover {
    border-color: rgba(106, 90, 205, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  }

  .cta-content-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    display: none;
  }

  .cta-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: none;
  }

  .cta-text {
    flex: 1;
  }

  .cta-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text);
  }

  .cta-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
  }

  .plan-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
  }

  .plan-buttons .btn {
    min-width: 180px;
  }

  
  .configurator-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--cubic-smooth);
  }

  .configurator-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-primary));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(106, 90, 205, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s var(--cubic-bounce);
  }

  .configurator-modal.active .modal-container {
    transform: scale(1);
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(106, 90, 205, 0.3);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-close:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
  }

  .modal-content {
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px;
  }

  .modal-content::-webkit-scrollbar {
    width: 8px;
  }

  .modal-content::-webkit-scrollbar-track {
    background: rgba(42, 42, 62, 0.3);
  }

  .modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
  }

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

  .modal-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
  }

  .modal-header h2 i {
    margin-right: 15px;
  }

  .modal-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
  }

  .configurator-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

.dedicated-highlight {
  background: linear-gradient(145deg, rgba(18, 18, 32, 0.9), rgba(53, 44, 92, 0.8));
  border-radius: 24px;
  padding: 35px 40px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 10, 30, 0.45);
}

.dedicated-highlight::before {
  content: '';
  position: absolute;
  width: 160%;
  height: 160%;
  top: -30%;
  left: -30%;
  background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.25), transparent 60%);
  z-index: 0;
  animation: none;
}

.dedicated-highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(106, 90, 205, 0.15), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.dedicated-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.dedicated-highlight-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.dedicated-highlight-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.dedicated-highlight-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.dedicated-highlight-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.dedicated-highlight-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.dedicated-highlight-feature i {
  color: var(--accent);
}

.dedicated-highlight-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dedicated-highlight-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
}

.dedicated-highlight-stat span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.dedicated-highlight-stat small {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.dedicated-highlight-action {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
}

.dedicated-highlight-action .btn {
  width: 100%;
}

.dedicated-highlight-hint {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dedicated-highlight-active {
  animation: none;
}

.section-pulse {
  animation: none;
}

.pulse-once {
  animation: none;
}

  .full-width {
    width: 100%;
  }

  .config-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .config-section {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.3), rgba(30, 30, 46, 0.5));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(106, 90, 205, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }

  .config-section.active {
    opacity: 1;
    transform: translateY(0);
  }

  .config-section:hover {
    border-color: rgba(106, 90, 205, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .config-section.active:hover {
    border-color: rgba(106, 90, 205, 0.4);
  }

  .config-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .config-section h3 i {
    color: var(--primary);
    font-size: 1.3rem;
  }

  
  .resource-config-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  @media (max-width: 900px) {
    .resource-config-grid {
      grid-template-columns: 1fr;
    }
  }

  .resource-item-compact {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.4), rgba(30, 30, 46, 0.6));
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(106, 90, 205, 0.1);
    transition: all 0.3s ease;
  }

  .resource-item-compact:hover {
    border-color: rgba(106, 90, 205, 0.3);
    box-shadow: 0 8px 20px rgba(106, 90, 205, 0.15);
  }

  .resource-compact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .resource-compact-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .resource-item-compact:hover .resource-compact-icon {
    opacity: 0.9;
  }

  .resource-compact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .resource-compact-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .resource-compact-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s ease, color 0.3s ease;
  }

  .resource-compact-value.animate {
    color: var(--accent);
  }

  .resource-compact-price {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .resource-compact-price.animate {
    filter: brightness(1.3);
  }

  .storage-hint-compact {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
  }

  
  .addon-item {
    margin-top: 15px;
    border-top: 2px dashed rgba(106, 90, 205, 0.2);
    padding-top: 15px;
  }

  .coming-soon-addon {
    opacity: 0.75;
    position: relative;
  }

  .coming-soon-addon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.03), rgba(255, 107, 53, 0.03));
    border-radius: 12px;
    pointer-events: none;
  }

  .coming-soon-addon:hover {
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.1);
  }

  .coming-soon-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, #FFA500, #FF6B35);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
    animation: none;
  }

  
  .duration-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .duration-option {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.4), rgba(30, 30, 46, 0.6));
    border: 2px solid rgba(106, 90, 205, 0.2);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
  }

  .duration-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .duration-option:hover {
    border-color: rgba(106, 90, 205, 0.4);
    box-shadow: 0 5px 15px rgba(106, 90, 205, 0.2);
  }

  .duration-option.active {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(106, 90, 205, 0.2), rgba(138, 43, 226, 0.15));
    box-shadow: 0 5px 20px rgba(106, 90, 205, 0.3);
  }

  .duration-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(106, 90, 205, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .duration-check i {
    font-size: 0.9rem;
    color: transparent;
    transition: all 0.3s ease;
  }

  .duration-option.active .duration-check {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
  }

  .duration-option.active .duration-check i {
    color: white;
  }

  .duration-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
  }

  .duration-months {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
  }

  .duration-discount {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .duration-option.active .duration-discount {
    color: var(--accent);
  }

  
  .summary-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .summary-row-compact {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
  }

  .summary-row-compact i {
    color: var(--primary);
    font-size: 1rem;
  }

  .summary-label {
    color: var(--text-secondary);
    font-weight: 500;
  }

  .summary-value {
    color: var(--text);
    font-weight: 600;
    text-align: right;
  }

  .summary-divider-compact {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    margin: 10px 0;
  }

  .summary-total-compact {
    background: linear-gradient(145deg, rgba(106, 90, 205, 0.15), rgba(138, 43, 226, 0.1));
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid rgba(106, 90, 205, 0.2);
  }

  .total-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
  }

  .discount-badge {
    background: linear-gradient(135deg, var(--accent), #9d4edd);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .total-price-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }

  .original-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
  }

  .final-price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    transition: all 0.3s ease;
  }

  .summary-total-all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    border-top: 1px solid rgba(106, 90, 205, 0.2);
    margin-top: 5px;
  }

  .total-all-price {
    font-size: 1.4rem;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    transition: all 0.3s ease;
  }

  .summary-actions-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .btn-block {
    width: 100%;
    justify-content: center;
  }

  
  .server-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    min-height: 100px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  @media (min-width: 1200px) {
    .server-types-grid {
      grid-template-columns: repeat(5, 1fr);
    }
  }

  @media (min-width: 900px) and (max-width: 1199px) {
    .server-types-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (min-width: 600px) and (max-width: 899px) {
    .server-types-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .server-type {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.5), rgba(30, 30, 46, 0.7));
    border-radius: 12px;
    padding: 15px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(106, 90, 205, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  .server-type.animating {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    animation: none;
  }

  


  .server-type:hover {
    border-color: rgba(106, 90, 205, 0.3);
    box-shadow: 0 5px 15px rgba(106, 90, 205, 0.2);
  }

  .server-type.active {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(106, 90, 205, 0.2), rgba(138, 43, 226, 0.1));
    box-shadow: 0 5px 20px rgba(106, 90, 205, 0.3);
  }
  
  .server-type.selecting {
    animation: none;
  }
  
  

  .server-type-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }

  .server-type:hover .server-type-icon {
    opacity: 0.8;
  }

  .server-type.active .server-type-icon {
    color: var(--accent);
  }

  .server-type-name {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    position: relative;
    z-index: 1;
  }

  .server-type-description {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 4px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
  }

  .server-type-price {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
  }

  .cheapest-price-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(106, 90, 205, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(106, 90, 205, 0.2);
  }

  .cheapest-price-note strong {
    color: var(--primary);
    font-weight: 700;
  }

  .server-category {
    background: linear-gradient(145deg, rgba(106, 90, 205, 0.15), rgba(138, 43, 226, 0.1));
    border-radius: 12px;
    padding: 15px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(106, 90, 205, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
.server-category.featured {
  border-color: rgba(255, 215, 0, 0.6);
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1));
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.25);
}

.server-category.service-type-card {
  min-height: 170px;
  padding: 20px 16px;
}

.server-category.service-type-card .server-type-name {
  font-size: 1rem;
}

.server-category.service-type-card .server-type-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.server-category.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.8) blur(3px);
}

.server-category.disabled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: inherit;
}

.server-category.active {
  border-color: rgba(106, 90, 205, 0.8);
  box-shadow: 0 10px 28px rgba(106, 90, 205, 0.35);
}

.server-category.active:hover {
  border-color: rgba(106, 90, 205, 0.9);
  box-shadow: 0 12px 32px rgba(106, 90, 205, 0.4);
  transform: translateY(-3px) scale(1.02);
}

  .server-category.animating {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    animation: none;
  }

  .server-category.animating.disabled {
    opacity: 0.45;
    animation: none;
  }

  

  .server-category:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
  }

  .server-category.disabled:hover {
    border-color: rgba(106, 90, 205, 0.1);
    box-shadow: none;
  }

  .server-category .server-type-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }

  .server-category:hover .server-type-icon {
    opacity: 0.8;
  }

  .server-category.disabled:hover .server-type-icon {
    transform: none;
  }

  .server-category .server-type-name {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .server-category .server-type-description {
    font-size: 0.7rem;
  }

  .category-badge {
    margin-top: 8px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(106, 90, 205, 0.2);
    color: var(--accent);
    display: inline-block;
    animation: none;
  }

.category-badge.featured {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 140, 0, 0.25));
  color: #ffda79;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.35);
}

  

  .server-type.back-button {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px dashed rgba(106, 90, 205, 0.3);
  }

  .server-type.back-button:hover {
    border-color: var(--primary);
    box-shadow: 0 3px 10px rgba(106, 90, 205, 0.15);
  }

  .server-type.back-button .server-type-icon {
    color: var(--text-secondary);
  }

  .server-type.back-button .server-type-name {
    font-size: 0.8rem;
  }

  
  .resource-config {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .resource-item {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.3), rgba(30, 30, 46, 0.5));
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(106, 90, 205, 0.1);
    transition: all 0.3s ease;
  }


  .resource-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .resource-header i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.3rem;
  }

  .resource-header span:first-of-type {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
  }

  .resource-value {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    transition: all 0.2s ease;
  }

  .resource-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 15px 0;
    cursor: pointer;
    position: relative;
  }

  .resource-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.5);
    transition: all 0.3s ease;
  }


  .resource-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.5);
    transition: all 0.3s ease;
  }



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

  .resource-price {
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.2s ease;
  }

  .resource-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
  }

  .storage-hint {
    color: var(--accent) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .storage-hint i {
    font-size: 0.9rem;
  }

  


  
  @media (max-width: 1024px) {
    .config-bottom-grid {
      grid-template-columns: 1fr;
    }

    .resource-config-grid {
      grid-template-columns: 1fr;
    }

  .dedicated-highlight-grid {
    grid-template-columns: 1fr;
  }

  .dedicated-highlight-action {
    width: 100%;
  }

  .dedicated-highlight-action .btn {
    width: 100%;
  }
  }

  @media (max-width: 768px) {
    .modal-content {
      padding: 30px 20px;
    }

    .modal-header h2 {
      font-size: 1.8rem;
    }

    .modal-header p {
      font-size: 1rem;
    }

    .server-types-grid {
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      gap: 10px;
    }

    .config-section {
      padding: 20px;
    }

    .config-section h3 {
      font-size: 1.2rem;
    }

    .duration-selector {
      grid-template-columns: 1fr;
    }

    .resource-compact-header {
      gap: 10px;
    }

    .resource-compact-icon {
      width: 40px;
      height: 40px;
      font-size: 1.1rem;
    }

    .final-price {
      font-size: 1.6rem;
    }

    .total-all-price {
      font-size: 1.2rem;
    }

    .cta-content-wrapper {
      flex-direction: column;
      padding: 35px 30px;
      text-align: center;
    }

    .cta-icon {
      font-size: 3rem;
    }

    .cta-text h3 {
      font-size: 1.5rem;
    }

    .cta-text p {
      font-size: 1rem;
    }

    .btn-large {
      width: 100%;
      min-width: auto;
    }

    .plan-buttons {
      flex-direction: column;
    }

    .plan-buttons .btn {
      width: 100%;
      min-width: auto;
    }

    .summary-actions {
      flex-direction: column;
    }

    .summary-actions .btn {
      width: 100%;
      min-width: auto;
    }

    .total-price {
      font-size: 2rem;
    }
  }

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

  @media (max-width: 576px) {
    .pricing-overview {
      grid-template-columns: 1fr;
    }

    .modal-container {
      width: 95%;
      max-height: 95vh;
    }

    .modal-content {
      padding: 25px 15px;
    }

    .modal-header h2 {
      font-size: 1.5rem;
    }

    .modal-header p {
      font-size: 0.9rem;
    }

    .modal-close {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
      top: 15px;
      right: 15px;
    }

    .server-types-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }

    .server-type {
      padding: 12px 8px;
    }

    .server-type-icon {
      font-size: 1.2rem;
      margin-bottom: 6px;
    }

    .server-type-name {
      font-size: 0.75rem;
    }

    .server-type-description {
      font-size: 0.65rem;
    }

    .config-section {
      padding: 15px;
    }

    .config-section h3 {
      font-size: 1.1rem;
      margin-bottom: 15px;
    }

    .resource-config-grid {
      gap: 15px;
    }

    .resource-item-compact {
      padding: 15px;
    }

    .resource-compact-icon {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }

    .resource-compact-label {
      font-size: 0.75rem;
    }

    .resource-compact-value {
      font-size: 1rem;
    }

    .resource-compact-price {
      font-size: 0.9rem;
    }

    .duration-selector {
      gap: 8px;
    }

    .duration-option {
      padding: 12px;
    }

    .duration-check {
      width: 24px;
      height: 24px;
    }

    .duration-months {
      font-size: 0.9rem;
    }

    .duration-discount {
      font-size: 0.75rem;
    }

    .summary-row-compact {
      grid-template-columns: 20px 1fr auto;
      gap: 8px;
      font-size: 0.85rem;
      padding: 8px 0;
    }

    .summary-total-compact {
      padding: 12px;
    }

    .final-price {
      font-size: 1.4rem;
    }

    .total-all-price {
      font-size: 1.1rem;
    }

    .discount-badge {
      font-size: 0.7rem;
      padding: 2px 8px;
    }
  }

  
  .dedicated-config-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .dedicated-config-item {
    background: linear-gradient(145deg, rgba(42, 42, 62, 0.4), rgba(30, 30, 46, 0.6));
    border-radius: 16px;
    padding: 20px 25px;
    border: 2px solid rgba(106, 90, 205, 0.2);
    cursor: pointer;
    transition: all 0.3s var(--cubic-smooth);
    position: relative;
    overflow: hidden;
  }

  .dedicated-config-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 90, 205, 0.1), transparent);
    display: none;
  }

  .dedicated-config-item:hover {
    border-color: rgba(106, 90, 205, 0.4);
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.2);
  }

  .dedicated-config-item.active {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(106, 90, 205, 0.2), rgba(138, 43, 226, 0.15));
    box-shadow: 0 8px 30px rgba(106, 90, 205, 0.3);
    transform: translateX(0);
  }

  .dedicated-config-item.selecting {
    animation: none;
  }

  

  .dedicated-config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .dedicated-config-specs {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    flex: 1;
  }

  .dedicated-config-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .dedicated-config-spec i {
    color: var(--primary);
    font-size: 1.1rem;
  }

  .dedicated-config-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
  }

  .dedicated-config-item.active .dedicated-config-price {
    font-size: 1.6rem;
  }

  @media (max-width: 768px) {
    .dedicated-config-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }

    .dedicated-config-specs {
      flex-direction: column;
      gap: 12px;
      width: 100%;
    }

    .dedicated-config-price {
      font-size: 1.3rem;
      width: 100%;
      text-align: right;
    }

    .dedicated-config-item {
      padding: 18px 20px;
    }
  }
