/*
 * Connectplatform – Expectations + FAQ
 */

/* ---------- Section ---------- */
.expectations-faq { padding: 96px 0; background: #fff; }
.expectations-faq__container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: .92fr 1.08fr; gap: 120px; align-items: start; }
.expectations-faq__left,
.expectations-faq__right { min-width: 0; }

/* ---------- Titles ---------- */
.expectations-faq__title { margin: 0 0 34px; color: #07163b; font-family: "Manrope", sans-serif; font-size: clamp(36px, 3.2vw, 46px); font-weight: 700; line-height: 1.04; letter-spacing: -0.045em; }
.expectations-faq__left .expectations-faq__title { max-width: 430px; }
.expectations-faq__right .expectations-faq__title { max-width: 540px; }

/* ---------- Expectations ---------- */
.expectations-faq__list { display: flex; flex-direction: column; gap: 15px; margin: 0; padding: 0; list-style: none; }
.expectations-faq__list-item { display: flex; align-items: center; gap: 14px; margin: 0; color: #59657f; font-family: "Inter", sans-serif; font-size: 16px; font-weight: 400; line-height: 1.55; }
.expectations-faq__check { width: 36px; height: 36px; flex: 0 0 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #b9eba9; color: #092144; }
.expectations-faq__check svg { width: 17px; height: 17px; }
.expectations-faq__list-text { display: block; }
.expectations-faq__note { margin: 27px 0 0; color: #8a94a9; font-family: "Inter", sans-serif; font-size: 14px; font-weight: 400; line-height: 1.6; }

/* ---------- FAQ ---------- */
.expectations-faq__accordion { width: 100%; border-top: 1px solid #dfe3ea; }
.expectations-faq__item { margin: 0; border-bottom: 1px solid #dfe3ea; }
.expectations-faq__question { min-height: 53px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 15px 0; color: #061538; font-family: "Inter", sans-serif; font-size: 14px; font-weight: 600; line-height: 1.55; cursor: pointer; list-style: none; transition: color .2s ease; }
.expectations-faq__question::-webkit-details-marker { display: none; }
.expectations-faq__question::marker { content: ""; }
.expectations-faq__question:hover { color: #2aa8d8; }
.expectations-faq__arrow { width: 18px; height: 18px; flex: 0 0 18px; display: flex; align-items: center; justify-content: center; color: #8290a8; transition: transform .25s ease, color .2s ease; }
.expectations-faq__arrow svg { width: 15px; height: 15px; }
.expectations-faq__item[open] .expectations-faq__arrow { transform: rotate(180deg); color: #2aa8d8; }
.expectations-faq__answer { padding: 0 42px 20px 0; color: #68758c; font-family: "Inter", sans-serif; font-size: 14px; font-weight: 400; line-height: 1.75; }
.expectations-faq__answer p { margin: 0 0 12px; }
.expectations-faq__answer p:last-child { margin-bottom: 0; }
.expectations-faq__answer ul,
.expectations-faq__answer ol { margin: 12px 0; padding-left: 20px; }
.expectations-faq__answer a { color: #2aa8d8; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
.expectations-faq { padding: 80px 0; }
.expectations-faq__container { gap: 70px; grid-template-columns: .9fr 1.1fr; }
.expectations-faq__title { font-size: clamp(34px, 4vw, 42px); }
}

@media (max-width: 800px) {
.expectations-faq { padding: 70px 0; }
.expectations-faq__container { grid-template-columns: 1fr; gap: 56px; }
.expectations-faq__left .expectations-faq__title,
.expectations-faq__right .expectations-faq__title { max-width: none; }
.expectations-faq__title { margin-bottom: 28px; }
}

@media (max-width: 600px) {
.expectations-faq { padding: 56px 0; }
.expectations-faq__container { width: min(100% - 32px, 1200px); gap: 48px; }
.expectations-faq__title { margin-bottom: 25px; font-size: 32px; line-height: 1.08; }
.expectations-faq__list { gap: 13px; }
.expectations-faq__list-item { align-items: flex-start; gap: 12px; font-size: 15px; }
.expectations-faq__check { width: 32px; height: 32px; flex-basis: 32px; }
.expectations-faq__check svg { width: 15px; height: 15px; }
.expectations-faq__list-text { padding-top: 4px; }
.expectations-faq__note { margin-top: 23px; }
.expectations-faq__question { min-height: 56px; gap: 16px; padding: 16px 0; }
.expectations-faq__answer { padding: 0 30px 18px 0; }
}