@charset "UTF-8";
:root {
  --on_gr_bg_sec_text: #393a3f!important;
}
h2 {
  font-size: 28px !important;
}
h3 {
  font-size: 26px !important;
}
.lpc-form-4 input, .lpc-form-4 textarea {
  color: #fff !important;
}
/* --- Стиль для маркированного списка (Преимущества) --- */
.advantages-list {
  list-style: none;
  /* Убираем стандартные точки */
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Расстояние между пунктами */
}
.advantages-list li {
  position: relative;
  padding: 10px 18px 10px 55px;
  /* Отступ слева под иконку */
  border-radius: 8px;
  border-left: 4px solid #FEE010;
  /* Желтая полоса слева */
  font-size: 16px;
  line-height: 1.5;
  color: #2b3558;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(43, 53, 88, 0.05);
}
.advantages-list li::before {
  content: "✓";
  /* Символ галочки */
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #FEE010;
  /* Желтый круг */
  color: #2b3558;
  /* Темная галочка */
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  /* Делаем круг */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* Эффект при наведении (для живости) */
.advantages-list li:hover {
  background-color: #ffffff;
  box-shadow: 0 6px 15px rgba(43, 53, 88, 0.12);
  transform: translateX(5px);
  border-left-color: #2b3558;
  /* При наведении полоса становится синей */
}
.work-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 25px;
}
.work-step {
  position: relative;
  min-width: 0;
  padding: 54px 16px 16px;
  background: #ffffff;
  border: 1px solid #eef0f5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(43, 53, 88, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-sizing: border-box;
}
.work-step__number {
  position: absolute;
  top: 12px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #2b3558;
  color: #fee010;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 3px 7px rgba(43, 53, 88, 0.18);
}
.work-step p {
  margin: 0;
  color: #2b3558;
  font-size: 15px;
  line-height: 1.45;
}
.work-step a {
  color: #2b3558;
  font-weight: 600;
  text-decoration: none;
}
.work-step a:hover {
  text-decoration: underline;
}
.work-step:hover {
  border-color: #fee010;
  box-shadow: 0 5px 16px rgba(43, 53, 88, 0.1);
  transform: translateY(-2px);
}
/* Планшеты */
@media (max-width: 1024px) {
  .work-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Небольшие планшеты */
@media (max-width: 700px) {
  .work-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Телефоны */
@media (max-width: 480px) {
  .work-steps {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .work-step {
    min-height: 64px;
    padding: 14px 14px 14px 58px;
  }
  .work-step__number {
    top: 50%;
    left: 13px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
  }
  .work-step p {
    font-size: 14px;
  }
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 24px;
}
.application-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 16px 12px 42px;
  background: #ffffff;
  border: 1px solid #eef0f5;
  border-radius: 8px;
  color: #2b3558;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 2px 5px rgba(43, 53, 88, 0.05);
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.application-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #fee010;
  border: 3px solid #2b3558;
  border-radius: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.application-item:hover {
  border-color: #fee010;
  box-shadow: 0 5px 14px rgba(43, 53, 88, 0.1);
  transform: translateY(-2px);
}
@media (max-width: 650px) {
  .application-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .application-item {
    min-height: 48px;
    padding: 10px 14px 10px 40px;
    font-size: 14px;
  }
}
.support-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 20px 0 26px;
}
.support-type-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #eef0f5;
  border-left: 4px solid #fee010;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(43, 53, 88, 0.06);
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.support-type-card h3 {
  margin: 0 0 10px;
  color: #2b3558;
  font-size: 22px !important;
  line-height: 1.3;
}
.support-type-card p {
  margin: 0;
  color: #2b3558;
  font-size: 15px;
  line-height: 1.5;
}
.support-type-card:hover {
  border-left-color: #2b3558;
  box-shadow: 0 6px 15px rgba(43, 53, 88, 0.12);
  transform: translateY(-2px);
}
.info-block {
  margin: 18px 0 26px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #eef0f5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(43, 53, 88, 0.06);
}
.info-block p {
  margin: 0 0 12px;
  color: #2b3558;
  font-size: 16px;
  line-height: 1.55;
}
.info-block p:last-child {
  margin-bottom: 0;
}
.case-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: start;
  margin: 20px 0 30px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #eef0f5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(43, 53, 88, 0.06);
  box-sizing: border-box;
}
.case-block__content p {
  margin: 0 0 12px;
  color: #2b3558;
  font-size: 16px;
  line-height: 1.55;
}
.case-block__content p:last-child {
  margin-bottom: 0;
}
.case-block__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(43, 53, 88, 0.12);
}
.faq-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.faq-item {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #eef0f5;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(43, 53, 88, 0.05);
}
.faq-item h3 {
  position: relative;
  margin: 0 0 8px;
  padding-left: 34px;
  color: #2b3558;
  font-size: 22px !important;
  line-height: 1.35;
}
.faq-item h3::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #fee010;
  color: #2b3558;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.faq-item p {
  margin: 0;
  color: #2b3558;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .support-types-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .case-block {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .case-block__image {
    max-width: 280px;
  }
  .support-type-card, .info-block, .faq-item {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .support-type-card h3, .faq-item h3 {
    font-size: 16px;
  }
  .support-type-card p, .info-block p, .case-block__content p, .faq-item p {
    font-size: 14px;
  }
  .case-block__image {
    max-width: 100%;
  }
}
#_lp_block_69784318[data-block-layout="348306"] .lpc-reviews-1__item-inner {
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
