/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--off-white); }

.faq-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.faq-h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.faq-list { text-align: left; display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq-item.open { box-shadow: 0 4px 20px rgba(4,106,129,0.1); border-color: rgba(4,106,129,0.25); }

.faq-q {
  padding: 1.35rem 1.6rem;
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-item.open .faq-q { color: var(--teal); }

.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out-expo), background 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: #fff; }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out-expo), padding 0.35s;
}
.faq-item.open .faq-body { max-height: 300px; }
.faq-a {
  padding: 0 1.6rem 1.4rem;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
}

