/* ------------------------------------------------------------
   FOOTER PINNING (PRICING PAGE ONLY)
------------------------------------------------------------ */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.pricing-page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ------------------------------------------------------------
   PRICING PAGE
------------------------------------------------------------ */

.pricing-grid {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--outline);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: 0.2s;
  box-shadow: 0 0 12px #ff660010;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 22px #ff660025;
}

.pricing-card-highlight {
  border-color: var(--primary);
  box-shadow: 0 0 26px #ff660030;
}

.pricing-price {
  font-size: 2.2rem;
  margin: 0.5rem 0;
}

.pricing-price span {
  font-size: 1rem;
  opacity: 0.7;
  margin-left: 0.2rem;
}

.pricing-subtitle {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-list li + li {
  margin-top: 0.35rem;
}

/* Badge */
.pricing-badge {
  background: var(--primary);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius);
  color: #000;
  font-weight: 600;
  font-size: 0.75rem;
  position: absolute;
  top: -12px;
  right: 20px;
}

/* ------------------------------------------------------------
   BUTTONS — ALL ORANGE + SAME SIZE
------------------------------------------------------------ */

.pricing-btn {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #000;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin-top: 1.6rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.pricing-btn:hover {
  background: var(--primary-dark);
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Prevent content from going behind the footer */
.pricing-page-wrapper {
  padding-bottom: 120px; /* adjust to match footer height */
}
/* ------------------------------------------------------------
   MOBILE: UNPIN FOOTER
------------------------------------------------------------ */
@media (max-width: 820px) {
  #footer {
    position: static;
  }

  .pricing-page-wrapper {
    padding-bottom: 0; /* remove footer offset on mobile */
  }
}
