/* FAQ Section Styles */

.faq-section {
  width: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  margin: 0;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.faq-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* FAQ Section Split Layout */
.faq-section__container--split {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-section__left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 320px;
  max-width: 420px;
  padding-top: 24px;
}

.faq-section__mini-title {
  color: #6366f1;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.faq-section__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 32px;
  text-align: left;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.faq-section__illustration {
  width: 100%;
  max-width: 320px;
  margin-top: 24px;
  margin-bottom: 0;
  display: block;
}

.faq-section__right {
  flex: 1 1 60%;
  min-width: 320px;
  max-width: 600px;
  width: 100%;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0;
  max-width: none;
}

/* FAQ Checkbox - Hidden */
.faq-checkbox {
  display: none;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(16,30,54,0.04);
  transition: box-shadow 0.2s;
  overflow: hidden;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(16,30,54,0.10);
}
.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  transition: background 0.2s;
}
.faq-item__header:hover {
  background: #f3f4f6;
}
.faq-item__question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #6366f1;
  transition: background 0.2s, color 0.2s;
  margin-left: 16px;
}
.faq-checkbox:checked + .faq-item__header .faq-item__icon {
  background: #6366f1;
  color: #fff;
}
.faq-item__icon i {
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.faq-checkbox:checked + .faq-item__header .faq-item__icon i {
  transform: rotate(180deg);
}
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  background: #fff;
  padding: 0 28px;
}
.faq-checkbox:checked ~ .faq-item__content {
  max-height: 200px;
  padding: 0 28px 22px;
}
.faq-item__content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 0;
}

/* Checkbox checked states */
.faq-checkbox:checked + .faq-item__header {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-bottom: 1px solid #e2e8f0;
}

.faq-checkbox:checked + .faq-item__header::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  opacity: 1;
}

.faq-checkbox:checked + .faq-item__header .faq-item__icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transform: rotate(180deg);
}

.faq-checkbox:checked + .faq-item__header .faq-item__icon i {
  transform: rotate(45deg);
}

.faq-checkbox:checked ~ .faq-item__content {
  max-height: 200px;
  padding: 0 32px 24px;
}

/* Hover effects for checked state */
.faq-checkbox:checked + .faq-item__header:hover {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-section__container--split {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
  }
  .faq-section__left, .faq-section__right {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding-top: 0;
  }
  .faq-section__illustration {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .faq-section__container--split {
    padding: 0 4vw;
    gap: 20px;
  }
  .faq-section__title {
    font-size: 1.3rem;
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
  }
  .faq-section__mini-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  .faq-section__illustration {
    max-width: 120px;
    margin-top: 12px;
  }
  .faq-item__header {
    padding: 14px 14px;
    font-size: 1rem;
  }
  .faq-item__icon {
    width: 26px;
    height: 26px;
    margin-left: 8px;
    font-size: 1rem;
  }
  .faq-item__content {
    padding: 0 14px;
  }
  .faq-checkbox:checked ~ .faq-item__content {
    padding: 0 14px 14px;
  }
} 