/* ==========================================================================
   PrivilegeServer — Premium Homepage v3 (Upgraded)
   Aesthetic: Obsidian (#09090B) · Neon Lime (#A2E635) · Precision Grid
   ========================================================================== */

/* ─── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  --ps-dark:           #09090b;
  --ps-dark-surface:   #111418;
  --ps-dark-card:      #15191e;
  --ps-dark-elevated:  #1a2027;
  --ps-lime:           #a2e635;
  --ps-lime-hover:     #b4f542;
  --ps-lime-glow:      rgba(162, 230, 53, 0.2);
  --ps-lime-dim:       rgba(162, 230, 53, 0.1);
  --ps-lime-border:    rgba(162, 230, 53, 0.35);
  --ps-white:          #ffffff;
  --ps-light-bg:       #f8fafc;
  --ps-light-card:     #ffffff;
  --ps-border-dark:    rgba(255, 255, 255, 0.07);
  --ps-border-dark-hover: rgba(162, 230, 53, 0.45);
  --ps-border-light:   #e2e8f0;
  --ps-text-muted-dark:  #94a3b8;
  --ps-text-muted-light: #64748b;
  --ps-font: 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;
  --ps-radius-sm:   8px;
  --ps-radius-md:   14px;
  --ps-radius-lg:   20px;
  --ps-radius-xl:   28px;
  --ps-radius-full: 9999px;
  --ps-transition:  all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --ps-shadow-lime: 0 0 40px rgba(162, 230, 53, 0.12);
}

/* ─── Global Reset ───────────────────────────────────────────────────────── */
.ps-home-v3 {
  font-family: var(--ps-font) !important;
  color: #0f172a;
  background: var(--ps-white);
  overflow-x: hidden;
  line-height: 1.5;
}
.ps-home-v3 *,
.ps-home-v3 *::before,
.ps-home-v3 *::after {
  box-sizing: border-box;
}
.ps-home-v3 h1,
.ps-home-v3 h2,
.ps-home-v3 h3,
.ps-home-v3 h4,
.ps-home-v3 h5,
.ps-home-v3 h6,
.ps-home-v3 p,
.ps-home-v3 a,
.ps-home-v3 span,
.ps-home-v3 button,
.ps-home-v3 li {
  font-family: var(--ps-font) !important;
}

/* ─── Container ──────────────────────────────────────────────────────────── */
.ps-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.ps-section {
  padding: 110px 0;
  position: relative;
}
.ps-section-dark {
  background: var(--ps-dark);
  color: var(--ps-white);
}
.ps-section-light {
  background: var(--ps-light-bg);
}

/* ─── Eyebrow Badges ─────────────────────────────────────────────────────── */
.ps-badge-cyber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(162, 230, 53, 0.1);
  border: 1px solid var(--ps-lime-border);
  color: var(--ps-lime);
  padding: 6px 16px;
  border-radius: var(--ps-radius-full);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.ps-badge-cyber.dark {
  background: rgba(162, 230, 53, 0.08);
  border-color: rgba(162, 230, 53, 0.25);
}

/* ─── Pulse Dot ──────────────────────────────────────────────────────────── */
.ps-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--ps-lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ps-lime);
  animation: psPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes psPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

/* ─── Headings ───────────────────────────────────────────────────────────── */
.ps-heading-lg {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}
.ps-subheading {
  font-size: 18px;
  font-weight: 500;
  color: var(--ps-text-muted-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
}
.ps-section-light .ps-subheading,
.ps-why-section .ps-subheading { color: var(--ps-text-muted-light); }

.ps-text-center { text-align: center; }
.ps-highlight    { color: var(--ps-lime); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-ps-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ps-lime);
  color: var(--ps-dark) !important;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 32px;
  border-radius: var(--ps-radius-md);
  border: 2px solid var(--ps-lime);
  text-decoration: none !important;
  transition: var(--ps-transition);
  box-shadow: 0 4px 24px var(--ps-lime-glow);
  cursor: pointer;
  white-space: nowrap;
}
.btn-ps-primary:hover {
  background: var(--ps-lime-hover);
  border-color: var(--ps-lime-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(162, 230, 53, 0.4);
  color: var(--ps-dark) !important;
}

.btn-ps-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--ps-white) !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 32px;
  border-radius: var(--ps-radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  text-decoration: none !important;
  transition: var(--ps-transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-ps-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  color: var(--ps-white) !important;
}

.btn-ps-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #334155 !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 13px 26px;
  border-radius: var(--ps-radius-md);
  border: 1.5px solid #cbd5e1;
  text-decoration: none !important;
  transition: var(--ps-transition);
}
.btn-ps-outline-dark:hover {
  background: var(--ps-dark);
  color: var(--ps-lime) !important;
  border-color: var(--ps-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.ps-hero-section {
  background:
    radial-gradient(ellipse 80% 60% at 75% 10%, rgba(162, 230, 53, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(162, 230, 53, 0.05) 0%, transparent 60%),
    linear-gradient(170deg, #060709 0%, #0b0d11 55%, #0f1318 100%);
  color: var(--ps-white);
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ps-border-dark);
}

/* Decorative grid overlay */
.ps-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 75%);
}

/* Ambient lime orb */
.ps-hero-section::after {
  content: '';
  position: absolute;
  top: -80px;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(162, 230, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.ps-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero — Left Content */
.ps-hero-content {}

.ps-hero-headline {
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin: 0 0 26px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.ps-hero-headline .ps-highlight {
  position: relative;
  display: inline-block;
}
.ps-hero-headline .ps-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ps-lime);
  border-radius: 2px;
  opacity: 0.6;
}

.ps-hero-description {
  font-size: 19px;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 38px;
}

.ps-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 38px;
}

.ps-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ps-hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.ps-hero-highlight-item i {
  color: var(--ps-lime);
  font-size: 15px;
}

/* ==========================================================================
   HERO RIGHT-SIDE VISUAL (Premium Enterprise Server & Blended Atmosphere)
   ========================================================================== */
.ps-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 100%;
}

.ps-hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ambient Backlight Glow (Slow, smooth, GPU-friendly) */
.ps-hero-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 480px;
  background: radial-gradient(circle, rgba(162, 230, 53, 0.15) 0%, rgba(162, 230, 53, 0.04) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: psAmbientPulse 8s ease-in-out infinite alternate;
  filter: blur(20px);
}

@keyframes psAmbientPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

/* Server Image Container with Masking & Blend */
.ps-hero-server-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--ps-radius-lg, 20px);
  overflow: hidden;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(162, 230, 53, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #090b0e;
}

/* Main Server Image */
.ps-hero-server-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ps-hero-visual-frame:hover .ps-hero-server-img {
  transform: scale(1.03);
}

/* Subtle Edge Fade (Blends naturally into the dark background) */
.ps-hero-edge-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    linear-gradient(to top, rgba(9, 11, 14, 0.7) 0%, transparent 25%),
    linear-gradient(to bottom, rgba(9, 11, 14, 0.4) 0%, transparent 20%),
    radial-gradient(ellipse at center, transparent 65%, rgba(9, 11, 14, 0.5) 100%);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

/* Slow, elegant light sweep across hardware */
.ps-hero-light-sweep {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(162, 230, 53, 0.04) 40%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(162, 230, 53, 0.04) 60%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  animation: psLightSweep 9s ease-in-out infinite;
}

@keyframes psLightSweep {
  0%, 35% {
    left: -120%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  65%, 100% {
    left: 160%;
    opacity: 0;
  }
}

/* Subtle Pulsing Status Beacons on Hardware */
.ps-hero-beacon {
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 2;
}

.ps-hero-beacon.beacon-1 {
  top: 32%;
  left: 45%;
}

.ps-hero-beacon.beacon-2 {
  top: 58%;
  left: 62%;
}

.ps-beacon-dot {
  position: absolute;
  inset: 2px;
  background: var(--ps-lime, #a2e635);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ps-lime, #a2e635);
}

.ps-beacon-ring {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--ps-lime, #a2e635);
  border-radius: 50%;
  opacity: 0.8;
  animation: psBeaconPulse 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.ps-hero-beacon.beacon-2 .ps-beacon-ring {
  animation-delay: 1.5s;
}

@keyframes psBeaconPulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* Clean, Minimalist Status Pill at bottom of visual */
.ps-hero-status-pill {
  margin-top: -16px;
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 18, 23, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(162, 230, 53, 0.3);
  padding: 6px 16px;
  border-radius: var(--ps-radius-full, 9999px);
  font-size: 11px;
  font-weight: 800;
  color: var(--ps-white, #ffffff);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(162, 230, 53, 0.08);
}




/* ==========================================================================
   BRAND TRUST STRIP (Powered By Section)
   ========================================================================== */
.ps-brand-trust-strip {
  background: linear-gradient(180deg, #09090b 0%, #0d1015 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  position: relative;
  z-index: 5;
}

.ps-brand-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.ps-brand-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(162, 230, 53, 0.08);
  border: 1px solid rgba(162, 230, 53, 0.25);
  color: var(--ps-lime, #a2e635);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ps-brand-strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.ps-brand-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.ps-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ps-brand-badge:hover {
  border-color: rgba(162, 230, 53, 0.4);
  background: rgba(162, 230, 53, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(162, 230, 53, 0.12);
}

.ps-brand-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(162, 230, 53, 0.12);
  border: 1px solid rgba(162, 230, 53, 0.25);
  border-radius: 6px;
  color: var(--ps-lime, #a2e635);
  flex-shrink: 0;
}

.ps-brand-badge-icon i,
.ps-brand-badge-icon .fa {
  font-family: 'FontAwesome' !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-size: 13px !important;
  line-height: 1 !important;
  color: var(--ps-lime, #a2e635) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ps-brand-badge-text {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}



/* ==========================================================================
   2. TRUST & PERFORMANCE METRIC BAR
   ========================================================================== */
.ps-trust-bar {
  background: var(--ps-dark-surface);
  border-bottom: 1px solid var(--ps-border-dark);
  padding: 0;
  position: relative;
}
/* Top lime accent line */
.ps-trust-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ps-lime-border), transparent);
}

.ps-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ps-trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 28px;
  border-right: 1px solid var(--ps-border-dark);
  position: relative;
  transition: background 0.3s ease;
}
.ps-trust-item:hover { background: rgba(162, 230, 53, 0.03); }
.ps-trust-item:last-child { border-right: none; }

.ps-trust-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(162, 230, 53, 0.07);
  border: 1px solid var(--ps-lime-border);
  border-radius: var(--ps-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ps-lime);
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(162, 230, 53, 0.08);
  transition: var(--ps-transition);
}
.ps-trust-item:hover .ps-trust-icon-box {
  background: rgba(162, 230, 53, 0.12);
  box-shadow: 0 0 30px rgba(162, 230, 53, 0.18);
}

.ps-trust-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--ps-white);
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.ps-trust-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}


/* ==========================================================================
   3. HOSTING PRODUCTS SHOWCASE
   ========================================================================== */
.ps-products-section {
  background: var(--ps-white);
  padding: 110px 0;
  position: relative;
}
/* Subtle dot grid texture */
.ps-products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ps-products-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.ps-products-header .ps-heading-lg { color: var(--ps-dark); }
.ps-products-header .ps-subheading { color: var(--ps-text-muted-light); }

.ps-product-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

/* Product Card Base */
.ps-card-product {
  background: var(--ps-white);
  border: 1.5px solid #e8edf3;
  border-radius: var(--ps-radius-lg);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--ps-transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
/* Bottom accent line that reveals on hover */
.ps-card-product::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ps-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ps-card-product:hover::after { transform: scaleX(1); }
.ps-card-product:hover {
  transform: translateY(-8px);
  border-color: #d1d9e3;
  box-shadow: 0 24px 50px rgba(0,0,0,0.1);
}

/* Featured Card */
.ps-card-product.featured {
  background: linear-gradient(155deg, #13171d 0%, #0b0e12 100%);
  border: 2px solid rgba(162, 230, 53, 0.5);
  color: var(--ps-white);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.45),
    0 0 50px rgba(162, 230, 53, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: translateY(-6px);
}
.ps-card-product.featured::after {
  background: var(--ps-lime);
  transform: scaleX(1);
  opacity: 0.6;
}
.ps-card-product.featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 70px rgba(0,0,0,0.5), 0 0 60px rgba(162, 230, 53, 0.15);
}

/* Badge */
.ps-card-badge-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ps-lime);
  color: var(--ps-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 16px rgba(162, 230, 53, 0.45);
}

/* Icon Circle */
.ps-card-icon-circle {
  width: 58px;
  height: 58px;
  background: #f1f5f9;
  border-radius: var(--ps-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ps-dark);
  font-size: 26px;
  margin-bottom: 24px;
  transition: var(--ps-transition);
}
.ps-card-product.featured .ps-card-icon-circle {
  background: rgba(162, 230, 53, 0.1);
  color: var(--ps-lime);
  border: 1px solid rgba(162, 230, 53, 0.25);
}
.ps-card-product:not(.featured):hover .ps-card-icon-circle {
  background: var(--ps-dark);
  color: var(--ps-lime);
  transform: rotate(-5deg) scale(1.05);
}

/* Card Typography */
.ps-card-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 10px;
  color: var(--ps-dark);
}
.ps-card-product.featured .ps-card-title { color: var(--ps-white); }

.ps-card-desc {
  font-size: 14px;
  color: var(--ps-text-muted-light);
  line-height: 1.55;
  margin-bottom: 22px;
  min-height: 42px;
}
.ps-card-product.featured .ps-card-desc { color: rgba(148,163,184,0.85); }

/* Price Box */
.ps-card-price-box {
  padding: 18px 0;
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
  margin-bottom: 22px;
}
.ps-card-product.featured .ps-card-price-box {
  border-color: rgba(255,255,255,0.08);
}
.ps-card-price-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ps-text-muted-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.ps-card-product.featured .ps-card-price-label { color: rgba(148,163,184,0.6); }
.ps-card-price-val {
  font-size: 34px;
  font-weight: 800;
  color: var(--ps-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.ps-card-price-val small {
  font-size: 13px;
  font-weight: 600;
  color: var(--ps-text-muted-light);
}
.ps-card-product.featured .ps-card-price-val         { color: var(--ps-white); }
.ps-card-product.featured .ps-card-price-val small   { color: rgba(148,163,184,0.7); }

/* Features List */
.ps-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.ps-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #3d5168;
  margin-bottom: 11px;
  line-height: 1.4;
}
.ps-card-product.featured .ps-card-features li { color: #c8d9ea; }
.ps-card-features li i {
  color: var(--ps-lime);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}
.ps-card-btn { width: 100%; }


/* ==========================================================================
   4. VPS & CLOUD INFRASTRUCTURE FEATURE
   ========================================================================== */
.ps-vps-feature-section {
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(162, 230, 53, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #07080a 0%, #0d1117 100%);
  color: var(--ps-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ps-border-dark);
  border-bottom: 1px solid var(--ps-border-dark);
}
/* Scanline texture */
.ps-vps-feature-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.008) 2px,
    rgba(255,255,255,0.008) 4px
  );
  pointer-events: none;
}

.ps-vps-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ps-vps-specs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.ps-vps-spec-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--ps-radius-md);
  padding: 22px 20px;
  transition: var(--ps-transition);
  position: relative;
  overflow: hidden;
}
.ps-vps-spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--ps-lime);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.ps-vps-spec-card:hover { border-color: rgba(162, 230, 53, 0.25); }
.ps-vps-spec-card:hover::before { transform: scaleY(1); }

.ps-vps-spec-icon {
  color: var(--ps-lime);
  font-size: 22px;
  margin-bottom: 12px;
}
.ps-vps-spec-title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--ps-white);
}
.ps-vps-spec-desc {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.8);
  line-height: 1.5;
  margin: 0;
}

/* Terminal Box */
.ps-terminal-box {
  background: #020305;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ps-radius-lg);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.8),
    0 0 0 1px rgba(162, 230, 53, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.ps-terminal-header {
  background: #0f1218;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ps-terminal-dots { display: flex; gap: 7px; }
.ps-terminal-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #2d3748;
}
.ps-terminal-dot.red    { background: #ff5f57; }
.ps-terminal-dot.yellow { background: #febc2e; }
.ps-terminal-dot.green  { background: var(--ps-lime); box-shadow: 0 0 6px rgba(162,230,53,0.6); }

.ps-terminal-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.6);
  letter-spacing: 0.8px;
  font-family: 'Courier New', monospace !important;
}
.ps-terminal-body {
  padding: 24px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #a0b4c8;
}
.ps-term-line {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ps-term-prompt {
  color: var(--ps-lime);
  font-weight: 800;
  white-space: nowrap;
}
.ps-term-node-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,0.07);
}
.ps-term-node {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--ps-radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ps-term-node-title {
  font-size: 10px;
  font-weight: 800;
  color: rgba(148,163,184,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ps-term-node-bar {
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 4px 0;
}
.ps-term-node-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ps-lime), #c8f563);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 8px rgba(162,230,53,0.4);
}


/* ==========================================================================
   5. WHY PRIVILEGESERVER
   ========================================================================== */
.ps-why-section {
  background: var(--ps-white);
  padding: 110px 0;
  position: relative;
}
/* Dot texture */
.ps-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.ps-why-section .ps-heading-lg { color: var(--ps-dark); }

.ps-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  position: relative;
}

.ps-why-card {
  background: var(--ps-white);
  border: 1.5px solid #e8edf3;
  border-radius: var(--ps-radius-lg);
  padding: 36px 28px;
  transition: var(--ps-transition);
  position: relative;
  overflow: hidden;
}
/* Decorative background number */
.ps-why-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
/* Left accent bar */
.ps-why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--ps-lime);
  border-radius: 0 2px 2px 0;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ps-why-card:hover::after { height: 100%; }
.ps-why-card:hover {
  background: #fbfcfe;
  border-color: #d1d9e3;
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.07);
}

.ps-why-number {
  font-size: 11px;
  font-weight: 800;
  color: rgba(100,116,139,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ps-why-number::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--ps-lime);
  border-radius: 1px;
}

.ps-why-icon {
  font-size: 30px;
  color: var(--ps-dark);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.ps-why-card:hover .ps-why-icon { color: var(--ps-lime); }

.ps-why-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 12px;
  color: var(--ps-dark);
}
.ps-why-text {
  font-size: 14px;
  color: var(--ps-text-muted-light);
  line-height: 1.65;
  margin: 0;
}


/* ==========================================================================
   6. HOW IT WORKS — 3-STEP PIPELINE
   ========================================================================== */
.ps-steps-section {
  background: var(--ps-dark);
  color: var(--ps-white);
  padding: 110px 0;
  border-top: 1px solid var(--ps-border-dark);
  border-bottom: 1px solid var(--ps-border-dark);
  position: relative;
  overflow: hidden;
}
.ps-steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.ps-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 64px;
}
/* Step connector arrows */
.ps-steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(33.33% + 12px);
  right: calc(33.33% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--ps-lime-border), var(--ps-lime-border));
  background-size: 8px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}

.ps-step-card {
  background: linear-gradient(160deg, #141921 0%, #0e1218 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ps-radius-lg);
  padding: 44px 32px;
  position: relative;
  transition: var(--ps-transition);
  z-index: 1;
}
.ps-step-card:hover {
  border-color: var(--ps-lime-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(162,230,53,0.06);
}
.ps-step-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--ps-lime);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  opacity: 0.9;
  text-shadow: 0 0 30px rgba(162, 230, 53, 0.3);
}
.ps-step-title {
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 12px;
  color: var(--ps-white);
}
.ps-step-desc {
  font-size: 14px;
  color: rgba(148,163,184,0.8);
  line-height: 1.65;
  margin: 0;
}


/* ==========================================================================
   7. GLOBAL INFRASTRUCTURE & AWS NETWORK
   ========================================================================== */
.ps-global-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(162, 230, 53, 0.05) 0%, transparent 65%),
    #06080a;
  color: var(--ps-white);
  padding: 110px 0;
  border-bottom: 1px solid var(--ps-border-dark);
  position: relative;
  overflow: hidden;
}
/* Animated ring */
.ps-global-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border: 1px solid rgba(162, 230, 53, 0.04);
  border-radius: 50%;
  pointer-events: none;
  animation: psRingBreath 8s ease-in-out infinite;
}
@keyframes psRingBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.05); opacity: 0.5; }
}

.ps-global-map-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--ps-border-dark);
  border-radius: var(--ps-radius-xl);
  padding: 50px 44px;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
}
/* Top accent line */
.ps-global-map-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ps-lime-border), transparent);
}

.ps-network-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ps-net-point {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--ps-lime-border);
  border-radius: var(--ps-radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: var(--ps-transition);
}
.ps-net-point:hover {
  border-left-color: var(--ps-lime);
  background: rgba(162, 230, 53, 0.03);
  transform: translateY(-3px);
}
.ps-net-point-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.ps-net-point-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--ps-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ps-net-point-stat {
  font-size: 11px;
  font-weight: 800;
  color: var(--ps-lime);
  white-space: nowrap;
  background: rgba(162, 230, 53, 0.1);
  border: 1px solid var(--ps-lime-border);
  padding: 2px 8px;
  border-radius: var(--ps-radius-full);
}
.ps-net-point-sub {
  font-size: 12px;
  color: rgba(148,163,184,0.65);
  line-height: 1.4;
}


/* ==========================================================================
   8. SPEC COMPARISON MATRIX
   ========================================================================== */
.ps-matrix-section {
  background: #fafbfd;
  padding: 110px 0;
  position: relative;
}
.ps-matrix-section .ps-heading-lg { color: var(--ps-dark); }
.ps-matrix-section .ps-subheading { color: var(--ps-text-muted-light); }

.ps-matrix-wrap {
  margin-top: 56px;
  border: 1.5px solid #e4e9f0;
  border-radius: var(--ps-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.ps-matrix-table { width: 100%; border-collapse: collapse; }
.ps-matrix-table th {
  padding: 20px 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #dde3ec;
}
.ps-matrix-table th.col-spec   { width: 45%; background: #f4f7fb; color: #334155; text-align: left; }
.ps-matrix-table th.col-others { width: 25%; background: #edf0f7; color: #64748b; text-align: center; }
.ps-matrix-table th.col-ps     { width: 30%; background: var(--ps-dark); color: var(--ps-lime); text-align: center; }

.ps-matrix-table td {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #e8edf5;
}
.ps-matrix-table td.col-spec   { color: #1e293b; background: #fff; }
.ps-matrix-table td.col-others { text-align: center; color: #64748b; background: #f8fafc; }
.ps-matrix-table td.col-ps     { text-align: center; color: #e2e8f0; background: #0e1318; font-weight: 700; }
.ps-matrix-table tr:last-child td { border-bottom: none; }
.ps-matrix-table tr:hover td.col-spec   { background: #f0f4fa; }
.ps-matrix-table tr:hover td.col-others { background: #f0f4fa; }
.ps-matrix-table tr:hover td.col-ps     { background: #121a20; }


/* ==========================================================================
   9. TESTIMONIALS
   ========================================================================== */
.ps-testimonials-section {
  background: var(--ps-dark);
  color: var(--ps-white);
  padding: 110px 0;
  border-top: 1px solid var(--ps-border-dark);
  position: relative;
}
.ps-testimonial-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.ps-testimonial-card {
  background: linear-gradient(155deg, #141921 0%, #0e1218 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--ps-radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--ps-transition);
  position: relative;
}
.ps-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px; left: 24px;
  font-size: 72px;
  line-height: 1;
  color: rgba(162, 230, 53, 0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}
.ps-testimonial-card:hover {
  border-color: rgba(162, 230, 53, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--ps-shadow-lime);
}
.ps-test-quote {
  font-size: 15px;
  font-weight: 500;
  color: rgba(226,232,240,0.9);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  padding-top: 20px;
}
.ps-test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--ps-border-dark);
}
.ps-test-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--ps-lime);
  object-fit: cover;
  box-shadow: 0 0 12px rgba(162,230,53,0.2);
}
.ps-test-name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ps-white);
}
.ps-test-role {
  font-size: 11px;
  font-weight: 600;
  color: var(--ps-lime);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ==========================================================================
   10. CONVERSION CTA BANNER
   ========================================================================== */
.ps-cta-banner-section {
  background: var(--ps-white);
  padding: 100px 0;
}

.ps-cta-banner-card {
  background:
    radial-gradient(ellipse 40% 70% at 5% 50%, rgba(162, 230, 53, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #09090b 0%, #151c22 100%);
  border: 1px solid rgba(162, 230, 53, 0.25);
  border-radius: var(--ps-radius-xl);
  padding: 70px 56px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  color: var(--ps-white);
  position: relative;
  overflow: hidden;
}
/* Grid noise overlay */
.ps-cta-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
/* Decorative right glow orb */
.ps-cta-banner-card::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(162, 230, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ps-cta-content { max-width: 680px; position: relative; z-index: 1; }
.ps-cta-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.ps-cta-desc {
  font-size: 17px;
  color: rgba(148,163,184,0.85);
  line-height: 1.6;
  margin: 0;
}
.ps-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   ANIMATIONS & SCROLL REVEALS
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-on-scroll[data-delay="1"] { transition-delay: 0.08s; }
.reveal-on-scroll[data-delay="2"] { transition-delay: 0.16s; }
.reveal-on-scroll[data-delay="3"] { transition-delay: 0.24s; }
.reveal-on-scroll[data-delay="4"] { transition-delay: 0.32s; }
.reveal-on-scroll[data-delay="5"] { transition-delay: 0.40s; }
.reveal-on-scroll[data-delay="6"] { transition-delay: 0.48s; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1280px) {
  .ps-product-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-why-grid           { grid-template-columns: repeat(2, 1fr); }
  .ps-trust-grid         { grid-template-columns: repeat(2, 1fr); }
  .ps-trust-item         { border-right: none; border-bottom: 1px solid var(--ps-border-dark); }
  .ps-trust-item:nth-child(2),
  .ps-trust-item:nth-child(4) { border-bottom: none; }
  .ps-trust-item:nth-child(odd) { border-right: 1px solid var(--ps-border-dark); }
}

@media (max-width: 1024px) {
  .ps-hero-grid  { grid-template-columns: 1fr; gap: 56px; }
  .ps-vps-grid   { grid-template-columns: 1fr; gap: 44px; }
  .ps-steps-grid::before { display: none; }
  .ps-network-points { grid-template-columns: repeat(2, 1fr); }
  .ps-cta-banner-card { flex-direction: column; text-align: center; padding: 50px 32px; }
  .ps-cta-btns  { justify-content: center; }
  .ps-hero-headline { font-size: clamp(38px, 7vw, 60px); }
}

@media (max-width: 768px) {
  .ps-section    { padding: 70px 0; }
  .ps-container  { padding: 0 20px; }
  .ps-product-cards-grid       { grid-template-columns: 1fr; }
  .ps-why-grid                 { grid-template-columns: 1fr; }
  .ps-trust-grid               { grid-template-columns: 1fr; }
  .ps-trust-item               { border-right: none; border-bottom: 1px solid var(--ps-border-dark); border-left: 3px solid var(--ps-lime-border); padding-left: 20px; }
  .ps-trust-item:last-child    { border-bottom: none; }
  .ps-trust-item:nth-child(odd){ border-right: none; }
  .ps-steps-grid               { grid-template-columns: 1fr; }
  .ps-testimonial-cards-grid   { grid-template-columns: 1fr; }
  .ps-network-points           { grid-template-columns: 1fr; }
  .ps-vps-specs-list           { grid-template-columns: 1fr; }
  .ps-matrix-table th,
  .ps-matrix-table td          { padding: 12px 14px; font-size: 12px; }
  .ps-cta-banner-card          { padding: 40px 24px; }
  .ps-card-product.featured    { transform: none; }
  .ps-hero-visual-frame        { max-width: 100%; margin-top: 18px; }
  .ps-hero-ambient-glow        { display: none; }
  .ps-hero-beacon              { display: none; }
  .ps-brand-trust-strip { padding: 18px 0; }
  .ps-brand-trust-inner { gap: 12px; }
  .ps-brand-strip-divider { display: none; }
  .ps-brand-badges { gap: 8px 10px; }
  .ps-brand-badge { padding: 6px 12px; }
  .ps-brand-badge-text { font-size: 12px; }
}

@media (max-width: 480px) {
  .ps-hero-headline { font-size: 36px; }
  .ps-hero-actions  { flex-direction: column; align-items: stretch; }
  .ps-hero-actions a { text-align: center; }
  .ps-why-grid      { grid-template-columns: 1fr; }
  .ps-infra-telemetry { grid-template-columns: 1fr; }
  .ps-tele-metric   { border-right: none; border-bottom: 1px solid var(--ps-border-dark); }
  .ps-tele-metric:last-child { border-bottom: none; }
  .ps-hero-status-pill { font-size: 10px; padding: 4px 12px; }
}

/* ─── Reduced Motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
  .ps-pulse-dot,
  .ps-hero-ambient-glow,
  .ps-hero-light-sweep,
  .ps-beacon-ring,
  .ps-global-section::after {
    animation: none !important;
  }
  .ps-hero-server-img {
    transition: none !important;
    transform: none !important;
  }
  .ps-hero-section::after { display: none; }
  * { transition-duration: 0.01ms !important; }
}

