/* ── FAQ SECTION ── */
.faq-section { padding: 0 32px var(--section-py); }
.faq-inner { max-width: 780px; margin: 0 auto; }

.faq-category { margin-bottom: 44px; }
.faq-category:last-of-type { margin-bottom: 0; }

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.faq-category-icon { font-size: 20px; line-height: 1; }
.faq-category-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── ACCORDION ITEM ── */
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item[open] {
  border-color: rgba(56, 189, 248, 0.3);
  background: var(--glass-bg-h);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-primary);
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-icon-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item[open] .faq-icon-toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: #07090f;
}

.faq-answer {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  animation: faqFadeIn 0.25s ease;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CTA STRIP ── */
.faq-cta {
  margin-top: 56px;
  background: var(--glass-bg);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(12px);
}
.faq-cta-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.faq-cta-text {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .faq-section { padding-left: 20px; padding-right: 20px; }
  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .faq-cta .btn-whatsapp { width: 100%; justify-content: center; }
  .faq-item summary { padding: 16px 18px; font-size: 14px; }
  .faq-answer { padding: 0 18px 18px; }
}
