/* ============================================================
   VPNDK Design System — pricing.css
   Pricing page specific styles
   ============================================================ */

/* ================= Pricing Hero ================= */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 48px;
}

.pricing-hero .hero-halo {
  position: absolute;
  width: 600px;
  height: 400px;
  right: -100px;
  top: -80px;
  background: radial-gradient(ellipse at center, var(--halo) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
  animation: soften 9s ease-in-out infinite;
}

.pricing-hero .shell {
  position: relative;
  z-index: 1;
}

.pricing-hero h1 {
  margin-bottom: 16px;
}

.pricing-hero .pitch-sub {
  max-width: 560px;
  margin-bottom: 24px;
}

/* ================= Traffic Packs ================= */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.pack-card {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--rad-l);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.pack-card:hover {
  border-color: var(--tint-acc-bd);
  transform: translateY(-2px);
  box-shadow: var(--shade-card);
}

.pack-card .pack-cap {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 8px;
}

.pack-card .pack-price {
  font-family: var(--ff-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--c-acc);
  line-height: 1.1;
  margin-bottom: 6px;
}

.pack-card .pack-data {
  font-size: 14px;
  color: var(--c-dim);
  margin-bottom: 16px;
}

.pack-card .pack-note {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-dim);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ================= Include List ================= */
.include-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-top: 24px;
}

.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--c-ink);
  padding: 14px 16px;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--rad-m);
  min-width: 0;
}

.include-list li .tick {
  flex: none;
  margin-top: 3px;
}

/* ================= Comparison Table ================= */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 13.5px;
}

.compare-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-dim);
  background: var(--c-panel2);
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-line);
  white-space: nowrap;
}

.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
  vertical-align: middle;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: var(--c-panel2);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--c-dim);
}

.compare-table .yes {
  color: var(--c-ok);
  font-weight: 700;
}

/* ================= Payment & Refund ================= */
.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--rad-pill);
  padding: 10px 22px;
  min-height: 44px;
}

.refund-panel {
  background: var(--c-panel2);
  border: 1px solid var(--tint-acc-bd);
  border-radius: var(--rad-l);
  padding: 32px;
  margin-top: 20px;
  text-align: center;
}

.refund-panel .refund-title {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 10px;
}

.refund-panel p {
  font-size: 14.5px;
  color: var(--c-dim);
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= Mini FAQ ================= */
.pricing-faq {
  max-width: 820px;
  margin: 0 auto;
  margin-top: 24px;
}

/* ================= Bottom CTA ================= */
.bottom-cta {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--c-line);
}

.bottom-cta h2 {
  margin-bottom: 12px;
}

.bottom-cta p {
  color: var(--c-dim);
  margin-bottom: 24px;
}

/* ================= Responsive ================= */
@media (max-width: 1120px) {
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .include-list {
    grid-template-columns: 1fr;
  }
  .refund-panel {
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding-top: 40px;
    padding-bottom: 36px;
  }
  .pack-card {
    padding: 22px;
  }
  .pay-chip {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-hero .hero-halo {
    animation: none !important;
  }
}