
.construction-hero{
  position: relative;
  padding: 30px 0 clamp(28px, 5vw, 100px) 0;
}

.ch-container{
  width:100%;
  padding: 0 var(--side-padding);
  margin-inline:auto;

}

/* Eyebrow с оранжевой горизонтальной чертой слева */
.ch-eyebrow{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  letter-spacing:.02em;
  color: var(--ch-muted);
  margin-bottom: 20px;
}
.ch-eyebrow::before{
  content:"";
  display:inline-block;
  width: 25px;
  height: 2px;
  background: var(--ch-accent);
  border-radius: 2px;
}

/* Отдельный заголовок */
.ch-title{
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  color: var(--ch-ink);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height:1.2;
  margin:0 0 25px;
  /* display:inline-block; transform: scaleY(0.92);  <- если нужен "приплюснутый" эффект */
}
.ch-title .accent{ color: var(--ch-accent); display:block; }

/* Ряд: текст слева — разделитель — услуги справа
   ВЫРАВНИВАНИЕ ПО ВЕРТИКАЛЬНОМУ ЦЕНТРУ */
.ch-head{
  display: grid;
  grid-template-columns: 1fr minmax(var(--ch-divider-width), var(--ch-divider-width)) 1fr;
  column-gap: clamp(16px, 3vw, 32px);    /* одинаковые отступы слева/справа от полосы */
  align-items: center;                    /* центруем левый/правый блок относительно друг друга */
  margin-bottom: clamp(16px, 3vw, 35px);
}
.ch-left, .ch-right { min-width: 0; }

/* Оранжевый вертикальный разделитель, настраиваемый */
.ch-divider{
  justify-self: center;
  width: var(--ch-divider-width);
  height: var(--ch-divider-height);
  background: var(--ch-divider-color);
  border-radius: 2px;
}

/* Модификатор: растянуть разделитель на всю высоту ряда */
.ch-divider--stretch{
  height: auto;
  align-self: stretch;
}

/* Текст слева */
.ch-lead{
  margin: 0;
  color: var(--ch-muted);
    text-align: justify-all;
  font-size: 1rem;
}

/* Услуги справа */
.ch-services{
  list-style:none; padding:0; margin: 0;
  display:flex; gap:15px; flex-wrap:wrap;
  justify-content:flex-start;
}
.ch-chip{
    font-family: "Montserrat", sans-serif;
  border:0;
    color:var(--ch-bg);
    font-weight: 600;
    background-color: var(--ch-ink);
  padding:10px 14px; border-radius:999px; font-size:1rem;
  cursor:default;
}

/* === Нижняя сетка === */
.ch-grid{
  display:grid;
  grid-template-areas: "image stats";
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 20px;
  align-items: stretch;
  margin-top: clamp(16px, 3vw, 24px);
}

.ch-figure img{ display:block; width:100%; height:100%; object-fit:cover; }

.ch-figure{
  grid-area:image;
    min-height: 350px;
  background:linear-gradient(135deg, #13224b 0, #0b1640 100%);
  border-radius: var(--ch-radius);
  position: relative;
  overflow:hidden;
  box-shadow: var(--ch-shadow);
}

.ch-play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;

  background: rgba(255,255,255,.95);
  color: var(--ch-ink);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.ch-play:hover{ transform: translate(-50%, -50%) scale(1.03); box-shadow: 0 12px 36px rgba(0,0,0,.3); }
.ch-play:active{ transform: translate(-50%, -50%) scale(.98); }

.ch-play-icon{
  font-weight: 800;
  font-size: 2rem;
 padding-left: 5px;
}

/* Пульсирующее кольцо */
.ch-play::after{
  content:"";
  position:absolute;
  inset:-10px;           /* радиус кольца больше круга */
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 999px;
  animation: ch-pulse 1.6s ease-out infinite;
  pointer-events: none;
}
@keyframes ch-pulse{
  0%   { transform: scale(1);   opacity:.85; }
  70%  { transform: scale(1.6); opacity: 0;  }
  100% { opacity: 0; }
}

/* === Модалка полноэкранного видео === */
.ch-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.ch-modal.is-open{ display: block; }

.ch-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(2px);
}

.ch-modal__dialog{
  position: absolute;
  inset: 5%;
  background: transparent;
  overflow: hidden;
}

/* Крестик */
.ch-modal__close{
  position: absolute;
  top: max(10px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 2;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 999px;
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
}
.ch-modal__close:hover{ background: rgba(255,255,255,.22); }

/* Контейнер игрока — центрируем, даём чёрный фон */
.ch-modal__player{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;           /* границы/письмо-бокс */
  overflow: hidden;
}

/* Само видео/iframe — вписываем без обрезки */
.ch-modal__player > video,
.ch-modal__player > iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;        /* ключевая строка */
  object-position: center center;
  background: #000;
  display: block;
}

/* Мобильные — убираем поля по краям */
@media (max-width: 640px){
  .ch-modal__dialog{ inset: 0; border-radius: 0; }
}

/* Блокируем прокрутку страницы, когда модалка открыта */
.no-scroll { overflow: hidden; }

.ch-stats{
    position: relative;
  grid-area:stats;
    display: flex;
  flex-direction: column;
  justify-content: center; /* чтобы цифры были по центру */
  gap: 35px; /* немного увеличим промежутки */
  padding: 35px; /* больше воздуха */
  background: var(--ch-accent);
  color:#fff;
  border-radius: var(--ch-radius);
  box-shadow: var(--ch-shadow);
}

.ch-stats::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    repeating-linear-gradient( -45deg,
      rgba(255,255,255,.2) 0 12px,
      transparent 12px 24px);
  opacity:.25;
}

.ch-stat{ display:flex; flex-direction:column; gap:4px; }
.ch-num{ font-size: clamp(26px, 4vw, 55px); font-weight:800; line-height:1; }
.ch-label{
    font-size: 1rem;
    opacity:.95;
    font-weight: 600;
}



/* ====== АДАПТИВ ====== */
@media (max-width: 1199px){
  .ch-grid{ grid-template-columns: 1fr 320px; }
}

@media (max-width: 767px){
  .ch-head{
    grid-template-columns: 1fr;
    row-gap: 14px;
    align-items: start; /* на мобильных отдаём приоритет верхнему краю */
  }
  .ch-divider{ display:none; }

  .ch-services{
     overflow:auto; padding-bottom:6px;
  }
  .ch-services::-webkit-scrollbar{ height:6px; }
  .ch-services::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.12); border-radius:999px; }

  .ch-grid{
    grid-template-areas:
      "image"
      "stats";
    grid-template-columns: 1fr;
  }
  .ch-stats{
    flex-direction: row;
      flex-wrap: wrap;
    justify-content: space-between;
    gap:12px;
    padding:16px;
  }


  .ch-stat{ flex:1; text-align:center; }
  .ch-label{ font-size:.85rem; }

}

@media (max-width: 450px) {
    .ch-head{
    grid-template-columns: 1fr;
    row-gap: 14px;
    align-items: start;
  }
  .ch-divider{ display:none; }

  .ch-services{
      overflow: auto; padding-bottom: 6px;
  }
  .ch-services::-webkit-scrollbar{ height:6px; }
  .ch-services::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.12); border-radius:999px; }

  .ch-grid{
    grid-template-areas:
      "image"
      "stats";
    grid-template-columns: 1fr;
  }

  .ch-stats{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;                  /* переносим элементы */
    justify-content: flex-start;      /* без растягивания пробелами */
    gap: 12px;
    padding: 16px;
  }

  /* Две колонки: (100% - промежуток) / 2 */
  .ch-stats .ch-stat{
    flex: 0 0 calc((100% - 12px) / 2);
    text-align: center;
  }

  .ch-label{ font-size:.85rem; }

}







  .sp-infinite-slider{ position:relative; padding:clamp(24px,4vw,48px) 0;   }
  .sp-slider__container{ position:relative;  margin:0 auto; padding:0 var(--side-padding, 16px); }
  .sp-swiper{ overflow:hidden; }

  .sp-card{
    background:#fff; border-radius:16px; overflow:hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,.08); transition: transform .25s ease, box-shadow .25s ease;
    height:100%;
    display:flex; flex-direction:column;
  }
  .sp-card img{ width:100%; height:350px; object-fit:cover; display:block; }
  .sp-card__title{ font-size:1rem; margin:12px 14px 16px; color:#1f2a44; }



  .sp-slider__nav{
    position:absolute; top:50%; transform:translateY(-50%);
    width:40px; height:40px; border-radius:50%;
    display:grid; place-items:center; border:none; background:color-mix(in oklab, var(--ch-ink) 100%, transparent 50%);;
    box-shadow:0 4px 14px rgba(0,0,0,.12);
    z-index:3; cursor:pointer;
  }
  .sp-slider__prev{ left:52px; }
  .sp-slider__next{ right:52px; }
  .sp-slider__nav i{ font-size:20px; line-height:1; color: var(--ch-bg)}

  /* Позиция пагинации */
  .sp-infinite-slider .swiper-pagination{ position:relative; margin-top:14px; }

@media (max-width: 991px){
  .sp-slider__prev{ left:30px; }
  .sp-slider__next{ right:30px; }
}

@media (max-width: 768px){
  .sp-slider__prev{ left:20px; }
  .sp-slider__next{ right:20px; }
}








  .about-section{
  padding: clamp(28px, 5vw, 100px) 0;
    background-color: var(--ch-bg);
}
.about-container{
  width: 100%;
  padding: 0 var(--side-padding);
  margin-inline: auto;
}

/* Eyebrow */
.about-eyebrow{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--ch-muted);
  margin-bottom: 20px;
}
.about-eyebrow::before{
  content:"";
  width: 25px; height: 2px;
  background: var(--ch-accent);
  border-radius: 2px;
}

/* Заголовок */
.about-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--ch-ink);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.2;
  margin: 0 0 20px;
}
.about-title .accent{ color: var(--ch-accent); display:block; }

/* Ряд: текст слева — кнопка справа */
.about-head-row{
  display: flex;
  align-items: center;
  justify-content: space-between; /* текст слева, кнопка справа */
  gap: 20px;
  margin-bottom: 20px;
}
.about-lead{
  margin: 0;
  color: var(--ch-muted);
  font-size: clamp(14px, 1.2vw, 16px);

  max-width: 50%;
  text-align: left; /* выравнивание текста слева */
}
.about-btn{
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ch-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, filter .2s ease;
}
.about-btn:hover{ transform: translateY(-1px); filter: brightness(0.95); }

/* Нижний блок */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;  /* одинаковая высота */
  margin-top: clamp(16px, 3vw, 35px);
}
.about-photo,
.about-mission{
  min-height: 300px;  /* было 400px, стало ниже */
  border-radius: var(--ch-radius);
  box-shadow: var(--ch-shadow);
}

/* Фото */
.about-photo{
  position: relative;
    max-height: 340px;
  overflow: hidden;
  background: linear-gradient(135deg, #13224b 0, #0b1640 100%);
}
.about-photo img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.about-badge{
  position:absolute; right:16px; bottom:16px;
  display:flex; flex-direction:row; /* число слева, текст справа */
  align-items:center;
  gap:12px;
  padding: 14px 18px;
  background: var(--ch-accent);
  color:#fff;
  border-radius: var(--ch-radius);
  box-shadow: var(--ch-shadow);
}

/* Число */
.about-badge strong{
  font-size: 2.4rem;   /* ещё больше */
  font-weight: 800;
  line-height: 1;
}

/* Текст справа от числа */
.about-badge-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height: 1.2;
}

/* "Років" */
.about-badge .years{
  font-size: 1.2rem;
  font-weight: 700;

}

/* "досвіду" */
.about-badge .exp{
  font-size: 1rem;
  font-weight: 500;
  opacity:.9;
}


/* Миссия */
.about-mission{
    position: relative;
  background: color-mix(in oklab, var(--ch-surface) 92%, #000 8%);
  color:#fff;
  padding: 24px;
  display:flex; flex-direction:column; justify-content:space-between;
}

.about-mission::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    repeating-linear-gradient( -45deg,
      rgba(255,255,255,.06) 0 12px,
      transparent 12px 24px);
  opacity:.25;
}

.about-mission p{
  margin:0 0 20px;
  font-size: 1.15rem;
  opacity:.95;
}
.about-mission-footer{
  display:flex; align-items:center; justify-content:space-between;
}
.about-mission-title{ color: var(--ch-accent); font-weight:700; }
.about-mission-btn{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--ch-accent);
  color:#fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Контейнер миссии остаётся прежним: .about-mission ... */

/* Слайды */
.mission-slides{
  position: relative;
  isolation: isolate;
  min-height: 140px; /* фиксируем оптическую высоту, чтобы при переключении не прыгало */
}
.mission-slide{
  display: none;
  animation: missionFade .25s ease;
}
.mission-slide.is-active{ display: block; }

@keyframes missionFade{
  from{ opacity: 0; transform: translateY(6px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* Навигация */
.mission-nav{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mission-btn{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--ch-accent);
  color:#fff;
  font-size: 16px;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease, opacity .2s ease;
}
.mission-btn:hover{ transform: translateY(-1px); filter: brightness(0.95); }

/* Недоступные кнопки */
.mission-btn:disabled{
  cursor: not-allowed;
  opacity: .45;
  transform: none;
  filter: none;
}

/* Чуть ужмём нижний отступ абзацев внутри слайдов, чтобы компоновка не плавала */
.mission-slide p{ margin: 0 0 12px; font-size: 1.15rem; line-height: 1.55; opacity: .95; }


/* Адаптив */
@media (max-width: 991px){
  .about-head-row{ flex-direction: column; align-items: flex-start; }
  .about-lead{ max-width: 100%; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-photo, .about-mission{ min-height: 320px; }
}

















