/* NAVBAR */
.top-logo{
    width: 200px;
}

body{
    font-family: 'Open Sans', sans-serif;
}


/* NAVIGATION */

.navigation{
    margin-top: 50px;
}

.navigation ul{
    list-style: none;
    line-height: 1.7;
}

.navigation li a{
    font-size: 15px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}


.navigation .title {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.navigation img{
margin-top: 5px;
}


.title .arrow {
  width: 15px; 
  height: 15px;
  margin-right: 10px;
  transition: transform 0.6s ease; 
  transform: rotate(0deg);  
  align-self: flex-start;
}

/* При наведении на заголовок */
.title:hover .arrow {
  transform: rotate(45deg);
}

.navigation [class^="col-"] {
    margin-bottom: 20px;
}

.navigation .title a{
	color: #000;
	font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
	text-decoration: none;
}


 


    /* ПРОДУКЦИЯ */
    .production{
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .production h2{
        margin-bottom: 50px;
    } 
    .production h3{
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 20px;
    } 
	
	.production h3 a{
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 20px;
    } 
    .production ul {
        padding-left: 0;
    }
    .production ul li{
        padding-bottom: 7px;
    }
     .production .col-md-6{
        margin-bottom: 30px;
     }

     .production a{
        text-decoration: none;
        color: #000;
        font-weight: 500;
        font-size: 16px;
     }
      .production a:hover{
        color:dodgerblue
      }
	  
	  

      /* УСЛУГИ */

      /* ── Заголовок ── */
.services-title {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #111;
}
 
/* ── Базовая карточка ── */
.service-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
 
  /* размер по умолчанию (маленькие карточки) */
  height: 300px;
 
  background-image: var(--img);
  background-size: cover;
  background-position: center;
 
  /* плавное увеличение */
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
 
/* Высокая карточка справа */
.service-card--tall {
  height: 620px; /* ≈ 2 × 260 + gap(12px) */
}
 
/* Hover: лёгкое увеличение */
.service-card:hover {
  transform: scale(1.025);
}
 
/* ── Затемнение ── */
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  transition: background .4s;
}
.service-card:hover .service-card__overlay {
  background: rgba(0,0,0,.35);
}
 
/* ── Нижний блок с текстом и стрелкой ── */
.service-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  gap: 12px;
}
 
/* ── Название ── */
.service-card__title {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .01em;
}
 
/* ── Стрелка ── */
.service-card__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  align-self: center;
}
 
.service-card__arrow img {
  width: 22px;
  height: 22px;
  /* SVG-стрелка изначально смотрит вверх-вправо (↗), поворачиваем в → при hover */
  transform: rotate(0deg);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  filter: invert(1); /* если SVG чёрный — делаем белым */
}
 
/* При наведении на карточку — стрелка поворачивается вправо (→) */
.service-card:hover .service-card__arrow img {
  transform: rotate(45deg); /* ↗ → → : поворот на 45° по часовой */
}
 
/* ── Адаптив ── */
@media (max-width: 991.98px) {
  .service-card--tall {
    height: 320px;
  }
}
 
@media (max-width: 575.98px) {
  .service-card {
    height: 220px;
  }
  .service-card--tall {
    height: 260px;
  }
}


/* О НАС */

.about{
    background-color: #F2F2F2;
    padding: 70px 0;
}

.about h2{
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2rem;
}

.about img{
    max-height: 600px;
}

.about p{
    color: #6c7177;
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
}

.about a{
    background-color: transparent;
    color: #000;
    border: 2px #000 solid;
    border-radius: 50px;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .2s, color .2s, transform .15s;
    margin-top: 50px;
}



.about a:hover{
    background-color: #3066AE;
    color: #fff;
    transform: translateY(-2px);
}


/* ── Заголовок ── */
.cycle-title {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #111;
}
 
/* ── Пункт ── */
.cycle-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
/* ── Строка с иконкой и названием ── */
.cycle-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.cycle-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  /* если SVG чёрный и нужен синий как на макете: */
  filter: invert(28%) sepia(80%) saturate(600%) hue-rotate(195deg) brightness(90%);
}
 
.cycle-item__name {
  font-weight: 600;
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: #111;
  line-height: 1.3;
}
 
/* ── Описание ── */
.cycle-item__text {
  margin: 0;
  padding-left: 30px; /* выравнивание под текст, не под иконку */
  font-size: clamp(.8rem, 1vw, .9rem);
  color: #555;
  line-height: 1.6;
}
 
/* ── Адаптив: на мобильных колонки друг под другом ── */
@media (max-width: 767.98px) {
  .cycle-item__text {
    padding-left: 0;
  }
}

.cta-banner {
  background-color: #3066AE;
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
 
.cta-banner__title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
  /* max-width: 520px; */
}
 
/* стрелка + кнопка в ряд */
.cta-banner__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}
 
.cta-banner__arrow {
  width: 60px;
  height: 135px;
  flex-shrink: 0;
}
 
.cta-banner__btn {
  display: inline-block;
  padding: 14px 44px;
  background: #fff;
  color: #111;
  font-size: .95rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, color .25s, transform .25s;
}
 
.cta-banner__btn:hover {
  background: #f0f0f0;
  color: #000;
  transform: translateY(-2px);
}
 
@media (max-width: 575.98px) {
  .cta-banner__arrow {
    width: 66px;
    height: 96px;
  }
  .cta-banner__btn {
    padding: 12px 32px;
  }
  .cta-banner__bottom {
    gap: 0px;
}
}

/* ══ ТРИГГЕР ══ */
.btn-open-modal {
  display: inline-block;
  padding: 14px 44px;
  background: #fff;
  color: #111;
  font-size: .95rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.btn-open-modal:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
 
/* ══ ОВЕРЛЕЙ + КОНТЕЙНЕР ══ */
.r-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.r-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
 
.r-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px);
}
 
/* ══ ОБЁРТКА + СКРОЛЛ ══ */
.r-modal__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
}
 
/* ══ САМО ОКНО ══ */
.r-modal__box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.5rem, 5vw, 2.5rem);
  position: relative;
 
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.r-modal.is-open .r-modal__box {
  transform: translateY(0) scale(1);
}
 
/* ══ КРЕСТИК ══ */
.r-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 4px;
  line-height: 1;
  transition: color .2s;
}
.r-modal__close:hover { color: #111; }
 
/* ══ ЗАГОЛОВОК ══ */
.r-modal__title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #111;
  line-height: 1.35;
  margin: 0 0 1.5rem;
  padding-right: 20px; /* не перекрываться с крестиком */
}
 
/* ══ ПОЛЯ ══ */
.r-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.r-field__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d8dce3;
  border-radius: 10px;
  font-size: .95rem;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
  box-sizing: border-box;
}
.r-field__input::placeholder { color: #aaa; }
.r-field__input:focus { border-color: #3a5faa; }
 
.r-field__textarea {
  resize: vertical;
  min-height: 100px;
}
 
/* ══ ТЕЛЕФОН ══ */
.r-phone {
  display: flex;
  align-items: center;
  border: 1.5px solid #d8dce3;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.r-phone:focus-within { border-color: #3a5faa; }
 
.r-phone__flag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border-right: 1.5px solid #d8dce3;
  height: 48px;
  cursor: pointer;
  flex-shrink: 0;
}
.r-phone__chevron { margin-top: 1px; }
 
.r-phone__code {
  padding: 0 8px;
  font-size: .95rem;
  color: #111;
  flex-shrink: 0;
  border-right: 1.5px solid #d8dce3;
  height: 48px;
  display: flex;
  align-items: center;
}
 
.r-phone__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 12px;
  font-size: .95rem;
  color: #111;
  background: transparent;
  font-family: inherit;
}
.r-phone__input::placeholder { color: #aaa; }
 
/* ══ ЗАГРУЗКА ══ */
.r-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.r-upload__label {
  margin: 0;
  font-size: .9rem;
  color: #111;
  font-weight: 500;
}
.r-upload__btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #3a5faa;
  color: #fff;
  font-size: .875rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  width: fit-content;
  transition: background .2s;
}
.r-upload__btn:hover { background: #2e4e91; }
.r-upload__names {
  font-size: .8rem;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
 
/* ══ КНОПКА ОТПРАВИТЬ ══ */
.r-submit {
  width: 100%;
  padding: 16px;
  background: #3a5faa;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .25s, transform .2s;
  margin-top: 4px;
}
.r-submit:hover {
  background: #2e4e91;
  transform: translateY(-1px);
}
 
/* ══ ДИСКЛЕЙМЕР ══ */
.r-modal__disclaimer {
  margin: 0;
  font-size: .75rem;
  color: #888;
  text-align: center;
  line-height: 1.5;
}
 
/* ══ БЛОКИРОВКА СКРОЛЛА BODY ══ */
body.r-modal-open {
  overflow: hidden;
}


/* ══ ФУТЕР ══ */
.site-footer {
  background: #F2F2F2;
  padding: 48px 0 40px;
}
 
.footer-logo img {
  height: auto;
  width: 300px;
}
 
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contacts__phone {
  font-weight: 700;
  font-size: 1.4rem;
  color: #111;
  text-decoration: none;
}
.footer-contacts__email {
  font-weight: 700;
  font-size: 1.4rem;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
}
.footer-contacts__phone:hover,
.footer-contacts__email:hover { color: #3a5faa; }
 
/* ── Меню ── */
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  text-decoration: none;
  color: #333;
  font-size: .9rem;
  transition: color .2s;
}
.footer-nav a:hover { color: #3a5faa; }
 
/* ── Разделитель ── */
.footer-divider {
  width: 1px;
  background: #d0d0d0;
  align-self: stretch;
  margin: 0 8px;
}
 
/* ── Соцсети ── */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-social__link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-size: .9rem;
  transition: color .2s;
}
.footer-social__link:hover { color: #3a5faa; }
 
.footer-social__arrow {
  width: 16px;
  height: 16px;
  /* если SVG тёмный */
  opacity: .7;
  /* стрелка ↗ → поворот на 45° при hover → станет → */
  transform: rotate(0deg);
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.footer-social__link:hover .footer-social__arrow {
  transform: rotate(45deg);
  opacity: 1;
}
 
 
/* ══ КНОПКА НАВЕРХ ══ */
.btn-scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(167, 170, 173, .65);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s, transform .4s, background .2s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.btn-scroll-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.btn-scroll-top:hover {
  background: rgba(167, 170, 173, .9);
}
 
 
/* ══ ВИДЖЕТ СВЯЗИ ══ */
.contact-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
 
/* Список иконок */
.contact-widget__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.95);
  transform-origin: bottom center;
  transition: opacity .3s ease, transform .35s cubic-bezier(.22,.61,.36,1);
  /* max-height и overflow: hidden убраны */
}

.contact-widget.is-open .contact-widget__list {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
 
/* Иконки */
.contact-widget__item {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform .2s, filter .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.contact-widget__item:hover { transform: scale(1.1); filter: brightness(1.1); }
.contact-widget__item svg { width: 22px; height: 22px; }
 
.contact-widget__item--wa    { background: linear-gradient(135deg, #5b7cf6, #9b6ff7); }
.contact-widget__item--viber { background: #FF6A63; }
.contact-widget__item--email { background: #FDBA42; }
.contact-widget__item--tg    { background: #229ED9; }
 
/* Кнопка-триггер */
.contact-widget__toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #3a5faa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(58,95,170,.4);
  transition: background .2s, transform .2s;
  position: relative;
  /* overflow: hidden — не добавлять */
}

.contact-widget__toggle:hover {
  background: #2e4e91;
  transform: scale(1.05);
}
 
/* Переключение иконок */
.contact-widget__icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(.7);
  transition: opacity .25s, transform .3s;
}
.contact-widget__icon-open {
  transition: opacity .25s, transform .3s;
}
.contact-widget.is-open .contact-widget__icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(.7);
}
.contact-widget.is-open .contact-widget__icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
 
/* ── Адаптив ── */
@media (max-width: 767.98px) {
  .footer-divider { display: none !important; }
  .footer-social { flex-direction: row; flex-wrap: wrap; }
}

.r-modal__title {
    font-size: 20px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li a{
    text-decoration: none;
    color: #333;
    line-height: 2;
}

.border-left{
    border-left: 2px solid #d0d0d0;
}

.footer-social__link{
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-social__link img{
    margin-left: 15px;
}
.site-footer a:hover{
    color: #3a5faa;
}

.multi-carousel .carousel-inner {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 15px;           /* расстояние между картинками */
}

.multi-carousel .carousel-item {
  flex: 0 0 100%;      /* по умолчанию 1 картинка */
  transition: all 0.6s ease;
}

/* На планшетах — 2 картинки */
@media (min-width: 768px) {
  .multi-carousel .carousel-item {
    flex: 0 0 50%;
  }
}

/* На ПК — 3 картинки */
@media (min-width: 992px) {
  .multi-carousel .carousel-item {
    flex: 0 0 33.3333%;
  }
}

/* Ровные красивые фото */
.multi-carousel img {
  height: 380px;           /* подбери нужную высоту */
  object-fit: cover;
  border-radius: 12px;
}

/* Убираем стандартные отступы Bootstrap */
.multi-carousel .carousel-item {
  margin: 0;
}




/* СЛАЙДЕР */

/* ══ Обёртка ══ */
.gslider-section {
  overflow: hidden;
}
 
.gslider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
 
/* ══ Viewport ══ */
.gslider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 0; /* скругление на слайдах */
}
 
/* ══ Трек ══ */
.gslider-track {
  display: flex;
  gap: 16px;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
 
/* ══ Слайд ══ */
.gslider-slide {
  /* ширина считается JS-ом, но aspect-ratio держит пропорции */
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
 
.gslider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gslider-slide:hover img {
  transform: scale(1.03);
}
 
/* ══ Стрелки ══ */
.gslider-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  z-index: 2;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  /* стрелки НЕ внутри viewport, снаружи */
}
.gslider-arrow:hover {
  background: #3a5faa;
  border-color: #3a5faa;
  color: #fff;
}
.gslider-arrow:disabled {
  opacity: .35;
  pointer-events: none;
}
 
.gslider-arrow--prev { margin-right: 12px; }
.gslider-arrow--next { margin-left: 12px; }
 
/* ══ Буллеты ══ */
.gslider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.gslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.gslider-dot.is-active {
  background: #3a5faa;
  transform: scale(1.3);
}
 
/* ══ Адаптив ══ */
@media (max-width: 767.98px) {
  .gslider-arrow {
    width: 32px;
    height: 32px;
  }
  .gslider-arrow--prev { margin-right: 8px; }
  .gslider-arrow--next { margin-left: 8px; }
}


/* Основное исправление */
#heroSlider {
  position: relative;
}

#heroSlider .carousel-indicators {
  position: absolute;
  bottom: 10px;  
  z-index: 15;       
  padding: 10px 0;
  margin-bottom: 0;
}


#heroSlider .carousel-indicators button {
  pointer-events: all !important;
  z-index: 20;
}

/* Если slide-content перекрывает */
#heroSlider .slide-content {
  position: relative;
  z-index: 10;      
}


.contact-widget__icon-open,
.contact-widget__icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .25s, transform .3s;
}

/* закрытый: чат виден, крестик скрыт */
.contact-widget__icon-open {
  opacity: 1;
}
.contact-widget__icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(.7);
}

/* открытый: чат скрыт, крестик виден */
.contact-widget.is-open .contact-widget__icon-open {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(.7);
}
.contact-widget.is-open .contact-widget__icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

@media (max-width: 576px) {
  .hero-section {
    height: 200px;
  }
}

.bread{
	background-color: #f2f2f2;
}

.bread .rank-math-breadcrumb p{
	margin-top: 10px !important;
	color: #a7abb0;
}

.bread .rank-math-breadcrumb a{
color: #6c7177;
text-decoration: none;
}

.bread .sub-title{
	padding-top: 90px;
	padding-bottom: 90px;
}

.bread .sub-title p{
	font-size: 24px;
}

.number{
	font-size: 100px;
	color: #dfe1e3;
	font-weight: 900;
}

.btn-more{
	color: #ffffff;
    background-color: #3066ae;
    border: none !important;
    border-radius: 30px;
	padding: 10px 25px;
}
.btn-more:hover{
	background-color: #1F549A;
	color: #eee;
}

.show-more{
	display: none;
}

.mt-100{
	margin-top: 100px;
}

.mb-100{
	margin-bottom: 100px;
}

.big-list li{
	line-height: 2;
	font-size: 24px;
}

.big-list {
    list-style: none;
    padding-left: 0;
}

.big-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.big-list li::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 13px;
    width: 25px;
    height: 25px;
    background-image: url('/wp-content/themes/wenard_2026/assets/icons/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
	.bread .sub-title{
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 30px;
	padding-right: 30px;
}
.bread .sub-title p{
	font-size: 18px;
	margin-top: 20px;
}
  .navigation{
    display: none;
  }
  #heroSlider{
    margin-top: 0;
  }
  .production .accordion-header{
    margin-bottom: 10px;
  }  
  .production button{
    font-weight: 700;
    font-size: 18px;
  }
  .about .order-md-1{
    margin-top: 30px;
  }
  .cycle-section{
	  display: none;
}
}



/* ── HERO SLIDER ── */
.hs {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background: #111;
  user-select: none;
}
.hs-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.hs-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}
.hs-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 80px;
  max-width: 600px;
  color: #fff;
  box-sizing: border-box;
}
.hs-content h2 {
  font-size: clamp(1.3rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hs-content p {
  font-size: clamp(0.82rem, 1.4vw, 0.97rem);
  line-height: 1.65;
  margin: 0 0 22px;
  opacity: 0.92;
}
.hs-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.hs-content ul li {
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  line-height: 1.6;
  padding: 3px 0 3px 16px;
  position: relative;
  opacity: 0.92;
}
.hs-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
}
.btn-slide {
  display: inline-block;
  align-self: flex-start;
  padding: 11px 26px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  background: transparent;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-slide:hover { background: #fff; color: #111; }

/* Стрелки */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.hs-arrow:hover { background: rgba(0,0,0,0.6); border-color: #fff; }
.hs-arrow--prev { left: 16px; }
.hs-arrow--next { right: 16px; }

/* Точки */
.hs-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: background 0.2s, transform 0.2s;
}
.hs-dot.is-active { background: #fff; border-color: #fff; transform: scale(1.2); }

.underline-block{
	margin-top: 100px;
	border-bottom: 1px #000 solid;
	font-size: 25px;
	line-height: 1.5;
}

.underline{
	border-bottom: 1px #222222 solid;
	padding-bottom: 10px;
}

.complect{
	background-color: #F2F2F2;
	padding-bottom: 80px;
	padding-top: 80px;
}

.partners{
	margin-top: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #F2F2F2;
}

.partners .row div{
	margin-right: 50px;
}

.partners .col{
	display: flex;
	justify-content: space-evenly;
}

.partners div p{
	font-size: 28px;
	line-height: 50px;
	border-bottom: 3px #A7ABB0 solid;
}

.column{
  flex-direction: column !important;
}


.tech-img-wrap {
  height: 160px;  
  display: flex;
  align-items: flex-end; 
  margin-bottom: 16px;
}

.tech-img-wrap img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
}
	
	



/* Адаптив */
@media (max-width: 992px) {
  .hs { height: 480px; }
  .hs-content { max-width: 100%; padding: 50px 70px 80px; }
}
@media (max-width: 768px) {
  .hs { height: 420px; }
  .hs-content { padding: 40px 65px 70px; }
  .hs-arrow { width: 36px; height: 36px; }
  .hs-arrow--prev { left: 10px; }
  .hs-arrow--next { right: 10px; }
  .big-list li {
    line-height: 1.5;
    font-size: 17px;
}

.column{
  flex-direction: row !important;
}

.column h4{
	font-size: 18px;
}

.column p{
	font-size: 14px;
}

.bottom-hr{
	border-bottom: 3px #eee solid;
}

.mb-100{
	margin-bottom: 50px;
}
.number{
	font-size: 50px;
}
.partners .col{
	display: block;
}
.partners .row div{
	margin-right: 0px;
}

.partners div p{
text-align: center;
}

.big-list li::before {
    top: 3px;
    width: 25px;
    height: 25px;
}
}
@media (max-width: 480px) {
  .hs { height: 450px; }
  .hs-content { padding: 30px 55px 60px; }
  .btn-slide { padding: 9px 20px; font-size: 0.82rem; }
}


@media (min-width: 1000px) {
.hs-content {
margin-left: 250px;
}
.big-margin li{
	margin-bottom: 50px;
}
}


	.rank-math-breadcrumb p{
		padding-top: 13px;
	}

.form-wrap { max-width: 680px; margin: 0 auto; padding: 2rem 0; }
.form-title { font-size: 20px; font-weight: 500; color: #1a1a1a; margin-bottom: 0.5rem; }
.form-subtitle { font-size: 15px; color: #666; margin-bottom: 2rem; }
.form-control {
  border: none;
  border-bottom: 1.5px solid #ccc;
  border-radius: 0;
  padding: 0.5rem 0;
  background: transparent;
  font-size: 15px;
  color: #1a1a1a;
  box-shadow: none !important;
}
.form-control::placeholder { color: #aaa; }
.form-control:focus {
  background: transparent;
  border-bottom-color: #3b5fa0;
  outline: none;
}
textarea.form-control { resize: vertical; min-height: 80px; }
.btn-send {
  background: #3b5fa0;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 2.8rem;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-send:hover { background: #2d4d8a; }
.privacy-note { font-size: 12.5px; color: #aaa; margin-top: 1rem; }
.mb-field { margin-bottom: 1.6rem; }


/* ═══ МЕГАМЕНЮ ════════════════════════════════════════════════ */

/* Триггер в навбаре */
.nav-links li.has-mega > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li.has-mega > a .drop-arrow {
    font-size: 0.7rem;
    transition: transform 0.22s;
    opacity: 0.55;
}

/* Мегаменю блок */
.mega-menu {
    position: absolute;
    top: 100%; /* вплотную под навбаром */
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 12px 40px rgba(30, 41, 80, 0.12);
    padding: 32px 0 28px;
    z-index: 1020;

    /* скрытие */
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s, transform 0.22s, visibility 0.22s;

    /* только на десктопе */
    display: none;
}

@media (min-width: 992px) {
    .mega-menu {
        display: block; /* управляем через opacity/visibility */
    }
}

/* Открытие по hover — триггер на li */
@media (min-width: 992px) {
    .nav-links li.has-mega:hover > a .drop-arrow,
    .mega-menu.is-open ~ .nav-links li.has-mega > a .drop-arrow {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* hover-цепочка: li → mega через JS (см. ниже),
       но также поддерживаем чистый CSS через :has() */
    .site-navbar:has(.has-mega:hover) .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Группа внутри мегаменю */
.mega-group {
    padding-bottom: 20px;
}

.mega-title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 10px;
    line-height: 1.4;
}

.mega-title a {
    color: #1a1f36;
    text-decoration: none;
    transition: color 0.18s;
}

.mega-title a:hover {
    color: #1a56db;
}

.mega-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

.mega-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-group ul li a {
    font-size: 0.825rem;
    color: #6b7280;
    text-decoration: none;
    padding: 3px 0 3px 22px; /* отступ под иконку */
    display: block;
    transition: color 0.18s;
    line-height: 1.5;
}

.mega-group ul li a:hover {
    color: #1a56db;
}


:root {
      --accent:      #1a56db;
      --accent-dark: #1344b8;
      --text-main:   #1a1f36;
      --text-muted:  #6b7280;
      --border:      rgba(255,255,255,0.15);
      --input-bg:    rgba(255,255,255,0.07);
      --input-bg-focus: rgba(255,255,255,0.12);
    }


    /* ═══ DEMO trigger buttons ═══════════════════════════════════ */
    .demo-wrap {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-cta {
      background: var(--accent);
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
      box-shadow: 0 2px 8px rgba(26,86,219,0.3);
    }

    .btn-cta:hover {
      background: var(--accent-dark);
      color: #fff;
      transform: translateY(-1px);
    }

    .btn-outline-demo {
      background: transparent;
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.4);
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.18s, background 0.18s;
    }

    .btn-outline-demo:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.08);
      color: #fff;
    }

    /* ═══ MODAL OVERLAY ══════════════════════════════════════════ */
    .wenard-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(8, 18, 45, 0.72);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 16px;

      opacity: 0;
      visibility: hidden;
      transition: opacity 0.28s, visibility 0.28s;
    }

    .wenard-modal-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }

    /* ═══ MODAL PANEL ════════════════════════════════════════════ */
    .wenard-modal {
      background-color: rgba(0,0,0,0.1);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      width: 100%;
      max-width: 860px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 40px 40px 36px;
      position: relative;
      box-shadow:
        0 32px 80px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.08);

      transform: translateY(20px) scale(0.98);
      transition: transform 0.28s cubic-bezier(.22,.68,0,1.2);
    }

    .wenard-modal-overlay.is-open .wenard-modal {
      transform: translateY(0) scale(1);
    }

    /* scrollbar inside modal */
    .wenard-modal::-webkit-scrollbar { width: 4px; }
    .wenard-modal::-webkit-scrollbar-track { background: transparent; }
    .wenard-modal::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

    /* ═══ CLOSE BTN ══════════════════════════════════════════════ */
    .modal-close {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.6);
      border-radius: 8px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.18s, color 0.18s;
    }

    .modal-close:hover {
      background: rgba(255,255,255,0.14);
      color: #fff;
    }

    /* ═══ HEADER ═════════════════════════════════════════════════ */
    .modal-header-block {
      display: grid;
/*       grid-template-columns: 1fr 1fr; */
	grid-template-columns: 1fr;
      gap: 24px 40px;
      margin-bottom: 28px;
      align-items: start;
    }

    .modal-header-block h2 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.45;
      margin: 0;
      grid-column: 1;
    }

    .modal-header-block p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      margin: 0;
      grid-column: 1;
    }

    /* ═══ FORM FIELDS ════════════════════════════════════════════ */
    .wf-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 5px;
      display: block;
    }

    .wf-control {
      width: 100%;
      background: var(--input-bg);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: 0.875rem;
      font-weight: 400;
      padding: 10px 14px;
      outline: none;
      transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
      -webkit-appearance: none;
    }

    .wf-control::placeholder {
      color: rgba(255,255,255,0.28);
    }

    .wf-control:focus {
      border-color: rgba(26,86,219,0.7);
      background: var(--input-bg-focus);
      box-shadow: 0 0 0 3px rgba(26,86,219,0.18);
    }

    textarea.wf-control {
      resize: none;
      height: 90%;
    }

    /* ═══ FILE UPLOAD ════════════════════════════════════════════ */
    .file-upload-box {
      background: var(--input-bg);
      border: 1px dashed rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 16px 14px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .file-upload-box .file-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .file-upload-box .file-hint {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      margin-top: auto;
      text-align: right;
    }

    .file-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      max-height: 60px;
    }

    .file-item {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .file-item i { color: rgba(26,86,219,0.8); }

    .btn-attach {
      background: var(--accent);
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 7px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background 0.18s;
      align-self: flex-start;
    }

    .btn-attach:hover { background: var(--accent-dark); }

    /* ═══ CHECKBOXES ═════════════════════════════════════════════ */
    .wf-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      cursor: pointer;
    }

    .wf-check input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 4px;
      background: rgba(255,255,255,0.06);
      flex-shrink: 0;
      margin-top: 1px;
      cursor: pointer;
      transition: border-color 0.18s, background 0.18s;
      position: relative;
    }

    .wf-check input[type="checkbox"]:checked {
      background: var(--accent);
      border-color: var(--accent);
    }

    .wf-check input[type="checkbox"]:checked::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 1px;
      width: 6px;
      height: 10px;
      border: 2px solid #fff;
      border-top: none;
      border-left: none;
      transform: rotate(40deg);
    }

    .wf-check-text {
      font-size: 0.775rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.5;
    }

    .wf-check-text a {
      color: rgba(255,255,255,0.65);
      text-decoration: underline;
      text-underline-offset: 2px;
      transition: color 0.18s;
    }

    .wf-check-text a:hover { color: #fff; }

    /* ═══ SUBMIT ═════════════════════════════════════════════════ */
    .btn-submit {
      background: var(--accent);
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
      box-shadow: 0 4px 16px rgba(26,86,219,0.35);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-submit:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(26,86,219,0.45);
    }

    .btn-submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    /* ═══ DIVIDER ════════════════════════════════════════════════ */
    .wf-divider {
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin: 20px 0;
    }

    /* ═══ SUCCESS STATE ══════════════════════════════════════════ */
    .modal-success {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px;
      gap: 16px;
    }

    .modal-success.is-visible { display: flex; }

    .success-icon {
      width: 64px;
      height: 64px;
      background: rgba(26,86,219,0.15);
      border: 2px solid rgba(26,86,219,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #5b9cf6;
    }

    .modal-success h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
    }

    .modal-success p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.5);
      margin: 0;
    }

    /* ═══ RESPONSIVE ═════════════════════════════════════════════ */
    @media (max-width: 767px) {
      .wenard-modal {
        padding: 28px 20px 24px;
        border-radius: 16px;
      }

      .modal-header-block {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
      }

      .modal-header-block h2 { font-size: 1rem; max-width:90%; }
    }

    @media (max-width: 575px) {
      .wenard-modal { padding: 24px 16px 20px; }
    }