/* === PRICING PAGE — extends theme.css variables === */

.nav-active { color: var(--fg) !important; font-weight: 600; }

/* HERO */
.pricing-hero {
  padding: 80px 32px 64px;
  background: var(--bg);
  text-align: center;
}
.pricing-hero-inner { max-width: 700px; margin: 0 auto; }
.page-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.pricing-hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 20px;
}
.pricing-hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}
.pricing-hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pricing-badge {
  background: var(--bg-alt);
  border: 1px solid rgba(15,61,62,0.12);
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
}

/* TIERS */
.pricing-tiers {
  padding: 0 32px 80px;
  background: var(--bg);
}
.pricing-tiers-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.tier-card {
  background: var(--bg-alt);
  border: 1.5px solid rgba(15,61,62,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}
.tier-card.featured {
  background: var(--teal);
  border-color: var(--coral);
  box-shadow: 0 8px 40px rgba(15,61,62,0.2);
}
.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.tier-header { margin-bottom: 20px; }
.tier-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 4px;
}
.tier-card.featured .tier-name { color: var(--bg); }
.tier-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.tier-card.featured .tier-tagline { color: rgba(248,245,240,0.65); }
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.tier-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  align-self: flex-start;
  margin-top: 4px;
}
.tier-card.featured .tier-currency { color: var(--bg); }
.tier-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  line-height: 1;
  color: var(--fg);
}
.tier-card.featured .tier-amount { color: var(--bg); }
.tier-period {
  font-size: 14px;
  color: var(--fg-muted);
  margin-left: 2px;
}
.tier-card.featured .tier-period { color: rgba(248,245,240,0.5); }
.tier-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.tier-card.featured .tier-desc { color: rgba(248,245,240,0.7); }
.tier-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.tier-cta-primary {
  display: block;
  text-align: center;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  transition: opacity 0.15s;
}
.tier-cta-primary:hover { opacity: 0.85; }
.tier-cta-secondary {
  display: block;
  text-align: center;
  background: var(--white);
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1.5px solid rgba(15,61,62,0.15);
  transition: border-color 0.15s;
}
.tier-cta-secondary:hover { border-color: var(--teal); }
.tier-card.featured .tier-cta-secondary {
  background: rgba(248,245,240,0.1);
  border-color: rgba(248,245,240,0.2);
  color: var(--bg);
}
.tier-card.featured .tier-cta-secondary:hover { border-color: var(--bg); }
.tier-cta-link {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  font-style: italic;
}
.tier-card.featured .tier-cta-link { color: rgba(248,245,240,0.5); }
.tier-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.tier-card.featured .tier-section-label { color: rgba(248,245,240,0.5); }
.tier-features ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-included {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.feature-included::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: 12px;
  top: 0;
}
.tier-card.featured .feature-included { color: rgba(248,245,240,0.85); }
.tier-card.featured .feature-included::before { color: rgba(255,255,255,0.6); }

/* PERFORMANCE PRICING */
.performance-pricing {
  padding: 80px 32px;
  background: var(--bg-alt);
}
.performance-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.perf-badge {
  display: inline-block;
  background: rgba(232,98,42,0.1);
  color: var(--coral);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.perf-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--teal);
  margin-bottom: 16px;
}
.perf-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.perf-details { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.perf-detail { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--fg); }
.perf-check { color: var(--coral); font-weight: 700; font-size: 16px; }

/* COMPARISON TABLE */
.comparison-section {
  padding: 80px 32px;
  background: var(--bg);
}
.comparison-inner { max-width: 1000px; margin: 0 auto; }
.comparison-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 32px;
}
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  text-align: left;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 12px 16px;
  border-bottom: 2px solid rgba(15,61,62,0.1);
  font-size: 14px;
}
.comparison-table th.feature-col { color: var(--fg); }
.th-price {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: 2px;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(15,61,62,0.06);
  color: var(--fg);
}
.comparison-table tr:last-child td { border-bottom: none; }
.check { color: var(--coral); font-weight: 700; font-size: 16px; }
.dim { color: var(--fg-muted); }
.row-group td {
  font-weight: 600;
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-alt);
  padding: 10px 16px;
}
.col-pro { background: rgba(15,61,62,0.04); }

/* FAQ */
.faq-section {
  padding: 80px 32px;
  background: var(--bg-alt);
}
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(15,61,62,0.08); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  text-align: left;
  gap: 16px;
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--teal); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING CTA */
.pricing-cta-section {
  padding: 100px 32px;
  background: var(--bg);
  text-align: center;
}
.pricing-cta-inner { max-width: 640px; margin: 0 auto; }
.pricing-cta-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--teal);
  margin-bottom: 16px;
}
.pricing-cta-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.pricing-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.pricing-email-link {
  font-size: 15px;
  color: var(--teal);
  font-weight: 500;
  text-decoration: none;
}
.pricing-email-link:hover { text-decoration: underline; }
.pricing-cta-fine {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* ROI SECTION */
.roi-section {
  padding: 80px 32px;
  background: #0F3D3E;
}
.roi-inner {
  max-width: 900px;
  margin: 0 auto;
}
.roi-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8622A;
  margin-bottom: 16px;
}
.roi-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #F8F5F0;
  line-height: 1.15;
  margin-bottom: 16px;
}
.roi-sub {
  font-size: 17px;
  color: rgba(248,245,240,0.6);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 56px;
}
.roi-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(248,245,240,0.06);
  border: 1px solid rgba(248,245,240,0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
}
.roi-metric {
  flex: 1;
  padding: 36px 32px;
  text-align: center;
}
.roi-metric-divider {
  width: 1px;
  background: rgba(248,245,240,0.1);
  align-self: stretch;
}
.roi-metric-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #E8622A;
  line-height: 1;
  margin-bottom: 10px;
}
.roi-metric-label {
  font-size: 14px;
  color: rgba(248,245,240,0.55);
  line-height: 1.5;
}
.roi-scenario {
  margin-bottom: 48px;
}
.roi-scenario-inner {
  background: rgba(248,245,240,0.05);
  border: 1px solid rgba(248,245,240,0.08);
  border-radius: 16px;
  padding: 36px 32px;
}
.roi-scenario-head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.4);
  margin-bottom: 24px;
}
.roi-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.roi-scenario-item { text-align: center; }
.roi-scenario-num {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: #F8F5F0;
  margin-bottom: 8px;
}
.roi-scenario-desc {
  font-size: 14px;
  color: rgba(248,245,240,0.5);
  line-height: 1.5;
}
.roi-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.roi-cta-button {
  display: inline-block;
  background: #E8622A;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  transition: opacity 0.15s;
}
.roi-cta-button:hover { opacity: 0.85; }
.roi-cta-note {
  font-size: 14px;
  color: rgba(248,245,240,0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-tiers-inner { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 13px; }
  .roi-metrics { flex-direction: column; }
  .roi-metric-divider { width: 100%; height: 1px; }
  .roi-scenario-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .pricing-hero { padding: 60px 20px 48px; }
  .pricing-tiers { padding: 0 20px 60px; }
  .performance-pricing { padding: 60px 20px; }
  .comparison-section { padding: 60px 20px; }
  .faq-section { padding: 60px 20px; }
  .pricing-cta-section { padding: 60px 20px; }
  .pricing-cta-buttons { flex-direction: column; }
  .tier-card.featured { box-shadow: none; }
  .roi-section { padding: 60px 20px; }
  .roi-cta-row { flex-direction: column; align-items: flex-start; }
}