/* ============================================
   FAQ PAGE
   ============================================ */

.faq-page {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 100px;
  padding-bottom: 100px;
}

/* Left column */
.faq__left {
  padding-top: 56px;
}

.faq__title {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0 0 18px;
}

.faq__subtitle {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0,0,0,.55);
  margin: 0;
}

/* Right column */
.faq__right {
  padding-top: 40px;
}

/* Accordion */
.faq__acc {
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.faq__row {
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.faq__q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
}

.faq__q:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .2);
  outline-offset: 4px;
  border-radius: 6px;
}

/* +/x icon */
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #000;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: opacity .22s ease, transform .22s ease;
}

.faq__icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq__q[aria-expanded="true"] .faq__icon::after {
  opacity: 0;
}

/* Answer panel */
.faq__a {
  overflow: hidden;
}

.faq__ainner {
  padding: 0 0 28px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
}

.faq__ainner p {
  margin: 0 0 14px;
}

.faq__ainner p:last-child {
  margin: 0;
}

/* CTA block */
.faq__cta {
  margin-top: 60px;
}

.faq__cta p {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  color: rgba(0,0,0,.75);
  line-height: 1.6;
  margin: 0 0 20px;
}

.faq__btn {
  display: block;
  width: 100%;
  height: 58px;
  line-height: 58px;
  text-align: center;
  background: #ffd84a;
  color: #000;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.faq__btn:hover {
  background: #f5ce44;
  transform: translateY(-1px);
  color: #000;
}

.faq__btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-page {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq__left {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .faq__right {
    padding-top: 0;
  }
}

@media (max-width: 520px) {
  .faq__title {
    font-size: 36px;
  }

  .faq__q {
    font-size: 17px;
    padding: 22px 0;
  }

  .faq__ainner {
    font-size: 15px;
  }
}