/*=====================================
FAQS
=====================================*/

.faqs { padding: 112px 0; background: #f8faff; }
.faqs-container { width: min(93%, 1050px); margin: auto; }
.faqs-heading { margin-bottom: 48px; text-align: center; }
.faqs-kicker { display: inline-flex; align-items: center; gap: 6px; padding: 7px 15px; border: 1px solid #c7d2fe; border-radius: 999px; background: #eef2ff; color: #4264f5; font-size: 10px; font-weight: 700; letter-spacing: .65px; }
.faqs-heading h2 { margin: 14px 0 11px; color: #0f172a; font-size: clamp(34px, 4vw, 43px); font-weight: 800; letter-spacing: -.8px; line-height: 1.15; }
.faqs-heading h2 span { background: linear-gradient(90deg, #2563eb, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.faqs-heading p { margin: 0; color: #64748b; font-size: 16px; }
.faqs-heading p a { color: #2563eb; font-weight: 700; }
.faqs-heading p a i { font-size: 14px; transition: transform .2s ease; }
.faqs-heading p a:hover i { display: inline-block; transform: translateX(3px); }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid #eaf0f7; border-radius: 15px; background: #fff; box-shadow: 0 6px 17px rgba(15, 23, 42, .04); transition: box-shadow .25s ease, border-color .25s ease; }
.faq-item.is-open { border-color: #e4eaff; box-shadow: 0 14px 31px rgba(37, 99, 235, .08); }
.faq-question { display: flex; width: 100%; min-height: 68px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 19px; border: 0; background: #fff; color: #0f172a; font-family: inherit; font-size: 13px; font-weight: 700; text-align: left; cursor: pointer; }
.faq-question i { display: inline-flex; width: 31px; height: 31px; flex: 0 0 31px; align-items: center; justify-content: center; border-radius: 11px; background: #f1f5f9; color: #64748b; font-size: 12px; transition: transform .25s ease, background .25s ease, color .25s ease; }
.faq-item.is-open .faq-question { color: #2563eb; }
.faq-item.is-open .faq-question i { transform: rotate(180deg); background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; }
.faq-answer { border-top: 1px solid #edf2f7; padding: 15px 19px 18px; }
.faq-answer p { max-width: 940px; margin: 0; color: #475569; font-size: 13px; line-height: 1.7; }
@media (max-width: 680px) { .faqs { padding: 78px 0; } .faqs-container { width: min(90%, 560px); } .faqs-heading { margin-bottom: 36px; } .faqs-heading p { font-size: 14px; } .faq-question { min-height: 64px; padding: 15px; font-size: 12px; } .faq-answer { padding: 13px 15px 16px; } .faq-answer p { font-size: 12px; } }
