.hero-section {
  background: linear-gradient(135deg, rgba(218,165,32,0.1) 0%, rgba(0,0,0,0.3) 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 2px solid rgba(218,165,32,0.3);
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(218,165,32,0.2);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(218,165,32,0.1);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-period {
  opacity: 0.7;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, rgba(218,165,32,0.15) 0%, rgba(0,0,0,0.3) 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 4rem 0;
}

.faq-section {
  margin: 4rem 0;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.faq-answer {
  opacity: 0.9;
  line-height: 1.6;
}
