/* ============================================
   BOLDBLACK DESIGNS — PRICING PAGE
   Clean white, bold cards, comparison table
   ============================================ */

.light-page { background: #ffffff; color: #0a0a0a; }

/* Eyebrow */
.pr-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 12px;
}

/* Section header */
.pr-section-header { text-align: center; margin-bottom: 52px; }
.pr-section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pr-section-sub {
  font-size: 16px; color: #666;
  max-width: 440px; margin: 0 auto; line-height: 1.7;
}

/* ============================================
   HERO
   ============================================ */
.pr-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.pr-hero-bg { position: absolute; inset: 0; }
.pr-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  display: block;
}
.pr-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.62) 50%, rgba(10,10,10,0.9) 100%);
}
.pr-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto; padding: 60px 48px 0;
}
.pr-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.pr-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.pr-breadcrumb a:hover { color: var(--accent-2); }
.pr-breadcrumb svg { opacity: 0.4; flex-shrink: 0; }
.pr-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 18px; max-width: 640px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.pr-title-gold { color: var(--accent-2); }
.pr-hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.68);
  max-width: 500px; line-height: 1.8;
  margin-bottom: 28px; font-weight: 300;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}
.pr-hero-sub strong { color: var(--accent-2); font-weight: 600; }
.pr-hero-guarantee {
  display: flex; gap: 24px; flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}
.pr-guarantee-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
}
.pr-guarantee-item svg { stroke: var(--accent-2); flex-shrink: 0; }

/* ============================================
   PRICING CARDS
   ============================================ */
.pr-plans {
  background: #f7f7f5;
  border-top: 1px solid #e8e8e8;
  padding: 88px 0;
}
.pr-plans-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
}

.pr-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}

/* Base card */
.pr-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  padding: 36px 32px 40px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.4s, transform 0.35s var(--ease);
}
.pr-card:hover {
  border-color: #0a0a0a;
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* Featured card */
.pr-card-featured {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
  transform: scale(1.03);
}
.pr-card-featured:hover {
  border-color: var(--accent-2);
  transform: scale(1.03) translateY(-4px);
}

.pr-popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent-2);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(200,169,110,0.35);
}

.pr-tier {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #888; display: block; margin-bottom: 10px;
}
.pr-tier-gold { color: var(--accent-2); }

.pr-card-header h3 {
  font-family: var(--font-display);
  font-weight: 800; font-size: 24px;
  color: #0a0a0a; margin-bottom: 10px;
}
.pr-card-featured h3 { color: #fff; }

.pr-card-sub {
  font-size: 14px; color: #666; line-height: 1.7;
  margin-bottom: 24px;
}
.pr-card-featured .pr-card-sub { color: rgba(255,255,255,0.55); }

/* Price row */
.pr-price-row { margin-bottom: 24px; }
.pr-price {
  font-family: var(--font-display);
  font-weight: 800; line-height: 1;
  color: #0a0a0a;
  display: flex; align-items: flex-start; gap: 4px;
}
.pr-card-featured .pr-price { color: var(--accent-2); }
.pr-price sup { font-size: 24px; margin-top: 8px; font-weight: 700; }
.pr-price { font-size: 60px; }
.pr-price span { font-size: 18px; font-weight: 500; color: #888; margin-top: auto; margin-bottom: 8px; }
.pr-card-featured .pr-price span { color: rgba(255,255,255,0.4); }
.pr-price-note { font-size: 12px; color: #aaa; margin-top: 4px; }
.pr-card-featured .pr-price-note { color: rgba(255,255,255,0.3); }

/* Buttons */
.pr-btn-outline {
  display: flex; align-items: center; justify-content: center;
  padding: 13px 24px;
  background: transparent; color: #0a0a0a;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; border: 2px solid #0a0a0a;
  text-decoration: none; transition: all 0.25s var(--ease);
  margin-bottom: 24px;
}
.pr-btn-outline:hover {
  background: #0a0a0a; color: #fff;
}
.pr-btn-gold {
  display: flex; align-items: center; justify-content: center;
  padding: 13px 24px;
  background: var(--accent-2); color: #0a0a0a;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; border: 2px solid var(--accent-2);
  text-decoration: none; transition: all 0.25s var(--ease);
  margin-bottom: 24px;
}
.pr-btn-gold:hover {
  background: #dfc08a; border-color: #dfc08a;
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,169,110,0.3);
}
.pr-btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: #0a0a0a; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; border: 2px solid #0a0a0a;
  text-decoration: none; transition: all 0.25s var(--ease); margin-top: 20px;
}
.pr-btn-dark:hover { background: var(--accent-2); border-color: var(--accent-2); color: #0a0a0a; }

/* Divider */
.pr-divider { height: 1px; background: #e8e8e8; margin-bottom: 20px; }
.pr-divider-light { background: rgba(255,255,255,0.12); }

/* Features list */
.pr-includes-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #888; margin-bottom: 14px;
}
.pr-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.pr-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #444; line-height: 1.4;
}
.pr-features-light li { color: rgba(255,255,255,0.75); }
.pr-check {
  width: 20px; height: 20px; background: #0a0a0a; color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pr-check-gold {
  width: 20px; height: 20px; background: var(--accent-2); color: #0a0a0a;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pr-x { color: #ccc; font-size: 14px; flex-shrink: 0; width: 20px; text-align: center; }
.pr-x-light { color: rgba(255,255,255,0.2); font-size: 14px; flex-shrink: 0; width: 20px; text-align: center; }

/* All plans note */
.pr-all-note {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  font-size: 14px; color: #555;
  padding: 16px 24px;
  background: #fff; border: 1px solid var(--accent-2);
  border-left: 4px solid var(--accent-2);
  max-width: 600px; margin: 0 auto;
}
.pr-all-note svg { stroke: var(--accent-2); flex-shrink: 0; }
.pr-all-note strong { color: #0a0a0a; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.pr-compare {
  background: #fff; padding: 88px 0;
  border-top: 1px solid #e8e8e8;
}
.pr-compare-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 48px;
}
.pr-table-wrap { overflow-x: auto; }

.pr-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.pr-table th, .pr-table td {
  padding: 14px 20px;
  border: 1px solid #e8e8e8;
  text-align: center;
}
.pr-table th {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  background: #f7f7f5; color: #0a0a0a;
  letter-spacing: 0.04em;
}
.pr-th-feature { text-align: left; }
.pr-th-featured {
  background: #0a0a0a !important; color: var(--accent-2) !important;
}
.pr-th-featured span { color: var(--accent-2); }

.pr-table td:first-child { text-align: left; font-weight: 500; color: #333; }
.pr-td-featured { background: rgba(200,169,110,0.05); }
.pr-table tr:hover td { background: #fafaf8; }
.pr-table tr:hover .pr-td-featured { background: rgba(200,169,110,0.08); }

/* Section header rows */
.pr-tr-section td {
  background: #0a0a0a !important;
  color: rgba(255,255,255,0.6) !important;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 20px;
  border-color: #0a0a0a;
}

/* CTA row */
.pr-tr-cta td {
  padding: 20px; background: #f7f7f5 !important;
  border-top: 2px solid #e0e0e0;
}
.pr-tr-cta .pr-td-featured { background: rgba(200,169,110,0.08) !important; }

.pr-table-btn {
  display: inline-block; padding: 10px 22px;
  background: transparent; color: #0a0a0a;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  border: 1.5px solid #0a0a0a; text-decoration: none;
  transition: all 0.2s;
}
.pr-table-btn:hover { background: #0a0a0a; color: #fff; }
.pr-table-btn-gold {
  display: inline-block; padding: 10px 22px;
  background: var(--accent-2); color: #0a0a0a;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  border: 1.5px solid var(--accent-2); text-decoration: none;
  transition: all 0.2s;
}
.pr-table-btn-gold:hover { background: #dfc08a; border-color: #dfc08a; }

.pr-yes { color: #16a34a; font-size: 16px; font-weight: 700; }
.pr-no  { color: #ccc; font-size: 16px; }

/* ============================================
   FAQ
   ============================================ */
.pr-faq {
  background: #f7f7f5;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 88px 0;
}
.pr-faq-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start;
}
.pr-faq-left h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3.5vw, 38px);
  color: #0a0a0a; letter-spacing: -0.02em; margin-bottom: 14px;
}
.pr-faq-left p { font-size: 15px; color: #555; line-height: 1.8; }

/* Accordion */
.pr-faq-right { border-top: 1px solid #e0e0e0; }

.pr-faq-item { border-bottom: 1px solid #e0e0e0; }

.pr-faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 20px 0;
  background: none; border: none; cursor: pointer; text-align: left;
  transition: color 0.2s;
}
.pr-faq-q span {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  color: #0a0a0a; line-height: 1.3; transition: color 0.2s;
}
.pr-faq-q:hover span { color: var(--accent-2); }

.pr-faq-icon {
  width: 32px; height: 32px;
  border: 1.5px solid #e0e0e0; background: #f7f7f5;
  display: flex; align-items: center; justify-content: center;
  color: #666; flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.pr-faq-item.open .pr-faq-icon {
  background: #0a0a0a; border-color: #0a0a0a; color: #fff;
  transform: rotate(45deg);
}

.pr-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.pr-faq-item.open .pr-faq-a { max-height: 200px; }
.pr-faq-a p {
  padding-bottom: 20px;
  font-size: 15px; color: #555; line-height: 1.8;
}

/* ============================================
   CTA BANNER
   ============================================ */
.pr-cta { position: relative; padding: 120px 48px; overflow: hidden; text-align: center; }
.pr-cta-bg { position: absolute; inset: 0; }
.pr-cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.pr-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.78) 50%, rgba(10,10,10,0.92) 100%);
}
.pr-cta-content { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.pr-cta-content h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 50px);
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px;
}
.pr-cta-content p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 36px; }
.pr-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.pr-btn-gold-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: var(--accent-2); color: #0a0a0a;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; border: 2px solid var(--accent-2);
  text-decoration: none; transition: all 0.25s var(--ease);
}
.pr-btn-gold-lg:hover {
  background: #dfc08a; border-color: #dfc08a;
  transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,169,110,0.3);
}
.pr-btn-outline-wht {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: transparent; color: rgba(255,255,255,0.85);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none; transition: all 0.25s var(--ease); backdrop-filter: blur(6px);
}
.pr-btn-outline-wht:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pr-cards { grid-template-columns: 1fr; gap: 20px; }
  .pr-card-featured { transform: none; }
  .pr-card-featured:hover { transform: translateY(-4px); }
  .pr-faq-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .pr-compare-inner { padding: 0 32px; }
  .pr-plans-inner { padding: 0 32px; }
}
@media (max-width: 768px) {
  .pr-hero { min-height: 480px; padding-bottom: 56px; }
  .pr-hero-content { padding: 40px 24px 0; }
  .pr-hero-guarantee { gap: 14px; }
  .pr-guarantee-item { font-size: 12px; }
  .pr-cta { padding: 80px 24px; }
  .pr-cta-btns { flex-direction: column; align-items: center; }
  .pr-faq { padding: 56px 0; }
  .pr-plans { padding: 56px 0; }
  .pr-compare { padding: 56px 0; }
}
@media (max-width: 480px) {
  .pr-hero-title { font-size: 36px; }
  .pr-plans-inner { padding: 0 20px; }
  .pr-hero-guarantee { flex-direction: column; gap: 10px; }
}