/* =========================================================
   FAQ / S.S.S. PAGE
   ========================================================= */

/* ----- Categories ----- */
.fq-cats {
  padding: 12px 0 56px;
}

.fq-cats h2 {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.fq-cats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.fq-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(27, 36, 32, 0.08);
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.fq-cat:hover {
  border-color: rgba(27, 36, 32, 0.18);
  background: #fff;
  transform: translateY(-2px);
}

.fq-cat[aria-pressed="true"] {
  border-color: rgba(42, 58, 49, 0.35);
  background: #fff;
  box-shadow: 0 14px 28px -22px rgba(27, 36, 32, 0.4);
}

.fq-cat strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.fq-cat span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ----- Main layout ----- */
.fq-main {
  padding: 8px 0 72px;
}

.fq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.fq-list-wrap h2 {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ----- Sidebar ----- */

.fq-help-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.fq-help-icon svg {
  width: 22px;
  height: 22px;
}

.fq-help h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.fq-help > p {
  margin: 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.fq-help-links {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.fq-help-links a {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.fq-help-links svg {
  width: 18px;
  height: 18px;
  color: var(--ochre);
}

.fq-help .btn {
  width: 100%;
}

.fq-quote {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(27, 36, 32, 0.08);
}

.fq-quote-media {
  aspect-ratio: 16 / 11;
  background: #ddd6cb;
}

.fq-quote-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fq-quote-body {
  padding: 20px 18px 22px;
}

.fq-quote-body p {
  margin: 0 0 14px;
  font-family: "Newsreader", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

.fq-quote-body cite {
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ----- Features bar ----- */
/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .fq-cats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .fq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fq-cats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fq-cat {
    transition: none;
  }

  .fq-cat:hover {
    transform: none;
  }
}
