@font-face {
  font-family: 'PaluiSP';
  src: url('./../fonts/PaluiSPDemo-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  unicode-range: U+0041-005A, U+0061-007A, U+0400-04FF; /* A-Z, a-z, кириллица */
}

@font-face {
  font-family: 'Montserrat';
  src: url('./../fonts/Montserrat-Regular.ttf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat EXBLD';
  src: url('./../fonts/Montserrat-ExtraBold.ttf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* font-family: 'PaluiSP', sans-serif; */
body {
  font-family: 'Montserrat', sans-serif;
  /* background: #f4f4f4; */
  background: #fff;
}


.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background: #43484F;
  padding: 10px 0;
  height: 130px;
}

.main-header {
  height: 800px;
}

.main-header .header {
  background: transparent;
}
.header__container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}

.logo--orange {
  color: #FF5A00;
}

.nav .menu {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.menu__item {
  position: relative;
}

.menu__item a {
  color: #fff;
  text-decoration: none;
  padding: 5px 0;
  display: block;
  white-space: nowrap;
  /* font-size: 14px; */
  /* font-family: 'PaluiSP', sans-serif; */
  font-size: 22px;
  font-family: 'Montserrat EXBLD', sans-serif;
  text-transform: uppercase;
}

.menu__item a:hover {
  color: #FF5A00;
}

.main-header {
  background-image: url("./../img/back.jpg");
  background-repeat: no-repeat;   /* убираем повторение */
  background-size: cover;        /* подгоняем под размер окна */
  background-position: center;   /* выравниваем по центру */
}

/* ВЫПАДАЮЩЕЕ МЕНЮ */
.dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 280px;
  z-index: 10;
  list-style: none;
  padding: 10px;
}

.banner-text-main-container {
  display: flex;
  flex-direction: column;
  gap:20px;
  max-width: 60%;
}

.banner-text-main{
  height: 70%;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.banner-text-main .main-title{
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  color:#fff;
  line-height: 70px;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.banner-text-main .main-buttons-block{
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  background: #FFFFFF33;
  border-radius: 5px;
  padding: 18px 36px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.grey-btn{
  font-family: Montserrat;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #FFFFFFCC;
}

.btn-input {
  padding: 0px;
  padding-left: 20px;
  border: 0px solid;
  text-transform: unset;
}

.orange-btn{
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: #FF5A00;
  color:#fff;
}

.banner-text-main .sub-title{
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  color:#fff;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.dropdown__menu li a {
  color: #000;
  padding: 10px 20px;
  display: block;
  font-size: 20px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  color: #43484F;
}

.dropdown__menu li a:hover {
  color: #FF5A00;
}

.menu__item.dropdown:hover .dropdown__menu {
  display: block;
}

.header__phone a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.header__phone a:hover{
  color: #FF5A00;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon {
  color: #FF5A00;
  font-size: 16px;
}


.menu__item.dropdown:hover .dropdown__menu {
  display: block;
}

.menu__item.dropdown {
  position: relative;
}

.menu__item.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;      /* сразу под ссылкой */
  left: 0;
  width: 100%;
  height: 20px;   /* мостик */
}

.subs-blocks {
  display: flex;
  justify-content: space-between;
}

.subs-blocks .sub-block {
  display: flex;
  flex-direction: column;
  gap:15px;
  padding:20px;
  border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px 0px #00000026;
}

.subs-blocks .sub-block .sub-block-title{
  font-family: 'Montserrat EXBLD', sans-serif;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #43484F;
}
.subs-blocks .sub-block .sub-block-title span{
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #FF5A00;
}

.subs-blocks .sub-block .sub-block-content{
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color:#43484F;
}
.subs-blocks .shrt-sub-block {
  width: 23%;
}
.subs-blocks .lng-sub-block {
  width: 48%;
}

.footer {
  background: #43484F; /* фон как у хедера */
  padding: 40px 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.footer__phone,
.footer__email {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}

.footer__phone:hover,
.footer__email:hover {
  color: #FF5A00;
}

.footer__nav .footer__menu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 40px;
  text-transform: uppercase;
  font-family: 'PaluiSP', sans-serif;
  font-family: 'Montserrat EXBLD', sans-serif;
}

.footer__menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.footer__menu li a:hover {
  color: #FF5A00;
}

.footer__logo {
  font-size: 22px;
  font-weight: bold;
  font-family: 'PaluiSP', sans-serif;
}

.logo--white {
  color: #fff;
}

.logo--orange {
  color: #FF5A00;
}


.about {
  margin-top: 80px;
  background: #fff;
  padding: 60px 0;
  font-family: 'Montserrat', sans-serif;
}

.about__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  font-family: 'PaluiSP', sans-serif;
  color: #43484F;
font-weight: 700;
font-size: 40px;
line-height: 100%;
letter-spacing: 0%;
text-transform: uppercase;

}

.logo--orange {
  color: #FF5A00;
}

.logo--gray {
  color: #43484F;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about__column p {
  color: #43484F;
  margin-bottom: 15px;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}

.works {
  background: #fff;
  padding: 60px 0;
  font-family: 'Montserrat', sans-serif;
}

.works__header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.works__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'PaluiSP', sans-serif;
  color: #43484F;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.works__subtitle {
  color: #43484F;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}

.works__link {
  color: #FF5A00;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

.works__link:hover {
  text-decoration: underline;
}

.works__img {
  background: #dcdcdc;
  border-radius: 6px;
  height: 200px;
  margin-bottom: 10px;
  overflow: hidden;
}

.works__img img{
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.works__caption {
  font-size: 14px;
  color: #43484F;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 20px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px!important;
  height: 40px!important;
  border-radius: 6px!important;
  background: #fff!important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15)!important;
  color: #FF5A00!important;
}
.swiper-button-prev:after, .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  font-size: 24px!important;
}
.container-work {
  position: relative;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-button-next {
    right: -60px!important;
}

.swiper-button-prev {
    left: -60px!important;
}


.services {
  background: #f4f4f4;
  padding: 80px 0;
}

.services__title {
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  color: #43484F;
  margin-bottom: 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  text-decoration: none;
  justify-content: space-between;
  transition: background .25s ease, transform .25s ease;
}

.service-card--wide {
  grid-column: span 2;
}

.service-card__title {
  font-family: 'PaluiSP', sans-serif;
  font-size: 18px;
  color: #43484F;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.service-card__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #43484F;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}

.service-card__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: #FF5A00;
}

.service-card:hover,
.service-card.active {
  background: #43484F;
}

.service-card:hover .service-card__title,
.service-card.active .service-card__title,
.service-card:hover .service-card__desc,
.service-card.active .service-card__desc {
  color: #fff;
}


.steps {
  background: #fff;
  padding: 80px 0;
  font-family: 'Montserrat', sans-serif;
}

.steps__title {
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: #43484F;
  margin-bottom: 40px;
}

.steps__highlight {
  color: #FF5A00;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.steps__grid__2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
/* Общий стиль карточек */
.step-card {
  position: relative;
  border-radius: 6px;
  padding: 32px 24px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

/* Тёмные карточки (шаги 1–3) */
.step-card.dark {
  color: #fff;
}

.step-card.dark .step-card__title,
.step-card.dark .step-card__desc {
  color: #fff;
}

/* Светлые карточки */
.step-card {
  background: #f4f4f4;
  color: #43484F;
}

.first-bg {
  background-color: #7C7F84;
}

.second-bg {
  background-color: #696D72;
}

.third-bg {
  background-color: #565B61;
}

.four-bg {
  background-color: #43484F;
  color:#fff;
}

.five-bg {
  background-color: #F4F4F4;
  padding: 0;
  color:#43484F;
  box-shadow: unset;
}

/* Номера шагов */
.step-card__num {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255,255,255,0.2); /* белый полупрозрачный */
  pointer-events: none;
  font-weight: 700;
  font-size: 170px;
  line-height: 100%;
    font-family: 'Montserrat EXBLD', sans-serif;
}

.step-card__title {
  font-family: 'PaluiSP', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  font-style: Bold;
  line-height: 25px;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.step-card__desc {
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  line-height: 100%;
}

/* Карточка с иконкой */
.step-card__icon {
  position: absolute;
  top: 16px;
  right: 36px;
  width: 24px;
  height: 24px;
}


.step-card--with-img {
  position: relative;
}

.step-card__image {
  width: 100%;
  height: 230px;
  max-width: 200px;
}
.step-card__image img{
  width: auto;
  height: 100%;
}
.flex-ste-card {
  display: flex;
}
.step-card__desc-block {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 12px;
}

/* CONSULT */
.consult {
  background: #f4f4f4;
  padding: 80px 0;
}

.consult__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Заголовок */
.consult__title {
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.consult__title--orange {
  color: #FF5A00;
}

.consult__title--dark {
  color: #43484F;
}

.consult__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 130%;
  color: #43484F;
}

.consult__text strong {
  font-weight: 700;
}

/* Форма */
.consult__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consult__input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 4px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #43484F;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}

.consult__agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #43484F;
}

.consult__agree input {
  width: 16px;
  height: 16px;
}

/* Кнопка */
.consult__btn {
  background: #FF5A00;
  color: #fff;
  font-family: 'PaluiSP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .25s ease;
  text-align: center;
}

.consult__btn:hover {
  background: #e25000;
}

.materials {
  padding: 80px 0;
  background: #fff;
}

.materials__title {
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: #43484F;
  margin-bottom: 40px;
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 элементов в строке */
  gap: 16px;
}

.material-item {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(255,90,0,0.08); /* нежный оранжевый фон */
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #FF5A00;
  text-decoration: none;
  transition: all .25s ease;
}

.material-item:hover {
  background: #FF5A00;
  color: #fff;
}

.faq {
  background: #f4f4f4;
  padding: 60px 0;
}

.faq__container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.flex-button-block {
  display: flex;
}
.faq__left {
  flex: 1;
  height: auto;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.faq__left h2{
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.faq__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-weight: 700;
  color: #43484F;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.faq-item.active .faq-question {
  background: #FF5A00;
  color: #fff;
}

.faq-icon {
  font-size: 32px;
  color: #FF5A00;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* + превращается в × */
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p{
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 130%;
  color: #43484F;
}
.faq-item.active .faq-answer {
  max-height: 200px; /* ограничение на высоту, можно больше */
  padding: 15px 20px;
}

.exp__img {
  /* background: #dcdcdc; */
  border-radius: 6px;
  height: 270px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.exp__img img{
  height: 100%;
}

.section-grey-bg {
  background: #D9D9D926;
}
.section-white-bg {
  background: #fff;
}
/* Хлебные крошки */
.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs__list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #9FA3A7; /* серый как на скрине */
}

.breadcrumbs__list li {
  display: flex;
  align-items: center;
}

.breadcrumbs__list li:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
  color: #9FA3A7;
}

.breadcrumbs__list a {
  color: #9FA3A7;
  text-decoration: none;
  transition: color .3s;
}

.breadcrumbs__list a:hover {
  color: #FF5A00; /* твой фирменный оранжевый */
}


/* Главный блок */
.cnc-turning__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.cnc-turning__gallery {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.gallery__main {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery__thumbs a {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* квадраты */
  overflow: hidden;
  border-radius: 6px;
  max-height: 120px;
}

.gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.gallery__thumbs img:hover {
  transform: scale(1.05);
}
.cnc-turning__title {
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  text-transform: uppercase;
  color: #43484F;
  padding-bottom: 30px;
}
.gallery__main {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 12px;
}
.gallery__thumbs img:hover {
  transform: scale(1.05);
}
.price-box {
  background: #f7f7f7;
  padding: 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 130%;
  color: #43484F;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-box__title {
  font-family: 'Montserrat EXBLD', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #43484F;
  font-size: 22px;
  margin-bottom: 12px;
}
.btn--orange {
  display: inline-block;
  margin: 16px 0;
  background: #FF5A00;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .3s;
}
.btn--orange:hover {
  background: #d94a00;
}
.price-box__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-box__features li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #43484F;
}
.price-box {
  background: #93939326;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.w45-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px
}

.price-box__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.price-box p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #43484F;
  font-family: 'Montserrat', sans-serif;
}

.consult__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  margin-bottom: 25px;
  background: #FF6600;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: background .3s;
}

.consult__btn:hover {
  background: #e65500;
}

.price-box__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-box__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.price-box__features li svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #696D72;
}

.price-box__features li span {
  font-weight: 600;
  color: #000;
  margin-right: 4px;
}
/* Виды обработки */
.turning-types {
  padding: 60px 0;
}
.section-title {
  font-size: 28px;
  text-transform: uppercase;
  color: #43484F;
  margin-bottom: 20px;
}
.types__list {
  list-style: disc;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #43484F;
  font-family: 'Montserrat', sans-serif;
}

/* Характеристики */
.turning-specs {
  padding: 60px 0;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Montserrat', sans-serif;
}
.specs-table th,
.specs-table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 15px;
}
.specs-table th {
  background: #e4e4e459;
  text-align: center;
  font-weight: 500;
  color: #43484F;
  font-size: 20px;
}
.work_wraps{
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 40px;
}
.f4-grid {
  grid-template-columns: repeat(4, 1fr);
}
.f4-grid .material-item {
  text-align: center;
}
.work-btn-more{
  display: flex;
  justify-content: center;
  padding: 40px 0px;
}
.contacts {
  padding: 80px 0px;
}
.contacts-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  flex-wrap: wrap;
}

.contacts__info {
  flex: 1;
}

.contacts__block {
  margin-bottom: 20px;
}

.contacts__block h4 {
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  text-transform: uppercase;
  color: #FF5A00;
}

.contacts__block p {
  font-size: 20px;
  line-height: 1.5;
  color: #43484F;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.contacts__block a {
  font-size: 20px;
  line-height: 1.5;
  color: #43484F;
  font-family: 'Montserrat', sans-serif;
}

.contacts__socials {
  margin-top: 20px;
  display: flex;
  gap: 5px;
}

.contacts__socials img {
  width: 30px;
  height: 30px;
  display: block;
}

.contacts__map {
  flex: 2;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
}


.pt-0 {
  padding-top: 0px;
}
.w-auto {
  width: auto;
}
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-window {
    background: #F2F2F2;
    /* width: 420px; */
    padding: 35px 40px;
    border-radius: 12px;
}

.modal-title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 900;
    color: #ff4d00;
    text-transform: uppercase;
}

.modal-title span {
    font-family: 'PaluiSP', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
    font-weight: 900;
}

.modal-desc {
    font-size: 14px;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.5;
}


.submit-btn {
    width: 100%;
    padding: 14px;
    background: #ff4d00;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

#consult-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#consult-form .input-form{
  box-shadow: 0px 4px 4px 0px #00000026;
  border: 0;
  border-radius: 10px;
  padding: 16px;
  font-size: 18px;
  color: #B8B7B6;
  font-family: 'Montserrat', sans-serif;
}
#consult-form .checkbox-form{
   box-shadow: 0px 4px 4px 0px #00000026;
  border: 0;
}
#consult-form  .checkbox{
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: #43484F;
}
.custom-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.custom-modal-window {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  max-width: 350px;
  line-height: 1.4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
/* =====================
   АДАПТИВ ПОД 1600px
   ===================== */
@media (max-width: 1600px) {
  .container {
    max-width: 1380px;
    padding: 0 12px;
  }
  .menu__item a{
    font-size: 20px;
  }
  .header {
    height: 110px;
    padding: 8px 0;
  }

  .banner-text-main .main-title {
    font-size: 42px;
    line-height: 58px;
  }

  .services__title,
  .steps__title,
  .consult__title,
  .materials__title,
  .faq__left h2 {
    font-size: 34px;
  }

  .service-card__title,
  .step-card__title {
    font-size: 16px;
    line-height: 22px;
  }

  .service-card__desc,
  .consult__text,
  .about__column p,
  .faq-answer p {
    font-size: 16px;
  }

  .step-card__num {
    font-size: 120px;
  }

  .exp__img {
    height: 230px;
  }

  .works__caption,
  .articles__caption {
    font-size: 16px;
  }
}


.works .works__img {
  height: 500px;
}
.blogs .works__img {
  height: 200px;
}
/* =====================
   АДАПТИВ ПОД 1440px
   ===================== */
@media (max-width: 1440px) {
  .container {
    max-width: 1240px;
    padding: 0 10px;
  }

  .header {
    height: 100px;
    padding: 6px 0;
  }

  .banner-text-main .main-title {
    font-size: 36px;
    line-height: 50px;
  }

  .banner-text-main .sub-title {
    font-size: 18px;
  }

  .services__title,
  .steps__title,
  .consult__title,
  .materials__title,
  .faq__left h2 {
    font-size: 30px;
  }

  .service-card {
    padding: 20px 18px;
  }

  .service-card__title,
  .step-card__title {
    font-size: 15px;
    line-height: 20px;
  }

  .service-card__desc,
  .consult__text,
  .about__column p,
  .faq-answer p {
    font-size: 15px;
  }

  .step-card__num {
    font-size: 100px;
  }

  .exp__img {
    height: 200px;
  }

  .works__caption,
  .articles__caption {
    font-size: 15px;
  }

  .faq-question {
    font-size: 18px;
    padding: 14px 18px;
  }
}

.style-content h2{
  font-size: 28px;
  text-transform: uppercase;
  color: #43484F;
  margin-bottom: 20px;
}
.style-content {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #43484F;
  font-family: 'Montserrat', sans-serif;
}
.style-content ul{
  list-style: disc;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #43484F;
  font-family: 'Montserrat', sans-serif;
}

.info-section {
  padding: 20px 0;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 40px;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-weight: 700;
  color: #ff5c00;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'PaluiSP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.info-value {
  font-weight: 500;
  color: #333;
  font-size: 16px;
  font-family: 'Montserrat EXBLD', sans-serif;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
