/* ===== HERO ===== */
.pricing-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 24px 60px;
  text-align: center;
}

.pricing-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTION ===== */
.pricing-section {
  padding: 60px 0 120px;
}

/* ===== CARDS WRAPPER ===== */
.pricing-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

/* ===== PRICING CARD ===== */
.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 36px;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243,125,7,0.35);
}

.pricing-card.featured {
  background: linear-gradient(160deg, #2a1200, #1f0a00);
  border-color: rgba(243,125,7,0.5);
  box-shadow: 0 0 60px rgba(243,125,7,0.12);
}
.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 80px rgba(243,125,7,0.22);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--brown));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.featured .plan-label {
  color: var(--orange-light);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--text);
}
.featured .price-amount {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 8px;
}

.price-period {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}

.plan-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

/* ===== FEATURE LIST ===== */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}
.plan-features li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: #f59e0b;
}
.plan-features li.disabled {
  color: var(--muted);
  opacity: 0.5;
}
.plan-features li.disabled svg {
  stroke: var(--muted);
}

/* ===== PLAN BUTTON ===== */
.plan-btn {
  width: 100%;
  justify-content: center;
  border-radius: 14px;
  padding: 14px;
}

.plan-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ===== FAQ ===== */
.faq {
  max-width: 860px;
  margin: 0 auto;
}

.faq .section-title {
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.faq-item:hover {
  border-color: rgba(243,125,7,0.35);
}

.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.faq-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== ACTIVE NAV ===== */
.active-nav {
  color: var(--orange-light) !important;
  border-color: rgba(243,125,7,0.4) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
  .pricing-wrapper { flex-direction: column; align-items: center; }
  .pricing-card { width: 100%; max-width: 400px; }
  .faq-grid { grid-template-columns: 1fr; }
}
