.pricing-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 20px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 18px;
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff671b, #ff8c42);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.plan-title {
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 4px;
  text-align: center;
}

.plan-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #86868b;
  margin-bottom: 20px;
  text-align: center;
}

.price {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #ff671b;
}

.price-period {
  font-size: 20px;
  font-weight: 400;
  color: #ff671b;
}

.price-info {
  text-align: center;
  margin-bottom: 20px;
  min-height: 20px;
}

.price-detail {
  font-size: 14px;
  color: #86868b;
  font-weight: 500;
}

.divider {
  height: 1px;
  background: #d2d2d7;
  margin: 24px 0;
}

.benefits {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #86868b;
  font-weight: 500;
}

.benefits li::before {
  content: '✓';
  color: #34c759;
  font-weight: bold;
  margin-right: 12px;
  font-size: 18px;
}

.cta-button {
  width: 100%;
  background: #ff671b;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.cta-button:hover {
  background: #e55a15;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 103, 27, 0.3);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(0);
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #34c759;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(12deg);
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    gap: 24px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    min-width: unset;
    max-width: unset;
  }
}

@media (max-width: 768px) {
  .plan-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .price {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .price {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .plan-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .price-detail {
    font-size: 13px;
  }
}

