/* ── PRICING PAGE ─────────────────────────────────────────────── */

.pricing-page {
  background: #F7F6FB;
  min-height: 100vh;
}

/* Hero header */
.pp-hero {
  text-align: center;
  padding: 56px 24px 40px;
  position: relative;
}

.pp-deco-tl,
.pp-deco-tr {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(225, 210, 200, 0.45);
  top: 32px;
  pointer-events: none;
}

.pp-deco-tl { left: 32px; }
.pp-deco-tr { right: 32px; }

.pp-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.pp-sub {
  font-size: 1rem;
  color: #6B7280;
  margin: 0 0 36px;
}

/* Tab switcher */
.pp-tabs {
  display: inline-flex;
  background: #EDEAF5;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}

.pp-tab {
  padding: 9px 28px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  font-family: inherit;
  white-space: nowrap;
}

.pp-tab.active {
  background: #ffffff;
  color: #1A1A1A;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

/* Plans container */
.pp-plans-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.pp-panel { display: none; }
.pp-panel.active { display: block; }

.pp-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.pp-grid-2 { grid-template-columns: repeat(2, 1fr); }
.pp-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Plan card */
.pp-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #E9E7F0;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pp-card.pp-featured {
  border-color: #7C2D12;
  border-width: 2px;
}

/* Popular badge */
.pp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #7C2D12;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* Card body */
.pp-card-body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pp-card-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.pp-card-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: #9CA3AF;
  margin: 0 0 12px;
}

.pp-card-desc {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.65;
  margin: 0 0 20px;
}

/* Price */
.pp-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.pp-price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pp-price-period {
  font-size: 0.88rem;
  color: #9CA3AF;
  font-weight: 500;
}

/* Features */
.pp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.5;
}

.pp-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #B45309;
}

/* CTA buttons */
.pp-cta {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 999px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.18s, background 0.18s;
  font-family: inherit;
  border: none;
}

.pp-cta-primary {
  background: #7C2D12;
  color: #ffffff;
}

.pp-cta-primary:hover { opacity: 0.88; color: #fff; }

.pp-cta-outline {
  background: transparent;
  color: #D97706;
  border: 1.5px solid #D97706;
}

.pp-cta-outline:hover { background: rgba(217, 119, 6, 0.07); color: #D97706; }

/* Footnote */
.pp-footnote {
  text-align: center;
  font-size: 0.88rem;
  color: #9CA3AF;
  margin-top: 32px;
}

/* Responsive */
@media (max-width: 900px) {
  .pp-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pp-grid-2,
  .pp-grid-3 { grid-template-columns: 1fr; }
  .pp-deco-tl,
  .pp-deco-tr { width: 80px; height: 80px; }
}
