/* ==========================================================================
   FAQ accordion + CTA final + footer
   ========================================================================== */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item[open],
.faq-item:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  padding: 1.1rem 1.4rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
}
.faq-q::after {
  content: '';
  width: 14px; height: 14px;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-a {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  display: none;
}
.faq-a.open { display: block; }
.faq-a strong { color: var(--text-dark); }

.faq-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.faq-bottom a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px dashed var(--primary);
}
.faq-bottom a:hover { color: var(--primary-dark); }

/* === CTA final === */
.cta-final {
  background: var(--gradient);
  color: white;
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}
.cta-final .inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-final p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.cta-final .btns {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-final .btn-primary {
  background: white;
  color: var(--text-dark);
}
.cta-final .btn-primary:hover { background: var(--bg-soft); }
.cta-final .btn-ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: white;
  backdrop-filter: blur(8px);
}
.cta-final .btn-ghost:hover { background: rgba(255,255,255,0.2); }
.cta-final .legal {
  font-size: 0.82rem;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.75);
}

/* === Footer === */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-brand { margin-bottom: 1rem; }
.footer-brand p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a {
  color: var(--text-light);
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-bottom .status .dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
}

@media (max-width: 880px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .cta-final { padding: 3rem 1.5rem; }
}
