/* Legal & pricing pages (Paddle verification set) */
.page-head h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
}

.page-meta {
  margin-top: 14px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.legal-body {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.legal-item p + p {
  margin-top: 7px;
}

.legal-item p a {
  color: var(--blue);
  font-weight: 750;
}

.contact-line {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-line strong {
  display: block;
  font-size: 14px;
}

.contact-line a {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

/* Pricing */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(10, 11, 15, 0.9);
}

.plan-card.featured {
  border-color: rgba(201, 255, 44, 0.6);
  box-shadow: 0 24px 70px rgba(201, 255, 44, 0.1);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 22px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #101300;
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.plan-name {
  font-size: 19px;
  font-weight: 920;
}

.plan-price {
  margin-top: 14px;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.plan-price small {
  margin-left: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.plan-desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.plan-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.plan-list li {
  position: relative;
  padding-left: 24px;
  color: #d4dae5;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.5;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
}

.faq-list details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.6;
}

.faq-list details p a {
  color: var(--blue);
  font-weight: 750;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.btn:disabled::after,
.btn[disabled]::after {
  display: none;
}

@media (max-width: 900px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}
