/* =============================================
   ROOK MEDIA — Pricing Page Styles
   ============================================= */

/* ---- Page Hero (reused pattern) ---- */
.page-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Pricing Section ---- */
.pricing-main {
  background: var(--black);
  padding: 80px 0 100px;
}

.pricing-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.pricing-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-gold-md);
  transform: translateY(-4px);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.pricing-card-icon svg { width: 24px; height: 24px; }

.pricing-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.pricing-amount {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.pricing-amount-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
}

.pricing-card > p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.pricing-features li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ---- Every Plan Includes ---- */
.every-plan-includes {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  background: rgba(201,168,76,0.03);
}

.every-plan-heading {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.every-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 2.5rem;
}

.every-plan-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.every-plan-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.4rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .every-plan-includes { padding: 1.5rem; }
  .every-plan-list { gap: 0.65rem; }
}

/* ---- Pricing Note ---- */
.pricing-note {
  text-align: center;
  max-width: 560px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.pricing-note p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---- What's Included Section ---- */
.pricing-included {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.included-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.included-item:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-gold);
}

.included-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.included-item h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.included-item p {
  font-size: 0.85rem;
}

/* ---- CTA (reused) ---- */
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner { padding: 100px 0; position: relative; overflow: hidden; }
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-rook { font-size: 3rem; color: var(--gold); margin-bottom: 1.5rem; filter: drop-shadow(0 0 12px rgba(201,168,76,0.5)); }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner > p { max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-note { margin-top: 1.25rem !important; font-size: 0.8rem !important; color: var(--text-dim) !important; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
}
