/* scoped: si-FAQSection */

  .faq-section:where(.si-FAQSection, .si-FAQSection *){
    width: 100%;
    min-height: 624px;
    padding: 80px;
    display: flex;
    align-items: flex-start;
    background: #F7F7FA;
    box-sizing: border-box;
  }

  /* ── Left col ── */
  .left-col:where(.si-FAQSection, .si-FAQSection *){
    width: 667px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    flex-shrink: 0;
  }

  /* ── Right col ── */
  .right-col:where(.si-FAQSection, .si-FAQSection *){
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 76px;
  }

  .yt-wrap:where(.si-FAQSection, .si-FAQSection *){
    width: 613px;
    height: 332px;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .yt-thumb:where(.si-FAQSection, .si-FAQSection *){
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .play-btn:where(.si-FAQSection, .si-FAQSection *){
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
  }
  .play-btn:hover:where(.si-FAQSection, .si-FAQSection *){
    transform: translate(-50%, -50%) scale(1.1);
  }

  /* ── FAQ Heading ── */
  .faq-heading:where(.si-FAQSection, .si-FAQSection *){
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-title:where(.si-FAQSection, .si-FAQSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #1A1A24;
    margin: 0;
  }

  .faq-subtitle:where(.si-FAQSection, .si-FAQSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    color: #1A1A24;
  }

  .faq-underline:where(.si-FAQSection, .si-FAQSection *){
    width: 60px;
    height: 4px;
    background: #D62121;
  }

  /* ── Questions list ── */
  .questions-list:where(.si-FAQSection, .si-FAQSection *){
    width: 630px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .question-item:where(.si-FAQSection, .si-FAQSection *){
    width: 630px;
    background: #FFFFFF;
    border: 1px solid #E5E5EB;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .question-trigger:where(.si-FAQSection, .si-FAQSection *){
    width: 100%;
    height: 44px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }

  .question-text:where(.si-FAQSection, .si-FAQSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #1A1A24;
  }

  .question-arrow:where(.si-FAQSection, .si-FAQSection *){
    color: #D62121;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 180ms ease;
  }

  .question-item.is-open .question-arrow:where(.si-FAQSection, .si-FAQSection *){
    transform: rotate(180deg);
  }

  /* ── Accordion answer ── */
  .question-answer:where(.si-FAQSection, .si-FAQSection *){
    height: 0;
    overflow: hidden;
    transition: height 250ms ease;
  }

  .question-answer-inner:where(.si-FAQSection, .si-FAQSection *){
    padding: 0 15px 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #272727;
  }

  /* ── Button ── */
  .faq-btn:where(.si-FAQSection, .si-FAQSection *){
    width: 173px;
    padding: 15px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: linear-gradient(90deg, #D62121 0%, #701111 100%);
    box-shadow: 0px 4px 20.4px 0px #D62121C2;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .faq-btn:hover:where(.si-FAQSection, .si-FAQSection *){ opacity: 0.9; }



  html.is-mobile .faq-section:where(.si-FAQSection, .si-FAQSection *){
    width: 430px;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px 0;
    box-sizing: border-box;
    gap: 52px;
  }

  html.is-mobile .faq-section .left-col:where(.si-FAQSection, .si-FAQSection *){
    width: 100%;
    align-items: center;
    gap: 24px;
  }

  html.is-mobile .faq-section .right-col:where(.si-FAQSection, .si-FAQSection *){
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    width: 430px;
    margin-left: -40px;
    margin-right: -40px;
    margin-top: 0;
  }

  html.is-mobile .faq-section .yt-wrap:where(.si-FAQSection, .si-FAQSection *){
    width: 430px;
    height: 241px;
    flex-shrink: 0;
  }

  html.is-mobile .faq-section .faq-heading:where(.si-FAQSection, .si-FAQSection *){
    align-items: center;
    gap: 12px;
  }

  html.is-mobile .faq-section .faq-title:where(.si-FAQSection, .si-FAQSection *){
    font-size: 22px;
    text-align: center;
  }

  html.is-mobile .faq-section .faq-subtitle:where(.si-FAQSection, .si-FAQSection *){
    font-size: 22px;
    text-align: center;
  }

  html.is-mobile .faq-section .faq-underline:where(.si-FAQSection, .si-FAQSection *){
    width: 60px;
    height: 4px;
  }

  html.is-mobile .faq-section .questions-list:where(.si-FAQSection, .si-FAQSection *){
    width: 350px;
    height: auto;
    gap: 12px;
  }

  html.is-mobile .faq-section .question-item:where(.si-FAQSection, .si-FAQSection *){
    width: 350px;
    border-radius: 8px;
    border: 1px solid #E5E5EB;
    overflow: hidden;
  }

  html.is-mobile .faq-section .question-trigger:where(.si-FAQSection, .si-FAQSection *){
    padding: 0 15px;
  }

  html.is-mobile .faq-section .question-text:where(.si-FAQSection, .si-FAQSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
  }

  html.is-mobile .faq-section .faq-btn:where(.si-FAQSection, .si-FAQSection *){
    width: 350px;
    height: 44px;
    padding: 15px 22px;
    gap: 10px;
    border-radius: 4px;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    display: inline-flex;
    align-items: center;
  }
