/* ================================================================
   SolidVPS — Premium Design System v4.0
   Deep Navy + Electric Blue + Cyan Enterprise Theme
   ================================================================ */

/* Fonts: system-ui stack (self-contained, no external CDN) */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
}

/* ----------------------------------------------------------------
   CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  /* Background scale */
  --bg-0:       #030810;
  --bg-1:       #060d1c;
  --bg-2:       #0a1428;
  --bg-3:       #0f1d38;
  --bg-4:       #152345;
  --bg-5:       #1c2d56;
  --bg-base:    var(--bg-1);
  --bg-surface: var(--bg-2);
  --bg-card:    var(--bg-3);

  /* Brand */
  --blue:        #0062ff;
  --blue-light:  #3385ff;
  --blue-dark:   #004ecc;
  --blue-glow:   rgba(0,98,255,0.28);
  --cyan:        #00e0ff;
  --cyan-light:  #33e8ff;
  --cyan-glow:   rgba(0,224,255,0.2);

  /* Semantic */
  --green:       #00c896;
  --green-tint:  rgba(0,200,150,0.1);
  --orange:      #ff6b35;
  --orange-tint: rgba(255,107,53,0.1);
  --yellow:      #f5a623;
  --yellow-tint: rgba(245,166,35,0.1);
  --red:         #ef4444;
  --red-tint:    rgba(239,68,68,0.1);
  --purple:      #8b5cf6;
  --teal:        #14b8a6;

  /* Aliases */
  --primary:        var(--blue);
  --primary-light:  var(--blue-light);
  --primary-dark:   var(--blue-dark);
  --primary-glow:   var(--blue-glow);
  --accent:         var(--cyan);
  --success:        var(--green);
  --warning:        var(--yellow);
  --error:          var(--red);

  /* Text */
  --text-1:   #ffffff;
  --text-2:   #dde8ff;
  --text-3:   #8fa0c0;
  --text-4:   #546280;
  --text-primary:   var(--text-1);
  --text-secondary: var(--text-3);
  --text-muted:     var(--text-4);

  /* Borders */
  --border:        rgba(255,255,255,0.07);
  --border-mid:    rgba(255,255,255,0.11);
  --border-bright: rgba(255,255,255,0.18);
  --border-blue:   rgba(0,98,255,0.4);

  /* Shadows */
  --shadow-sm:   0 1px 6px rgba(0,0,0,0.5);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.55);
  --shadow-lg:   0 12px 60px rgba(0,0,0,0.65);
  --shadow-blue: 0 8px 40px rgba(0,98,255,0.35);
  --shadow-glow: 0 0 50px rgba(0,98,255,0.2);

  /* Gradients */
  --grad-blue:    linear-gradient(135deg, #0062ff, #00e0ff);
  --grad-hero:    linear-gradient(135deg, #030810 0%, #060d20 50%, #0a1530 100%);
  --grad-card:    linear-gradient(150deg, #0f1d38, #0a1428);
  --grad-green:   linear-gradient(135deg, #00c896, #00e0b8);
  --grad-orange:  linear-gradient(135deg, #ff6b35, #f5a623);
  --grad-multi:   linear-gradient(135deg, #0062ff 0%, #00c8ff 50%, #00c896 100%);
  --grad-overlay: linear-gradient(180deg, rgba(3,8,16,0) 0%, rgba(3,8,16,0.85) 100%);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing (8px grid) */
  --sp-1:  8px;   --sp-2:  16px;  --sp-3:  24px;  --sp-4:  32px;
  --sp-5:  40px;  --sp-6:  48px;  --sp-8:  64px;  --sp-10: 80px;
  --sp-12: 96px;  --sp-16: 128px;

  /* Radius */
  --r-xs:   4px;   --r-sm:  8px;   --r-md:  12px;
  --r-lg:   16px;  --r-xl:  20px;  --r-2xl: 28px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.25s ease;
  --t-slow:   0.4s ease;
  --t-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-2);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--cyan); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ----------------------------------------------------------------
   ANNOUNCEMENT BAR
   ---------------------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #003dbf 0%, #0062ff 30%, #00c8ff 65%, #0062ff 80%, #003dbf 100%);
  background-size: 400% 100%;
  animation: shimmer-bar 8s linear infinite;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 11px var(--sp-3);
  position: relative;
  z-index: 1001;
  letter-spacing: 0.1px;
}
.announcement-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.announcement-bar a:hover { opacity: 0.85; color: #fff; }
@keyframes shimmer-bar {
  0%   { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

/* ----------------------------------------------------------------
   NAVBAR
   ---------------------------------------------------------------- */
.navbar-svps {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6,13,28,0.82);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border);
  /* no padding-top/bottom — height is controlled via min-height + flex centering */
  padding: 0 var(--sp-3);
  transition: background var(--t-base), box-shadow var(--t-base);
}
/* The container itself is the flex row — stretch it to drive header height */
.navbar-svps > .container,
.navbar-svps > .container-fluid {
  max-width: 1440px;
  min-height: 88px;
  display: flex;
  align-items: center;
}
.navbar-svps.scrolled {
  background: rgba(6,13,28,0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
  border-bottom-color: var(--border-mid);
}
/* Logo — proportional to the 88px header */
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 52px;
  margin-right: 0;
  flex-shrink: 0;
}
.navbar-brand img {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity var(--t-fast), filter var(--t-fast), transform var(--t-fast);
  filter: drop-shadow(0 1px 8px rgba(59,130,246,0.2));
}
.navbar-brand:hover img {
  opacity: 0.9;
  filter: drop-shadow(0 2px 16px rgba(59,130,246,0.42));
  transform: scale(1.03);
}
/* Nav collapse — fill remaining width so links sit right, CTA stays end */
.navbar-svps .navbar-collapse {
  flex-grow: 1;
}
/* Nav links */
.nav-link-svps {
  color: var(--text-3) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 17px !important;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.nav-link-svps:hover,
.nav-link-svps.active { color: var(--text-1) !important; background: rgba(255,255,255,0.07); }
/* CTA button */
.nav-link-svps.btn-nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 12px 28px !important;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px var(--blue-glow);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-link-svps.btn-nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--blue-glow);
  color: #fff !important;
}
/* Desktop: gap between nav items */
@media (min-width: 992px) {
  .navbar-svps .navbar-nav { gap: 4px !important; }
  .navbar-svps .ms-lg-2 { margin-left: 16px !important; }
}
/* Dropdown panel */
.dropdown-menu-svps {
  background: var(--bg-3);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.72), 0 0 0 1px rgba(255,255,255,0.04);
  padding: 8px;
  min-width: 260px;
  margin-top: 8px !important;
}
.dropdown-item-svps {
  color: var(--text-3);
  font-size: 13.5px;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dropdown-item-svps:hover { background: rgba(0,98,255,0.12); color: var(--text-1); }
.dropdown-item-svps .di-icon {
  width: 30px; height: 30px;
  background: rgba(0,98,255,0.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.navbar-toggler { border-color: var(--border-mid); padding: 10px 12px; }
.navbar-toggler-icon { filter: invert(1); }

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn-primary-svps {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue);
  color: #fff !important;
  font-weight: 600; font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary-svps:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 32px var(--blue-glow); color: #fff !important; }

.btn-secondary-svps {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--text-1) !important;
  font-weight: 600; font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-mid);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
}
.btn-secondary-svps:hover { background: rgba(255,255,255,0.1); border-color: var(--border-bright); transform: translateY(-2px); color: var(--text-1) !important; }

.btn-outline-svps {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--blue-light) !important;
  font-weight: 600; font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-blue);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
}
.btn-outline-svps:hover { background: var(--blue); color: #fff !important; transform: translateY(-1px); border-color: var(--blue); }

.btn-sm-svps { padding: 9px 20px; font-size: 13.5px; border-radius: var(--r-sm); }
.btn-xs-svps { padding: 7px 16px; font-size: 13px; border-radius: var(--r-xs); }

.btn-order {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue);
  color: #fff !important;
  font-weight: 600; font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 3px 12px var(--blue-glow);
}
.btn-order:hover { background: var(--blue-dark); transform: translateY(-1px); color: #fff !important; }

/* ----------------------------------------------------------------
   HOMEPAGE HERO
   ---------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.7;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,98,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,98,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,98,255,0.18) 0%, transparent 65%);
  top: 50%; left: 45%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,224,255,0.12) 0%, transparent 65%);
  top: 20%; right: 10%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,98,255,0.14);
  border: 1px solid rgba(0,98,255,0.35);
  color: var(--blue-light);
  font-size: 12.5px; font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--cyan);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.65); }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
.hero-float-box {
  animation: hero-float 5s ease-in-out infinite;
  will-change: transform;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 24px;
}
.hero-title .grad { background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-3);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .s-num {
  font-size: 2rem; font-weight: 800;
  color: var(--text-1); line-height: 1;
}
.hero-stat .s-num .highlight { color: var(--cyan); }
.hero-stat .s-label { font-size: 12px; color: var(--text-4); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero right panel (server card illustration) */
.hero-right { position: relative; z-index: 2; }
.server-card-demo {
  background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  animation: float-card 6s ease-in-out infinite;
  max-width: 340px;
  margin: 0 auto;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.server-card-demo .sc-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: var(--sp-3);
}
.sc-status-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; box-shadow: 0 0 12px var(--green); animation: pulse-dot 2s ease-in-out infinite; }
.sc-label { font-size: 13px; font-weight: 600; color: var(--text-1); }
.sc-loc { font-size: 11px; color: var(--text-4); margin-left: auto; }
.sc-spec { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sc-spec:last-child { border-bottom: none; }
.sc-spec .k { color: var(--text-4); }
.sc-spec .v { color: var(--text-1); font-weight: 600; font-family: var(--font-mono); }
.sc-spec .v.blue { color: var(--cyan); }
.sc-spec .v.green { color: var(--green); }

/* ----------------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, #030a1a 0%, #060f24 40%, #0a1630 100%);
  border-bottom: 1px solid var(--border);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero[style*="--hero-bg"]::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  animation: hero-zoom 20s ease-out forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,98,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,98,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 1;
}
.page-hero-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,98,255,0.15) 0%, transparent 70%);
  top: 50%; right: -10%; transform: translateY(-50%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb-svps {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-4);
  margin-bottom: var(--sp-3);
}
.breadcrumb-svps a { color: var(--text-4); transition: color var(--t-fast); }
.breadcrumb-svps a:hover { color: var(--blue-light); }
.breadcrumb-svps .sep { color: var(--border-bright); }
.page-hero-eyebrow {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block; width: 30px; height: 2px;
  background: var(--grad-blue);
  border-radius: 2px;
}
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 18px;
}
.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-3);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
/* tech badge strip */
.hero-tech-strip {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: var(--sp-3);
}
.tech-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-full);
  padding: 5px 13px;
  font-size: 12px; font-weight: 600;
  color: var(--text-3);
  backdrop-filter: blur(8px);
}
.tech-badge i { font-size: 13px; }

/* ----------------------------------------------------------------
   SECTION UTILITIES
   ---------------------------------------------------------------- */
.section-py  { padding: var(--sp-12) 0; }
.section-sm  { padding: var(--sp-8) 0; }
.section-xs  { padding: var(--sp-5) 0; }
.bg-base     { background: var(--bg-base) !important; }
.bg-surface  { background: var(--bg-surface) !important; }
.bg-card     { background: var(--bg-card) !important; }
.bg-alt      { background: var(--bg-3) !important; }
.bg-dark     { background: var(--bg-0) !important; }
.bg-blue-tint{ background: rgba(0,98,255,0.06) !important; }

.section-label {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block; width: 28px; height: 2px;
  background: var(--grad-blue); border-radius: 2px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--text-1);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 620px;
  margin-top: 14px;
}
.grad-text { background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-text-green  { background: var(--grad-green);  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-text-orange { background: var(--grad-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Divider */
.divider-glow {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
  margin: var(--sp-10) 0;
}

/* ----------------------------------------------------------------
   CARDS
   ---------------------------------------------------------------- */
/* Glass card */
.card-svps {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.card-svps::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,98,255,0.5), transparent);
  opacity: 0; transition: opacity var(--t-base);
}
.card-svps:hover { border-color: rgba(0,98,255,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5), var(--shadow-glow); }
.card-svps:hover::before { opacity: 1; }

/* Feature card */
.feature-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.feature-card:hover { border-color: rgba(0,98,255,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(0,98,255,0.12);
  border: 1px solid rgba(0,98,255,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  color: var(--blue-light);
}
.feature-icon.green  { background: var(--green-tint);  border-color: rgba(0,200,150,0.25); color: var(--green); }
.feature-icon.orange { background: var(--orange-tint); border-color: rgba(255,107,53,0.25); color: var(--orange); }
.feature-icon.yellow { background: var(--yellow-tint); border-color: rgba(245,166,35,0.25); color: var(--yellow); }
.feature-icon.cyan   { background: rgba(0,224,255,0.1);border-color: rgba(0,224,255,0.25); color: var(--cyan); }
.feature-icon.purple { background: rgba(139,92,246,0.1);border-color: rgba(139,92,246,0.25); color: var(--purple); }
.feature-icon.teal   { background: rgba(20,184,166,0.1);border-color: rgba(20,184,166,0.25); color: var(--teal); }
.feature-card:hover .feature-icon { box-shadow: 0 0 24px currentColor; opacity: 0.9; }
.feature-title { font-size: 15.5px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.feature-desc  { font-size: 14px; color: var(--text-3); line-height: 1.65; }

/* ----------------------------------------------------------------
   PRICING CARDS
   ---------------------------------------------------------------- */
.pricing-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  height: 100%;
  display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: rgba(0,98,255,0.35); transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.55), var(--shadow-glow); }
.pricing-card.featured {
  border-color: rgba(0,98,255,0.6);
  background: linear-gradient(150deg, rgba(0,98,255,0.12) 0%, var(--bg-3) 100%);
  box-shadow: 0 0 0 1px rgba(0,98,255,0.3), var(--shadow-blue);
}
.pricing-card.featured::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  padding: 1px;
  background: var(--grad-blue);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-blue);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 18px; border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap;
  box-shadow: 0 4px 16px var(--blue-glow);
}
.plan-badge.green  { background: var(--grad-green); }
.plan-badge.orange { background: var(--grad-orange); }
.plan-name {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--text-4); margin-bottom: 12px;
}
.plan-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px;
}
.plan-currency { font-size: 1.5rem; font-weight: 700; color: var(--text-3); }
.plan-amount   { font-size: 3.2rem; font-weight: 900; line-height: 1; color: var(--text-1); }
.plan-period   { font-size: 0.9rem; color: var(--text-4); }
.plan-tagline  { font-size: 13px; color: var(--text-4); margin-bottom: 24px; }
.plan-divider  { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.plan-features { flex: 1; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-3);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .chk { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.plan-features li strong { color: var(--text-1); }

/* ----------------------------------------------------------------
   STATS BAR
   ---------------------------------------------------------------- */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2.5rem; font-weight: 900; color: var(--text-1); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-num .unit { color: var(--cyan); }
.stat-lbl { font-size: 12px; color: var(--text-4); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.6px; }
.stat-divider { border-right: 1px solid var(--border); }

/* ----------------------------------------------------------------
   PRODUCT OVERVIEW CARDS (category hubs)
   ---------------------------------------------------------------- */
.poc {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
  transition: all var(--t-base);
  text-decoration: none;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.poc::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--grad-blue);
  transform: scaleX(0); transition: transform var(--t-base);
  transform-origin: left;
}
.poc:hover { border-color: rgba(0,98,255,0.3); transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.5); }
.poc:hover::after { transform: scaleX(1); }
.poc-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px; flex-shrink: 0;
}
.poc-arrow { position: absolute; top: 20px; right: 20px; color: var(--text-4); transition: color var(--t-fast), transform var(--t-fast); }
.poc:hover .poc-arrow { color: var(--blue-light); transform: translateX(4px); }
.poc-title { font-size: 1.05rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.poc-desc  { font-size: 13.5px; color: var(--text-3); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.poc-price { font-size: 13px; color: var(--text-4); }
.poc-price strong { font-size: 1.25rem; font-weight: 800; color: var(--text-1); }

/* ----------------------------------------------------------------
   CHIP / BADGE
   ---------------------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: 0.7px;
}
.chip-blue   { background: rgba(0,98,255,0.12);   color: var(--blue-light); border: 1px solid rgba(0,98,255,0.25); }
.chip-green  { background: var(--green-tint);      color: var(--green);      border: 1px solid rgba(0,200,150,0.25); }
.chip-orange { background: var(--orange-tint);     color: var(--orange);     border: 1px solid rgba(255,107,53,0.25); }
.chip-yellow { background: var(--yellow-tint);     color: var(--yellow);     border: 1px solid rgba(245,166,35,0.25); }
.chip-cyan   { background: rgba(0,224,255,0.1);    color: var(--cyan);       border: 1px solid rgba(0,224,255,0.25); }

/* CPU / Processor badges */
.cpu-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--r-sm);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.cpu-badge.intel  { background: rgba(0,104,181,0.12); color: #4daaff; border: 1px solid rgba(0,104,181,0.3); }
.cpu-badge.amd    { background: rgba(237,28,36,0.1);  color: #ff7070; border: 1px solid rgba(237,28,36,0.3); }
.cpu-badge.epyc   { background: rgba(255,102,0,0.1);  color: var(--orange);  border: 1px solid rgba(255,102,0,0.3); }
.cpu-badge.ryzen  { background: rgba(239,68,68,0.1);  color: #ff7070; border: 1px solid rgba(239,68,68,0.3); }
.cpu-badge.apple  { background: rgba(255,255,255,0.06); color: var(--text-2); border: 1px solid var(--border-mid); }

/* ----------------------------------------------------------------
   PLAN TABLES
   ---------------------------------------------------------------- */
.table-svps {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 14px;
}
.table-svps thead tr th {
  background: rgba(0,98,255,0.08);
  color: var(--text-4);
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-mid);
}
.table-svps thead tr th:first-child { border-radius: var(--r-sm) 0 0 0; }
.table-svps thead tr th:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.table-svps tbody tr td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-3);
  vertical-align: middle;
  background: transparent;
}
.table-svps tbody tr:hover td { background: rgba(0,98,255,0.12); color: var(--text-2); }
.table-svps tbody tr:last-child td { border-bottom: none; }
.table-svps tbody tr td strong { color: var(--text-1); }
.table-group-row td { background: rgba(255,255,255,0.05) !important; color: var(--text-3) !important; font-size: 11.5px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.09em !important; padding: 9px 16px !important; border-top: 1px solid rgba(255,255,255,0.1) !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
.table-group-row:first-child td { border-top: none !important; }
.table-svps .cpu-logo { display: inline-block; height: 13px; vertical-align: middle; margin-right: 5px; opacity: 0.85; }
.plan-label {
  font-weight: 700; color: var(--text-1);
  font-family: var(--font-mono); font-size: 13px;
}
.price-cell {
  font-weight: 800; font-size: 1.1rem; color: var(--text-1);
}
.price-cell sub { font-size: 0.7rem; }

/* Bootstrap table overrides */
.table > :not(caption) > * > * { background-color: transparent !important; border-bottom-color: var(--border) !important; color: var(--text-3); }
.table-svps thead tr th { background-color: rgba(0,98,255,0.08) !important; color: var(--text-4) !important; }
.table-svps tbody tr:hover > * { background-color: rgba(0,98,255,0.12) !important; color: var(--text-2) !important; }

/* ----------------------------------------------------------------
   RESPONSIVE TABLE CONTAINER
   ---------------------------------------------------------------- */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.table-svps { min-width: 620px; }

/* ── Pricing-card layout for mobile/tablet ───────────────────── */
@media (max-width: 991px) {
  /* Strip the scroll container so it doesn't fight the card layout */
  .table-responsive {
    overflow: visible !important;
    border: none;
    border-radius: 0;
    background: none;
  }

  /* Override the 620px desktop min-width — critical for Safari */
  .table-svps {
    min-width: 0 !important;
    width: 100% !important;
  }

  /* Flatten all table elements to block */
  .table-svps,
  .table-svps thead,
  .table-svps tbody,
  .table-svps tr,
  .table-svps td,
  .table-svps th {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  /* Hide header row and group separator rows */
  .table-svps thead { display: none !important; }
  .table-group-row  { display: none !important; }

  /* Stack cards vertically */
  .table-svps tbody {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
  }

  /* Each row is a card */
  .table-svps tbody tr {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100% !important;
  }
  .table-svps tbody tr:hover {
    border-color: rgba(0,98,255,0.45);
    box-shadow: 0 0 0 1px rgba(0,98,255,0.2), var(--shadow-lg);
  }
  .table-svps tbody tr:hover td { background-color: transparent !important; }

  /* Every cell: label on left, value on right */
  .table-svps tbody tr td {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 11px 18px;
    border-bottom: 1px solid var(--border);
    background: transparent !important;
    font-size: 13.5px;
    color: var(--text-3);
    min-height: 44px;
  }
  .table-svps tbody tr td:last-child { border-bottom: none; }

  /* data-label shown as prefix */
  .table-svps tbody tr td::before {
    content: attr(data-label);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-4);
    flex-shrink: 0;
    min-width: 88px;
    margin-right: 12px;
  }

  /* First cell = card header */
  .table-svps tbody tr td:first-child {
    background: rgba(0,98,255,0.08) !important;
    padding: 15px 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1) !important;
    justify-content: flex-start;
    min-height: unset;
  }
  .table-svps tbody tr td:first-child::before { display: none; }
  .table-svps tbody tr td:first-child strong {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-1);
  }

  /* Order/CTA cell */
  .table-svps tbody tr td[data-label="Order"] {
    padding: 14px 18px;
    background: rgba(0,98,255,0.04) !important;
    justify-content: stretch;
    min-height: unset;
  }
  .table-svps tbody tr td[data-label="Order"]::before { display: none; }
  .table-svps tbody tr td[data-label="Order"] .btn,
  .table-svps tbody tr td[data-label="Order"] .btn-primary-svps,
  .table-svps tbody tr td[data-label="Order"] .btn-secondary-svps {
    display: block !important;
    width: 100%;
    text-align: center;
  }
  .table-svps tbody tr td[data-label="Order"] .btn-order-dropdown {
    display: flex !important;
    width: 100%;
    justify-content: center;
  }
  .table-svps tbody tr td[data-label="Order"] .order-dropdown {
    position: relative;
    width: 100%;
  }
  .table-svps tbody tr td[data-label="Order"] .order-dropdown-menu {
    left: 0;
    right: 0;
    min-width: 0;
    width: 100%;
  }
}

/* ----------------------------------------------------------------
   ORDER DROPDOWN
   ---------------------------------------------------------------- */
.order-dropdown { position: relative; display: inline-block; }
.btn-order-dropdown {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue);
  color: #fff; border: none;
  padding: 9px 18px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  box-shadow: 0 3px 12px var(--blue-glow);
}
.btn-order-dropdown:hover { background: var(--blue-dark); transform: translateY(-1px); }
.order-dropdown-menu {
  display: none; position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--bg-3);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  min-width: 210px; z-index: 100; padding: 6px;
}
.order-dropdown-menu.show { display: block; animation: drop-in 0.18s ease; }
@keyframes drop-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.order-dropdown-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 13px; font-size: 13px; color: var(--text-3);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.order-dropdown-menu a:hover { background: rgba(0,98,255,0.12); color: var(--text-1); }

/* ----------------------------------------------------------------
   FAQ ACCORDION
   ---------------------------------------------------------------- */
.faq-wrap { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item:hover { border-color: var(--border-mid); }
.faq-btn {
  width: 100%; background: none; border: none;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-size: 15px; font-weight: 600;
  color: var(--text-1); text-align: left;
  transition: color var(--t-fast);
}
.faq-btn:hover { color: var(--blue-light); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(0,98,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--blue-light);
  transition: background var(--t-fast), transform var(--t-base);
}
.faq-btn[aria-expanded="true"] .faq-icon { background: rgba(0,98,255,0.2); transform: rotate(45deg); }
.faq-body { padding: 0 22px 18px; font-size: 14px; color: var(--text-3); line-height: 1.75; }

/* ----------------------------------------------------------------
   LOCATION TABS
   ---------------------------------------------------------------- */
.location-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--sp-4); }
.loc-tab {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 10px 18px;
  font-size: 13.5px; font-weight: 600; color: var(--text-3);
  cursor: pointer; transition: all var(--t-fast);
  white-space: nowrap;
}
.loc-tab:hover { background: rgba(0,98,255,0.1); border-color: rgba(0,98,255,0.35); color: var(--text-1); }
.loc-tab.active { background: rgba(0,98,255,0.15); border-color: rgba(0,98,255,0.5); color: var(--text-1); box-shadow: 0 0 0 1px rgba(0,98,255,0.2), 0 4px 16px rgba(0,98,255,0.15); }
.loc-tab .flag { font-size: 22px; line-height: 1; }
.loc-panel { display: none; }
.loc-panel.active { display: block; animation: fade-up 0.3s ease; }

/* ----------------------------------------------------------------
   DEDICATED SERVER CARDS
   ---------------------------------------------------------------- */
.server-plan-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.server-plan-card:hover { border-color: rgba(0,98,255,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.server-plan-card.popular { border-color: rgba(0,98,255,0.4); }
.spc-processor { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.spc-name { font-size: 1rem; font-weight: 700; color: var(--text-1); flex: 1; }
.spc-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.spc-spec { font-size: 13px; color: var(--text-3); }
.spc-spec .sk { color: var(--text-4); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 2px; }
.spc-spec .sv { font-weight: 600; color: var(--text-1); }
.spc-price { font-size: 1.9rem; font-weight: 900; color: var(--text-1); margin-bottom: 14px; }
.spc-price span { font-size: 0.9rem; color: var(--text-4); font-weight: 400; }

/* ----------------------------------------------------------------
   GLOBAL LOCATIONS MAP
   ---------------------------------------------------------------- */
.locations-map-wrap {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-mid);
  margin-bottom: 8px;
  background: #040c1e;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

/* Leaflet map container */
#leafletMap {
  height: 440px;
  width: 100%;
  background: #030d1f;
  border-radius: var(--r-xl);
}
@media (max-width: 768px) { #leafletMap { height: 300px; } }
@media (max-width: 480px) { #leafletMap { height: 240px; } }

/* Override Leaflet attribution to match dark theme */
.leaflet-control-attribution {
  background: rgba(3,8,22,0.75) !important;
  color: rgba(255,255,255,0.3) !important;
  font-size: 9px !important;
  backdrop-filter: blur(4px);
}
.leaflet-control-attribution a { color: rgba(255,255,255,0.4) !important; }

/* ── Leaflet custom pin markers ── */
.lf-pin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.lf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c, #0062ff);
  box-shadow: 0 0 6px var(--c, #0062ff);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.lf-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--c, #0062ff);
  animation: lf-pulse 2.8s ease-out infinite;
  animation-delay: inherit;
}
@keyframes lf-pulse {
  0%   { opacity: 0.75; transform: scale(0.6); }
  70%  { opacity: 0;    transform: scale(2.4); }
  100% { opacity: 0;    transform: scale(2.4); }
}

/* Leaflet tooltip */
.lf-tooltip {
  background: rgba(4,10,24,0.95) !important;
  border: 1px solid rgba(0,98,255,0.4) !important;
  color: #e2eeff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5) !important;
  white-space: nowrap !important;
  backdrop-filter: blur(6px);
}
.lf-tooltip::before { display: none !important; }

/* Continent lands */
#continents path,
#continents polygon {
  fill: #0d2354;
  stroke: #1e4ea8;
  stroke-width: 0.5;
  stroke-linejoin: round;
}

/* ── Location pins ── */
.loc-pin {
  cursor: pointer;
}
.pin-dot {
  transition: r 0.15s ease, opacity 0.15s ease;
  opacity: 0.92;
}
.pin-ring {
  opacity: 0;
  animation: pin-ring-pulse 2.8s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.loc-pin:nth-child(3n+1) .pin-ring { animation-delay: 0s; }
.loc-pin:nth-child(3n+2) .pin-ring { animation-delay: 0.9s; }
.loc-pin:nth-child(3n)   .pin-ring { animation-delay: 1.8s; }

@keyframes pin-ring-pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(3.5); }
  100% { opacity: 0;   transform: scale(3.5); }
}

.loc-pin:hover .pin-dot {
  opacity: 1;
}
.loc-pin:hover .pin-ring {
  animation-play-state: paused;
  opacity: 0.5;
  transform-box: fill-box;
  transform-origin: center;
}

/* ── Tooltip ── */
.map-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(4,10,24,0.95);
  border: 1px solid rgba(0,98,255,0.35);
  color: #e2eeff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 10;
  backdrop-filter: blur(6px);
}
.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Map legend */
.map-legend {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(4,10,24,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 5px 13px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}
@media (max-width: 576px) { .map-legend { display: none; } }
.legend-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0062ff;
  margin-right: 4px;
}
.legend-dot-eu { background: #34d399; }
.legend-dot-ap { background: #fbbf24; }
.legend-dot-af { background: #f472b6; }

/* Region cards */
.loc-region-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  height: 100%;
  transition: border-color 0.2s;
}
.loc-region-card:hover { border-color: rgba(0,98,255,0.3); }
.loc-region-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-1);
  margin-bottom: 14px;
}
.loc-region-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.loc-region-dot-eu { background: #34d399; }
.loc-region-dot-ap { background: #fbbf24; }
.loc-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.loc-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.loc-pill:hover {
  background: rgba(0,98,255,0.1);
  border-color: rgba(0,98,255,0.3);
  color: var(--text-1);
}

/* ----------------------------------------------------------------
   SERVER CATEGORY BLOCKS (dedicated server page)
   ---------------------------------------------------------------- */
.server-categories-container { display: flex; flex-direction: column; gap: 24px; }

.server-category-block {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.server-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  background: rgba(255,255,255,0.045);
  border-bottom: 1px solid var(--border-mid);
}
.server-category-title i { font-size: 14px; color: var(--blue); flex-shrink: 0; }
.server-category-title.cat-clearance  i { color: #f59e0b; }
.server-category-title.cat-dual       i { color: #34d399; }
.server-category-title.cat-ryzen      i { color: #f97316; }
.server-category-title.cat-gpu        i { color: #a78bfa; }

/* Inside category blocks, remove outer table border (the block provides it) */
.server-category-block .table-responsive {
  overflow-x: auto;
  border: none;
  border-radius: 0;
  background: none;
}
.server-category-block .table-svps { min-width: 620px; }

/* ----------------------------------------------------------------
   TRUST / TESTIMONIALS
   ---------------------------------------------------------------- */
.trust-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
}
.trust-stars { color: var(--yellow); font-size: 14px; margin-bottom: 12px; }
.trust-text { font-size: 14px; color: var(--text-3); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.trust-author { font-size: 13px; font-weight: 700; color: var(--text-1); }
.trust-role   { font-size: 12px; color: var(--text-4); margin-top: 3px; }

/* ----------------------------------------------------------------
   CALLOUTS
   ---------------------------------------------------------------- */
.callout {
  border-radius: var(--r-md); padding: 16px 20px;
  font-size: 14px; display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 24px;
}
.callout-info    { background: rgba(0,98,255,0.08);  border: 1px solid rgba(0,98,255,0.2);    color: var(--blue-light); }
.callout-warning { background: var(--yellow-tint);   border: 1px solid rgba(245,166,35,0.25); color: var(--yellow); }
.callout-success { background: var(--green-tint);    border: 1px solid rgba(0,200,150,0.25);  color: var(--green); }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.footer-svps {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: var(--sp-12) 0 var(--sp-4);
}
.footer-brand img { height: 34px; margin-bottom: var(--sp-3); }
.footer-tagline { font-size: 13.5px; color: var(--text-2); line-height: 1.75; max-width: 270px; margin-bottom: var(--sp-4); }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-4); font-size: 16px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.footer-social-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer-col-head {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--text-2); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: var(--text-4); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--text-2); }
.footer-divider { border: none; border-top: 1px solid var(--border); margin: var(--sp-6) 0 var(--sp-3); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-2);
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 13px; color: var(--text-2); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: var(--text-1); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.25);
  border-radius: var(--r-full); padding: 4px 12px;
  font-size: 12px; font-weight: 600; color: var(--green);
}
.footer-badge::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 6px var(--green); }

/* ----------------------------------------------------------------
   LEGAL PAGES
   ---------------------------------------------------------------- */
.legal-content { max-width: 880px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.45rem; font-weight: 800; color: var(--text-1);
  margin: 2.5rem 0 0.9rem; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-2); margin: 1.6rem 0 0.6rem; }
.legal-content p, .legal-content li { font-size: 14.5px; color: var(--text-3); line-height: 1.85; margin-bottom: 0.8rem; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; }
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--text-1); }
.legal-content a { color: var(--blue-light); }

/* ----------------------------------------------------------------
   ANIMATIONS
   ---------------------------------------------------------------- */
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-anim {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slide-right {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ----------------------------------------------------------------
   UTILITIES
   ---------------------------------------------------------------- */
.text-1   { color: var(--text-1) !important; }
.text-2   { color: var(--text-2) !important; }
.text-3   { color: var(--text-3) !important; }
.text-4   { color: var(--text-4) !important; }
.text-blue  { color: var(--blue-light) !important; }
.text-cyan  { color: var(--cyan) !important; }
.text-green { color: var(--green) !important; }
.text-orange{ color: var(--orange) !important; }
.text-yellow{ color: var(--yellow) !important; }

.mono { font-family: var(--font-mono); }
.fw-900 { font-weight: 900; }
.letter-tight { letter-spacing: -0.02em; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-5); }

/* ----------------------------------------------------------------
   SUPPORT PAGE
   ---------------------------------------------------------------- */
.support-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  text-align: center;
  transition: all var(--t-base);
  text-decoration: none;
  display: block;
}
.support-card:hover { border-color: rgba(0,98,255,0.35); transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.5); }
.support-card-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(0,98,255,0.12); border: 1px solid rgba(0,98,255,0.2);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--blue-light);
  transition: box-shadow var(--t-base);
}
.support-card:hover .support-card-icon { box-shadow: 0 0 30px var(--blue-glow); }

/* ----------------------------------------------------------------
   PROXY CARDS
   ---------------------------------------------------------------- */
.proxy-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  transition: all var(--t-base);
}
.proxy-card:hover { border-color: rgba(0,98,255,0.35); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.proxy-qty { font-size: 3rem; font-weight: 900; color: var(--text-1); line-height: 1; }
.proxy-type { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-4); margin-bottom: 16px; }
.proxy-subnets { font-size: 12px; color: var(--text-4); margin-bottom: 6px; }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-section { min-height: 75vh; padding-top: 60px; }
  .navbar-brand { margin-left: 0; margin-right: 0; }
  .navbar-brand img { height: 28px; }
  .navbar-collapse {
    background: var(--bg-3); border-radius: var(--r-lg);
    margin-top: 8px; padding: 10px; border: 1px solid var(--border-mid);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  }
  .dropdown-menu-svps { position: static !important; box-shadow: none; border: none; background: rgba(255,255,255,0.03); margin-top: 4px !important; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .page-hero-title { font-size: 2rem; }
  .section-title { font-size: 1.9rem; }
  .plan-amount  { font-size: 2.6rem; }
  .hero-stats   { gap: 24px; }
  .stat-num     { font-size: 1.9rem; }
  .section-py   { padding: 72px 0; }
  .location-tabs { gap: 6px; }
  .loc-tab { padding: 8px 12px; font-size: 12.5px; }
}
@media (max-width: 576px) {
  .btn-primary-svps, .btn-secondary-svps { padding: 12px 22px; font-size: 14px; }
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .page-hero { padding: 70px 0 56px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .table-svps { font-size: 13px; }
  .table-svps thead tr th, .table-svps tbody tr td { padding: 10px 12px; }
}

/* ----------------------------------------------------------------
   COMPAT ALIASES — bridge old class names to new design system
   ---------------------------------------------------------------- */

/* Section utilities */
.section-eyebrow, .page-hero-eyebrow-text {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--grad-blue); border-radius: 2px;
}
.section-header { margin-bottom: var(--sp-6); }
.section-py-sm  { padding: var(--sp-8) 0; }
.gradient-text, .gtext { background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-multi { background: var(--grad-multi); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-secondary-svps { color: var(--text-3) !important; }
.eyebrow-green  { color: var(--green) !important; }
.eyebrow-orange { color: var(--orange) !important; }
.eyebrow-teal   { color: var(--teal) !important; }
.eyebrow-gold   { color: var(--yellow) !important; }
.c-teal   { color: var(--teal) !important; }
.c-green  { color: var(--green) !important; }
.c-orange { color: var(--orange) !important; }
.c-gold   { color: var(--yellow) !important; }
.infra-label-teal   { color: var(--teal) !important; }
.infra-label-orange { color: var(--orange) !important; }
.infra-label-green  { color: var(--green) !important; }

/* Product Overview Card (old name) */
.product-overview-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
  transition: all var(--t-base);
  text-decoration: none;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  color: var(--text-2);
}
.product-overview-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--grad-blue);
  transform: scaleX(0); transition: transform var(--t-base);
  transform-origin: left;
}
.product-overview-card:hover { border-color: rgba(0,98,255,0.3); transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.5); color: var(--text-2); }
.product-overview-card:hover::after { transform: scaleX(1); }
.product-overview-card .poc-arrow { position: absolute; top: 20px; right: 20px; color: var(--text-4); transition: color var(--t-fast), transform var(--t-fast); font-size: 14px; }
.product-overview-card:hover .poc-arrow { color: var(--blue-light); transform: translateX(4px); }

/* Pricing card aliases */
.pricing-plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-4); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pricing-currency { font-size: 1.5rem; font-weight: 700; color: var(--text-3); }
.pricing-amount  { font-size: 3.2rem; font-weight: 900; line-height: 1; color: var(--text-1); }
.pricing-period  { font-size: 0.9rem; color: var(--text-4); }
.pricing-tagline { font-size: 13px; color: var(--text-4); margin-bottom: 24px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-blue); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 18px; border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap;
  box-shadow: 0 4px 16px var(--blue-glow);
}
.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-3);
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .feat-check { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pricing-features li strong { color: var(--text-1); }
.pricing-highlight { font-weight: 800; font-size: 1.1rem; color: var(--text-1); }

/* Accordion (old names - maps to FAQ styles) */
.accordion-svps    { display: flex; flex-direction: column; gap: 8px; }
.accordion-item-svps {
  background: var(--grad-card); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color var(--t-fast);
}
.accordion-item-svps:hover { border-color: var(--border-mid); }
.accordion-btn-svps {
  width: 100%; background: none; border: none;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-size: 15px; font-weight: 600;
  color: var(--text-1); text-align: left;
  transition: color var(--t-fast);
}
.accordion-btn-svps:hover { color: var(--blue-light); }
.accordion-btn-svps[aria-expanded="true"] { color: var(--blue-light); }
.accordion-btn-svps i { transition: transform var(--t-base); flex-shrink: 0; }
.accordion-btn-svps[aria-expanded="true"] i { transform: rotate(180deg); }
.accordion-body-svps { padding: 0 22px 18px; font-size: 14px; color: var(--text-3); line-height: 1.75; }
.accordion-body-svps p { margin: 0; }
.accordion-header { margin: 0; }

/* ── Bootstrap accordion overrides — keep our design system in dark mode ── */
.accordion-svps .accordion-item {
  background: var(--grad-card);
  border-color: var(--border);
  color: var(--text-1);
}
.accordion-svps .accordion-button {
  background: none;
  color: var(--text-1);
  box-shadow: none;
  font-weight: 600;
  font-size: 15px;
}
.accordion-svps .accordion-button:not(.collapsed) {
  background: none;
  color: var(--blue-light);
  box-shadow: none;
}
.accordion-svps .accordion-button::after {
  filter: invert(1) brightness(2);
}
.accordion-svps .accordion-button:not(.collapsed)::after {
  filter: invert(0.4) sepia(1) saturate(5) hue-rotate(200deg);
}
.accordion-svps .accordion-collapse { background: none; }
.accordion-svps .accordion-body {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.75;
  padding: 0 22px 18px;
}
.accordion-svps .accordion-body p { margin: 0; }

/* Light mode overrides for Bootstrap accordion */
body.light-mode .section-lm-light .accordion-svps .accordion-item {
  background: #edf0f8;
  border-color: rgba(0,20,60,0.11);
}
body.light-mode .section-lm-light .accordion-svps .accordion-button {
  color: #0b1827;
  background: none;
}
body.light-mode .section-lm-light .accordion-svps .accordion-button:not(.collapsed) {
  color: #0050cc;
  background: none;
}
body.light-mode .section-lm-light .accordion-svps .accordion-button::after {
  filter: invert(0.1) brightness(0.3);
}
body.light-mode .section-lm-light .accordion-svps .accordion-button:not(.collapsed)::after {
  filter: invert(0.2) sepia(1) saturate(4) hue-rotate(200deg) brightness(0.7);
}
body.light-mode .section-lm-light .accordion-svps .accordion-body {
  color: #2a4560;
}

/* Hero logo badges */
.hero-logos { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: var(--sp-3); }
.hero-logo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-mid);
  border-radius: var(--r-full); padding: 5px 13px;
  font-size: 12px; font-weight: 600; color: var(--text-3);
  backdrop-filter: blur(8px);
}
.hero-logo-badge img { max-width: 20px; max-height: 20px; object-fit: contain; }

/* Location tabs (old names) */
.location-tab {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 10px 18px;
  font-size: 13.5px; font-weight: 600; color: var(--text-3);
  cursor: pointer; transition: all var(--t-fast); white-space: nowrap;
}
.location-tab:hover { background: rgba(0,98,255,0.1); border-color: rgba(0,98,255,0.35); color: var(--text-1); }
.location-tab.active { background: rgba(0,98,255,0.15); border-color: rgba(0,98,255,0.5); color: var(--text-1); box-shadow: 0 0 0 1px rgba(0,98,255,0.2), 0 4px 16px rgba(0,98,255,0.15); }
.location-tab .flag { font-size: 20px; line-height: 1; }
.location-panel { display: none; }
.location-panel.active { display: block; animation: fade-up 0.3s ease; }

/* Feature / Card icon boxes */
.feature-icon-box {
  width: 52px; height: 52px;
  background: rgba(0,98,255,0.12); border: 1px solid rgba(0,98,255,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px; color: var(--blue-light);
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.card-svps:hover .feature-icon-box { box-shadow: 0 0 24px var(--blue-glow); }
.feature-title { font-size: 15.5px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.feature-desc  { font-size: 14px; color: var(--text-3); line-height: 1.65; }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(0,98,255,0.1); border: 1px solid rgba(0,98,255,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--blue-light); margin-bottom: 16px;
  transition: all var(--t-base);
}
.card-svps:hover .card-icon { background: rgba(0,98,255,0.18); border-color: rgba(0,98,255,0.45); color: var(--cyan); }
.card-icon.orange { background: var(--orange-tint); border-color: rgba(255,107,53,0.25); color: var(--orange); }
.card-icon.green  { background: var(--green-tint);  border-color: rgba(0,200,150,0.25); color: var(--green); }
.card-icon.teal   { background: rgba(20,184,166,0.1); border-color: rgba(20,184,166,0.25); color: var(--teal); }
.card-icon.gold   { background: var(--yellow-tint); border-color: rgba(245,166,35,0.25); color: var(--yellow); }
.card-icon.pink   { background: rgba(236,72,153,0.1); border-color: rgba(236,72,153,0.25); color: #f472b6; }

/* Footer heading alias */
.footer-heading {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--text-4); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-links a { font-size: 13.5px; color: var(--text-4); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--text-2); }

/* Page hero content wrapper */
.page-hero-content { position: relative; z-index: 2; }

/* Testimonials (old names) */
.testimonial-card {
  background: var(--grad-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-4);
}
.testimonial-stars { color: var(--yellow); font-size: 14px; margin-bottom: 12px; }
.testimonial-text  { font-size: 14px; color: var(--text-3); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author{ font-size: 13px; font-weight: 700; color: var(--text-1); }
.testimonial-role  { font-size: 12px; color: var(--text-4); margin-top: 3px; }

/* Proxy plan card */
.proxy-plan-card {
  background: var(--grad-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--sp-4) var(--sp-3);
  text-align: center; transition: all var(--t-base);
}
.proxy-plan-card:hover { border-color: rgba(0,98,255,0.35); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }

/* Bootstrap btn-sm inside table */
.btn-sm.btn-primary-svps, .btn.btn-sm.btn-primary-svps { padding: 7px 14px !important; font-size: 12px !important; }

/* Proxy card sub-elements */
.proxy-card { background: var(--grad-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--sp-4) var(--sp-3); text-align: center; transition: all var(--t-base); }
.proxy-card:hover { border-color: rgba(0,98,255,0.35); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.proxy-quantity, .proxy-qty { font-size: 3rem; font-weight: 900; color: var(--text-1); line-height: 1; }
.proxy-type { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-4); margin-bottom: 16px; }
.proxy-subnets { font-size: 12px; color: var(--text-4); margin-bottom: 6px; }
.proxy-price { font-size: 2rem; font-weight: 800; color: var(--text-1); margin-bottom: 20px; }
.proxy-price span { font-size: 0.9rem; color: var(--text-4); font-weight: 400; }

/* Override Bootstrap bg-light to use dark bg in dark theme */
.bg-light { background: var(--bg-surface) !important; }

/* ================================================================
   THEME TOGGLE BUTTON
   ================================================================ */
.theme-toggle-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-mid);
  font-size: 17px; line-height: 1;
  cursor: pointer; flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast), transform 0.3s var(--t-spring);
  padding: 0;
  color: inherit;
}
.theme-toggle-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--border-bright);
  transform: scale(1.12) rotate(20deg);
}

/* ================================================================
   LIGHT MODE — CSS variable overrides
   ================================================================ */
/* ═══════════════════════════════════════════════════════════════════
   HYBRID LIGHT MODE
   Navbar · Hero · Footer → always dark (zero overrides here)
   Content sections → JS adds .section-lm-light to odd sections;
   even sections keep existing dark styling untouched.
   ═════════════════════════════════════════════════════════════════ */

/* ── Light section: CSS custom-property scope ── */
body.light-mode .section-lm-light {
  --bg-0:       #e4e9f2;
  --bg-1:       #eaeef6;
  --bg-2:       #dde4f0;
  --bg-3:       #d0daea;
  --bg-4:       #bfcce2;
  --bg-5:       #a9bad8;
  --bg-base:    #e8ecf4;
  --bg-surface: #dde4f0;
  --bg-card:    #edf0f8;

  --text-1:         #0b1827;
  --text-2:         #18304e;
  --text-3:         #2a4560;
  --text-4:         #3d5a78;
  --text-primary:   #0b1827;
  --text-secondary: #2a4560;
  --text-muted:     #3d5a78;

  --border:        rgba(0,20,60,0.11);
  --border-mid:    rgba(0,20,60,0.17);
  --border-bright: rgba(0,20,60,0.28);
  --border-blue:   rgba(0,98,255,0.32);

  --shadow-sm:  0 1px 6px rgba(0,0,0,0.09);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.11);
  --shadow-lg:  0 12px 60px rgba(0,0,0,0.14);

  --grad-card:    linear-gradient(150deg, #edf0f8, #dde4f0);
  --grad-overlay: linear-gradient(180deg, rgba(228,233,242,0) 0%, rgba(222,229,242,0.92) 100%);

  background: #e8ecf4;
  color: #18304e;
}

/* Sections that use inline style="background:var(--bg-surface)" resolve
   the var from the element's own scope — no !important needed */

/* ── Headings & body text ── */
body.light-mode .section-lm-light .section-title,
body.light-mode .section-lm-light h1,
body.light-mode .section-lm-light h2,
body.light-mode .section-lm-light h3,
body.light-mode .section-lm-light h4,
body.light-mode .section-lm-light h5 { color: var(--text-1); }
body.light-mode .section-lm-light .section-desc,
body.light-mode .section-lm-light p   { color: var(--text-3); }
body.light-mode .section-lm-light a   { color: var(--blue); }
body.light-mode .section-lm-light a:hover { color: var(--blue-dark); }

/* ── Cards ── */
body.light-mode .section-lm-light .card-svps,
body.light-mode .section-lm-light .feature-card,
body.light-mode .section-lm-light .pricing-card,
body.light-mode .section-lm-light .server-plan-card,
body.light-mode .section-lm-light .trust-card,
body.light-mode .section-lm-light .support-card,
body.light-mode .section-lm-light .proxy-card,
body.light-mode .section-lm-light .proxy-plan-card,
body.light-mode .section-lm-light .poc,
body.light-mode .section-lm-light .product-overview-card,
body.light-mode .section-lm-light .faq-item,
body.light-mode .section-lm-light .accordion-item-svps,
body.light-mode .section-lm-light .testimonial-card {
  background: #edf0f8;
  border-color: var(--border);
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  color: var(--text-2);
}
body.light-mode .section-lm-light .card-svps h4,
body.light-mode .section-lm-light .card-svps h5,
body.light-mode .section-lm-light .feature-card h4,
body.light-mode .section-lm-light .feature-card h5 { color: var(--text-1); }
body.light-mode .section-lm-light .card-svps p,
body.light-mode .section-lm-light .feature-card p  { color: var(--text-3); }
body.light-mode .section-lm-light .card-svps:hover,
body.light-mode .section-lm-light .feature-card:hover,
body.light-mode .section-lm-light .server-plan-card:hover,
body.light-mode .section-lm-light .support-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,98,255,0.14);
}
body.light-mode .section-lm-light .pricing-card.featured {
  background: linear-gradient(150deg, rgba(0,98,255,0.08) 0%, #edf0f8 100%);
  border-color: rgba(0,98,255,0.36);
}

/* ── Stats bar ── */
body.light-mode .section-lm-light .stats-bar {
  background: #dde4f0;
  border-color: var(--border);
}
body.light-mode .section-lm-light .stats-bar .stat-value { color: var(--text-1); }
body.light-mode .section-lm-light .stats-bar .stat-label { color: var(--text-4); }

/* ── Tables ── */
body.light-mode .section-lm-light .table-responsive {
  background: #edf0f8;
  border-color: var(--border);
}
body.light-mode .section-lm-light .table-svps thead tr th {
  background-color: rgba(0,98,255,0.06) !important;
  color: var(--text-4) !important;
  border-bottom-color: var(--border-mid) !important;
}
body.light-mode .section-lm-light .table > :not(caption) > * > * {
  border-bottom-color: var(--border) !important;
  color: var(--text-3);
  background-color: #edf0f8;
}
body.light-mode .section-lm-light .table-svps tbody tr:hover > * {
  background-color: rgba(0,98,255,0.06) !important;
  color: var(--text-2) !important;
}
body.light-mode .section-lm-light .table-svps tbody tr td strong { color: var(--text-1); }
body.light-mode .section-lm-light .table-group-row td {
  background: rgba(0,20,60,0.05) !important;
  color: var(--text-4) !important;
  border-top-color: rgba(0,0,0,0.09) !important;
  border-bottom-color: rgba(0,0,0,0.09) !important;
}
@media (max-width: 991px) {
  body.light-mode .section-lm-light .table-svps tbody tr {
    background: #edf0f8;
    border-color: var(--border-mid);
  }
  body.light-mode .section-lm-light .table-svps tbody tr td:first-child {
    background: rgba(0,98,255,0.06) !important;
    color: var(--text-1) !important;
  }
  body.light-mode .section-lm-light .table-svps tbody tr td[data-label="Order"] {
    background: rgba(0,98,255,0.04) !important;
  }
  body.light-mode .section-lm-light .table-svps tbody tr td::before { color: var(--text-4); }
}

/* ── Order dropdown ── */
body.light-mode .section-lm-light .order-dropdown-menu {
  background: #edf0f8;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: var(--border-mid);
}
body.light-mode .section-lm-light .order-dropdown-menu a { color: #2a4560; }
body.light-mode .section-lm-light .order-dropdown-menu a:hover {
  background: rgba(0,98,255,0.08);
  color: var(--text-1);
}

/* ── Server category blocks ── */
body.light-mode .section-lm-light .server-category-block {
  background: #edf0f8;
  border-color: var(--border);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
body.light-mode .section-lm-light .server-category-title {
  background: rgba(0,20,60,0.05);
  border-bottom-color: var(--border);
  color: var(--text-2);
}

/* ── Location tabs ── */
body.light-mode .section-lm-light .loc-tab,
body.light-mode .section-lm-light .location-tab {
  background: #edf0f8;
  border-color: var(--border);
  color: var(--text-3);
}
body.light-mode .section-lm-light .loc-tab:hover,
body.light-mode .section-lm-light .location-tab:hover {
  background: rgba(0,98,255,0.09);
  border-color: rgba(0,98,255,0.3);
}
body.light-mode .section-lm-light .loc-tab.active,
body.light-mode .section-lm-light .location-tab.active {
  background: rgba(0,98,255,0.12);
  border-color: rgba(0,98,255,0.44);
}
body.light-mode .section-lm-light .loc-pill {
  background: rgba(0,20,60,0.05);
  border-color: var(--border);
}
body.light-mode .section-lm-light .loc-pill:hover { background: rgba(0,98,255,0.09); }
body.light-mode .section-lm-light .loc-region-card { background: #edf0f8; }
body.light-mode .section-lm-light .locations-map-wrap { background: #c4d6f0; }
body.light-mode .section-lm-light .loc-panel { color: var(--text-3); }

/* ── FAQ / Accordion ── */
body.light-mode .section-lm-light .faq-btn { color: var(--text-1); }
body.light-mode .section-lm-light .faq-body { color: var(--text-3); }
body.light-mode .section-lm-light .accordion-btn-svps { color: var(--text-1); }
body.light-mode .section-lm-light .accordion-body-svps { color: var(--text-3); }

/* ── Buttons ── */
body.light-mode .section-lm-light .btn-secondary-svps {
  background: rgba(0,20,60,0.07);
  color: var(--text-1) !important;
  border-color: var(--border-mid);
}
body.light-mode .section-lm-light .btn-secondary-svps:hover {
  background: rgba(0,20,60,0.13);
  border-color: var(--border-bright);
}
body.light-mode .section-lm-light .btn-outline-svps {
  border-color: rgba(0,98,255,0.32);
}

/* ── Tech / logo badges ── */
body.light-mode .section-lm-light .tech-badge,
body.light-mode .section-lm-light .hero-logo-badge {
  background: rgba(0,20,60,0.08);
  border-color: var(--border-mid);
  color: var(--text-3);
}

/* ── Misc alerts / callouts ── */
body.light-mode .section-lm-light .bg-light { background: var(--bg-2) !important; }
body.light-mode .section-lm-light .alert-danger  { background: rgba(239,68,68,0.07) !important; color: #7a1a1a !important; }
body.light-mode .section-lm-light .alert-info    { background: rgba(0,98,255,0.07) !important; color: #0b1827 !important; }
body.light-mode .section-lm-light .alert-warning { background: rgba(245,166,35,0.10) !important; color: #5a3a00 !important; }
body.light-mode .section-lm-light .callout-info  { background: rgba(0,98,255,0.07); border-color: rgba(0,98,255,0.25); color: var(--text-2); }
body.light-mode .section-lm-light .callout-warning { background: rgba(245,166,35,0.10); border-color: rgba(245,166,35,0.28); color: #4a3000; }
body.light-mode .section-lm-light .callout-success { background: rgba(0,200,150,0.10); border-color: rgba(0,200,150,0.28); color: #0a3a2a; }

/* ── Section eyebrow / labels ── */
body.light-mode .section-lm-light .section-label  { color: #0050cc; }
body.light-mode .section-lm-light .section-label::before { background: #0062ff; }
body.light-mode .section-lm-light .hero-eyebrow   { background: rgba(0,80,204,0.10); border-color: rgba(0,80,204,0.30); color: #0050cc; }
body.light-mode .section-lm-light .hero-eyebrow .dot { background: #0062ff; box-shadow: 0 0 8px rgba(0,98,255,0.5); }
body.light-mode .section-lm-light .page-hero-eyebrow { color: #0050cc; }

/* ── Plan name / meta labels ── */
body.light-mode .section-lm-light .plan-name      { color: var(--text-4); }
body.light-mode .section-lm-light .plan-price      { color: var(--text-1); }
body.light-mode .section-lm-light .plan-price .price-currency,
body.light-mode .section-lm-light .plan-price .price-period { color: var(--text-4); }
body.light-mode .section-lm-light .plan-desc       { color: var(--text-3); }
body.light-mode .section-lm-light .plan-feature-list li { color: var(--text-2); }
body.light-mode .section-lm-light .plan-feature-list li strong { color: var(--text-1); }

/* ── Tech & CPU badges ── */
body.light-mode .section-lm-light .tech-badge,
body.light-mode .section-lm-light .cpu-badge {
  background: rgba(0,20,60,0.07);
  border-color: rgba(0,20,60,0.14);
  color: var(--text-2);
}
body.light-mode .section-lm-light .cpu-badge.apple { background: rgba(0,20,60,0.07); color: var(--text-2); }

/* ── Server category block text ── */
body.light-mode .section-lm-light .server-category-title { color: var(--text-2); }
body.light-mode .section-lm-light .server-category-title i { color: var(--text-3); }

/* ── Table borders fix (override hardcoded rgba(255,255,255,...)) ── */
body.light-mode .section-lm-light .table-group-row td {
  border-top-color: rgba(0,20,60,0.10) !important;
  border-bottom-color: rgba(0,20,60,0.10) !important;
}

/* ── Dropdown menus ── */
body.light-mode .section-lm-light .dropdown-menu-svps,
body.light-mode .dropdown-menu-svps {
  background: #edf0f8;
  border-color: rgba(0,20,60,0.14);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
body.light-mode .section-lm-light .dropdown-item-svps,
body.light-mode .dropdown-item-svps { color: #18304e; }
body.light-mode .section-lm-light .dropdown-item-svps:hover,
body.light-mode .dropdown-item-svps:hover { background: rgba(0,20,80,0.14); color: #0b1827; }
body.light-mode .section-lm-light .dropdown-divider-svps,
body.light-mode .dropdown-divider-svps { border-color: rgba(0,20,60,0.10); }
body.light-mode .section-lm-light .dropdown-item-svps .item-desc,
body.light-mode .dropdown-item-svps .item-desc { color: #3d5a78; }
body.light-mode .section-lm-light .dropdown-item-svps .item-title,
body.light-mode .dropdown-item-svps .item-title { color: #0b1827; }

/* ── Stat labels ── */
body.light-mode .section-lm-light .stat-label { color: var(--text-4) !important; }
body.light-mode .section-lm-light .stat-value { color: var(--text-1) !important; }

/* ── Icon colours in feature/support cards ── */
body.light-mode .section-lm-light .card-svps .card-icon,
body.light-mode .section-lm-light .feature-card .feature-icon { color: var(--blue); }

/* ── Pricing card specific ── */
body.light-mode .section-lm-light .pricing-card .price-amount { color: var(--text-1); }
body.light-mode .section-lm-light .pricing-card .price-label  { color: var(--text-4); }
body.light-mode .section-lm-light .pricing-card .price-note   { color: var(--text-3); }
body.light-mode .section-lm-light .pricing-card li            { color: var(--text-2); }
body.light-mode .section-lm-light .pricing-card li strong     { color: var(--text-1); }
body.light-mode .section-lm-light .pricing-card .divider      { border-color: var(--border-mid); }

/* ── Spec list / info rows ── */
body.light-mode .section-lm-light .spec-row,
body.light-mode .section-lm-light .info-row  { color: var(--text-2); border-color: var(--border); }
body.light-mode .section-lm-light .spec-label,
body.light-mode .section-lm-light .info-label { color: var(--text-4); }
body.light-mode .section-lm-light .spec-value,
body.light-mode .section-lm-light .info-value { color: var(--text-1); }

/* ── Support/ticket cards ── */
body.light-mode .section-lm-light .support-card h4,
body.light-mode .section-lm-light .support-card h5 { color: var(--text-1); }
body.light-mode .section-lm-light .support-card p  { color: var(--text-3); }

/* ── Testimonial / trust cards ── */
body.light-mode .section-lm-light .testimonial-card .testimonial-text { color: var(--text-2); }
body.light-mode .section-lm-light .testimonial-card .testimonial-author { color: var(--text-4); }
body.light-mode .section-lm-light .trust-card h5 { color: var(--text-1); }
body.light-mode .section-lm-light .trust-card p  { color: var(--text-3); }

/* ── Benefit items ── */
body.light-mode .section-lm-light .benefit-item,
body.light-mode .section-lm-light .benefit-item p { color: var(--text-2); }
body.light-mode .section-lm-light .benefit-item h5 { color: var(--text-1); }

/* ── Check/list items in features ── */
body.light-mode .section-lm-light .feature-list li,
body.light-mode .section-lm-light .check-list li  { color: var(--text-2); }
body.light-mode .section-lm-light li strong,
body.light-mode .section-lm-light dt              { color: var(--text-1); }
body.light-mode .section-lm-light dd              { color: var(--text-3); }

/* ── Location tab text ── */
body.light-mode .section-lm-light .loc-tab,
body.light-mode .section-lm-light .location-tab { color: var(--text-2); }
body.light-mode .section-lm-light .loc-tab.active,
body.light-mode .section-lm-light .location-tab.active { color: var(--text-1); }
body.light-mode .section-lm-light .loc-region-card h5,
body.light-mode .section-lm-light .loc-region-card h6 { color: var(--text-1); }
body.light-mode .section-lm-light .loc-region-card p  { color: var(--text-3); }

/* ── Body background in light mode ── */
body.light-mode {
  background: #f0f3fa;
  color: #18304e;
}

/* ── Legal pages light-mode text overrides ── */
body.light-mode .legal-content h2 { color: #0b1827; border-bottom-color: rgba(0,20,60,0.14); }
body.light-mode .legal-content h3 { color: #18304e; }
body.light-mode .legal-content p,
body.light-mode .legal-content li { color: #2a4560; }
body.light-mode .legal-content strong { color: #0b1827; }
body.light-mode .legal-content a { color: #0062ff; }
body.light-mode .legal-content a:hover { color: #004ecc; }

/* ── Navbar in light mode — keep dark glass look ── */
body.light-mode .navbar-svps {
  background: rgba(8, 18, 40, 0.97);
}
body.light-mode .navbar-svps .nav-link-svps { color: rgba(255,255,255,0.82); }
body.light-mode .navbar-svps .nav-link-svps:hover,
body.light-mode .navbar-svps .nav-link-svps.active { color: #fff; }

/* ── Footer stays dark — no changes needed ── */

/* ── Page hero text always readable (dark hero bg) ── */
body.light-mode .page-hero h1,
body.light-mode .page-hero .hero-title  { color: #ffffff; }
body.light-mode .page-hero p.lead,
body.light-mode .page-hero .hero-subtitle { color: rgba(255,255,255,0.80); }

/* ── Smooth transitions on toggle ── */
body.theme-transitioning,
body.theme-transitioning * {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease !important;
}
/* Gradient text (-webkit-text-fill-color: transparent) must not transition
   color or the plain text flickers during theme switch */
body.theme-transitioning .mkt-hero-title,
body.theme-transitioning .mkt-hero-title .gtext {
  transition: none !important;
}

/* Page hero h1 fallback (no class) */
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; color: var(--text-1); margin-bottom: 18px; position: relative; z-index: 2; }
.page-hero p.lead, .page-hero .hero-subtitle { font-size: 1.05rem; color: var(--text-3); max-width: 600px; line-height: 1.75; position: relative; z-index: 2; }

/* Alert override for dark theme */
.alert-danger { background: rgba(239,68,68,0.08) !important; border-color: rgba(239,68,68,0.2) !important; color: var(--text-2) !important; }
.alert-danger a { color: var(--red) !important; }
.alert-danger strong { color: var(--red) !important; }
.alert-info { background: rgba(0,98,255,0.08) !important; border-color: rgba(0,98,255,0.2) !important; color: var(--text-2) !important; }
.alert-warning { background: var(--yellow-tint) !important; border-color: rgba(245,166,35,0.25) !important; color: var(--text-2) !important; }

/* Card h5 typography */
.card-svps h5, .card-svps h4 { font-size: 15.5px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.card-svps p { font-size: 14px; color: var(--text-3); line-height: 1.65; margin-bottom: 16px; }

/* hero-title and hero-subtitle used in page-hero context (support, legal pages) */
.page-hero .hero-title { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; color: var(--text-1); margin-bottom: 18px; position: relative; z-index: 2; background: none; -webkit-text-fill-color: initial; }
.page-hero .hero-subtitle { font-size: 1.05rem; color: var(--text-3); line-height: 1.75; position: relative; z-index: 2; margin-bottom: var(--sp-4); }

/* ----------------------------------------------------------------
   CLIENT AREA — LIGHT MODE OVERRIDES
   ---------------------------------------------------------------- */

/* Hero keeps dark bg regardless of theme — text is already white */
body.light-mode .ca-hero {
  background: #030810;
}
body.light-mode .ca-hero .ca-hero h1,
body.light-mode .ca-hero h1 { color: #ffffff; }
body.light-mode .ca-hero .ca-hero-sub { color: rgba(255,255,255,0.72); }
body.light-mode .ca-hero .ca-eyebrow { color: #60a5fa; background: rgba(0,98,255,0.12); border-color: rgba(0,98,255,0.3); }
body.light-mode .ca-hero .ca-stat { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

/* WHMCS area — already white, just ensure text color in light mode */
body.light-mode .ca-whmcs-area {
  background: #f0f4fc !important;
}

/* Help strip */
body.light-mode .ca-help {
  background: #e8edf7 !important;
  border-top-color: rgba(0,20,80,0.1) !important;
}
body.light-mode .ca-help-item {
  background: #ffffff;
  border-color: rgba(0,20,80,0.1);
}
body.light-mode .ca-help-item:hover {
  background: rgba(0,98,255,0.05);
  border-color: rgba(0,98,255,0.3);
}
body.light-mode .ca-help-txt strong { color: #0b1827; }

/* ----------------------------------------------------------------
   DEDICATED SERVER PAGE — LIGHT MODE OVERRIDES
   Hero stays dark; everything below it (notice, filters, cards) goes light.
   ---------------------------------------------------------------- */

/* Notice section */
body.light-mode .ded-notice-section {
  background: #f0f3fa;
}
body.light-mode .ded-notice-banner {
  background: linear-gradient(135deg, rgba(245,166,35,0.1) 0%, rgba(255,107,53,0.06) 100%);
  border-color: rgba(245,166,35,0.35);
}
body.light-mode .ded-notice-text {
  color: #2a4560;
}

/* Main marketplace section */
body.light-mode .mkt-section {
  background: #f0f3fa;
}

/* Sidebar filter panel */
body.light-mode .mkt-filter-panel {
  background: #ffffff;
  border-color: rgba(0,20,80,0.12);
  box-shadow: 0 2px 12px rgba(0,20,80,0.07);
}
body.light-mode .mkt-filter-header {
  border-bottom-color: rgba(0,20,80,0.1);
}
body.light-mode .mkt-filter-header-title {
  color: #0b1827;
}
body.light-mode .mkt-filter-group {
  border-bottom-color: rgba(0,20,80,0.08);
}
body.light-mode .mkt-filter-group-label {
  color: #546280;
}
body.light-mode .mkt-check-label {
  color: #2a4560;
}
body.light-mode .mkt-check-item:hover .mkt-check-label {
  color: #0b1827;
}
body.light-mode .mkt-check-count {
  background: #eef1f8;
  border-color: rgba(0,20,80,0.12);
  color: #546280;
}
body.light-mode .price-range-inputs input {
  background: #f4f6fb;
  border-color: rgba(0,20,80,0.15);
  color: #18304e;
}
body.light-mode .price-range-inputs input::placeholder {
  color: #8fa0c0;
}
body.light-mode .price-range-labels {
  color: #8fa0c0;
}
body.light-mode .sort-select {
  background-color: #f4f6fb;
  border-color: rgba(0,20,80,0.15);
  color: #2a4560;
}
body.light-mode .mkt-filter-toggle-btn {
  background: #ffffff;
  border-color: rgba(0,20,80,0.15);
  color: #2a4560;
}

/* Results header */
body.light-mode .mkt-results-count {
  color: #2a4560;
}
body.light-mode .mkt-results-count strong {
  color: #0b1827;
}
body.light-mode .mkt-view-btn {
  background: #ffffff;
  border-color: rgba(0,20,80,0.15);
  color: #546280;
}
body.light-mode .mkt-view-btn.active,
body.light-mode .mkt-view-btn:hover {
  background: rgba(0,98,255,0.07);
  border-color: rgba(0,98,255,0.3);
  color: #0062ff;
}

/* Server cards */
body.light-mode .srv-card {
  background: #ffffff;
  border-color: rgba(0,20,80,0.1);
  box-shadow: 0 2px 10px rgba(0,20,80,0.05);
}
body.light-mode .srv-card:hover {
  border-color: rgba(0,98,255,0.35);
  box-shadow: 0 8px 28px rgba(0,20,80,0.12);
}
body.light-mode .srv-card-name {
  color: #0b1827;
}
body.light-mode .srv-card-location {
  color: #546280;
}
body.light-mode .srv-spec-icon {
  background: rgba(0,98,255,0.06);
  border-color: rgba(0,98,255,0.15);
}
body.light-mode .srv-spec-val {
  color: #2a4560;
}
body.light-mode .srv-spec-val strong {
  color: #0b1827;
}
body.light-mode .srv-card-footer {
  border-top-color: rgba(0,20,80,0.1);
}
body.light-mode .srv-price-amount {
  color: #0b1827;
}
body.light-mode .srv-price-period {
  color: #8fa0c0;
}

/* CPU type tags */
body.light-mode .tag-intel {
  background: rgba(0,113,197,0.08);
  color: #0062d4;
}
body.light-mode .tag-amd {
  background: rgba(237,28,36,0.08);
  color: #c0392b;
}

/* No results */
body.light-mode .mkt-no-results h4 {
  color: #0b1827;
}
body.light-mode .mkt-no-results p {
  color: #546280;
}

/* Active filter pills stay blue-tinted — no change needed */

/* Hero stats below the title (mkt-stat-val) — keep readable on dark hero */
body.light-mode .mkt-stat-val {
  color: #ffffff;
}
body.light-mode .mkt-stat-label {
  color: rgba(255,255,255,0.65);
}
body.light-mode .ca-help-txt span   { color: #4a6080; }
