/* ==========================================================================
   NZVPN Design System · pricing.css
   Pricing page specific styles
   ========================================================================== */

/* ---------- Page Hero ---------- */
.page-hero {
  padding-top: 72px;
  padding-bottom: 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--mist) 0%, var(--bg) 100%) top/100% 420px no-repeat;
}

.page-hero .hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero .lead {
  margin-top: 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .trust-row {
  margin-top: 18px;
  justify-content: center;
}

/* ---------- Section Head ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.section-head h2 {
  margin-top: 10px;
}

.section-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15.5px;
}

/* ---------- Plan Detail ---------- */
.plan-detail {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.plan-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

/* ---------- Purchase Guide ---------- */
.purchase-guide {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-panel);
  padding: 28px 32px;
}

.purchase-guide h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.purchase-guide p {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

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

.traffic-pack {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  min-width: 0;
}

.traffic-pack:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.pack-size {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pack-price {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.pack-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.traffic-pack .btn-ghost {
  margin-top: 20px;
  width: 100%;
  max-width: 220px;
}

/* ---------- Included List ---------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
  padding: 18px 20px;
  transition: border-color 0.15s ease;
  min-width: 0;
}

.included-item:hover {
  border-color: var(--accent);
}

.included-item svg {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 2px;
}

.included-item .included-title {
  font-size: 15px;
  font-weight: 700;
}

.included-item .included-desc {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Comparison Note ---------- */
.comparison-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Payment Methods ---------- */
.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}

.payment-methods .badge {
  font-size: 14px;
  padding: 6px 18px;
}

.payment-desc {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.7;
}

/* ---------- Refund Block ---------- */
.refund-block {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-panel);
  padding: 36px 32px;
  text-align: center;
  margin-top: 8px;
}

.refund-block h2 {
  margin-bottom: 10px;
}

.refund-block p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--bg-panel2);
  border-top: 1px solid var(--border);
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 38px);
}

.cta-band p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15.5px;
  line-height: 1.7;
}

.cta-band .btn-main {
  margin-top: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .page-hero {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .traffic-packs {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .section-head {
    margin-bottom: 28px;
  }

  .refund-block {
    padding: 28px 20px;
  }

  .refund-block h2 .no-break {
    white-space: normal;
  }

  .purchase-guide {
    padding: 22px 20px;
  }

  .traffic-pack {
    padding: 24px 18px;
  }
}