/* Pricing Page Specific Styles */
.pricing-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-hero .hero-title {
  margin-bottom: 1.5rem;
}

.pricing-hero .hero-title .highlight {
  color: #2563EB;
}

.pricing-hero .hero-description {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  color: #64748b;
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  background: #f1f5f9;
  border-radius: 0.75rem;
  padding: 0.25rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.billing-tab {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.625rem;
  background: transparent;
  color: #64748b;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.billing-tab.active {
  background: #2563EB;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Pricing Table */
.pricing-table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}

.pricing-table thead th {
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 2px solid #e2e8f0;
  font-weight: 700;
}

.plan-type-header {
  text-align: left !important;
  font-size: 1rem;
  color: #64748b;
  width: 30%;
}

.plan-header {
  width: 35%;
  position: relative;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 400;
}

.plan-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.plan-advanced {
  background: #F8FAFC;
  border-radius: 1rem 1rem 0 0;
}

/* Table Rows */
.pricing-row td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
  vertical-align: middle;
}

.pricing-row:last-child td {
  border-bottom: none;
}

.pricing-row:hover td {
  background: #F8FAFC;
}

.company-type-cell {
  text-align: left !important;
}

.company-type-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.125rem;
}

.company-type-desc {
  font-size: 0.8125rem;
  color: #64748b;
}

.price-cell .price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.125rem;
}

.price-cell .price-currency {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.price-period {
  font-weight: 400;
}

.cell-advanced {
  background: #F8FAFC;
}

.pricing-row:last-child .cell-advanced {
  border-radius: 0 0 1rem 1rem;
}

/* Select Plan Buttons */
.btn-select-plan {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0F172A;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.btn-select-plan:hover {
  border-color: #2563EB;
  color: #2563EB;
}

.btn-select-plan.btn-advanced {
  background: #2563EB;
  border-color: #2563EB;
  color: #fff;
}

.btn-select-plan.btn-advanced:hover {
  background: #1E40AF;
  border-color: #1E40AF;
  color: #fff;
}

/* Plan Features Comparison */
.plan-features-comparison {
  padding: 3rem 0;
  text-align: center;
}

.plan-features-comparison h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0F172A;
}

.features-grid-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-col {
  background: #F8FAFC;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
}

.feature-col-advanced {
  background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
  border-color: #2563EB;
}

.feature-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #0F172A;
}

.feature-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-col li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: #64748b;
}

.feature-col li svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #2563EB;
  flex-shrink: 0;
}

/* Additional Info */
.additional-info {
  padding: 4rem 0;
}

.info-card {
  background: #F8FAFC;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.info-card h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: #0F172A;
}

.info-card p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #64748b;
}

.info-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .info-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .pricing-hero {
    padding: 2rem 0 1rem;
  }

  .pricing-table-wrapper {
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .features-grid-compare {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .info-card {
    padding: 2rem 1.5rem;
  }
}
