/* FAQ — static Q&A, minimal chrome */

.faq-page__stack {
  width: 100%;
}

.faq-page__stack > .faq-intro,
.faq-page__stack > .faq-list,
.faq-page__stack > .faq-footnote {
  width: 100%;
  max-width: 100%;
}

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

/* Intro */
.faq-intro {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-intro__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #111827;
  margin: 0 0 0.65rem;
}

.faq-intro__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 36rem;
  margin: 0 0 1rem;
}

.faq-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-intro__actions .btn {
  border-radius: 0.5rem;
  font-weight: 600;
}

/* List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-item__q {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  margin: 0 0 0.6rem;
}

@media (min-width: 768px) {
  .faq-item__q {
    font-size: 1.08rem;
    gap: 0.85rem;
  }
}

.faq-item__n {
  flex: 0 0 auto;
  min-width: 2rem;
  padding: 0.22rem 0.45rem;
  margin-top: 0.1rem;
  border-radius: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background: #d14d33;
}

.faq-item__a {
  padding-left: calc(2rem + 0.75rem);
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .faq-item__a {
    padding-left: calc(2rem + 0.85rem);
    font-size: 0.98rem;
  }
}

.faq-item__a p:last-child {
  margin-bottom: 0;
}

.faq-item__a ul {
  margin: 0 0 0.5rem;
  padding-left: 1.15rem;
}

.faq-item__a li + li {
  margin-top: 0.3rem;
}

/* Footnote */
.faq-footnote {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6b7280;
  margin-bottom: 0;
}

/* Trust strip */
.faq-trust {
  margin-top: 2rem;
}

.faq-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .faq-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .faq-trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.faq-trust__item {
  padding: 1rem 1.1rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.faq-trust__value {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 0.3rem;
}

.faq-trust__label {
  font-size: 0.86rem;
  line-height: 1.45;
  color: #6b7280;
}

/* Bottom CTA */
.faq-cta {
  margin-top: 2rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2.25rem);
  text-align: center;
  border-radius: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid color-mix(in srgb, var(--detail-accent, #d14d33) 12%, #e4e4e0);
  background:
    radial-gradient(120% 90% at 12% -20%, color-mix(in srgb, var(--detail-accent, #d14d33) 14%, transparent), transparent 52%),
    linear-gradient(168deg, #ffffff 0%, #fafaf8 42%, #f4f6f5 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 22px 48px -28px rgba(15, 23, 42, 0.18);
}

.faq-cta__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: #111827;
  margin: 0 0 0.6rem;
}

.faq-cta__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 34rem;
  margin: 0 auto 1.25rem;
}

.faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.faq-cta__actions .btn {
  border-radius: 0.75rem;
  font-weight: 600;
}

.faq-cta__actions .btn-dark {
  color: #fff;
  background-color: var(--detail-accent, #d14d33);
  border-color: var(--detail-accent, #d14d33);
}

.faq-cta__actions .btn-dark:hover,
.faq-cta__actions .btn-dark:focus {
  color: #fff;
  background-color: color-mix(in srgb, var(--detail-accent, #d14d33) 88%, #000);
  border-color: color-mix(in srgb, var(--detail-accent, #d14d33) 88%, #000);
}
