/*
 * Pricing Page — schedule-validator-theme
 * All styles scoped under .pricing-page
 */

/* ── HERO ───────────────────────────────────────────────────────── */
.pricing-page .pr-hero {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.pricing-page .pr-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,20,14,.55) 0%, rgba(10,20,14,.45) 60%, rgba(10,20,14,.60) 100%),
    linear-gradient(160deg, #1a2e1f 0%, #2a3e28 20%, #3d4e2a 35%, #6b5a2a 55%, #8c6530 65%, #5a4020 80%, #1a2a1a 100%);
}
.pricing-page .pr-hero-bg--overlay {
  background: linear-gradient(to bottom, rgba(10,20,14,.55) 0%, rgba(10,20,14,.45) 60%, rgba(10,20,14,.60) 100%);
}
.pricing-page .pr-hero-silhouette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .35;
  pointer-events: none;
}
.pricing-page .pr-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 64px;
}
.pricing-page .pr-hero-title {
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 88px;
}
.pricing-page .pr-hero-title .accent {
  color: #7EDB7F;
}
.pricing-page .pr-hero-subtitle {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

/* ── PRICING CARDS ──────────────────────────────────────────────── */
.pricing-page .pr-pricing-section {
  background: #fff;
  padding: 60px 40px 80px;
}
.pricing-page .pr-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-page .pr-plan-card {
  display: flex;
  padding: 32px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 12px;
  border: 1px solid #E0E0D8;
  background: #fff;
  position: relative;
}
.pricing-page .pr-plan-card--popular {
  background: linear-gradient(166deg, #46A147 0%, #055306 100%);
  border: none;
  margin-top: -28px;
}
.pricing-page .pr-popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ECF6ED;
  color: #1a1a1a;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 16px;
  white-space: nowrap;
}
.pricing-page .pr-plan-name {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}
.pricing-page .pr-plan-card--popular .pr-plan-name { color: #fff; }
.pricing-page .pr-plan-price { display: flex; align-items: flex-start; gap: 6px; flex-direction: column; }
.pricing-page .pr-price-amount {
  color: #1A1A1A;
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
}
.pricing-page .pr-plan-card--popular .pr-price-amount { color: #fff; }
.pricing-page .pr-price-period {
  color: rgba(26,26,26,.60);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  max-width: 100%;
}
.pricing-page .pr-plan-card--popular .pr-price-period { color: rgba(255,255,255,.70); }
.pricing-page .pr-plan-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  color: #444;
  line-height: 1.5;
  margin-top: -12px;
}
.pricing-page .pr-plan-card--popular .pr-plan-tagline { color: rgba(255,255,255,.88); }
.pricing-page .pr-plan-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
}
.pricing-page .pr-plan-btn:hover { opacity: .85; }
.pricing-page .pr-plan-btn-outline { border: 1.5px solid #2D7D3A; color: #2D7D3A; background: transparent; }
.pricing-page .pr-plan-btn-white  { background: #fff; color: #2D7D3A; border: none; }
.pricing-page .pr-plan-divider { width: 100%; height: 1px; background: #e8e8e4; margin: 0; }
.pricing-page .pr-plan-card--popular .pr-plan-divider { background: rgba(255,255,255,.25); }
.pricing-page .pr-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex: 1;
}
.pricing-page .pr-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.pricing-page .pr-plan-features li svg { flex-shrink: 0; margin-top: 1px; }
.pricing-page .pr-plan-card--popular .pr-plan-features li { color: rgba(255,255,255,.9); }

/* ── TRUST BAR ──────────────────────────────────────────────────── */
.pricing-page .pr-trust-bar {
  width: 100%;
  background: var(--pr-trust-bar-bg, none), #0E6B21;
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  height: 144px;
  display: flex;
  align-items: center;
}
.pricing-page .pr-trust-bar-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pricing-page .pr-trust-item { display: flex; align-items: center; gap: 14px; flex: 1; justify-content: center; }
.pricing-page .pr-trust-item svg { flex-shrink: 0; }
.pricing-page .pr-trust-label {
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

/* ── COMPARE PLANS ──────────────────────────────────────────────── */
.pricing-page .pr-compare-section {
  width: 100%;
  background: #F0F5F0;
  padding: 64px 40px 80px;
  position: relative;
  overflow: hidden;
}
.pricing-page .pr-compare-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 50%, rgba(70,161,71,.07) 0%, transparent 50%),
                    radial-gradient(circle at 85% 20%, rgba(70,161,71,.07) 0%, transparent 50%);
  pointer-events: none;
}
.pricing-page .pr-compare-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.pricing-page .pr-compare-title {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  margin-bottom: 40px;
}
.pricing-page .pr-compare-table-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.pricing-page .pr-compare-table { width: 100%; border-collapse: collapse; }
.pricing-page .pr-compare-table thead tr { border-bottom: 1px solid #E8EDE8; }
.pricing-page .pr-compare-table thead th {
  padding: 20px 24px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7EDB7F;
}
.pricing-page .pr-compare-table thead th:first-child {
  text-align: left;
  color: #1A1A1A;
  font-size: 13px;
  letter-spacing: .06em;
  width: 40%;
}
.pricing-page .pr-compare-table tbody tr { border-bottom: 1px solid #F0F5F0; transition: background .12s; }
.pricing-page .pr-compare-table tbody tr:last-child { border-bottom: none; }
.pricing-page .pr-compare-table tbody tr:hover { background: #FAFCFA; }
.pricing-page .pr-compare-table tbody td {
  padding: 18px 24px;
  text-align: center;
  vertical-align: middle;
}
.pricing-page .pr-compare-table tbody td:first-child {
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.pricing-page .pr-dash {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #999;
  border-radius: 1px;
  vertical-align: middle;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.pricing-page .pr-faq-section {
  width: 100%;
  background: #fff;
  padding: 80px 40px 100px;
}
.pricing-page .pr-faq-inner { max-width: 1280px; margin: 0 auto; }
.pricing-page .pr-faq-title {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
  margin-bottom: 48px;
}
.pricing-page .pr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-page .pr-faq-item {
  border: 1px solid #E0E0D8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.pricing-page .pr-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.4;
}
.pricing-page .pr-faq-question:hover { background: #FAFCFA; }
.pricing-page .pr-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}
.pricing-page .pr-faq-item.open .pr-faq-icon { transform: rotate(180deg); }
.pricing-page .pr-faq-answer {
  display: none;
  padding: 16px 24px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  border-top: 1px solid #F0F0EC;
}
.pricing-page .pr-faq-item.open .pr-faq-answer { display: block; }

/* ── CTA ────────────────────────────────────────────────────────── */
.pricing-page .pr-cta-section {
  width: 100%;
  background: #0a1f0d var(--pr-cta-bg, none);
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 706px;
  display: flex;
  align-items: center;
}
.pricing-page .pr-cta-section[style]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,13,.95) 0%, rgba(10,31,13,.55) 100%);
  pointer-events: none;
  z-index: 0;
}
.pricing-page .pr-cta-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.pricing-page .pr-cta-content { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.pricing-page .pr-cta-heading {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
  color: #fff;
  margin: 0;
}
.pricing-page .pr-cta-accent { color: #7EDB7F; }
.pricing-page .pr-cta-subtext { font-family: 'Manrope', sans-serif; font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.6; }
.pricing-page .pr-cta-buttons { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pricing-page .pr-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; background: #46A147; color: #fff;
  font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 600;
  line-height: 1.4; text-transform: capitalize;
  text-decoration: none; border-radius: 8px; transition: background .15s;
  white-space: nowrap;
}
.pricing-page .pr-cta-btn-primary:hover { background: #3a8e3b; }
.pricing-page .pr-cta-btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  padding: 10px 14px; min-height: 64px; background: rgba(70,161,71,0.1); color: #fff;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border-radius: 10px;
  border: 1px solid #46A147; transition: border-color .15s, background .15s;
  white-space: nowrap;
}
.pricing-page .pr-cta-btn-secondary:hover { border-color: #7EDB7F; background: rgba(70,161,71,0.2); }
.pricing-page .pr-cta-footnote { font-family: 'Manrope', sans-serif; font-size: 13px; color: #7EDB7F; line-height: 1.5; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-page .pr-hero { height: 280px; }
  .pricing-page .pr-hero-title { font-size: 44px; line-height: 60px; }
  .pricing-page .pr-pricing-section { padding: 48px 24px 64px; }
  .pricing-page .pr-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-page .pr-plan-card--popular { margin-top: 28px; }
  .pricing-page .pr-trust-bar-inner { padding: 0 24px; gap: 16px; }
  .pricing-page .pr-trust-label { font-size: 18px; }
  .pricing-page .pr-compare-section { padding: 48px 24px 64px; }
  .pricing-page .pr-compare-title { font-size: 40px; line-height: 48px; }
  .pricing-page .pr-faq-section { padding: 56px 24px 72px; }
  .pricing-page .pr-faq-title { font-size: 44px; line-height: 52px; }
  .pricing-page .pr-cta-inner { padding: 64px 24px; }
  .pricing-page .pr-cta-heading { font-size: 44px; line-height: 52px; }
}

@media (max-width: 768px) {
  .pricing-page .pr-hero { height: 260px; }
  .pricing-page .pr-hero-title { font-size: 36px; line-height: 52px; }
  .pricing-page .pr-hero-subtitle { font-size: 16px; line-height: 26px; }
  .pricing-page .pr-pricing-section { padding: 40px 20px 56px; }
  .pricing-page .pr-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-page .pr-trust-bar { height: auto; padding: 28px 0; }
  .pricing-page .pr-trust-bar-inner { padding: 0 20px; flex-wrap: wrap; justify-content: center; gap: 20px 32px; }
  .pricing-page .pr-trust-item { flex: 0 0 calc(50% - 16px); justify-content: flex-start; }
  .pricing-page .pr-trust-label { font-size: 16px; }
  .pricing-page .pr-compare-section { padding: 40px 20px 56px; }
  .pricing-page .pr-compare-title { font-size: 34px; line-height: 42px; margin-bottom: 28px; }
  .pricing-page .pr-compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-page .pr-compare-table { min-width: 560px; }
  .pricing-page .pr-faq-section { padding: 48px 20px 64px; }
  .pricing-page .pr-faq-title { font-size: 36px; line-height: 44px; margin-bottom: 32px; }
  .pricing-page .pr-faq-list { max-width: 100%; }
  .pricing-page .pr-cta-section { min-height: 400px; }
  .pricing-page .pr-cta-inner { padding: 56px 20px; }
  .pricing-page .pr-cta-heading { font-size: 38px; line-height: 46px; }
}

@media (max-width: 480px) {
  .pricing-page .pr-hero { height: 240px; }
  .pricing-page .pr-hero-content { padding-top: 56px; gap: 10px; }
  .pricing-page .pr-hero-title { font-size: 28px; line-height: 40px; }
  .pricing-page .pr-hero-subtitle { font-size: 14px; line-height: 22px; padding: 0 12px; }
  .pricing-page .pr-pricing-section { padding: 32px 16px 48px; }
  .pricing-page .pr-price-amount { font-size: 40px; line-height: 48px; }
  .pricing-page .pr-trust-bar { padding: 24px 0; }
  .pricing-page .pr-trust-bar-inner { flex-direction: column; gap: 16px; align-items: flex-start; padding: 0 16px; }
  .pricing-page .pr-trust-item { flex: none; width: 100%; }
  .pricing-page .pr-trust-label { font-size: 15px; }
  .pricing-page .pr-compare-section { padding: 32px 16px 48px; }
  .pricing-page .pr-compare-title { font-size: 28px; line-height: 36px; }
  .pricing-page .pr-compare-table { min-width: 480px; }
  .pricing-page .pr-compare-table thead th,
  .pricing-page .pr-compare-table tbody td { padding: 14px 16px; font-size: 12px; }
  .pricing-page .pr-faq-section { padding: 40px 16px 56px; }
  .pricing-page .pr-faq-title { font-size: 28px; line-height: 36px; margin-bottom: 24px; }
  .pricing-page .pr-faq-question { font-size: 14px; padding: 18px 16px; }
  .pricing-page .pr-faq-answer { font-size: 13px; padding: 16px 16px 18px; }
  .pricing-page .pr-cta-inner { padding: 48px 16px; }
  .pricing-page .pr-cta-heading { font-size: 30px; line-height: 38px; }
  .pricing-page .pr-cta-subtext { font-size: 13px; }
  .pricing-page .pr-cta-buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .pricing-page .pr-cta-btn-primary,
  .pricing-page .pr-cta-btn-secondary { justify-content: center; padding: 13px 20px; font-size: 14px; }
}
