/* ====== Генератор исполнительной документации (эбаут-этаж) ====== */
.gen_id { background: #fff; }
.gen_id .container { padding: 0 16px; }

.gen_id__head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.gen_id__eyebrow {
  display: inline-block;
  background: transparent;
  color: #53504f;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #0B6EFD;
  border-radius: 3px;
  padding: 8px 16px 7px;
  line-height: 1em;
  margin-bottom: 40px;
}
.gen_id__title {
  margin-bottom: 18px;
  /* color / font-size / font-weight / line-height — наследуются от глобального h2 */
}
.gen_id__lead {
  max-width: 780px;
  margin: 0 auto;
  /* font-size / color / line-height — наследуются от body */
}

/* ---- двухколоночный блок ---- */
.gen_id__main {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 44px;
}

/* левый визуал */
.gen_id__visual {
  background: #fff;
  border: 1px solid #E7ECF2;
  border-radius: 16px;
  box-shadow: 0 18px 50px -22px rgba(16, 42, 67, .28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gen_id__visual img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  object-fit: cover;
  object-position: top;
  min-height: 0;
}
.gen_id__caption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid #EEF1F5;
  color: var(--text-light-color);
  font-size: 15px;
  line-height: 1.3;
}
.gen_id__caption svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--prime-color);
}

/* правые карточки */
.gen_id__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: stretch;
}
.gen_id-card {
  background: #fff;
  border: 1px solid #E7ECF2;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}
.gen_id-card > svg {
  width: 40px;
  height: 40px;
  color: var(--prime-color);
  margin-bottom: 8px;
}
.gen_id-card__title {
  color: #0e1116;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.15em;
  margin-bottom: 8px;
}
.gen_id-card__desc {
  font-size: 14px;
  line-height: 17px;
}

/* ---- синяя плашка ---- */
.gen_id__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  padding: 22px 28px;
  background: #EAF2FF;
  border-radius: 14px;
  text-align: center;
}
.gen_id__banner svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--prime-color);
}
.gen_id__banner span {
  color: #0e1116;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.25em;
}

/* ---- полоса с иконками ---- */
.gen_id__features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 16px;
  border: 1px solid #E7ECF2;
  border-radius: 14px;
  overflow: hidden;
}
.gen_id-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  background: #fff;
  position: relative;
}
.gen_id-feat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: #E7ECF2;
}
.gen_id-feat svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--prime-color);
}
.gen_id-feat span {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1em;
}

/* ---- кнопка ---- */
.gen_id__cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.gen_id__cta .btn_std {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.gen_id__cta .btn_std svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* ---- адаптив ---- */
@media (max-width: 980px) {
  .gen_id__main { grid-template-columns: 1fr; }
  .gen_id__features {
    grid-template-columns: repeat(3, 1fr);
    border: none;
  }
  .gen_id-feat {
    padding-left: 0;
  }
  .gen_id-feat:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .gen_id__cards { grid-template-columns: 1fr; }
}
@media (max-width: 550px) {
  .gen_id__features { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .gen_id__features { grid-template-columns: 1fr; }
  .gen_id__cta a { width: 100%; justify-content: center; }
}
