/* ==========================================================================
   FIXILA - BUSINESS PAGE STYLESHEET
   Save as: /css/business.css
   Used on: business.html ONLY
   ========================================================================== */

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

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

/* NEW: 4-Column Pricing Grid */
.pricing-grid-four {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: #2563eb;
  transform: scale(1.05);
}

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

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-weight: 800;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.pricing-price {
  text-align: center;
  margin: 2rem 0;
}

.price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 0.25rem;
}

.price-period {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: #475569;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.pricing-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   ADD-ONS SECTION
   ========================================================================== */
.addons-section {
  padding: 5rem 2rem;
  background: #f8fafc;
}

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

.addon-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  text-align: center;
}

.addon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.addon-card h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1rem;
  display: block;
}

.addon-card p:last-child {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industries-section {
  padding: 6rem 2rem;
  background: #ffffff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.industry-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.industry-card:hover {
  border-left-color: #2563eb;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.industry-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
  font-weight: 700;
}

.industry-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #001833 0%, #1e3a8a 50%, #2563eb 100%);
  color: white;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
  color: white;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-logo {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.testimonial-logo svg {
  width: 32px;
  height: 32px;
}

.testimonial-stars {
  color: #FFC107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-author span {
  color: #64748b;
  font-size: 0.85rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.faq-answer {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE (Business Page Specific)
   ========================================================================== */
@media (max-width: 1200px) {
  .pricing-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pricing-header h3 {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .addon-card h3 {
    font-size: 1.1rem;
  }

  .addon-price {
    font-size: 1.3rem;
  }
}