/* Pricing Page Styles */

.pricing-main {
  padding-bottom: 4rem;
  background-color: #faf8f5;
}

.pricing-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  background: linear-gradient(to bottom, #f5f0e8, #faf8f5);
}

.pricing-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #3d2b1f;
}

.pricing-hero p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid-section {
  padding: 2rem 0 6rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid #e5e0d8;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(61, 43, 31, 0.08);
}

.pricing-card.featured {
  border: 2px solid #3d2b1f;
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.badge-featured {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3d2b1f;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #3d2b1f;
  margin-bottom: 2rem;
}

.price span {
  font-size: 1rem;
  color: #888;
  font-weight: 400;
}

.savings {
  background: #f0fdf4;
  color: #166534;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.tier-tagline {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.feature-section {
  margin-bottom: 1.5rem;
}

.feature-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3d2b1f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f5f0e8;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  flex-grow: 1;
}

.features li {
  padding: 12px 0;
  border-bottom: 1px solid #f5f0e8;
  color: #4a4a4a;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.features li::before {
  content: "✓";
  color: #166534;
  font-weight: 800;
}

.pricing-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}

.pricing-btn {
  background: #3d2b1f;
  color: white;
}

.pricing-btn:hover {
  background: #5a402e;
}

.pricing-btn.secondary {
  background: transparent;
  border: 2px solid #e5e0d8;
  color: #3d2b1f;
}

.pricing-btn.secondary:hover {
  background: #fdfcfb;
  border-color: #3d2b1f;
}

.pricing-faq {
  padding: 6rem 0;
  background: white;
  border-top: 1px solid #f5f0e8;
}

.pricing-faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #3d2b1f;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #3d2b1f;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2.5rem;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
