/* ============================================================
   vps.css — Page-specific styles for vps-hosting.php
   Shared components (nav, footer, pricing, FAQ, compare,
   migration, steps, payment, testimonials) are in
   base.css + theme.css + components.css.
   ============================================================ */

/* ── VPS HERO ─────────────────────────────────────────────── */
.vps-hero-wrapper {
  position: relative;
  padding: 160px 0;
  background: radial-gradient(ellipse 70% 60% at 50% -20%, rgba(47,134,255,.12), transparent), #06090f;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
body.light-mode .vps-hero-wrapper {
  background: radial-gradient(ellipse 70% 60% at 50% -20%, rgba(47,134,255,.08), transparent), #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.vps-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(47,134,255,.1);
  color: var(--brand-blue);
  border: 1px solid rgba(47,134,255,.25);
  border-radius: 50px;
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 1.5rem;
}

.vps-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.35; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 1.25rem;
}
body.light-mode .vps-hero-title { color: #0f172a; }
.vps-hero-title .grad {
  background: linear-gradient(135deg, var(--brand-blue), #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.vps-hero-sub { font-size: 1.15rem; color: #94a3b8; max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.6; }
body.light-mode .vps-hero-sub { color: #475569; }

.vps-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

.vps-btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), #1d6fd6);
  color: #fff; font-weight: 700; padding: 14px 28px; border-radius: 12px;
  text-decoration: none; font-size: 1rem; transition: all .3s;
  box-shadow: 0 8px 24px rgba(47,134,255,.35);
}
.vps-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(47,134,255,.5); color: #fff; }

.vps-btn-secondary {
  background: rgba(255,255,255,.05); color: #cbd5e1; font-weight: 600;
  padding: 14px 28px; border-radius: 12px; text-decoration: none; font-size: 1rem;
  border: 1px solid rgba(255,255,255,.1); transition: all .3s;
}
.vps-btn-secondary:hover { background: rgba(255,255,255,.1); color: #fff; }
body.light-mode .vps-btn-secondary { color: #475569; border-color: rgba(0,0,0,.1); background: rgba(0,0,0,.03); }
body.light-mode .vps-btn-secondary:hover { background: rgba(0,0,0,.06); color: #0f172a; }

/* ── VPS MOCKUP — Terminal + Stats ──────────────────────── */
.vps-mockup {
  max-width: 900px; margin: 0 auto;
  background: #0d1526;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255,255,255,.1); border-bottom: none;
  box-shadow: 0 -10px 60px rgba(47,134,255,.08), 0 30px 60px rgba(0,0,0,.5);
  overflow: hidden;
  transform: perspective(1200px) rotateX(3deg);
  transition: transform .5s ease;
}
body.light-mode .vps-mockup { background: #f8fafc; border-color: rgba(0,0,0,.1); }
.vps-mockup:hover { transform: perspective(1200px) rotateX(0deg) translateY(-6px); }

.vps-mockup-bar { background: #1e293b; padding: 10px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.05); }
body.light-mode .vps-mockup-bar { background: #e2e8f0; }

.vps-dots { display: flex; gap: 6px; }
.vps-dot { width: 12px; height: 12px; border-radius: 50%; }
.vps-dot.r { background: #ff5f56; } .vps-dot.y { background: #ffbd2e; } .vps-dot.g { background: #27c93f; }

.vps-url-bar {
  flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px; padding: 5px 12px; font-size: .8rem; color: #64748b;
  font-family: 'Courier New', monospace; text-align: center; letter-spacing: .02em;
}
body.light-mode .vps-url-bar { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.1); }

.vps-mockup-body { display: grid; grid-template-columns: 1fr 260px; min-height: 300px; }

.vps-terminal { background: #0a0f1e; padding: 20px 24px; font-family: 'Courier New', monospace; font-size: .82rem; border-right: 1px solid rgba(255,255,255,.05); }
body.light-mode .vps-terminal { background: #0f172a; }

.t-prompt { color: #22c55e; font-weight: 700; }
.t-sep { color: #64748b; } .t-path { color: #60a5fa; } .t-hash { color: #94a3b8; } .t-cmd { color: #e2e8f0; }
.t-blink { animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

.vps-resource-bars { margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.vps-res-row   { display: flex; align-items: center; gap: 10px; }
.vps-res-label { color: #60a5fa; font-weight: 700; width: 38px; font-size: .78rem; }
.vps-res-track { flex: 1; height: 8px; background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
.vps-res-fill  { height: 100%; border-radius: 4px; }
.vps-res-fill.cpu  { background: linear-gradient(90deg, var(--brand-blue), #60a5fa); }
.vps-res-fill.mem  { background: linear-gradient(90deg, #a855f7, #c084fc); }
.vps-res-fill.disk { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.vps-res-fill.net  { background: linear-gradient(90deg, #22c55e, #4ade80); }
.vps-res-val   { color: #94a3b8; font-size: .75rem; width: 80px; text-align: right; }

.vps-proc-table  { margin-top: 16px; }
.vps-proc-header { display: grid; grid-template-columns: 50px 60px 50px 50px 1fr; gap: 8px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #64748b; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.vps-proc-row    { display: grid; grid-template-columns: 50px 60px 50px 50px 1fr; gap: 8px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.03); color: #94a3b8; font-size: .78rem; }
.vps-proc-row:hover { color: #e2e8f0; }
.vps-proc-row span:last-child { color: #60a5fa; }

.vps-info-panel { padding: 20px 18px; display: flex; flex-direction: column; gap: 14px; background: #111827; }
body.light-mode .vps-info-panel { background: #fff; }

.vps-info-card { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 12px 14px; }
body.light-mode .vps-info-card { background: #f8fafc; border-color: rgba(0,0,0,.08); }

.vps-info-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(47,134,255,.12); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.vps-info-icon.mem-c  { background: rgba(168,85,247,.12); color: #a855f7; }
.vps-info-icon.disk-c { background: rgba(245,158,11,.12);  color: #f59e0b; }
.vps-info-icon.net-c  { background: rgba(34,197,94,.12);   color: #22c55e; }

.vps-info-val   { font-size: .9rem; font-weight: 700; color: #fff; line-height: 1.35; }
body.light-mode .vps-info-val { color: #0f172a; }
.vps-info-label { font-size: .72rem; color: #64748b; }

.vps-perf-strip { background: #07090f; border-top: 1px solid rgba(255,255,255,.05); padding: 12px 20px; display: flex; gap: 30px; align-items: center; justify-content: center; flex-wrap: wrap; }
body.light-mode .vps-perf-strip { background: #e8f0fe; border-top-color: rgba(0,0,0,.06); }

.vps-perf-item { display: flex; align-items: center; gap: 8px; }
.vps-perf-item .vps-perf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-blue); box-shadow: 0 0 8px var(--brand-blue); }
.vps-perf-item span   { font-size: .75rem; color: #94a3b8; font-weight: 600; }
.vps-perf-item strong { color: #60a5fa; font-size: .8rem; }
body.light-mode .vps-perf-item span { color: #475569; }

@media (max-width: 768px) { .vps-mockup-body { grid-template-columns: 1fr; } .vps-info-panel { display: none; } }

/* ── VPS FEATURES BAR ─────────────────────────────────────── */
.vps-features-bar { background: #06090f; border-bottom: 1px solid rgba(255,255,255,.05); padding: 40px 0; }
body.light-mode .vps-features-bar { background: #f8fafc; border-color: rgba(0,0,0,.05); }

.vps-feat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 991px) { .vps-feat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) {
  .vps-feat-grid { grid-template-columns: 1fr; }
  .vps-feat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }
  .vps-feat-text { text-align: center; }
}

.vps-feat-item { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 14px; transition: all .3s; }
body.light-mode .vps-feat-item { background: #fff; border-color: rgba(0,0,0,.08); box-shadow: 0 4px 12px rgba(0,0,0,.02); }
.vps-feat-item:hover { border-color: var(--brand-blue); transform: translateY(-3px); }

.vps-feat-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: rgba(47,134,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--brand-blue); }
.vps-feat-text strong { display: block; font-size: .9rem; font-weight: 700; color: #f1f5f9; margin-bottom: 2px; }
body.light-mode .vps-feat-text strong { color: #0f172a; }
.vps-feat-text span { font-size: .78rem; color: #64748b; }

/* VPS feature section heading light mode */
body.light-mode .vps-feature-title { color: #0f172a !important; }

/* ── PRICING CARD ORDER BUTTONS (full-width inside cards) ─── */
.hmk-order-btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 13px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all .25s ease;
  min-height: 50px;
  color: #fff !important;
  letter-spacing: 0.03em;
  margin-top: auto;
}
.hmk-order-btn-full:hover {
  transform: translateY(-2px);
  color: #fff !important;
  filter: brightness(1.1);
}

.go-blue        { background: linear-gradient(135deg, var(--brand-blue), #1ea9df);  box-shadow: 0 10px 24px rgba(47,134,255,.25); }
.go-blue-solid  { background: linear-gradient(135deg, #1d6fd6, var(--brand-blue));  box-shadow: 0 10px 24px rgba(47,134,255,.35); border: 1px solid rgba(255,255,255,.15); }
.go-orange      { background: linear-gradient(135deg, #ff8a2d, #ff6f1a);            box-shadow: 0 10px 24px rgba(255,138,45,.25); }
.go-purple      { background: linear-gradient(135deg, #b56dff, #8b4dff);            box-shadow: 0 10px 24px rgba(181,109,255,.25); }

.go-blue:hover        { box-shadow: 0 14px 30px rgba(47,134,255,.38); }
.go-blue-solid:hover  { box-shadow: 0 14px 30px rgba(47,134,255,.45); }
.go-orange:hover      { box-shadow: 0 14px 30px rgba(255,138,45,.38); }
.go-purple:hover      { box-shadow: 0 14px 30px rgba(181,109,255,.38); }

/* ── GHOST OUTLINE BUTTON (zigzag section CTA) ───────────── */
.zz-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: 14px;
  background: transparent;
  border: 1.5px solid rgba(47,134,255,.5);
  color: var(--brand-blue) !important;
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 0 18px rgba(47,134,255,.12);
}
.zz-btn-ghost:hover {
  background: rgba(47,134,255,.08);
  border-color: var(--brand-blue);
  box-shadow: 0 0 28px rgba(47,134,255,.28);
  transform: translateY(-2px);
  color: var(--brand-blue) !important;
}
body.light-mode .zz-btn-ghost {
  border-color: var(--brand-blue);
  color: var(--brand-blue) !important;
}

/* ── ZIGZAG SECTION ──────────────────────────────────────── */
.zigzag-section { padding: 100px 0; background: #06090f; border-top: 1px solid rgba(255,255,255,.05); }
body.light-mode .zigzag-section { background: #f8fafc; border-color: rgba(0,0,0,.05); }

.zz-row { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.zz-row:last-child { margin-bottom: 0; }
.zz-content { flex: 1; }
.zz-visual  { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }

@media (max-width: 991px) {
  .zz-row { flex-direction: column; gap: 40px; margin-bottom: 80px; text-align: center; }
  .zz-row.reverse { flex-direction: column-reverse; }
  .zz-visual { display: block; }
  .zz-feature-box { text-align: center; margin-bottom: 20px; }
  .zz-feature-box:last-child { margin-bottom: 0; }
  .zz-feature-box.zz-offset { transform: none !important; }
  .zz-icon { margin: 0 auto 10px !important; }
  .zz-feature-box h4 { text-align: center; }
  .zz-feature-box p  { text-align: center; }
}

.zz-kicker { color: var(--brand-blue); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; display: block; margin-bottom: 10px; }
.zz-title { color: #fff; font-size: 2.2rem; font-weight: 800; line-height: 1.35; margin-bottom: 20px; }
body.light-mode .zz-title { color: #0f172a; }
.zz-desc { color: #94a3b8; font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }
body.light-mode .zz-desc { color: #475569; }

.zz-feature-box { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 24px; transition: all .3s; }
body.light-mode .zz-feature-box { background: #fff; border-color: rgba(0,0,0,.08); box-shadow: 0 5px 20px rgba(0,0,0,.02); }
.zz-feature-box:hover { border-color: var(--brand-blue); transform: translateY(-5px); }
.zz-feature-box.zz-offset { transform: translateY(30px); }
.zz-feature-box.zz-offset:hover { transform: translateY(25px); }

.zz-icon { width: 45px; height: 45px; background: rgba(47,134,255,.1); color: var(--brand-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 0 10px; }
.zz-feature-box h4 { color: #fff; font-size: 1.05rem; font-weight: 700; margin: 10px 0 8px; }
body.light-mode .zz-feature-box h4 { color: #0f172a; }
.zz-feature-box p { color: #64748b; font-size: .9rem; line-height: 1.5; margin: 0; }
body.light-mode .zz-feature-box p { color: #475569; }

/* ── VPS PERFORMANCE BANNER ──────────────────────────────── */
.vps-perf-section {
  background: linear-gradient(135deg, #0a1628, #0c1a38);
  border-top: 1px solid rgba(47,134,255,.15);
  border-bottom: 1px solid rgba(47,134,255,.15);
  padding: 60px 0;
}
body.light-mode .vps-perf-section { background: linear-gradient(135deg,#eff6ff,#f0f7ff); border-color: rgba(47,134,255,.2); }

.vps-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
@media (max-width: 768px) { .vps-stat-grid { grid-template-columns: repeat(2,1fr); } }

.vps-stat-num   { font-size: 2rem; font-weight: 800; letter-spacing: -0.01em; color: var(--brand-blue); line-height: 1; margin-bottom: 6px; }
.vps-stat-label { font-size: .9rem; color: #94a3b8; font-weight: 600; }
body.light-mode .vps-stat-label { color: #475569; }
body.light-mode .vps-stat-num   { color: var(--brand-blue-dark); }

/* ── PRICING LIGHT MODE OVERRIDES (VPS) ──────────────────── */
body.light-mode .hmk-pricing-section { background: #f1f5f9 !important; border-color: rgba(0,0,0,.05) !important; }
body.light-mode .hmk-pricing-title    { color: #0f172a !important; }
body.light-mode .hmk-pricing-subtitle { color: #475569 !important; }
.hmk-popular-card.vps-popular { border: 2px solid var(--brand-blue) !important; box-shadow: 0 10px 30px rgba(47,134,255,.15); }

/* ── FAQ SECTION BG ──────────────────────────────────────── */
.hmk-faq-section { background: #06090f; border-top: 1px solid rgba(255,255,255,.05); }
body.light-mode .hmk-faq-section { background: #f8fafc !important; border-color: rgba(0,0,0,.05) !important; }
