/* Shared FAQ: one aligned question list, with a stacked layout on small screens. */
#faq.faq-modern {
  padding: 96px 0;
  background: radial-gradient(ellipse at 0 0, #eaf4ff 0, transparent 48%), #f7f9fc;
  border-top: 1px solid #e8eef7;
  border-bottom: 1px solid #e8eef7;
}
#faq .faq-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.4fr); gap: clamp(32px, 5vw, 76px); align-items: start; }
#faq .faq-intro { padding-top: 10px; }
#faq .faq-eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #1455d9; font-size: 11px; font-weight: 700; letter-spacing: .13em; }
#faq .faq-eyebrow i { display: grid; place-items: center; width: 32px; height: 32px; background: #e6eeff; border-radius: 10px; font-size: 15px; }
#faq .faq-intro h2 { margin: 22px 0 18px; color: #081a3d; font-size: clamp(34px, 3.8vw, 48px); font-weight: 800; line-height: 1.12; letter-spacing: -.04em; }
#faq .faq-intro h2 span { color: #1455d9; }
#faq .faq-intro > p { max-width: 340px; margin: 0 0 26px; color: #58677d; font-size: 16px; line-height: 1.75; }
#faq .faq-contact-link { display: inline-flex; align-items: center; gap: 10px; color: #102c53; font-size: 13px; font-weight: 600; min-height: 48px; padding: 13px 15px; background: #fff; border: 1px solid #dbe5f3; border-radius: 12px; }
#faq .faq-contact-link > i:first-child { color: #078461; font-size: 19px; }
#faq .faq-contact-link:hover { border-color: #1455d9; color: #1455d9; }
#faq .faq-contact-link:focus-visible { outline: 3px solid #1455d9; outline-offset: 4px; }
#faq .faq-intro-note { display: flex; align-items: baseline; gap: 7px; margin-top: 18px; color: #64748b; font-size: 11px; line-height: 1.6; }
#faq .faq-intro-note > span { flex-shrink: 0; width: 5px; height: 5px; background: #159778; border-radius: 50%; }
#faq .faq-list-heading { display: flex; justify-content: space-between; gap: 12px; margin: 0 2px 16px; color: #64748b; font-size: 11px; font-weight: 600; letter-spacing: .035em; }
#faq .faq-list-heading > span:last-child { white-space: nowrap; color: #1455d9; font-variant-numeric: tabular-nums; }
#faq .accordion { display: grid; gap: 12px; }
#faq .accordion-item { margin: 0; overflow: hidden; border: 1px solid #dfe7f2; border-radius: 16px; background: #fff; box-shadow: 0 4px 14px #19365604; transition: border-color 180ms ease, box-shadow 180ms ease; }
#faq .accordion-item:hover { border-color: #aabfdf; }
#faq .accordion-item:has(.accordion-button[aria-expanded="true"]) { border-color: #b6ccef; box-shadow: 0 8px 24px #1455d909; }
#faq .accordion-header { margin: 0; }
#faq .accordion-button { display: grid; grid-template-columns: 30px minmax(0, 1fr) 32px; align-items: center; gap: 12px; width: 100%; min-height: 82px; padding: 20px 22px; border: 0; border-radius: 0; background: #fff; color: #132d50; text-align: left; font-size: 16px; font-weight: 600; line-height: 1.45; box-shadow: none; }
#faq .accordion-button::after { display: none; }
#faq .accordion-button:not(.collapsed) { color: #1455d9; background: #f2f6ff; box-shadow: none; }
#faq .accordion-button:focus-visible { outline: 3px solid #1455d9; outline-offset: -4px; box-shadow: none; }
#faq .faq-number { color: #8798af; font-size: 11px; letter-spacing: .04em; font-weight: 500; font-variant-numeric: tabular-nums; }
#faq .faq-question-text { min-width: 0; overflow-wrap: anywhere; }
#faq .faq-toggle-icon { position: relative; width: 32px; height: 32px; border: 1px solid #e0e8f4; border-radius: 50%; background: #f7f9fc; }
#faq .faq-toggle-icon::before, #faq .faq-toggle-icon::after { content: ''; position: absolute; top: 14px; left: 9px; width: 12px; height: 2px; border-radius: 1px; background: #1455d9; }
#faq .faq-toggle-icon::after { transform: rotate(90deg); transition: transform 180ms ease; }
#faq .accordion-button[aria-expanded="true"] .faq-toggle-icon { background: #1455d9; border-color: #1455d9; }
#faq .accordion-button[aria-expanded="true"] .faq-toggle-icon::before, #faq .accordion-button[aria-expanded="true"] .faq-toggle-icon::after { background: #fff; }
#faq .accordion-button[aria-expanded="true"] .faq-toggle-icon::after { transform: rotate(0); }
#faq .accordion-body { padding: 18px 66px 24px 64px; color: #52647c; font-size: 14px; line-height: 1.8; overflow-wrap: anywhere; }
@media (max-width: 991px) {
  #faq.faq-modern { padding: 64px 0; }
  #faq .faq-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; max-width: 720px; margin: auto; }
  #faq .faq-intro { padding: 0; }
  #faq .faq-intro > p { max-width: 480px; margin-bottom: 18px; }
  #faq .faq-intro-note { display: none; }
}
@media (max-width: 575px) {
  #faq.faq-modern { padding: 48px 0; }
  #faq > .container { padding-left: 20px; padding-right: 20px; }
  #faq .faq-intro h2 { font-size: 36px; margin-top: 18px; }
  #faq .faq-intro > p { font-size: 15px; }
  #faq .faq-contact-link { font-size: 12px; gap: 8px; padding: 12px; }
  #faq .accordion { gap: 10px; }
  #faq .accordion-item { border-radius: 13px; }
  #faq .accordion-button { grid-template-columns: 20px minmax(0, 1fr) 28px; gap: 9px; min-height: 78px; padding: 17px 14px; font-size: 15px; line-height: 1.5; }
  #faq .faq-number { font-size: 10px; }
  #faq .faq-toggle-icon { width: 28px; height: 28px; }
  #faq .faq-toggle-icon::before, #faq .faq-toggle-icon::after { top: 12px; left: 7px; }
  #faq .accordion-body { padding: 14px 18px 20px 43px; font-size: 14px; line-height: 1.75; }
}
@media (prefers-reduced-motion: reduce) {
  #faq *, #faq *::before, #faq *::after { transition: none !important; }
}
