/* ═══════════════════════════════════════════════════════
   sections/faq.css — AJG AI Solutions
   FAQ accordion section
   ═══════════════════════════════════════════════════════ */

.faq-grid {
  display: grid;
  gap: 8px !important;
}

.faq-item {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,22,40,0.42);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  box-shadow: 0 10px 40px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 1.1rem 1.4rem !important;
  transition: .3s ease;
}
.faq-item:hover {
  border-color: rgba(53,216,255,.22);
  border-left-color: rgba(53,216,255,.50);
  background: rgba(255,255,255,.05);
}

.faq-q {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  user-select: none;
  font-size: 0.95rem !important;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  line-height: 1.35;
}
.faq-q::after {
  content: '+' !important;
  font-size: 20px !important;
  font-weight: 300;
  color: rgba(53,216,255,.6);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
  transition: transform 0.3s ease !important;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg) !important;
  color: rgba(53,216,255,.9);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease, margin-top .3s ease;
  max-width: 960px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.66);
}
.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .faq-a {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}
