/* Pricing Section */
.pricing {
  padding-top: 160px;
  padding-bottom: 128px;
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #16a249;
  margin-bottom: 16px;
}

.section-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0f172a;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-description {
  font-size: 20px;
  color: #64748b;
  font-weight: 500;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Plan Cards */
.plan-card {
  padding: 48px;
  background-color: white;
  border-radius: 40px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s;
}

.plan-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
  background-color: #0f172a;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 32px;
}

.badge-pill {
  padding: 4px 16px;
  border-radius: 9999px;
  background-color: #16a249;
  color: white;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.plan-content {
  position: relative;
  z-index: 10;
}

.plan-header {
  margin-bottom: 32px;
}

.plan-name {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.plan-card .plan-name {
  color: #0f172a;
}

.plan-card.featured .plan-name {
  color: white;
}

.plan-tagline {
  font-size: 14px;
  font-weight: 500;
}

.plan-card .plan-tagline {
  color: #64748b;
}

.plan-card.featured .plan-tagline {
  color: #9ca3af;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
}

.plan-card .price-amount {
  color: #0f172a;
}

.plan-card.featured .price-amount {
  color: white;
}

.price-period {
  font-size: 14px;
  font-weight: 700;
}

.plan-card .price-period {
  color: #64748b;
}

.plan-card.featured .price-period {
  color: #9ca3af;
}

.plan-features {
  list-style: none;
  margin-bottom: 48px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}

.plan-card .plan-features li {
  color: #0f172a;
}

.plan-card.featured .plan-features li {
  color: white;
}

.plan-features svg {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.plan-card .plan-features svg {
  color: #16a34a;
}

.plan-card.featured .plan-features svg {
  color: #16a249;
}

.plan-cta {
  width: 100%;
  padding: 20px 0;
  border-radius: 16px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.plan-card .plan-cta {
  border: 2px solid #f3f4f6;
  color: #0f172a;
}

.plan-card:hover .plan-cta {
  border-color: #16a249;
  color: #16a249;
}

.plan-card.featured .plan-cta {
  background-color: #16a249;
  color: white;
  box-shadow: 0 20px 25px -5px rgba(22, 162, 73, 0.2);
}

.plan-card.featured .plan-cta:hover {
  background-color: #128a3d;
}

/* Responsive */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 72px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
