/* --- PAGE HERO --- */
.p-hero {
  padding: 140px 48px 80px;
  background: var(--bg);
  position: relative;
}

.p-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.p-hero-inner { max-width: 700px; position: relative; z-index: 1; }

.p-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.p-hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

/* --- TABS --- */
.p-tabs-wrap {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim);
  padding: 0 48px;
}

.p-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.p-tabs::-webkit-scrollbar { display: none; }

.p-tab {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: none;
  border: none;
  padding: 20px 28px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.p-tab:hover { color: var(--text); }

.p-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* --- GRID --- */
.p-grid-wrap {
  padding: 64px 48px 100px;
  background: var(--bg);
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
}

/* --- CARD --- */
.p-card {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s;
}

.p-card:hover { border-color: rgba(201, 168, 76, 0.2); }

.p-card--featured {
  border-color: rgba(201, 168, 76, 0.25);
  background: linear-gradient(160deg, #141410 0%, #0e0e0b 100%);
}

.p-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.p-card-visual {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
}

.p-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.p-placeholder-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

.p-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.p-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-card-category {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.p-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.1;
}

.p-card-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

.p-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.p-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.p-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* --- BUTTONS --- */
.p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.p-btn--primary {
  background: var(--gold);
  color: #0B0B0B;
  font-weight: 500;
}

.p-btn--primary:hover:not(:disabled) {
  background: #d9b85c;
}

.p-btn--primary:disabled {
  background: rgba(201, 168, 76, 0.2);
  color: var(--text-dimmer);
  cursor: default;
}

.p-btn--ghost {
  background: none;
  color: var(--text-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.p-btn--ghost:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.p-btn--cta {
  background: none;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 14px 32px;
  border-radius: 2px;
}

.p-btn--cta:hover {
  background: var(--gold-dim);
}

/* --- TIER TOGGLE --- */
.p-tier-toggle {
  margin-top: 8px;
}

.p-tier-btn {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}

.p-tier-btn:hover {
  background: var(--gold-dim);
}

/* --- TIERS --- */
.p-tiers {
  margin-top: 16px;
}

.p-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.p-tier {
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.p-tier--featured {
  background: linear-gradient(160deg, #1a1a0a 0%, #0d0d08 100%);
  border-color: rgba(201, 168, 76, 0.3);
}

.p-tier-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.p-tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.p-tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.p-tier-features li {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.4;
  padding-left: 10px;
  position: relative;
}

.p-tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.4;
}

.p-tier-cta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: none;
  color: var(--text-dim);
  transition: all 0.2s;
  margin-top: 8px;
}

.p-tier-cta:hover { color: var(--gold); border-color: rgba(201, 168, 76, 0.5); }

.p-tier-cta--primary {
  background: var(--gold);
  color: #0B0B0B;
  border-color: var(--gold);
  font-weight: 500;
}

.p-tier-cta--primary:hover { background: #d9b85c; }

/* --- CTA BAND --- */
.p-cta-band {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  text-align: center;
}

.p-cta-inner { max-width: 600px; margin: 0 auto; }

.p-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 20px 0 40px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .p-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .p-hero { padding: 120px 24px 60px; }
  .p-tabs-wrap { padding: 0 24px; }
  .p-grid-wrap { padding: 48px 24px 80px; }
  .p-grid { grid-template-columns: 1fr; }
  .p-tier-grid { grid-template-columns: repeat(3, 1fr); }
  .p-cta-band { padding: 60px 24px; }
  .p-cta-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .p-tier-grid { grid-template-columns: 1fr; }
  .p-card-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .p-card-actions { width: 100%; }
  .p-card-actions .p-btn { flex: 1; text-align: center; }
}