/* ==========================================================================
   CUSTOM: LLM blocks (definition + FAQ) — scoped by IDs, no conflicts with t396
   ========================================================================== */

/* =========================
   #definition-orm (blue card)
   ========================= */

#definition-orm{
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

  /* 1-в-1 как у [03] */
  width: 1180px !important;
  max-width: 1180px !important;

  /* центрирование + отступы от соседних секций */
  margin: 40px auto 100px !important;

  border-radius: 24px;
  padding: 56px 64px;
  background: #0b5cff;
}

/* Декор справа */
#definition-orm::before{
  content:"";
  position: absolute;
  right: -220px;
  top: -140px;
  width: 520px;
  height: 520px;
  background: rgba(255,255,255,0.22);
  border-radius: 9999px;
  transform: rotate(18deg);
}

#definition-orm::after{
  content:"";
  position: absolute;
  right: -260px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  background: rgba(255,255,255,0.18);
  border-radius: 9999px;
  transform: rotate(18deg);
}

/* Текст внутри */
#definition-orm .llm-answer{
  position: relative;
  z-index: 1;
  margin: 0;

  color: #ffffff;
  font-size: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.35;
  font-weight: 400;

  max-width: 880px;
}

/* Когда экран уже, чем 1180 + поля — делаем резиновым */
@media screen and (max-width: 1240px){
  #definition-orm{
    width: calc(100% - 40px) !important;
    max-width: 1180px !important;
    margin: 30px auto 80px !important;
    padding: 44px 44px;
  }
}

@media screen and (max-width: 639px){
  #definition-orm{
    width: calc(100% - 20px) !important;
    max-width: 1180px !important;
    margin: 20px auto 60px !important;
    padding: 28px 20px;
    border-radius: 18px;
  }

  #definition-orm .llm-answer{
    font-size: 14px;
    line-height: 1.35;
  }

  #definition-orm::before{
    right: -260px;
    top: -180px;
    width: 520px;
    height: 520px;
  }

  #definition-orm::after{
    right: -300px;
    bottom: -260px;
    width: 620px;
    height: 620px;
  }
}

/* =========================
   #faq-orm (blue card, same style)
   ========================= */

#faq-orm{
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

  /* та же ширина/центрирование как у [03] */
  width: 1180px !important;
  max-width: 1180px !important;
  margin: 40px auto 100px !important;

  border-radius: 24px;
  padding: 56px 64px;
  background: #0b5cff;
}

/* тот же декор справа */
#faq-orm::before{
  content:"";
  position: absolute;
  right: -220px;
  top: -140px;
  width: 520px;
  height: 520px;
  background: rgba(255,255,255,0.22);
  border-radius: 9999px;
  transform: rotate(18deg);
}

#faq-orm::after{
  content:"";
  position: absolute;
  right: -260px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  background: rgba(255,255,255,0.18);
  border-radius: 9999px;
  transform: rotate(18deg);
}

/* FAQ контент поверх декора */
#faq-orm .faq-item,
#faq-orm .faq-question,
#faq-orm .faq-answer{
  position: relative;
  z-index: 1;
}

/* Каждый FAQ item: зелёный буллит слева */
#faq-orm .faq-item{
  position: relative;
  z-index: 1;
  padding-left: 34px;      /* место под буллит (чуть больше) */
  margin: 0 0 26px 0;
  box-sizing: border-box;
}

#faq-orm .faq-item:last-child{
  margin-bottom: 0;
}

/* ✅ Буллит побольше (как на твоём синем списке) */
#faq-orm .faq-item::before{
  content:"";
  position: absolute;
  left: 0;
  top: 0.52em;             /* визуально на середине первой строки */
  width: 16px;             /* было 14 — делаем как в примере */
  height: 16px;
  border-radius: 9999px;
  background: #b8ff00;
}

/* Вопрос — жирный, белый */
#faq-orm .faq-question{
  margin: 0 0 10px 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

/* Ответ — обычный, белый */
#faq-orm .faq-answer{
  margin: 0;
}

#faq-orm .faq-answer p{
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  color: #ffffff;
  max-width: 980px;
}

/* Планшеты/ноуты */
@media screen and (max-width: 1240px){
  #faq-orm{
    width: calc(100% - 40px) !important;
    max-width: 1180px !important;
    margin: 30px auto 80px !important;
    padding: 44px 44px;
  }
}

/* Мобилки */
@media screen and (max-width: 639px){
  #faq-orm{
    width: calc(100% - 20px) !important;
    max-width: 1180px !important;
    margin: 20px auto 60px !important;
    padding: 28px 20px;
    border-radius: 18px;
  }

  #faq-orm .faq-item{
    padding-left: 30px;
    margin-bottom: 18px;
  }

  #faq-orm .faq-item::before{
    width: 14px;
    height: 14px;
    top: 0.55em;
  }

  #faq-orm .faq-question{
    font-size: 14px;
    margin-bottom: 8px;
  }

  #faq-orm .faq-answer p{
    font-size: 14px;
  }

  #faq-orm::before{
    right: -260px;
    top: -180px;
    width: 520px;
    height: 520px;
  }

  #faq-orm::after{
    right: -300px;
    bottom: -260px;
    width: 620px;
    height: 620px;
  }
}
