/* ── FAQ accordion ── */
#faq,
#contact {
  scroll-margin-top: 5rem;
}

.faq {
  padding: 3.25rem 1.15rem 4rem;
  background:
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(20, 184, 166, 0.06), transparent 55%),
    var(--color-white);
  border-top: 1px solid var(--color-gray-100);
}

.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq--page {
  padding-top: 1.5rem;
}

.faq__header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 0.65rem;
}

.faq__title {
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.faq__title .accent {
  color: var(--color-orange);
}

.faq__subtitle {
  color: var(--color-gray-500);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 42ch;
  margin: 0 auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq__item[open] {
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  content: '';
}

.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-gray-500);
  transition: transform 0.2s ease, color 0.15s ease;
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--color-teal);
}

.faq__answer {
  padding: 0 1.15rem 1.15rem;
  color: var(--color-gray-500);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq__answer p + p {
  margin-top: 0.75rem;
}

.faq__answer a {
  color: var(--color-teal);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__answer a:hover {
  color: var(--color-orange);
}

.faq__more {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq__contact {
  text-align: center;
  padding: 1.75rem 1.35rem;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(252, 122, 34, 0.06) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 16px;
}

.faq__contact-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.faq__contact-text {
  color: var(--color-gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.faq__contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}

.faq__contact-actions .btn {
  width: 100%;
  max-width: 280px;
}

@media (min-width: 480px) {
  .faq {
    padding: 3.5rem 1.5rem 4.5rem;
  }

  .faq__question {
    padding: 1.2rem 1.35rem;
  }

  .faq__answer {
    padding: 0 1.35rem 1.35rem;
  }

  .faq__contact {
    padding: 2rem 2rem;
    border-radius: 20px;
  }

  .faq__contact-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .faq__contact-actions .btn {
    width: auto;
    min-width: 200px;
  }
}
