/* Business Solutions Page Styles */

/* Hero Section */
.business-hero {
  text-align: center;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #1a56db 0%, #0d3a8f 100%);
  color: #ffffff;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.business-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.business-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Benefits Section */
.business-benefits {
  margin-bottom: 4rem;
}

.business-benefits h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #1a56db;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Business Types Section */
.business-types {
  margin-bottom: 4rem;
}

.business-types h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

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

.business-type-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.business-type-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.business-type-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.business-type-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1.5rem 1.5rem 0.75rem;
  color: #1a1a1a;
}

.business-type-card > p {
  margin: 0 1.5rem 1rem;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

.business-features {
  list-style: none;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

.business-features li {
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.9rem;
  border-top: 1px solid #f3f4f6;
}

.business-features li:first-child {
  border-top: none;
  padding-top: 0;
}

/* Partnership Levels Section */
.partnership-levels {
  margin-bottom: 4rem;
  background: #f9fafb;
  padding: 3rem 2rem;
  border-radius: 8px;
}

.partnership-levels h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.level-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.level-card.featured {
  border-color: #1a56db;
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(26, 86, 219, 0.15);
}

.level-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.level-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.level-badge.bronze {
  background: #cd7f32;
  color: #ffffff;
}

.level-badge.silver {
  background: #c0c0c0;
  color: #1a1a1a;
}

.level-badge.gold {
  background: #ffd700;
  color: #1a1a1a;
}

.level-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.level-price {
  color: #1a56db;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.level-benefits li {
  padding: 0.75rem 0;
  color: #374151;
  font-size: 0.95rem;
  border-top: 1px solid #f3f4f6;
}

.level-benefits li:first-child {
  border-top: none;
}

/* CTA Section */
.business-cta {
  text-align: center;
  background: linear-gradient(135deg, #1a56db 0%, #0d3a8f 100%);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 8px;
  margin-bottom: 4rem;
}

.business-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.business-cta p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .button {
  background: #ffffff;
  color: #1a56db;
  padding: 0.875rem 2rem;
  font-weight: 600;
}

.cta-buttons .button:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.cta-buttons .button-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-buttons .button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* FAQ Section */
.business-faq {
  margin-bottom: 3rem;
}

.business-faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #1a56db;
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.faq-item p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .business-hero h1 {
    font-size: 1.75rem;
  }

  .business-subtitle {
    font-size: 1rem;
  }

  .business-benefits h2,
  .business-types h2,
  .partnership-levels h2,
  .business-cta h2,
  .business-faq h2 {
    font-size: 1.5rem;
  }

  .benefits-grid,
  .business-types-grid,
  .levels-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .level-card.featured {
    transform: scale(1);
  }

  .level-card.featured:hover {
    transform: translateY(-4px);
  }

  .partnership-levels {
    padding: 2rem 1rem;
  }

  .business-cta {
    padding: 2rem 1rem;
  }

  .business-cta h2 {
    font-size: 1.5rem;
  }

  .business-cta p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .business-hero {
    padding: 2rem 1rem;
  }

  .business-hero h1 {
    font-size: 1.5rem;
  }

  .benefit-card,
  .business-type-card,
  .level-card,
  .faq-item {
    padding: 1.25rem;
  }

  .benefit-icon {
    font-size: 2.5rem;
  }
}
