/* =============================================================
   NorthReach — Pricing Page
   ============================================================= */

.pr-page {
  min-height: 100vh;
  background: #060f1a;
}

/* Active nav link */
.nav__link--active { color: #ffffff !important; }


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.pr-hero {
  padding: 80px 24px 60px;
  text-align: center;
  border-bottom: 0.5px solid #0d1f30;
}

.pr-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #378ADD;
  margin-bottom: 16px;
}

.pr-hero__title {
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.pr-hero__sub {
  font-size: 15px;
  color: #5577aa;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 36px;
}

.pr-toggle-wrap {
  display: flex;
  justify-content: center;
}


/* ══════════════════════════════════════
   PLAN CARDS
══════════════════════════════════════ */
.pr-cards {
  padding: 56px 24px 48px;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 28px;
  align-items: start;
}

/* Card base */
.pr-card {
  background: #0d1a27;
  border: 0.5px solid #1a3a5c;
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Featured card */
.pr-card--featured {
  border-color: #378ADD;
  box-shadow: 0 0 40px rgba(55, 138, 221, 0.1);
}

.pr-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #060f1a;
  background: #378ADD;
  border-radius: 20px;
  padding: 4px 14px;
  white-space: nowrap;
}

.pr-card__top {
  margin-bottom: 20px;
}

.pr-card__tier {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5577aa;
  margin-bottom: 6px;
}

.pr-card--featured .pr-card__tier { color: #378ADD; }

.pr-card__desc {
  font-size: 13px;
  color: #3a5570;
  line-height: 1.5;
}

/* Price */
.pr-card__price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 6px;
}

.pr-card__currency {
  font-size: 18px;
  color: #5577aa;
  margin-top: 6px;
  font-weight: 400;
}

.pr-card__amount {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.pr-card__period {
  font-size: 13px;
  color: #3a5570;
  align-self: flex-end;
  padding-bottom: 8px;
}

/* Savings badge */
.pr-card__savings {
  font-size: 12px;
  color: #22c55e;
  height: 20px;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}

/* CTA button */
.pr-card__cta {
  margin-bottom: 24px;
}

/* Feature list */
.pr-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 0.5px solid #0d1f30;
  padding-top: 20px;
}

.pr-card__features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #5577aa;
}

.pr-feat-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Note below cards */
.pr-note {
  text-align: center;
  font-size: 13px;
  color: #3a5570;
  max-width: 1000px;
  margin: 0 auto;
}

.pr-note strong { color: #5577aa; }
.pr-note a { color: #378ADD; text-decoration: underline; }


/* ══════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════ */
.pr-compare {
  padding: 64px 24px 72px;
  border-top: 0.5px solid #0d1f30;
}

.pr-compare__header {
  text-align: center;
  margin-bottom: 40px;
}

.pr-compare__title {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-top: 8px;
}

/* Scroll wrapper for small screens */
.pr-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 0.5px solid #1a3a5c;
  border-radius: 14px;
  overflow: hidden; /* keep rounded corners */
}

/* Override overflow for scroll on mobile */
@media (max-width: 768px) {
  .pr-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
  }
}

.pr-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 13px;
}

/* Column widths */
.pr-table__label-col { width: 36%; }
.pr-table__plan-col  { width: 21.3%; text-align: center; }

/* Header row */
.pr-table__head-row {
  background: #0d1a27;
  border-bottom: 0.5px solid #1a3a5c;
}

.pr-table__head-row th {
  padding: 20px 16px 18px;
  vertical-align: top;
}

.pr-table__label-col { text-align: left; }

.pr-table__plan-col {
  text-align: center;
  border-left: 0.5px solid #1a3a5c;
}

.pr-table__plan-col--featured {
  background: rgba(55, 138, 221, 0.05);
  border-left-color: rgba(55, 138, 221, 0.3);
  border-right: 0.5px solid rgba(55, 138, 221, 0.3);
}

.pr-table__plan-badge {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #378ADD;
  margin-bottom: 6px;
}

.pr-table__plan-name {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.pr-table__plan-price {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #378ADD;
}

.pr-table__plan-price span {
  font-size: 13px;
  font-weight: 400;
  color: #3a5570;
}

/* Category header rows */
.pr-table__category td {
  padding: 14px 16px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #5577aa;
  background: #091420;
  border-top: 0.5px solid #0d1f30;
  border-bottom: 0.5px solid #0d1f30;
}

/* Regular rows */
.pr-table__row td {
  padding: 13px 16px;
  color: #5577aa;
  vertical-align: middle;
  border-bottom: 0.5px solid #0d1f30;
}

.pr-table__row:last-of-type td { border-bottom: none; }

.pr-table__row--alt td { background: rgba(13, 26, 39, 0.5); }

.pr-table__row td:not(.pr-table__feature) { text-align: center; }

.pr-table__feature {
  color: #7a9bbf;
  font-size: 13px;
}

/* Featured column highlight */
.pr-table__cell--featured {
  background: rgba(55, 138, 221, 0.04) !important;
  border-left: 0.5px solid rgba(55, 138, 221, 0.15) !important;
  border-right: 0.5px solid rgba(55, 138, 221, 0.15) !important;
  color: #ffffff !important;
}

/* Checkmarks and dashes */
.pr-check {
  color: #378ADD;
  font-size: 15px;
  font-weight: 600;
}

.pr-dash {
  color: #1e3550;
  font-size: 15px;
}

/* CTA row */
.pr-table__cta-row td {
  padding: 20px 16px;
  background: #0d1a27;
  border-top: 0.5px solid #1a3a5c;
}

.pr-table__cta-row td:not(:first-child) { border-left: 0.5px solid #1a3a5c; }
.pr-table__cell--featured.pr-table__cta-row td,
.pr-table__cta-row .pr-table__cell--featured {
  background: rgba(55, 138, 221, 0.06) !important;
  border-left-color: rgba(55, 138, 221, 0.3) !important;
  border-right-color: rgba(55, 138, 221, 0.3) !important;
}


/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.pr-faq-section {
  padding: 56px 24px 64px;
  border-top: 0.5px solid #0d1f30;
}

.pr-faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.pr-faq-title {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-top: 8px;
}

.pr-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #0d1f30;
  border: 0.5px solid #0d1f30;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.pr-faq-card {
  background: #060f1a;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.15s;
}

.pr-faq-card:hover { background: #0a1825; }

.pr-faq-card__q {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

.pr-faq-card__a {
  font-size: 13px;
  color: #5577aa;
  line-height: 1.65;
}


/* ══════════════════════════════════════
   BOTTOM CTA
══════════════════════════════════════ */
.pr-cta {
  padding: 56px 24px 72px;
  border-top: 0.5px solid #0d1f30;
}

.pr-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #0d1a27;
  border: 0.5px solid #1a3a5c;
  border-radius: 16px;
  padding: 44px 48px;
}

.pr-cta__title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 10px;
}

.pr-cta__sub {
  font-size: 14px;
  color: #5577aa;
  line-height: 1.65;
  max-width: 380px;
}

.pr-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.pr-footer {
  border-top: 0.5px solid #0d1f30;
  padding: 48px 24px 32px;
}

.pr-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 36px;
}

.pr-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-footer__tagline {
  font-size: 13px;
  color: #5577aa;
  line-height: 1.6;
}

.pr-footer__location {
  font-size: 12px;
  color: #3a5570;
}

.pr-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}

.pr-footer__link {
  font-size: 13px;
  color: #5577aa;
  text-decoration: none;
  transition: color 0.15s;
}
.pr-footer__link:hover        { color: #ffffff; }
.pr-footer__link--active      { color: #378ADD; }

.pr-footer__bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 0.5px solid #0d1f30;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: #3a5570;
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .pr-grid { grid-template-columns: 1fr; max-width: 460px; }

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

  .pr-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .pr-hero { padding: 56px 24px 44px; }

  .pr-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .pr-cta__sub      { max-width: none; }
  .pr-cta__actions  { width: 100%; }
  .pr-cta__actions .btn { width: 100%; justify-content: center; }

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

  .pr-footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
  .pr-footer__inner { grid-template-columns: 1fr; }
}
