/* FAQ — akordeon jednokrotny */
.ax-faq {
  /*
   * Lista pytań to cienkie wiersze z dużym światłem między nimi, więc sekcja
   * potrzebuje mniej oddechu niż blok ze zdjęciem czy kartami. Standardowy
   * odstęp sekcji czytał się tu jako pusta przestrzeń.
   */
  padding: clamp(40px, 4.6vw, 66px) 0;
  background: var(--ax-paper);
  color: var(--ax-navy);
}

.ax-faq--sand { background: var(--ax-sand-light); }

/* Projekt doklejał FAQ do poprzedniej sekcji (bez odstępu u góry). */
.ax-faq--flush-top { padding-top: 0; }

.ax-faq__inner {
  max-width: var(--ax-maxw);
  margin: 0 auto;
  padding: 0 var(--ax-gutter);
}

.ax-faq__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(16px, 2.4vw, 40px);
  margin-bottom: clamp(24px, 3vw, 44px);
}

.ax-faq__head-col { flex: 1 1 460px; max-width: min(100%, 640px); }

.ax-faq__eyebrow {
  display: block;
  margin-bottom: var(--ax-label-gap);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ax-steel);
}

.ax-faq__heading {
  margin: 0;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}

.ax-faq__intro {
  flex: 0 1 auto;
  margin: 0;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.74;
  color: rgba(53, 59, 102, 0.66);
}

.ax-faq__head-link {
  align-self: flex-end;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ax-navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 59, 102, 0.3);
  padding-bottom: 4px;
}

.ax-faq__list { border-top: 1px solid rgba(53, 59, 102, 0.16); }

.ax-faq__item { border-bottom: 1px solid rgba(53, 59, 102, 0.16); }

.ax-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  border: 0;
  background: none;
  padding: clamp(18px, 2vw, 26px) 0;
  font: inherit;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.024em;
  color: var(--ax-navy);
  text-align: left;
  cursor: pointer;
  transition: color 320ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .ax-faq__q:hover { color: var(--ax-steel); }
}

.ax-faq__sign {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(53, 59, 102, 0.24);
  border-radius: 50%;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease;
}

.ax-faq__sign::before,
.ax-faq__sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.ax-faq__sign::before { width: 13px; height: 1px; }
.ax-faq__sign::after { width: 1px; height: 13px; }

.ax-faq__q[aria-expanded="true"] .ax-faq__sign {
  transform: rotate(45deg);
  border-color: var(--ax-steel);
}

.ax-faq__a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 420ms ease;
}

.ax-faq__a-inner {
  max-width: 74ch;
  padding: 0 0 clamp(20px, 2.2vw, 30px);
  font-size: 16.5px;
  line-height: 1.76;
  color: rgba(53, 59, 102, 0.72);
  text-wrap: pretty;
}

.ax-faq__item.is-open .ax-faq__a { opacity: 1; }

.ax-faq__band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px clamp(20px, 3vw, 44px);
  margin-top: clamp(26px, 3vw, 44px);
  border-radius: var(--ax-radius);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(53, 59, 102, 0.12);
  padding: clamp(20px, 2.2vw, 32px);
}

.ax-faq__band-eyebrow {
  display: block;
  margin-bottom: 8px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(53, 59, 102, 0.5);
}

.ax-faq__band-text {
  margin: 0;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.024em;
}

.ax-faq__band-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  background: var(--ax-navy);
  color: var(--ax-paper);
  padding: 19px 28px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 380ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .ax-faq__band-cta:hover { background: var(--ax-steel); color: var(--ax-ink); }
}

@media (max-width: 900px) {
  .ax-faq__head { align-items: flex-start; }
  .ax-faq__q { min-height: 44px; }

  .ax-faq__band-cta {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    box-sizing: border-box;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ax-faq__a { transition: none !important; }
  .ax-faq__sign { transition: none !important; }
}
