/* =============================================
   PRICING PAGE — Additional Styles
   Extends styles.css (shared design system)
   ============================================= */

/* Active nav link */
.nav-active {
  color: var(--accent) !important;
}

/* ---- Page layout ---- */
#pricing-page {
  min-height: calc(100vh - 64px);
  padding-top: 64px; /* fixed navbar offset */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Page header ---- */
.pricing-page-header {
  text-align: center;
  padding: 64px 80px 0;
}

.pricing-page-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.pricing-page-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
}

/* ---- Currency toggle ---- */
.currency-toggle-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.currency-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
}

.currency-toggle {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  padding: 3px;
  gap: 2px;
}

.currency-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 6px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.currency-btn.active {
  background: var(--border);
  color: var(--white);
}

.currency-btn:hover:not(.active) {
  color: var(--white);
}

/* ---- Pricing cards on page ---- */
.pricing-page-cards {
  margin-top: 40px;
  margin-bottom: 0;
  padding: 0 80px;
  width: 100%;
  max-width: 880px;
}

/* ---- FAQ row ---- */
.pricing-faq-row {
  margin-top: 36px;
  text-align: center;
}

.pricing-faq-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
}

.pricing-faq-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.pricing-faq-link:hover { opacity: 0.8; }

/* ---- Payment security note ---- */
.payment-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 64px;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 500px;
}

.payment-note-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.payment-note-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .pricing-page-header { padding: 48px 24px 0; }
  .pricing-page-title  { font-size: 40px; }
  .pricing-page-cards  { padding: 0 24px; }
  .payment-note        { margin: 24px 24px 48px; }
}

@media (max-width: 1024px) {
  .pricing-page-header { padding: 56px 40px 0; }
  .pricing-page-cards  { padding: 0 40px; }
}
