/* ======================================================== */
/* 2_about: СТИЛИ СЕКЦИИ «О КОМПАНИИ»                       */
/* ======================================================== */

:root {
  --ecoproject-about-green: #00e681;
  --ecoproject-about-green-hover: #00ff90;
  --ecoproject-about-dark: #0b0f19;
  --ecoproject-about-dark-bg: #111827; /* Немного светлее основного для контраста */
  --ecoproject-about-white: #ffffff;
  --ecoproject-about-gray: #cbd5e1;
  --ecoproject-about-text-gray: #94a3b8;
  --ecoproject-about-border: rgba(255, 255, 255, 0.08);
  --ecoproject-about-border-hover: rgba(0, 230, 129, 0.2);
  --ecoproject-about-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --ecoproject-about-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;}.ecoproject-about-section {
  position: relative;
  width: 100%;
  padding: 120px 24px;
  background-color: var(--ecoproject-about-dark);
  overflow: hidden;
  box-sizing: border-box;
  scroll-margin-top: 82px !important; /* Корректируем прокрутку под фиксированную шапку на ПК */
}/* Автоматически сбрасываем ошибочный отрицательный отступ Elementor у родителя нашей секции */
.ecoproject-about-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;}.ecoproject-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 60px;
  align-items: center;}/* ======================================================== */
/* ЛЕВАЯ КОЛОНКА: ВИЗУАЛЬНЫЙ БЛОК                           */
/* ======================================================== */

.ecoproject-about-visual-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.15 / 1;
  border-radius: 16px;
  border: 1px solid var(--ecoproject-about-border);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;}/* Скрываем мобильный дубликат на больших экранах */
.ecoproject-about-mobile-only {
  display: none !important;}.ecoproject-about-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;}.ecoproject-about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.1) 0%, rgba(11, 15, 25, 0.7) 100%);
  z-index: 2;}.ecoproject-about-visual-wrapper:hover .ecoproject-about-image {
  transform: scale(1.05) !important;}/* Стеклянный интерактивный бейдж */
.ecoproject-about-glass-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11, 15, 25, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  transition: var(--ecoproject-about-transition);}.ecoproject-about-visual-wrapper:hover .ecoproject-about-glass-badge {
  border-color: var(--ecoproject-about-green) !important;
  box-shadow: 0 15px 35px rgba(0, 230, 129, 0.15) !important;
  transform: translateY(-2px) !important;}.ecoproject-about-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;}.ecoproject-about-badge-number {
  font-family: var(--ecoproject-about-font);
  font-size: 36px;
  font-weight: 900;
  color: var(--ecoproject-about-green);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(0, 230, 129, 0.3);}.ecoproject-about-badge-text {
  font-family: var(--ecoproject-about-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--ecoproject-about-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;}.ecoproject-about-badge-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0 16px;}/* ======================================================== */
/* ПРАВАЯ КОЛОНКА: ОПИСАНИЕ И ПРЕИМУЩЕСТВА                  */
/* ======================================================== */

.ecoproject-about-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;}.ecoproject-about-label {
  font-family: var(--ecoproject-about-font);
  font-size: 12px;
  font-weight: 800;
  color: var(--ecoproject-about-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;}.ecoproject-about-title {
  font-family: var(--ecoproject-about-font);
  font-size: 38px;
  font-weight: 900;
  color: var(--ecoproject-about-white);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 24px 0;
  text-align: left;}.ecoproject-about-description {
  font-family: var(--ecoproject-about-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ecoproject-about-gray);
  margin: 0 0 20px 0;}.ecoproject-about-description strong {
  color: var(--ecoproject-about-white);
  font-weight: 700;}/* Сетка преимуществ 2x2 */
.ecoproject-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 16px 0 32px 0;
  width: 100%;}.ecoproject-about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background-color: var(--ecoproject-about-dark-bg);
  border: 1px solid var(--ecoproject-about-border);
  border-radius: 8px;
  box-sizing: border-box;
  transition: var(--ecoproject-about-transition);}.ecoproject-about-feature-card:hover {
  border-color: var(--ecoproject-about-border-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;}.ecoproject-about-feature-icon {
  color: var(--ecoproject-about-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;}.ecoproject-about-feature-icon svg {
  width: 24px;
  height: 24px;}.ecoproject-about-feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;}.ecoproject-about-feature-title {
  font-family: var(--ecoproject-about-font);
  font-size: 15px;
  font-weight: 800;
  color: var(--ecoproject-about-white);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;}.ecoproject-about-feature-desc {
  font-family: var(--ecoproject-about-font);
  font-size: 12px;
  line-height: 1.4;
  color: var(--ecoproject-about-text-gray);
  margin: 0;}/* Кнопка действия */
.ecoproject-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #358343 0%, #419b52 100%);
  color: var(--ecoproject-about-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--ecoproject-about-font);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(65, 155, 82, 0.3);
  transition: var(--ecoproject-about-transition);
  box-sizing: border-box;}.ecoproject-about-btn:hover {
  background: linear-gradient(180deg, var(--ecoproject-about-green-hover) 0%, #358343 100%) !important;
  color: #0b0f19 !important;
  box-shadow: 0 8px 25px rgba(0, 230, 129, 0.5) !important;
  transform: translateY(-2px) !important;}.ecoproject-about-btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;}.ecoproject-about-btn:hover .ecoproject-about-btn-arrow {
  transform: translateX(4px) !important;}/* ======================================================== */
/* АНИМАЦИЯ ПОЯВЛЕНИЯ ПРИ СКРОЛЛЕ                          */
/* ======================================================== */

.ecoproject-about-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);}.ecoproject-about-animate.ecoproject-about-visible {
  opacity: 1;
  transform: translateY(0);}

/* ======================================================== */
/* АДАПТИВНОСТЬ                                             */
/* ======================================================== */

@media (max-width: 1199px) {.ecoproject-about-grid {
    gap: 40px;}.ecoproject-about-title {
    font-size: 32px;}
}

@media (max-width: 991px) {.ecoproject-about-section {
    padding: 80px 24px;
    scroll-margin-top: 80px !important; /* Под фиксированную шапку на мобильных */
  ;}.ecoproject-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;}/* Скрываем десктопный визуальный контейнер на мобильных */
  .ecoproject-about-visual-wrapper:not(.ecoproject-about-mobile-only) {
    display: none !important;}/* Показываем мобильный визуальный контейнер в разрыве текста */
  .ecoproject-about-visual-wrapper.ecoproject-about-mobile-only {
    display: block;
    max-width: 540px;
    margin: 24px auto;
    aspect-ratio: 1.3 / 1;}
}

@media (max-width: 575px) {.ecoproject-about-section {
    padding: 60px 16px;}/* Адаптация пропорций картинки на мобильных */
  .ecoproject-about-visual-wrapper.ecoproject-about-mobile-only {
    aspect-ratio: 1.4 / 1;
    margin: 20px auto;}.ecoproject-about-glass-badge {
    padding: 16px;
    bottom: 16px;
    left: 16px;
    right: 16px;}.ecoproject-about-badge-number {
    font-size: 26px;}.ecoproject-about-badge-text {
    font-size: 10px;}.ecoproject-about-title {
    font-size: 24px;}.ecoproject-about-description {
    font-size: 14px;}.ecoproject-about-features {
    grid-template-columns: 1fr;
    gap: 16px;}.ecoproject-about-feature-card {
    padding: 12px;}.ecoproject-about-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 13px;}
}