/* ─── PAGE HEADER ─────────────────────────────────── */

.page-header {
  background: var(--navy);
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.page-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-header h1 em { font-style: italic; color: var(--gold-light); }

.page-header p {
  font-size: 1.0625rem;
  color: rgba(250,250,248,0.65);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── PRICING SECTION ─────────────────────────────── */

.pricing-section {
  padding: 5rem 2rem 6rem;
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform 0.2s;
}

.pricing-card:hover { transform: translateY(-3px); }

.pricing-card--featured {
  border: 2px solid var(--gold);
  transform: translateY(-6px);
}

.pricing-card--featured:hover { transform: translateY(-9px); }

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.plan-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.75rem;
  min-height: 2.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.375rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
}

.price-currency {
  font-size: 1.25rem;
  color: var(--text-mid);
  font-weight: 300;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
}

.plan-chats {
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 400;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.plan-chats strong {
  color: var(--navy);
  font-weight: 500;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.5;
}

.feat-check {
  width: 18px;
  height: 18px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 0.875rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.plan-cta--outline {
  border: 1px solid var(--border);
  color: var(--navy);
  background: transparent;
}

.plan-cta--outline:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

.plan-cta--primary {
  background: var(--gold);
  color: var(--navy);
  border: none;
}

.plan-cta--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ─── CHAT NOTE ───────────────────────────────────── */

.chat-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.chat-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.chat-note-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.chat-note-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
}

/* ─── FAQ ─────────────────────────────────────────── */

.faq-section {
  padding: 5rem 2rem 6rem;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
}

/* ─── NAV ACTIVE STATE ────────────────────────────── */

.nav-links a.active {
  color: var(--navy);
  font-weight: 500;
}

/* ─── CONTACT NUDGE ───────────────────────────────── */

.pricing-contact-nudge {
  background: var(--off-white);
  padding: 1.75rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.pricing-contact-nudge p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
}

.pricing-contact-nudge a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-contact-nudge a:hover { color: var(--gold); }

/* ─── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-3px); }

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