/* ===========================================================
   VORS · Pricing
   =========================================================== */
.vors-price-hero {
  position: relative;
  background-color: var(--bg-invert);
  border-radius: var(--radius-xl);
  padding: 3rem;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 767px) { .vors-price-hero { padding: 2rem; min-height: 260px; } }

.vors-price-hero__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

.vors-price-hero__big {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 100;
  line-height: 0.9;
  font-size: clamp(5rem, 9vw, 8.5rem);
  background: linear-gradient(180deg, #fff 0%, var(--brand-vivid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
}

.vors-price-hero__unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.vors-price-hero__drop {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  color: var(--brand-vivid);
  opacity: 0.18;
  pointer-events: none;
}
@media (max-width: 767px) {
  .vors-price-hero__drop { width: 240px; height: 240px; bottom: -60px; right: -60px; }
}

/* Боковые карточки */
.vors-price-side {
  background-color: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .vors-price-side { min-height: 360px; }
}
.vors-price-side--white {
  background-color: var(--bg);
}
.vors-price-side__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  display: block;
  margin-bottom: 1.25rem;
}

.vors-price-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.vors-price-side__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink);
}
.vors-price-side__item svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

.vors-price-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.vors-price-example:last-child { border-bottom: none; }
.vors-price-example__size {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9375rem;
  color: var(--ink-2);
}
.vors-price-example__sum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.vors-price-footnote {
  margin-top: 2rem;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--ink-3);
}
