/* Section */
.faq-section-saas {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

/* Title */
.faq-title-saas {
  font-size: 34px;
  font-weight: 700;
}

.faq-subtitle-saas {
  font-size: 16px;
  color: #6c757d;
}

/* FAQ Item */
.faq-item-saas {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.06);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item-saas:hover {
  box-shadow: 0 18px 40px rgba(13, 110, 253, 0.12);
}

/* Toggle Button */
.faq-toggle-saas {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  cursor: pointer;
}

.faq-toggle-saas:focus {
  outline: none;
}

/* Icon */
.faq-icon::before {
  content: "+";
  font-size: 22px;
  font-weight: 500;
  color: #0d6efd;
  transition: all 0.2s ease;
}

.faq-toggle-saas[aria-expanded="true"] .faq-icon::before {
  content: "-";
  font-size: 26px;
}

/* Content */
.faq-content-saas {
  border-top: 1px solid #f1f3f8;
}

.faq-answer-saas {
  padding: 18px 26px 26px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title-saas {
    font-size: 28px;
  }

  .faq-toggle-saas {
    font-size: 16px;
    padding: 18px 20px;
  }
}
