/* Extracted from gpu-dedicated-servers.php style block 1 */
/* ============================================================
   GPU SERVER PAGE CSS - v2.0
   Theme: Deep-Space Neural (theme-gpu)
   Primary:   #00D9FF  (electric teal / cyan)
   Secondary: #F59E0B  (neural amber)
   Accent:    #10B981  (data green)
   Dark:      #FF4B6E  (alert red - errors / danger badges)
   BG:        #060A12  (obsidian)
   ============================================================ */

body.theme-gpu {
  --color-primary:         #00D9FF;
  --color-primary-light:   #67E8F9;
  --color-primary-dark:    #0891B2;
  --color-primary-darker:  #022B36;
  --color-primary-rgb:     0, 217, 255;

  --color-secondary:       #F59E0B;
  --color-secondary-light: #FCD34D;
  --color-secondary-dark:  #D97706;
  --color-secondary-rgb:   245, 158, 11;

  --color-accent:          #10B981;
  --color-accent-light:    #34D399;
  --color-accent-rgb:      16, 185, 129;

  --gpu-red:               #FF4B6E;
  --gpu-red-rgb:           255, 75, 110;

  --border-primary:        rgba(0,217,255,0.18);
  --border-secondary:      rgba(0,217,255,0.08);

  --gradient-horizontal:   linear-gradient(90deg, #00D9FF, #10B981);
  --gradient-primary:      linear-gradient(135deg, #0891B2, #00D9FF, #10B981);
  --gradient-card-header:  linear-gradient(145deg, #022B36, #0891B2, #00D9FF);

  --shadow-md:    0 10px 20px rgba(0,217,255,0.18);
  --shadow-lg:    0 15px 30px rgba(0,217,255,0.28);
  --shadow-glow:  0 0 30px rgba(0,217,255,0.35);
}

/* ── Global background ── */
body.theme-gpu { background: #060A12; color: #CBD5E1; }

/* ── Keyframes ── */
@keyframes teal-pulse {
  0%,100% { text-shadow: 0 0 20px rgba(0,217,255,0.7), 0 0 60px rgba(0,217,255,0.3); }
  50%      { text-shadow: 0 0 40px rgba(16,185,129,0.8), 0 0 80px rgba(0,217,255,0.4); }
}
@keyframes data-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes scanline-h {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes circuit-blink {
  0%,88%,100% { opacity: 1; }
  94%          { opacity: 0.15; }
}
@keyframes float-chip {
  0%,100% { transform: translateY(0) rotate(0deg); filter: drop-shadow(0 0 14px rgba(0,217,255,0.6)); }
  50%      { transform: translateY(-10px) rotate(1deg); filter: drop-shadow(0 0 28px rgba(16,185,129,0.7)); }
}
@keyframes bar-grow {
  from { width: 0; }
}
@keyframes neural-dot {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* ── HERO ── */
.gpu-hero {
  position: relative;
  background: #060A12;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

/* Circuit-board grid */
.gpu-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,217,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Diagonal circuit traces */
.gpu-hero__traces {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.gpu-hero__trace {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0,217,255,0.25), transparent);
  height: 1px;
}
.gpu-hero__trace--1 { top: 22%; width: 60%; left: 20%; }
.gpu-hero__trace--2 { top: 55%; width: 40%; left: 5%; }
.gpu-hero__trace--3 { top: 75%; width: 50%; right: 0; }

/* Radial glow orbs */
.gpu-hero__orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.gpu-hero__orb   { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.22; }
.gpu-hero__orb--1 { width:700px;height:700px;top:-250px;left:-200px;  background:radial-gradient(circle,#00D9FF,transparent 70%); }
.gpu-hero__orb--2 { width:500px;height:500px;top:55%;right:-80px;    background:radial-gradient(circle,#10B981,transparent 70%); }
.gpu-hero__orb--3 { width:400px;height:400px;bottom:-100px;left:40%; background:radial-gradient(circle,#F59E0B,transparent 70%); opacity:0.12; }

.gpu-hero__scanline {
  position: absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(0,217,255,0.5), transparent);
  animation: scanline-h 8s linear infinite;
  pointer-events: none;
}
.gpu-hero__content { position: relative; z-index: 5; }

/* Hero badge */
.gpu-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 20px;
  border-radius: 2px;
  background: rgba(0,217,255,0.08);
  border: 1px solid rgba(0,217,255,0.45);
  color: #67E8F9;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}
.gpu-badge::before,.gpu-badge::after {
  content:""; position:absolute; width:5px; height:5px; border:1px solid #00D9FF;
  animation: circuit-blink 3s ease-in-out infinite;
}
.gpu-badge::before { top:-3px; left:-3px; border-right:none; border-bottom:none; }
.gpu-badge::after  { bottom:-3px; right:-3px; border-left:none; border-top:none; }

.gpu-hero__title {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.gpu-hero__title .teal-text {
  background: linear-gradient(90deg, #00D9FF, #10B981, #00D9FF);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: data-flow 5s ease-in-out infinite;
}
.gpu-hero__sub {
  font-size: clamp(14px,1.8vw,18px);
  color: rgba(255,255,255,0.65);
  max-width: 620px; margin: 0 auto 36px;
  line-height: 1.75;
}

/* TFLOPS counter bar */
.gpu-tflops-bar {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0; margin: 28px auto;
  border: 1px solid rgba(0,217,255,0.2);
  border-radius: 3px; overflow: hidden;
  max-width: 760px;
}
.gpu-tflops-stat {
  flex: 1; min-width: 110px;
  padding: 14px 16px; text-align: center;
  background: rgba(6,14,24,0.8);
  border-right: 1px solid rgba(0,217,255,0.15);
  backdrop-filter: blur(8px);
}
.gpu-tflops-stat:last-child { border-right: none; }
.gpu-tflops-stat__val {
  display: block; font-size: 26px; font-weight: 900;
  background: linear-gradient(90deg,#00D9FF,#10B981);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.gpu-tflops-stat__label {
  display: block; font-size: 10px; color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px;
}

/* CTA buttons */
.btn-gpu-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #0891B2, #00D9FF);
  color: #060A12 !important;
  font-weight: 900; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; text-decoration: none;
  box-shadow: 0 0 28px rgba(0,217,255,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  border: none;
}
.btn-gpu-primary:hover { box-shadow: 0 0 50px rgba(0,217,255,0.8), 0 0 100px rgba(0,217,255,0.25); transform: translateY(-2px); color: #060A12 !important; }

.btn-gpu-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 34px;
  background: transparent; color: #00D9FF !important;
  font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; text-decoration: none;
  border: 1px solid rgba(0,217,255,0.5);
  transition: all 0.3s ease;
}
.btn-gpu-outline:hover { background: rgba(0,217,255,0.1); color: #fff !important; border-color: rgba(0,217,255,0.9); }

/* ── SECTION LABELS ── */
.gpu-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 16px; font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #00D9FF; border: 1px solid rgba(0,217,255,0.3);
  border-radius: 2px; background: rgba(0,217,255,0.07);
  margin-bottom: 16px;
}
.gpu-section-title {
  font-size: clamp(26px,3.5vw,44px); font-weight: 900;
  color: #fff; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 10px;
}
.gpu-section-sub {
  font-size: 15px; color: rgba(255,255,255,0.5);
  max-width: 580px; margin: 0 auto 60px; line-height: 1.7;
}

/* ── PLAN CARDS ── */
.gpu-plans { background: #080E18; padding: 80px 0; border-top: 1px solid rgba(0,217,255,0.1); }

.gpu-plan-card {
  background: linear-gradient(160deg, #0A1220, #0D1628);
  border: 1px solid rgba(0,217,255,0.2);
  border-radius: 3px; overflow: hidden; position: relative;
  transition: all 0.4s ease; margin-bottom: 28px;
}
.gpu-plan-card:hover {
  border-color: rgba(0,217,255,0.65);
  box-shadow: 0 0 50px rgba(0,217,255,0.25), 0 0 100px rgba(0,217,255,0.08);
  transform: translateY(-3px);
}
.gpu-plan-card--featured { border-color: rgba(0,217,255,0.5); box-shadow: 0 0 30px rgba(0,217,255,0.18); }
.gpu-plan-card--oos { opacity: 0.45; filter: grayscale(0.6); pointer-events: none; }
.btn-gpu-oos {
  display:inline-flex;align-items:center;gap:8px;padding:12px 26px;
  background:rgba(255,255,255,0.05);color:rgba(255,255,255,0.35) !important;
  font-weight:700;font-size:12px;letter-spacing:1.5px;text-transform:uppercase;
  border-radius:2px;border:1px solid rgba(255,255,255,0.12);cursor:not-allowed;
}
.gpu-plan-card--featured::before {
  content: "RECOMMENDED"; position: absolute; top: -1px; right: 28px;
  background: linear-gradient(90deg, #0891B2, #10B981);
  color: #060A12; font-size: 10px; font-weight: 900; letter-spacing: 2px;
  padding: 4px 16px; border-radius: 0 0 3px 3px; z-index: 5;
}
.gpu-plan-card::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 60px; height: 2px; background: linear-gradient(90deg, #00D9FF, transparent);
}

.gpu-plan-header {
  background: linear-gradient(145deg, #022B36, #0A4A5E, #0891B2);
  padding: 20px 28px 16px; border-bottom: 1px solid rgba(0,217,255,0.18);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.gpu-plan-chip-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 2px; font-size: 10px;
  font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
}
.gpu-plan-chip-badge--intel { background: rgba(0,100,180,0.2); border: 1px solid rgba(0,100,180,0.5); color: #60A5FA; }
.gpu-plan-chip-badge--amd   { background: rgba(210,37,45,0.15); border: 1px solid rgba(210,37,45,0.4); color: #FCA5A5; }

.gpu-plan-title-text { font-size: 20px; font-weight: 900; color: #fff; margin: 8px 0 0; letter-spacing: -0.3px; }

.gpu-plan-images {
  display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0;
}
.gpu-plan-images img {
  max-height: 52px; filter: drop-shadow(0 0 12px rgba(0,217,255,0.5));
  animation: float-chip 4s ease-in-out infinite;
}
.gpu-plan-images img:nth-child(2) { animation-delay: -2s; }

.gpu-plan-body { padding: 22px 28px; }
.gpu-specs-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-bottom: 0; }

.gpu-spec-item {
  display: flex; align-items: flex-start; gap: 8px; padding: 9px 11px;
  background: rgba(0,217,255,0.04); border: 1px solid rgba(0,217,255,0.1);
  border-radius: 2px; transition: all 0.25s ease;
}
.gpu-spec-item:hover { background: rgba(0,217,255,0.1); border-color: rgba(0,217,255,0.3); }
.gpu-spec-item i { color: #00D9FF; font-size: 13px; margin-top: 1px; flex-shrink: 0; }
.gpu-spec-label { font-size: 9px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.gpu-spec-value { font-size: 11px; color: #CBD5E1; font-weight: 700; display: block; line-height: 1.3; }
.gpu-spec-item--gpu { border-color: rgba(0,217,255,0.25); background: rgba(0,217,255,0.07); }
.gpu-spec-item--gpu i { color: #00D9FF; }
.gpu-spec-item--gpu .gpu-spec-value { color: #67E8F9; }

.gpu-plan-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px 22px; border-top: 1px solid rgba(0,217,255,0.1);
  gap: 16px; flex-wrap: wrap;
}
.gpu-price-amount { font-size: 40px; font-weight: 900; color: #fff; line-height: 1; }
.gpu-price-period { font-size: 13px; color: rgba(255,255,255,0.4); }

/* Switch pill (Intel / AMD toggle) */
.gpu-switch-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px; text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px; transition: all 0.3s ease;
}
.gpu-switch-pill img { height: 18px; filter: brightness(0) invert(1); }
.gpu-switch-pill--intel { background: linear-gradient(135deg,#0050A0,#176ea5); color: #fff; }
.gpu-switch-pill--amd   { background: linear-gradient(135deg,#8A1B20,#D6252B); color: #fff; }
.gpu-switch-pill:hover  { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.35); }

/* ── COMPUTE FEATURES (performance section) ── */
.gpu-perf { background: #060A12; padding: 90px 0; border-top: 1px solid rgba(0,217,255,0.1); }

.gpu-perf-card {
  background: linear-gradient(145deg, #0A1220, #0D1628);
  border: 1px solid rgba(0,217,255,0.15); border-radius: 3px;
  padding: 28px 22px; position: relative; overflow: hidden;
  transition: all 0.35s ease; height: 100%;
}
.gpu-perf-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--perf-accent, linear-gradient(90deg, #00D9FF, #10B981));
}
.gpu-perf-card:hover {
  transform: translateY(-6px); border-color: rgba(0,217,255,0.5);
  box-shadow: 0 20px 60px rgba(0,217,255,0.15);
}
.gpu-perf-icon {
  width: 56px; height: 56px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; flex-shrink: 0;
}
.gpu-perf-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.gpu-perf-desc  { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.65; margin: 0; }

/* ── GPU SPEC PANEL ── */
.gpu-spec-panel {
  background: #080E18; padding: 90px 0;
  border-top: 1px solid rgba(0,217,255,0.1);
  border-bottom: 1px solid rgba(0,217,255,0.1);
}
.spec-terminal {
  background: #070C14; border: 1px solid rgba(0,217,255,0.25);
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 0 40px rgba(0,217,255,0.1);
}
.spec-terminal-bar {
  background: #0D1628; padding: 9px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(0,217,255,0.15);
}
.spec-terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.spec-terminal-title { font-size: 12px; color: rgba(255,255,255,0.35); margin-left: 8px; letter-spacing: 1px; font-family: monospace; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 20px; border-bottom: 1px solid rgba(0,217,255,0.07);
  gap: 12px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key   { font-size: 12px; color: rgba(255,255,255,0.4); font-family: monospace; letter-spacing: 0.5px; }
.spec-val   { font-size: 13px; font-weight: 700; color: #CBD5E1; text-align: right; font-family: monospace; }
.spec-val--teal   { color: #00D9FF; }
.spec-val--green  { color: #10B981; }
.spec-val--amber  { color: #F59E0B; }
.spec-bar-wrap { height: 3px; background: rgba(0,217,255,0.1); border-radius: 2px; margin-top: 4px; overflow: hidden; min-width: 80px; }
.spec-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg,#00D9FF,#10B981); animation: bar-grow 1.5s ease-out both; }

/* ── AI STACK ── */
.gpu-ai-stack { background: #060A12; padding: 90px 0; }
.ai-stack-card {
  background: #0A1220; border: 1px solid rgba(0,217,255,0.15);
  border-radius: 3px; padding: 20px 22px; text-align: center;
  transition: all 0.3s ease; height: 100%;
}
.ai-stack-card:hover {
  border-color: rgba(0,217,255,0.5); transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,217,255,0.15);
}
.ai-stack-card-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.ai-stack-card-name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.ai-stack-card-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.55; margin: 0; }

/* Neural network decorative SVG dots */
.neural-dots {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  padding: 20px 0; opacity: 0.35;
}
.neural-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00D9FF;
  animation: neural-dot 2s ease-in-out infinite;
}
.neural-dot:nth-child(2n)   { background: #10B981; animation-delay: -.5s; }
.neural-dot:nth-child(3n)   { background: #F59E0B; animation-delay: -1s; }
.neural-dot:nth-child(4n)   { background: #00D9FF; animation-delay: -1.5s; }

/* ── COMPARISON TABLE ── */
.gpu-comparison { background: #080E18; padding: 90px 0; border-top: 1px solid rgba(0,217,255,0.1); }

.gpu-compare-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.gpu-compare-table {
  background: #0A1220; border: 1px solid rgba(0,217,255,0.18);
  border-radius: 3px; overflow: hidden;
}
.gpu-compare-header {
  display: grid; grid-template-columns: 1.4fr repeat(4,1fr);
  background: linear-gradient(145deg, #022B36, #0A4A5E);
  padding: 18px 22px; align-items: center;
  border-bottom: 1px solid rgba(0,217,255,0.2);
  gap: 0;
}
.gpu-compare-head-cell {
  text-align: center; font-size: 12px; font-weight: 800;
  color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase;
  padding: 0 8px;
}
.gpu-compare-head-cell:first-child { text-align: left; }
.gpu-compare-head-cell--us {
  color: #00D9FF;
  border-bottom: 2px solid #00D9FF;
  padding-bottom: 6px;
}
.gpu-compare-head-cell img { max-height: 22px; margin-bottom: 6px; display: block; margin-left: auto; margin-right: auto; }

.gpu-compare-row {
  display: grid; grid-template-columns: 1.4fr repeat(4,1fr);
  padding: 12px 22px; border-bottom: 1px solid rgba(0,217,255,0.06);
  align-items: center; gap: 0; transition: background 0.2s ease;
}
.gpu-compare-row:hover { background: rgba(0,217,255,0.03); }
.gpu-compare-row:last-child { border-bottom: none; }

.gpu-compare-cell {
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.55); padding: 0 8px;
}
.gpu-compare-cell:first-child { text-align: left; font-size: 12px; color: rgba(255,255,255,0.4); font-family: monospace; letter-spacing: 0.3px; }
.gpu-compare-cell--us   { color: #67E8F9; font-weight: 700; font-size: 12px; }
.gpu-compare-cell--good { color: #10B981; font-weight: 700; }
.gpu-compare-cell--bad  { color: rgba(255,75,110,0.75); }

/* perf bars inside comparison */
.cmp-bar-wrap { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 3px; }
.cmp-bar-fill { height: 100%; border-radius: 2px; animation: bar-grow 1.5s ease-out both; }
.cmp-bar-fill--us   { background: linear-gradient(90deg,#00D9FF,#10B981); }
.cmp-bar-fill--other{ background: rgba(255,255,255,0.25); }

/* ── OPTIONS / ADD-ONS ── */
.gpu-options { background: #060A12; padding: 80px 0; }
.gpu-option-card {
  background: #0A1220; border: 1px solid rgba(0,217,255,0.15);
  border-radius: 3px; overflow: hidden;
}
.gpu-option-header {
  background: linear-gradient(145deg,#022B36,#0A4A5E);
  padding: 14px 20px; display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(0,217,255,0.2);
}
.gpu-option-header i { color: #00D9FF; font-size: 16px; }
.gpu-option-header-title { font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.gpu-option-body { padding: 18px 20px; }
.gpu-option-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(0,217,255,0.06); gap: 10px;
}
.gpu-option-row:last-child { border-bottom: none; }
.gpu-option-key   { font-size: 12px; color: rgba(255,255,255,0.5); font-family: monospace; }
.gpu-option-val   { font-size: 13px; font-weight: 700; color: #00D9FF; font-family: monospace; }
.gpu-option-val--free { color: #10B981; }

/* ── FAQ ── */
.gpu-faq { background: #080E18; padding: 90px 0; border-top: 1px solid rgba(0,217,255,0.1); }
.gpu-faq-item {
  background: #0A1220; border: 1px solid rgba(0,217,255,0.12);
  border-radius: 3px; padding: 22px; margin-bottom: 14px;
  position: relative; overflow: hidden; transition: all 0.3s ease;
}
.gpu-faq-item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg,#00D9FF,#10B981); opacity: 0; transition: opacity 0.3s;
}
.gpu-faq-item:hover { border-color: rgba(0,217,255,0.4); box-shadow: 0 0 20px rgba(0,217,255,0.1); }
.gpu-faq-item:hover::before { opacity: 1; }
.gpu-faq-q { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.gpu-faq-q i { color: #00D9FF; font-size: 12px; flex-shrink: 0; }
.gpu-faq-a { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 0; padding-left: 22px; }

/* ── SUPPORT / CTA ── */
.gpu-support {
  background: linear-gradient(rgba(4,8,14,0.93),rgba(4,8,14,0.93)),
              url(https://cdn.underhost.com/images/supportbg.jpg) center/cover;
  padding: 90px 0; border-top: 1px solid rgba(0,217,255,0.1);
}
.gpu-cta {
  background: #060A12; padding: 100px 0; position: relative; overflow: hidden;
  border-top: 1px solid rgba(0,217,255,0.1);
}
.gpu-cta__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0,217,255,0.08), transparent 70%);
  pointer-events: none;
}
.gpu-cta__box {
  position: relative; padding: 60px 40px;
  border-radius: 3px;
  border: 1px solid rgba(0,217,255,0.4);
  background: #080E18;
  box-shadow: 0 0 60px rgba(0,217,255,0.15);
  text-align: center;
}
.gpu-cta__title {
  font-size: clamp(30px,4.5vw,56px); font-weight: 900; color: #fff;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 16px;
}

/* ── animate-on-scroll ── */
.animate-on-scroll {
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .gpu-specs-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 991px) {
  .gpu-specs-grid { grid-template-columns: repeat(2,1fr); }
  .gpu-compare-header, .gpu-compare-row { grid-template-columns: 1fr repeat(4,0.9fr); font-size:11px; padding: 10px 14px; }
  .gpu-plan-header { flex-direction: column; align-items: flex-start; }
  .gpu-plan-images { flex-direction: row; justify-content: center; }
}
@media (max-width: 768px) {
  .gpu-specs-grid { grid-template-columns: repeat(2,1fr); }
  .gpu-tflops-bar { flex-direction: column; }
  .gpu-tflops-stat { border-right: none; border-bottom: 1px solid rgba(0,217,255,0.1); }
  .gpu-tflops-stat:last-child { border-bottom: none; }
  .gpu-comparison { padding: 70px 0; }
  .gpu-compare-scroll {
    margin: 0 -15px;
    padding: 0 15px 10px;
  }
  .gpu-compare-table {
    display: block;
    min-width: 760px;
  }
  .gpu-cta__box { padding: 40px 20px; }
  .gpu-plan-footer { justify-content: center; text-align: center; }
  .faq-grid-gpu { grid-template-columns: 1fr !important; }
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,.wow,.gpu-hero__scanline,
  .gpu-badge::before,.gpu-badge::after,
  .gpu-hero__title,.gpu-plan-images img,
  .neural-dot,.spec-bar-fill,.cmp-bar-fill { animation: none !important; transition: none !important; }
}
