/* === PRICING PAGE === */
.pricing-page {
  min-height: calc(100vh - 80px);
  padding: 80px 0 100px;
  background: var(--bg);
  position: relative;
}

.pricing-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,149,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.pricing-page .container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
}

/* === HEADER === */
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255,149,0,0.4);
  background: var(--amber-dim);
}

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.pricing-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === GRID === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* === TIER CARD === */
.tier-card {
  background: #1E1E1C;
  border: 1px solid rgba(255,149,0,0.08);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
}

.tier-card:hover {
  border-color: rgba(255,149,0,0.45);
  background: #232220;
}

.tier-icon {
  margin-bottom: 20px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.tier-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.tier-price-from {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.tier-price-referral {
  font-size: 22px;
  font-weight: 700;
}

.tier-price-unit {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

.tier-duration {
  font-size: 13px;
  color: rgba(245,244,240,0.6);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,149,0,0.1);
}

.tier-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}

.tier-bullets li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 8px 0 8px 22px;
  position: relative;
}

.tier-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 1px;
  background: var(--amber);
}

.tier-cta {
  align-self: flex-start;
}

/* === NOTE === */
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,149,0,0.08);
  padding-top: 32px;
}

/* === ALSO LINK === */
.pricing-also {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 28px;
}

.pricing-also a {
  color: var(--amber);
  text-decoration: none;
}

.pricing-also a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
