/**
 * VPS marketing + configure shared layout (extends home.css).
 */
body.vpsPage {
  padding-bottom: 0;
}

.vpsHero {
  padding: 52px 0 36px;
  position: relative;
  overflow: hidden;
}

.vpsHero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(900px 380px at 18% 0%, rgba(68, 102, 255, 0.11), transparent 58%),
    radial-gradient(760px 320px at 82% 8%, rgba(57, 255, 136, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(251, 251, 253, 0));
  pointer-events: none;
}

.vpsHero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: center;
}

.vpsHero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 18, 40, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(11, 16, 32, 0.08);
  font-weight: 600;
  font-size: 14px;
  color: rgba(11, 16, 32, 0.78);
}

.vpsHero__title {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.vpsHero__sub {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(11, 16, 32, 0.72);
  max-width: 52ch;
}

.vpsHero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* Spec card (marketing hero + configure sidebar) */
.vpsSpec {
  border-radius: var(--radius2, 22px);
  border: 1px solid rgba(12, 18, 40, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow2, 0 12px 36px rgba(11, 16, 32, 0.12));
  overflow: hidden;
}

.vpsSpec__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(12, 18, 40, 0.1);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.vpsSpec__body {
  padding: 6px 0;
}

.vpsSpec__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px dotted rgba(12, 18, 40, 0.12);
  align-items: baseline;
}

.vpsSpec__row:last-child {
  border-bottom: 0;
}

.vpsSpec__k {
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 16, 32, 0.48);
}

.vpsSpec__v {
  font-weight: 650;
  font-size: 14px;
  color: rgba(11, 16, 32, 0.92);
  line-height: 1.45;
}

/* Plan grid: more than 3 plans */
body.vpsPage .pricing {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (max-width: 980px) {
  .vpsHero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.vpsPage .pricing {
    grid-template-columns: 1fr;
  }
}
