/* FAQ block. */
.faq-section { padding: 104px 0; background: var(--fa-color-primary-very-light); }
.faq-section__grid { display: grid; grid-template-columns: minmax(280px, 420px) minmax(0, 1fr); gap: 88px; align-items: start; }
.faq-section__intro { position: sticky; top: 28px; }
.faq-section__eyebrow { margin: 0 0 16px; color: var(--fa-color-primary); font-size: 13px; line-height: 1.4; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.faq-section__title { margin: 0; color: var(--fa-color-text); font-size: 46px; line-height: 1.08; font-weight: 500; letter-spacing: -.035em; }
.faq-section__title em { color: var(--fa-color-primary); font-style: normal; }
.faq-section__text { margin-top: 24px; color: rgba(0, 0, 0, .68); font-size: 16px; line-height: 1.7; }
.faq-section__text > :first-child { margin-top: 0; }
.faq-section__text > :last-child { margin-bottom: 0; }
.faq-section__items { display: grid; gap: 12px; }
.faq-section__item { overflow: hidden; background: rgba(255, 255, 255, .74); border: 1px solid rgba(0, 101, 177, .14); border-radius: 18px; box-shadow: 0 14px 36px rgba(0, 45, 79, .06); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.faq-section__question { display: flex; gap: 24px; align-items: center; justify-content: space-between; padding: 24px 26px; color: var(--fa-color-text); font-size: 18px; line-height: 1.35; font-weight: 700; cursor: pointer; list-style: none; }
.faq-section__question::-webkit-details-marker { display: none; }
.faq-section__toggle { position: relative; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid rgba(0, 101, 177, .3); border-radius: 50%; transition: background-color .25s ease, border-color .25s ease, transform .25s ease; }
.faq-section__toggle::before { position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; content: ""; background: var(--fa-color-primary); transform: translate(-50%, -50%); }
.faq-section__toggle::after { position: absolute; top: 50%; left: 50%; width: 2px; height: 12px; content: ""; background: var(--fa-color-primary); transform: translate(-50%, -50%); transition: opacity .25s ease; }
.faq-section__item[open] .faq-section__toggle { background: var(--fa-color-primary); border-color: var(--fa-color-primary); transform: rotate(180deg); }
.faq-section__item[open] .faq-section__toggle::before { background: var(--fa-color-background); }
.faq-section__item[open] .faq-section__toggle::after { opacity: 0; }
.faq-section__answer { padding: 0 72px 26px 26px; overflow: hidden; color: rgba(0, 0, 0, .7); font-size: 15px; line-height: 1.7; }
.faq-section__answer > :first-child { margin-top: 0; }
.faq-section__answer > :last-child { margin-bottom: 0; }
@media (max-width: 900px) {
	.faq-section { padding: 80px 0; }
	.faq-section__grid { grid-template-columns: minmax(0, 1fr); gap: 42px; }
	.faq-section__intro { position: static; max-width: 720px; }
	.faq-section__title { font-size: 42px; }
}
@media (max-width: 600px) {
	.faq-section { padding: 64px 0; }
	.faq-section__title { font-size: 36px; }
	.faq-section__question { padding: 20px; font-size: 16px; }
	.faq-section__answer { padding: 0 62px 22px 20px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
	.faq-section__toggle { transition: none; }
}
