/* ==========================================================
   DebtVault — Pricing Page Styles
   Matches landing.css + main.css theme
========================================================== */

/* ------------------------------
   HERO SECTION
------------------------------ */
.pricing-hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: var(--color-bg);
}

.pricing-hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--color-text);
}

.pricing-hero p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: var(--color-subtext);
}

/* ------------------------------
   PRICING SECTION GRID
------------------------------ */
.pricing-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ------------------------------
   PLAN CARD
------------------------------ */
.plan-card {
  background: var(--color-card);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.plan-card h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
}

.price {
  margin: 10px 0 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ------------------------------
   FEATURES LIST
------------------------------ */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.plan-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--color-text);
}

/* ------------------------------
   BUTTONS
------------------------------ */
.plan-card .btn-secondary,
.plan-card .btn-primary {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 0;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ------------------------------
   PRO BADGE
------------------------------ */
.plan-card.pro {
  border: 2px solid var(--color-accent);
}

.badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--color-accent);
  color: #fff;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

/* ------------------------------
   FAQ SECTION
------------------------------ */
.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.faq {
  margin-bottom: 25px;
}

.faq h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--color-text);
}

.faq p {
  margin: 0;
  color: var(--color-subtext);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 600px) {
  .pricing-hero h1 {
    font-size: 2.1rem;
  }

  .plan-card {
    padding: 25px;
  }
}
