/* ==================================================
   Variables!!!
================================================== */
:root {
    /* Color Variables & Glassmorphism Settings */
    --primary-color: #6893ec;
    --primary-light: #96c7ff;
    --secondary-color: #ce42f5;
    --secondary-light: #f883fc;
    --background-color: #0f0f1a;
    --text-color: #ffffff;
    --accent-color: #ff6b6b;
    --success-color: #4ecdc4;
    
    /* Glassmorphism */
    --glass-background: rgba(30, 30, 36, 0.4);
    --glass-border: rgba(255, 255, 255, 0.205);
    --glass-inner: rgba(255, 255, 255, 0.048);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-blur: 10px;
    --transition-speed: 0.3s;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #6893ec, #c1d3ff);
    --secondary-gradient: linear-gradient(135deg, #ac25d1, #eb9cff);
    --dark-gradient: linear-gradient(135deg, #0f0f1a, #1a1a2e);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.liquid-glass {
  position: relative;
  background: rgba(248, 250, 252, 0.1);
  backdrop-filter: 
    blur(4px) 
    contrast(1.18);
  -webkit-backdrop-filter: 
    blur(4px) 
    contrast(1.18);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    ellipse 160% 160% at 50% 50%,
    rgba(99, 102, 241, 0.5) 0%,
    transparent 70%
  );
  filter: blur(10px);
  animation: liquidRefract 8s ease-in-out infinite;
}

[data-theme="light"] {
    --background-color: rgb(244, 248, 253);
    --text-color: #2c3d5e;
    --glass-background: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: all var(--transition-speed) ease;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(104, 147, 236, 0.1) 0%, rgba(206, 66, 245, 0.08) 90%),
        radial-gradient(circle at 80% 80%, rgba(206, 66, 245, 0.1) 0%, rgba(104, 147, 236, 0.08) 90%);
    background-attachment: fixed;
    min-height: 100vh;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 150vh;
    background: radial-gradient(circle at top right, rgba(155, 39, 176, 0.123), transparent 60%),
                radial-gradient(circle at bottom left, rgba(30, 61, 233, 0.123), transparent 60%);
    z-index: -10;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

* {
    scrollbar-width: thin; /* "auto" or "thin" */
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
  
  /* ==================================================
     HEADER & NAVIGATION (Glass UI)
  ================================================== */
  header {
    background-color: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    position: fixed;
    width: 100%;
    z-index: 1000;
    align-items: center;
    transition: all var(--transition-speed) ease;
    padding: 12px 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 15px var(--glass-inner);
  }
  header:hover {
    background-color: rgba(15, 15, 26, 0.75);
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
  }
  .logo img {
    width: 50px;
    height: auto;
    transition: transform var(--transition-speed) ease;
    filter: drop-shadow(0 0 8px rgba(104, 183, 236, 0.61));
  }
  .logo:hover img {
    transform: scale(1.05);
  }
  .logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(104, 147, 236, 0.3);
    transition: all var(--transition-speed) ease;
  }
  .logo:hover span {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(206, 66, 245, 0.5);
  }
  .nav-links {
    display: flex;
    list-style: none;
  }
  .nav-links li {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 4px;
    position: relative;
  }
  .nav-links a:not(.btn)  {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed) ease;
    position: relative;
    padding: 5px 0;
  }
  .nav-links a::after:not(.btn) {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: width var(--transition-speed) ease;
    border-radius: 2px;
  }
  .nav-links a:hover:not(.btn) {
    color: var(--primary-color);
  }
  .nav-links a:hover::after:not(.btn) {
    width: 100%;
  }
  
  .nav-actions .btn {
    padding: 0.5rem 1.2rem;
  }
  
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.5rem;
}

  /* Mobile Menu Icon */
  .menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
  }
  .menu-icon span {
    display: block;
    width: 100%;
    height: 4px;
    margin: 2px;
    background-color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  /* ==================================================
     HERO SECTION
  ================================================== */
.hero {
    max-height: 150vh;
    height: 150vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.021) .1em, transparent .1em), linear-gradient(90deg, rgba(255, 255, 255, 0.021) .1em, transparent .1em);
    background-size: 3em 3em;
    border-bottom: 1px solid var(--glass-border);
    
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 150vh;
    height: 150vh;
    opacity: 1;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--background-color));
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.h-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 5vh;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;    
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
    position: relative;
    align-items: center;
    text-align: center;
}

.hero-bannar {
    display: flex;    
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    align-items: center;
    margin-top: 1rem;
    text-align: center;
}

  /* ==================================================
     partners
  ================================================== */
.quick-stats {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 3rem;
  background-color: var(--background-color);
  border-bottom: 1px solid var(--glass-border);
}
.stats-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
}
.stat-card.glass {
  background: var(--card-gradient, rgba(255,255,255,0.08));
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(80,80,120,0.08);
  border: 1px solid var(--glass-border, rgba(255,255,255,0.12));
  padding: 1.1rem 1.2rem;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.stat-card i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}
.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.98rem;
  color: var(--text-color);
  opacity: 0.85;
  display: block;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .stats-row {
    gap: 0.7rem;
  }
  .stat-card.glass {
    padding: 0.8rem 0.7rem;
    min-width: 90px;
  }
  .stat-card i {
    font-size: 1.3rem;
  }
  .stat-value {
    font-size: 1rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }
}
@media (max-width: 600px) {
  .stats-row {
    flex-direction: column;
    gap: 0.7rem;
  }
  .stat-card.glass {
    margin-bottom: 0.5rem;
  }
}

  /* ==================================================
     Compare
  ================================================== */

.compare {
    overflow: hidden;
    background-color: var(--background-color);
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.021) .1em, transparent .1em), linear-gradient(90deg, rgba(255, 255, 255, 0.021) .1em, transparent .1em);
    align-items: center;
    background-size: 3em 3em;
    margin: 0;
    padding: 0; 
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.compare h1 {
    font-weight: 600;
    text-align: left;
}

.compare::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    height: 100%;
    opacity: 1;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--primary-light));
    z-index: 0;
    opacity: 20%;
}

.compare-card {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    position: relative;
    display: flex;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 0 15px var(--glass-inner);
}



.compare-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.compare-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
    transition: var(--transition);
    z-index: -2;
}

.compare-card:hover {
    border-color: rgba(183, 30, 229, 0.4);
}

.compare-card:hover::before {
    transform: scaleX(1);
}

.compare-card:hover::after {
    opacity: 0.3;
    width: 150px;
    height: 150px;
}

.compare-bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
.compare-support {
    display: block;
    max-width: 100%;
    margin-left: 0;
    margin-top: 2rem;
    padding: 1.5rem 1.2rem;
    align-items: flex-start;
    text-align: left;
}

.compare-card {
    flex-direction: column !important;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: flex-start;
}

.compare-bars {
    width: 100%;
}

.compare-support {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 2rem;
    box-sizing: border-box;
}
}

.compare-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 110px;
    font-weight: 600;
    color: var(--text-color);
    align-items: left;
    text-align: left;
    font-size: 1rem;
}

.bar-track {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    height: 6px; 
    position: relative;
    overflow: hidden;
    margin: 0 0.5rem;
}

.bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bar-value {
    min-width: 1rem;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
    text-align: left;
}

.bar-fill.exphost {
    background: linear-gradient(90deg, #6893ec, #ce42f5);
}
.bar-fill.shockbyte {
    background: linear-gradient(90deg, #83e4fc, #47ff5f);
}
.bar-fill.pebblehost {
    background: linear-gradient(90deg, #4ecdc4, #96c7ff);
}
.bar-fill.apex {
    background: linear-gradient(90deg, #ff6b6b, #ffd86b);
}
.bar-fill.ggservers {
    background: linear-gradient(90deg, #bdbdbd, #78777e);
}

.compare-card {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

.compare-bars {
    flex: 2;
    min-width: 0;
}

.compare-support {
    flex: 1;
    padding: 1.5rem 1.2rem;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 340px;
}

.compare-support h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.compare-support p {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.92;
    margin: 0 0 0.5rem 0;
    /* Remove background and border */
    background: none;
    border: none;
    box-shadow: none;
}

.compare-support .support-extra {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.compare-support .support-extra .btn {
    align-self: flex-start;
    margin-left: 0;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
.compare-support {
display: block;
max-width: 100%;
margin-left: 0;
margin-top: 2rem;
padding: 0.5rem 0.5rem;
align-items: flex-start;
text-align: left;
}
}

.compare-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-info {
    display: flex;
    align-items: left;
    gap: 0.7rem;
    text-align: left;
    min-width: 180px;
    text-decoration: none;
}

.bar-logo {
    width: 38px;
    height: 38px;
    border-radius: 25%;
    object-fit: cover;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

.bar-info:hover {
    opacity: 100% !important;
}

.bar-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.bar-label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
}

.bar-cpu {
    font-size: 0.92rem;
    color: #a6a6b3;
    font-weight: 500;
}

.bar-price {
    font-size: 0.92rem;
    font-weight: 600;
}

/* ==================================================
   NEW FEATURES SECTION
================================================== */
.features {
    padding: 6rem 0 6rem 0;
    background-color: var(--background-color);
    background-image: linear-gradient(rgba(255, 255, 255, 0.021) .1em, transparent .1em), linear-gradient(90deg, rgba(255, 255, 255, 0.021) .1em, transparent .1em);
    position: relative;
    z-index: 1;
    overflow: hidden;
    position: relative;
    align-items: center;
    background-size: 3em 3em;
    margin: 0;
    padding: 0; 
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    height: 100%;
    opacity: 1;
    background: linear-gradient(to top, rgba(255,255,255,0), var(--primary-light));
    z-index: 0;
    opacity: 20%;
}

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

.feature-card {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.feature-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
    transition: var(--transition);
    z-index: -2;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(183, 30, 229, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 0.3;
    width: 150px;
    height: 150px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.feature-icon::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.2;
    left: 0;
    top: 0;
    z-index: -1;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}


  /* ==================================================
     Pricing
  ================================================== */

.services-section {
    overflow: hidden;
    background-color: var(--background-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(104, 147, 236, 0.1) 0%, rgba(206, 66, 245, 0.08) 90%),
        radial-gradient(circle at 80% 80%, rgba(206, 66, 245, 0.1) 0%, rgba(104, 147, 236, 0.08) 90%);
    background-attachment: fixed;
    position: relative;
    align-items: center;
    text-align: center;
    margin-top: 0;
    border-bottom: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.services-section h1 {
    font-weight: 600;
    color: #78777e;
}

.services-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 3em 3em;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.services-section h2 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
    transition: var(--transition);
    z-index: -2;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.service-card.coming-soon:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    opacity: 0.9;
    transition: var(--transition);
}

.service-features li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.service-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.service-card:hover::after {
    opacity: 1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .h-content {
        flex-direction: column;
        max-width: 80vw;
    }
    .h-img {
display: none;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(183, 30, 229, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 0.3;
    width: 150px;
    height: 150px;
}

  /* ==================================================
     NEWS
  ================================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}
.news {
    background: var(--background-color);
    position: relative;
    border-bottom: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    overflow: hidden;
    padding-top: 2rem;
}

.news-card {
    background: var(--glass-background);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--glass-shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 15px var(--glass-inner);
    max-width: 90vw;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--glass-shadow);
}

.news-image {
    width: 100%;
    height: 200px;
    background-color: #555;
    object-fit: cover;
    z-index: -1;
}

.news-content {
    padding: 2rem;
}

.news-date {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-excerpt {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

  /* ==================================================
     Reviews!
  ================================================== */

#customer-reviews {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}
.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}
.reviews-header h2 {
  font-size: 2rem;
  margin-bottom: .5rem;
}
.reviews-cta .btn {
  margin: .5rem .5rem;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.review-card {
    background: var(--glass-background);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--glass-shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 15px var(--glass-inner);
}
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--glass-shadow);
}
.stars {
  color: gold;
  margin-bottom: .75rem;
  font-size: 1.1rem;
}
.review-text {
  font-size: .95rem;
  margin-bottom: .75rem;
  flex-grow: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
}
.review-pfp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer-name {
  font-weight: 600;
}
.review-date {
  font-size: .85rem;
  color: gray;
}

.review-pfp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  background: gray; /* fallback */
  user-select: none;
  position: relative;
  overflow: hidden;
  z-index: 1; 
}

.review-pfp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(0,0,0,0.1) 45%);
  border-radius: 50%;
  z-index: 0;
}

.cta {
    align-items: center;
    align-self: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    background: linear-gradient(135deg, #ac25d150, #6894ec50);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

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





  
  /* ==================================================
     BUTTONS
  ================================================== */
.btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) rotate(45deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.btn-primary {
    background: var(--secondary-gradient);
    background-size: 150%;
    background-position-x: center;
    color: white;
    border: none;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(189, 30, 229, 0.4);
    overflow: hidden;
}

.btn-primary img{
    align-self: center;
    vertical-align: middle;
    padding: 0;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 30, 219, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.74);
    color: var(--text);
}

.btn-outline {
    background: rgba(229, 30, 212, 0.1);
    border: 1px solid rgba(212, 30, 229, 0.3);
    color: var(--secondary-light);
    backdrop-filter: blur(var(--glass-blur));
}

.btn-outline:hover {
    border-color: var(--primary-light);
    color: white;
    background: rgba(229, 30, 229, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 30, 219, 0.25);
}

.btn-three {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 0.2rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-three:hover {
    background: rgba(0, 110, 255, 0.1);
    transform: scale(1.1);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(155, 39, 176, 0);

}
section {
    padding: 6rem 0;
}
  
  
  /* ==================================================
     RESPONSIVE STYLES
  ================================================== */
  @media screen and (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
}


  @media screen and (max-width: 768px) {
    .menu-icon {
      display: flex;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: rgba(15, 15, 26, 0.95);
      padding: 20px 0;
    }
    .nav-links.active {
      display: flex;
    }
    .nav-links li {
      margin: 10px auto;
    }
    header {
      padding: 10px 0;
    }
    nav {
      padding: 0 15px;
    }
    .logo img {
      width: 40px;
    }
  }
  @media screen and (max-width: 480px) {
    .comparison-table table {
      min-width: 550px;
      width: 100%;
    }
    th, td {
      font-size: 0.8rem;
      padding: 6px;
    }
    img {
      width: 30px;
    }
  }

  @media screen and (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }
}
  
  /* ==================================================
     Footer
  ================================================== */
footer {
    background-color: rgba(10, 10, 25, 0.288);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    list-style-type: none;
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
    
}

.powered-by-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.powered-by-footer span {
    margin-right: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.powered-by-footer img {
    max-width: 2rem;
    max-height: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-right: 60px;
    margin-bottom: 30px;
    list-style-type: none;
    color: var(--text);
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column li {
    margin-bottom: 10px;
    list-style-type: none;
    color: var(--text);
    text-decoration: none;
}

.footer-column li a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-column li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    text-decoration: none;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 10px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    text-decoration: none;
}

footer p {
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.site-footer {
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius);
  color: var(--text-color);
  box-shadow: inset 0 0 15px var(--glass-inner);
  align-items: center;
}
.footer-grid .footer-col h4 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.footer-link {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--primary-light);
}
.bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur));
  color: var(--text-color);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}
.bubble:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-3px);
}
.disabled {
  opacity: 0.5;
  pointer-events: none;
}
  /* ==================================================
     FAQ Section
  ================================================== */

.faq {
    background-color: rgba(255, 255, 255, 0);
    padding: 80px 20px;
    position: relative;
}

.faq h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 40px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-gradient);
    border-radius: 3px;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    grid-template-columns: 1fr;
}

.faq-item {
    background-color: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    padding: 18px;
    margin: 0;
    cursor: pointer;
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.03);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-item h3.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item h3:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0px;
    padding: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    background-color: rgba(15, 15, 26, 0.3);
}