/* Professional Pricing Page Redesign */
/* Navigation styles are now in styles.css - using .modern-nav */

/* Container */
.pricing-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 32px;
}

/* Header */
.pricing-header-new {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header-new h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.pricing-header-new p {
  font-size: 1.125rem;
  color: #6b7280;
}

/* Pricing Row - All Plans in One Row */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  align-items: stretch;
}

/* Plan Card */
.plan-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 0;
  display: grid;
  grid-template-rows: auto auto 60px auto;
  transition: all 0.3s;
  position: relative;
}

.plan-card:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.plan-card.popular {
  border-color: #2563eb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.plan-card.enterprise {
  border-color: #1e40af;
}

/* Badges */
.popular-badge,
.enterprise-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.enterprise-badge {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

/* Plan Header */
.plan-header {
  padding: 32px 24px 24px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.plan-price {
  margin-bottom: 12px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
}

.price-period {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.plan-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Plan Features */
.plan-features {
  padding: 24px;
  display: block;
}

.feature-item {
  padding: 8px 0;
  font-size: 0.875rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.feature-item:last-child {
  border-bottom: none;
}

/* Spacer - hidden, not needed with grid */
.plan-button-spacer {
  display: none;
}

/* Button Wrapper - Fixed position in grid */
.plan-button-wrapper {
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.plan-button {
  width: 100%;
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #374151;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.plan-button:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.plan-button.primary {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.plan-button.primary:hover {
  background: #1e40af;
  border-color: #1e40af;
}

.plan-button.current {
  background: #f3f4f6;
  color: #6b7280;
  border-color: #e5e7eb;
  cursor: default;
}

/* Plan Extras - Bottom Section */
.plan-extras {
  background: #f9fafb;
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  border-radius: 0 0 10px 10px;
}

.extras-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.extra-item {
  padding: 6px 0;
  font-size: 0.8125rem;
  color: #374151;
}

.extra-item.highlight {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  padding: 8px 12px;
  border-radius: 6px;
  margin: 4px 0;
  font-weight: 600;
  color: #1e40af;
  border-left: 3px solid #2563eb;
}

.extra-item.disabled {
  color: #9ca3af;
}

/* FAQ Section */
.pricing-faq-new {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pricing-faq-new h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.faq-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: left;
}

.faq-item-new h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.faq-item-new p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-row {
    grid-template-columns: 1fr;
  }
  
  .faq-grid-new {
    grid-template-columns: 1fr;
  }
}
