/*Общие элементы*/

.gpp__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 35px 11px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  text-align: center;
}

/* Основной шрифт */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gpp-header{position:static;top:0;background:#fff;z-index:1000;}
.gpp-header__inner{display:flex;align-items:center;gap:16px;min-height:72px}
.gpp-header__logo img{height:36px}
.gpp-header__spacer{flex:1}
.gpp-header__contacts{display:flex;align-items:center;gap:12px; z-index: 999;}
.gpp-header__soc{display:inline-flex;width:36px;height:36px;align-items:center;justify-content:center;}

.gpp-header__phone-block{display:flex;flex-direction:column;align-items:flex-end;gap:4px; padding-left: 42px;}
.gpp-header__phone{display:inline-flex;align-items:center;gap:8px;color:#003366;text-decoration:none;font-weight:700}
.gpp-header__phone img{width:16px;height:16px}
.gpp-header__cta{border:1px solid #003366;background:#fff;color:#003366;border-radius:999px;padding:4px 12px;font-weight:600;width:137px;height:26px;font-size:12px;display:flex;align-items:center;justify-content:center}

/* Бургер */
.gpp-header__burger{position:relative;width:28px;height:22px;background:none;border:0;padding:0;display:inline-flex;flex-direction:column;justify-content:space-between;cursor:pointer}
.gpp-header__burger span{display:block;height:2px;background:#0a6cff;border-radius:2px;transition:transform .25s ease,opacity .2s ease}
.gpp-header__burger span:last-child{width: 70%;}
.gpp-header__burger[aria-expanded="true"] span:nth-child(1){transform:translateY(10px) rotate(45deg)}
.gpp-header__burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.gpp-header__burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-10px) rotate(-45deg);width: 100%;}

/* Боковое меню */
.side-menu{position:fixed;inset:0 auto 0 0;width:0;max-width:520px;background:#fff;color:#333;overflow:hidden;transition:width .3s ease;z-index:1100}
.side-menu--open{width:var(--side-menu-width,80vw);box-shadow:0 4px 26px 0 rgba(0,0,0,0.15)}
.side-menu__nav{padding:0}
.side-menu__link{display:block;color:#333;text-decoration:none;padding:0 24px 0 55px;height:77px;line-height:77px;border-left:3px solid #fff;transition:all .2s ease;position:relative}
.side-menu__link:hover{background:#F5F7F9;border-left:3px solid #E13023}
.side-menu__link--back{font-weight:500;color:#666}
.side-menu__overlay{position:fixed;inset:0;z-index:1090}

/* Баннер */
.gpp-banner {
  height: auto;
  position: relative;
  z-index: 998;
  height: 626px;
  background: #F6F8FF url(img/bg.png) no-repeat;
  display: flex;
  align-items: center;
}
.gpp-banner__bg-house {
  position: absolute;
  background: url(img/house.png) no-repeat right top;
  background-size: 100%;
  height: calc(100% + 72px); 
  width: 600px;
  top: -72px; 
  right: 0;
  z-index: 998; 
}

/* Информационный блок баннера */
.gpp-banner__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  padding: 40px 0;
}

.gpp-banner__head {
  font-size: 62px;
  font-weight: 300;
  color: #000;
  line-height: 64px;
  margin-bottom: 24px;
}

.gpp-banner__text {
  font-size: 18px;
  color: #525763;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 500px;
}

.gpp-banner__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}



.gpp-banner__button-red {
  background: #E13023;
  color: #fff;
}

.gpp-banner__button-red:hover {
  background: #c5281e;
  color: #fff;
}

.gpp-banner__button-blue {
  background: #0057ff;
  color: #fff;
}

.gpp-banner__button-blue:hover {
  background: #0047d9;
  color: #fff;
}

.gpp-labels {
  display: flex;
  gap: 24px;
  width: 100%;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 40px;
  margin-bottom: 40px;
}

.gpp-labels__item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-content: center;
  align-items: center;
}

.gpp-labels__item img {
  width: 59px;
  height: 59px;
}

.gpp-labels__item p {
  font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 20px;
}

/* Каталог */
.gpp-catalog {
  background: #F6F8FF;
  text-align: center;
}



.gpp-catalog_header {
  font-size: 62px;
  font-weight: 400;
  line-height: 64px;
  text-align: center;
  padding-top: 73px;
  margin-bottom: 0;
  display: block;
}

.gpp-catalog__tabs {
  margin-top: 34px;
  margin-bottom: 54px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gpp-catalog__tabs-item {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  padding: 10px 20px;
  background: #E8ECF9;
  text-decoration: none;
  border-radius: 30px;
  
}

.gpp-catalog__tabs-item.active {
  background: #fff;
  color: #E13023;
  font-weight: 600;
}

.gpp-catalog__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.gpp-catalog__item {
  flex: 0 1 calc((100% / 4) - 10px);
  padding: 17px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  overflow: visible;
  z-index: 1;
  text-align: left;
  cursor: pointer;
}

.gpp-catalog__item img {
  max-width: 100%;
}

.gpp-catalog__item-image {
  position: relative;
}

.gpp-catalog__item-quick {
    
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    left: 0;
    top: 0;
}

.gpp-catalog__item-quick span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 35px 11px;
  width: 80%;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 18px;
  text-align: center;
  justify-content: center;
  align-items: center;
  
}



.gpp-catalog__item-quick i {
  width: 16px;
  height: 16px;
  background: url('img/icons/eye.png') no-repeat center;
  background-size: contain;
  margin-right: 8px;
  display: inline-flex;
  justify-content: center;
  
}

.gpp-catalog__item-price {
  font-size: 23px;
  font-weight: 600px;
  line-height: 24px;
  margin-top: 18px;
  margin-bottom: 10px;
}

.gpp-catalog__item-name {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #1F212E;
  margin-bottom: 10px;
}

.gpp-catalog__item-status {
  padding-left: 28px;
  font-size: 14px;
  background-position: left center;
  background-repeat: no-repeat;
  margin-bottom: 14px;
}

.gpp-catalog__item-status.good {
  background-image: url(img/icons/catalog-good.png);
  color: #3AB935;
}

.gpp-catalog__item-status.order {
  background-image: url(img/icons/catalog-order.png);
  color: #CA8115;
}

.gpp-catalog__item-status.empty {
  background-image: url(img/icons/catalog-empty.png);
  color: #626262;
}

.gpp-catalog__item-description-name {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #81889B;
}

.gpp-catalog__item-description-value {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500px;
  margin-bottom: 14px;
  height: 36px;
}

.gpp-catalog__item:hover .gpp-catalog__item-description-value:last-child {
  margin-bottom: 60px; /* Отступ для кнопки при наведении */
}

.gpp-catalog__item-subbg {
  background: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -75px;
  border-radius:  0 0 20px 20px;
  padding: 17px;
  z-index: 999;
  display: none;
  opacity: 0;
  transition: all 0.2s ease;
}

.gpp-catalog__item:hover .gpp-catalog__item-subbg {
  display: block;
  opacity: 1;
}

.gpp-catalog__item:hover .gpp-catalog__item-quick {
  display: inline-flex;
}

/* Панель быстрого просмотра */
.quick-view-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  max-width: 533px;
  height: 100vh;
  background: #fff;
  color: #333;
  overflow: hidden;
  transition: width 0.3s ease;
  z-index: 1200;
  box-shadow: -4px 0 26px 0 rgba(0,0,0,0.15);
}

.quick-view-panel--open {
  width: 533px;
}

.quick-view-panel__overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(0, 0, 0, 0.5);
}

.quick-view-panel__content {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.quick-view-panel__back {
  display: block;
  color: #666;
  text-decoration: none;
  padding: 0 24px;
  height: 77px;
  line-height: 77px;
  border-left: 3px solid #fff;
  transition: all 0.2s ease;
  font-weight: 500;
  background: #fff;
}

.quick-view-panel__back:hover {
  background: #F5F7F9;
  border-left: 3px solid #E13023;
}

.quick-view-panel__image {
  padding: 20px 0;
  text-align: center;
 
}

.quick-view-panel__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.quick-view-panel__info {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

.quick-view-panel__price {
  font-size: 23px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
  color: #E13023;
}

.quick-view-panel__name {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #1F212E;
  margin-bottom: 16px;
}

.quick-view-panel__status {
  padding-left: 28px;
  font-size: 14px;
  background-position: left center;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}

.quick-view-panel__status.good {
  background-image: url(img/icons/catalog-good.png);
  color: #3AB935;
}

.quick-view-panel__status.order {
  background-image: url(img/icons/catalog-order.png);
  color: #CA8115;
}

.quick-view-panel__status.empty {
  background-image: url(img/icons/catalog-empty.png);
  color: #626262;
}

.quick-view-panel__description {
  font-size: 16px;
  line-height: 24px;
  color: #525763;
  margin-bottom: 24px;
}

.quick-view-panel__specs {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
}

.quick-view-panel__spec-item {
  margin-bottom: 16px;
}

.quick-view-panel__spec-name {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #81889B;
  margin-bottom: 4px;
}

.quick-view-panel__spec-value {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #333;
}

.gpp-catalog__item-button-red {

  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 35px 11px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  background: #E13023;
  color: #fff;
  display: inline-block;
  width: 100%;
}

/* Эффект наведения для карточек каталога */
.gpp-catalog__item:hover .gpp-catalog__item-button-red {
  display: inline-flex;
}

.gpp-catalog__item:hover {
 /* transform: translateY(-10px);*/
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
  margin-bottom: -10px;
}

.gpp-catalog__load-more {
  background: #0A62C7;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 57px;
}

.gpp-catalog__load-more i {
  width: 20px;
  height: 20px;
  background: url('img/icons/square-more.png') no-repeat center;
  background-size: contain;
  margin-right: 8px;
}

.gpp-catalog__load-more.loading i {
  background: none;
  border: 2px solid currentColor;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.gpp-catalog__load-more.loading {
  opacity: 0.7;
  pointer-events: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Прелоадер каталога */
.gpp-catalog__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  width: 100%;
  grid-column: 1 / -1;
}

.gpp-catalog__loader div {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0A62C7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.gpp-catalog__load-more i {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(img/icons/square-more.png) no-repeat center center;
  padding-right: 10px;
}

.gpp-feedback {
  background: url(img/form-bg.png) no-repeat center center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  height: 562px;
}
.gpp-feedback__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.gpp-feedback__inner-left {
  max-width: 500px;
  text-align: left;
}
.gpp-feedback__inner-right {
  max-width: 500px;
  text-align: right;
}

.gpp-feedback__header {
  font-size: 62px;
  font-weight: 400;
  line-height: 64px;
  color: #fff;
  margin-bottom: 46px;
}

.gpp-feedback__text {
  font-size: 22px;
  font-weight: 300;
  line-height: 32px;
  color: #fff;
}

.gpp-feedback__form {
  padding: 70px 52px;
  border: 1px solid rgba(255, 255, 255, 0.61);
  border-radius: 42px;
}

.gpp-feedback__form input[type="text"] {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.61);
  border-radius: 11px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.43);
  color: #fff;
  margin-bottom: 24px;
}
.gpp-feedback__form input[type="text"]::placeholder {
  color: #fff;
}


.gpp-feedback__button {
  background: rgba(30, 30, 30, 1);
  padding: 18px;
  color: #fff;
  width: 100%;
  border: 0;
  border-radius: 11px;
  margin-bottom: 24px;
}

.gpp-feedback__privacy {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  line-height: 100%;
  text-align: center;
}

.gpp-feedback__privacy a {
  color: #fff;
  text-decoration: underline;
}

.gpp-how-we-work__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: space-around;
  gap: 34px;
  margin-bottom: 72px;
  margin-top: 95px;
}

.gpp-how-we-work__header-title {
  font-size: 62px;
  font-weight: 400;
  line-height: 64px;
  color: #000;
 
  white-space: nowrap;
}

.gpp-how-we-work__text {
  color: rgba(43, 68, 114, 1);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

.gpp-how-we-work__inner{
  display: flex;
  gap: 10px;
  margin-bottom: 95px;
}

.gpp-how-we-work__item {
  border: 1px solid rgba(220, 52, 41, 1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.gpp-how-we-work__item-header {
  font-size: 23px;
  font-weight: 600;
  color: rgba(82, 87, 99, 1);
  margin-bottom: 10px;
  line-height: 100%;
}

.gpp-how-we-work__item-text {
  font-size: 14px;
  font-weigth: 300;

}

.gpp-how-we-work__item-number{
  position: absolute;
    right: 5px;
    bottom: -37px;
    font-size: 76px;
    color: rgba(220, 52, 41, 1);
    font-weight: 700;
    display: block;
    background: #fff;
    padding: 4px;
    line-height: 62px;
}

.gpp-services {
  background: rgba(246, 248, 255, 1);
  padding-bottom: 54px;
}

.gpp-services__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  gap: 34px;
  margin-bottom: 49px;
  padding-top: 57px;
}

.gpp-services__header-title {
  font-size: 62px;
  font-weight: 400;
  line-height: 64px;
  color: #000;
  white-space: nowrap;
}

.gpp-services__header-text{
  color: rgba(43, 68, 114, 1);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

.gpp-services__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

.gpp-services__item{
  flex: 0 1 calc((100% / 3) - 16px);
  background: #fff;
  text-align: center;
  position: relative;
}

.gpp-services__item:nth-child(even) {
  background: rgba(239, 241, 249, 1);
}

.gpp-services__item img {
  max-width: 100%;
}

.gpp-services__item-header {
  padding: 24px 20px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
}

.gpp-services__item-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  padding: 0 20px 24px 20px;
}

.gpp-services__item-button {
  padding: 20px 20px;
  position: absolute;
  background: #fff;
  bottom: -90px;
  width: 100%;
  z-index: 9999;
  display: none;
  transition: all 0.5s ease;
}

.gpp-services__item:nth-child(even) .gpp-services__item-button {
  background: rgba(239, 241, 249, 1);
}

.gpp-services__item:hover .gpp-services__item-button {
  display: block;
}

.gpp-services__item-button-red {
  background: rgba(225, 48, 35, 1);
  color: #fff;
  width: 100%;
}

.gpp-projects__header-title {
  font-size: 62px;
  line-height: 64px;
  font-weight: 400;
  color: rgba(33, 39, 55, 1);
  white-space: nowrap;
}

.gpp-projects__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* по умолчанию: сетка */
  gap: 0;
}

.gpp-projects__item {
  width: 25%;
  position: relative;
  flex: 0 0 25%;
  min-height: 220px; /* предотвращает "обнуление" высоты до загрузки изображения */
}

.gpp-projects__item img {
  width: 100%;
  height: auto;
  display: block; /* убирает нижние пробелы/перепады высоты */
}

.gpp-projects__slider {
  position: relative;
  width: 100%;
}

.gpp-projects__viewport {
  overflow: visible; /* по умолчанию: без слайдера */
  width: 100%;
}

/* transition добавим только на мобайл */

.gpp-projects__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  width: 21px;
  height: 33px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none; /* по умолчанию скрыты (не нужны вне мобайла) */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 0;
  font-size: 0; /* скрываем символы внутри */
}
.gpp-projects__arrow--prev { left: 10px; background-image: url('img/icons/arow-left.png'); }
.gpp-projects__arrow--next { right: 10px; background-image: url('img/icons/arrow-right.png'); }

 

/* Планшет: 2 карточки */
@media (min-width: 769px) and (max-width: 1199px) {
  .gpp-projects__item { flex: 0 0 50%; width: 50%; }
}

/* Десктоп: 4 карточки */
@media (min-width: 1200px) {
  .gpp-projects__item { flex: 0 0 25%; width: 25%; }
}





 

.gpp-projects__item-info {
  position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.69) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    padding: 30px 27px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 10px;

}

.gpp-projects__item-title {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.gpp-projects__item-button {
  border: 1px solid #fff;
  border-radius: 35px;
  width: 43px;
  height: 43px;
  min-width: 43px;
  min-height: 43px;
  text-decoration: none;
  text-align: center;
  line-height: 43px;
  color: #fff;
}

.gpp-projects__header {
  margin-top: 60px;
  margin-bottom: 56px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.gpp-projects__header-filters {
  display: flex;
  gap: 8px;
}


.gpp-projects__header-filter {
  padding: 10px 20px;
  border: 1px solid rgba(232, 236, 249, 1);
  text-decoration: none;
  color: rgba(43, 68, 114, 1);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.gpp-projects__header-filter.active {
  border: 1px solid rgba(220, 52, 41, 1);
  color: rgba(220, 52, 41, 1);
}

.gpp-check {
 
  padding: 70px 0;
  display: flex;
  gap: 16px;
}

.gpp-check__item {
  background: rgba(246, 248, 255, 1);
  background-image: url(img/icons/check.png);
  background-repeat: no-repeat;
  background-position: center 47px;
  padding-top: 153px;
  padding-left: 30px;
  padding-right:30px;
  padding-bottom: 40px;
  text-align: center;
  border-radius: 16px;
}

.gpp-check__item-header {
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
  height: 40px;
}

.gpp-check__item-text {
  color: rgba(22, 29, 52, 1);
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
}

/* ========================================
   АККОРДИОН
   ======================================== */

.gpp-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gpp-accordion__item {
  background: rgba(246, 248, 255, 1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gpp-accordion__header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gpp-accordion__header h3 {
  color: rgba(33, 39, 55, 1);
  font-size: 20px;
  line-height: 160%;
  font-weight: 600;
  margin: 0;
  transition: all 0.3s ease;
}

.gpp-accordion__icon {
  font-size: 24px;
  font-weight: 300;
  color: rgba(33, 39, 55, 1);
  transition: all 0.3s ease;
  user-select: none;
}

.gpp-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}



.gpp-accordion__content p {
  padding: 0 30px 24px 30px;
  margin: 0;
  color: rgba(129, 129, 129, 1);
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
}


.gpp-accordion__item.active .gpp-accordion__header h3 {
  color: rgba(216, 54, 46, 1);
}

.gpp-accordion__item.active .gpp-accordion__icon {
  color: rgba(216, 54, 46, 1);
  transform: rotate(0deg);
}

.gpp-accordion__item.active .gpp-accordion__content {
  max-height: 200px;
}

.gpp-questions {
  padding-top: 111px;
  padding-bottom: 119px;
}

.gpp-questions__title {
  font-size: 62px;
  line-height: 64px;
  font-weight: 400;
  color: rgba(33, 39, 55, 1);
  margin-bottom: 37px;
}

.gpp-questions__description {
  color: rgba(43, 68, 114, 1);
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
}

/* ========================================
   КАРТА
   ======================================== */
.gpp-map {
  width: 100%;
  position: relative;
}

#yandex-map {
  width: 100%;
  height: 609px;
}

.gpp-map__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gpp-map__overlay > .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.gpp-map__info {
  pointer-events: auto;
  width: 455px;
  height: 408px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
}

.gpp-map__title {
  font-size: 14px;
  font-weight: 300;
  color: rgba(117, 131, 157, 1);
  margin-bottom: 10px;
}

.gpp-map__value {
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 25px;
}

.gpp-map__messengers{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  
}

.gpp-map__messenger a {
  text-decoration: none;
  margin-right: 26px;
}

.gpp-map__messenger-whatsapp  {
  
  color: rgba(138, 224, 98, 1)
}

.gpp-map__messenger-telegram  {
  color: rgba(52, 152, 219, 1)
}

/* О компании */
.gpp-about {
  padding-top: 140px;
  padding-bottom: 139px;
  background: url(img/about-bg.png) no-repeat center center;
  background-size: cover;
  text-align: center;
}

.gpp-about__title {
 color: rgba(33, 39, 55, 1);
 font-size: 62px;
 line-height: 64px;
 font-weight: 400;
 margin-bottom: 41px;
}
.gpp-about__text {
  font-size: 18px;
  line-height: 29px;
  font-weight: 300;
  color: rgba(43, 68, 114, 1);
}

/* Футер верхний */
.gpp-footer-top {
  height: 122px;
  background: rgba(243, 68, 56, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gpp-footer-top__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}

.gpp-footer-top__inner a {
  color: #fff;
  text-decoration: dotted;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  text-transform: uppercase;
  border-bottom: 1px dotted #fff
}

.gpp-footer-top__inner a.gpp-footer-top__top {
  background: rgba(3, 3, 3, 0.11);
  padding: 9px 21px;
  border-radius: 10px;
  border-bottom: none;
}

.gpp-footer-top__inner a.gpp-footer-top__top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gpp-footer-top__inner a.gpp-footer-top__top:before {
  content: "\2191"; /* стрелка вверх */
  font-size: 16px;
  line-height: 1;
  color: #fff;
}

/* Футер нижний */
.gpp-footer-bottom {
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gpp-footer-bottom__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.gpp-footer-bottom__text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.gpp-footer-bottom__text p {
  font-size: 12px;
  font-weight: 400px;
  color: rgba(73, 83, 103, 1);
  margin-bottom: 16px;
}

.gpp-footer-bottom__text a {
  font-size: 12px;
  font-weight: 400;
}

.gpp-footer-bottom_contacts {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.gpp-footer-bottom__info {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.gpp-footer-bottom__phone{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.gpp-footer-bottom__phone a {
  display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #003366;
    text-decoration: none;
    font-weight: 700;
}

.gpp-footer-bottom__cta{
  border: 1px solid #003366;
  background: #fff;
  color: #003366;
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 600;
  width: 137px;
  height: 26px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Быстрый просмотр — CTA блок */
.quick-view-panel__cta {
  background: rgba(234, 240, 243, 1);
  height: 160px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.quick-view-panel__cta-title {
  font-size: 19px;
  line-height: 22px;
  font-weight: 400;
  color: rgba(33, 39, 55, 1);
}

#quickViewCtaName {
  color: rgba(225, 48, 35, 1);
  font-weight: 500;
}
.quick-view-panel__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.quick-view-panel__cta-left {
  width: 50%;
  font-size: 14px;
  line-height: 20px;
  color: rgba(43, 68, 114, 1);
  font-weight: 300;
}
.quick-view-panel__cta-right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.gpp-content__title {
  background: rgba(238, 241, 244, 1);
  border-radius: 20px;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 24px;
  padding-top: 24px;
  margin-bottom: 44px;
}

.gpp-content__back {
  font-size: 14px;
  line-height: 64px;
  color: rgba(10, 98, 199, 1);

}

.gpp-content {
  background: rgba(246, 248, 255, 1);
}

.gpp-content__inner {
  overflow: auto;
}

.gpp-content h1 {
  font-size: 44px;
  line-height: 44px;
  font-weight: 500;
  color: #000;
}

.gpp-content h2 {
  font-size: 32px;
  line-height: 39px;
  font-weight: 600;
  color: #000;
  margin-bottom: 14px;
}

.gpp-content h3 {
  font-size: 23px;
  line-height: 39px;
  font-weight: 600;
  color: #000;
  margin-bottom: 17px;
}

.gpp-content p {
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  color: rgba(65, 76, 96, 1);
  margin-bottom: 32px;
}

.gpp-content b {
  font-weight: 700;
}


.gpp-content ul {
  list-style: none;
  margin: 0 0 14px 0;
  padding-left: 14px;
  margin-bottom: 24px;
}

.gpp-content ul li {
  position: relative;
  margin-bottom: 12px;
  color: rgba(129, 129, 129, 1);
  font-size: 16px;
}

/* Нумерованные списки */
.gpp-content ol {
  list-style: decimal;
  margin: 0 0 14px 0;
  padding-left: 18px;
  margin-bottom: 24px;
}

.gpp-content ol li {
  margin-bottom: 12px;
  color: rgba(129, 129, 129, 1);
  font-size: 16px;
}

.gpp-content ol li::marker {
  color: rgba(10, 98, 199, 1);
  font-size: 16px;
}

.gpp-content ul li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 9px;
  width: 7px;
  height: 7px;
  background: url('img/icons/ul-ico.png') no-repeat center center;
  background-size: contain;
}

.gpp-catalog-detail-page {
  padding-bottom: 44px;
}

/* ========================================
   АДАПТИВНЫЕ СТИЛИ
   ======================================== */

/* ========================================
   ПЛАНШЕТЫ (до 992px)
   ======================================== */
@media (max-width: 992px) {
  /* Хедер */
  .gpp-header__contacts span {
    display: none;
  }
  .gpp-header__cta {
    width: 120px;
    height: 24px;
    font-size: 11px;
    padding: 3px 10px;
  }
}

/* ========================================
   МОБИЛЬНЫЕ УСТРОЙСТВА (до 768px)
   ======================================== */
@media (max-width: 768px) {
  /* Проекты: слайдер только на мобилке */
  .gpp-projects__viewport { overflow: hidden; }
  .gpp-projects__list { flex-wrap: nowrap; transition: transform 0.35s ease; }
  .gpp-projects__item { flex: 0 0 100%; width: 100%; }
  .gpp-projects__arrow { display: flex; }
  /* Хедер */
  .gpp-header__phone-block {
    gap: 2px;
  }
  .gpp-header__cta {
    width: 100px;
    height: 22px;
    font-size: 10px;
    padding: 2px 8px;
  }
  
  /* Баннер */
  .gpp-banner {
    height: 500px;
    padding-top: 60px;
    align-items: center;
    justify-content: center;
  }
  .gpp-banner__bg-house {
    height: calc(100% + 60px);
    top: -60px;
    width: 200px;
    z-index: 1;
  }
  
  .gpp-banner__info {
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 20px 16px;
    position: relative;
    z-index: 2;
  }
  
  .gpp-banner__head {
    font-size: 34px;
    margin-bottom: 16px;
  }
  
  .gpp-banner__text {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 100%;
  }
  
  .gpp-banner__buttons {
    justify-content: center;
    gap: 12px;
  }
  
  .gpp-banner__button-red,
  .gpp-banner__button-blue {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Боковое меню */
  .side-menu {
    max-width: 100vw;
  }
  .side-menu--open {
    width: 100vw;
  }
  .side-menu__link {
    padding: 0 20px 0 40px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
  }
  .side-menu__link--back {
    font-size: 15px;
  }
  
  /* Каталог */
  .gpp-catalog__list {
    flex-direction: column;
    gap: 20px;
  }
  
  .gpp-catalog__item {
    flex: none;
    width: 100%;
  }
  
  .gpp-catalog__item-button-red {
    display: inline-flex;
  }
  
  .gpp-catalog__item:hover {
    transform: none;
    box-shadow: none;
  }
  
  /* Вкладки каталога с горизонтальной прокруткой */
  .gpp-catalog__tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
    margin-bottom: 44px;
    display: flex;
    gap: 10px;
    padding: 0 16px 0 0;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    justify-content: flex-start;
  }
  
  .gpp-catalog__tabs::-webkit-scrollbar {
    display: none;
  }
  
  .gpp-catalog__tabs-item {
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  .gpp-catalog__tabs-item:first-child {
    margin-left: 16px;
  }
  
  /* Панель быстрого просмотра */
  .quick-view-panel--open {
    width: 100vw;
  }
  
  .quick-view-panel__back {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
  }
  
  .quick-view-panel__image {
    padding: 16px;
  }
  
  .quick-view-panel__info {
    padding: 20px;
  }

  .quick-view-panel__cta-row { flex-direction: column; align-items: stretch; }
  .quick-view-panel__cta-left, .quick-view-panel__cta-right { width: 100%; }
  .quick-view-panel__cta-right { justify-content: flex-start; }
}

/* ========================================
   МАЛЕНЬКИЕ МОБИЛЬНЫЕ (до 480px)
   ======================================== */
@media (max-width: 480px) {
    
 .gpp-how-we-work__item-number {
     bottom: -18px;
 }
  /* Хедер */
  .gpp-header__contacts {
    display: none;
  }

  .gpp-header__spacer {
    display: none;
  }

  .gpp-catalog_header{
    font-size: 33px;
    padding-top: 32px;
    padding-bottom: 27px;
    margin: 0;
  }

  .gpp-catalog__tabs {
    margin-top: 0;
    margin-bottom: 21px;
  }

  .gpp-catalog__item-subbg {
    display: block;
  }

  .gpp-catalog__item-subbg {
    display: block!important;
    opacity: 1;
    position: relative;
    bottom: 0;
    background: none;
  }

  .gpp-catalog__item-description-value {
    height: auto;
  }

  .gpp-catalog__item:hover {
    margin-bottom: 0;
  }

  .gpp-catalog__tabs-item {
    font-size: 14px;
    padding: 10px 16px;
  }

  .gpp-header__inner {
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 16px;
  }

  .gpp-header__logo img {
    height: 24px;
  }
  
  /* Баннер */
  .gpp-banner {
    height: 522px;
    padding-top: 0;
    display: flex;
    align-items: flex-start;
  }
  .gpp-banner__bg-house {
    top: 0;
    height: 522px;
    z-index: 1;
    background-position: bottom right;

  }

  .gpp-banner__info {
    padding: 20px 0;
  }
  
  .gpp-banner__head {
    font-size: 34px;
    line-height: 38px
  }
  
  .gpp-banner__text {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
  }
  
  .gpp-banner__button-red,
  .gpp-banner__button-blue {
    padding: 10px 20px;
    width: 100%;
    font-size: 16px;
  }
  
  /* Боковое меню */
  .side-menu__link {
    padding: 0 16px 0 32px;
    height: 56px;
    line-height: 56px;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 100;
  }
  .side-menu__link--back {
    font-size: 14px;
  }
  
  /* Лейблы */
  .gpp-labels {
    flex-direction: column;
  }


  /* Форма обратной связи */

  .gpp-feedback {
    padding: 30px 24px;
    height: 520px;
  }

  .gpp-feedback__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .gpp-feedback__inner-left {
    width: 100%;
  }

  .gpp-feedback__header {
    font-size: 33px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 24px;
  }

  .gpp-feedback__text {
    font-size: 16px;
    line-height: 22px;
  }
  
  .gpp-feedback__form {
    border: 0;
    padding: 0;
  }


  .gpp-how-we-work__header {
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 22px;
  }

  .gpp-how-we-work__header-title {
    white-space: normal;
    font-size: 33px;
    font-weight: 400;
    line-height: 43px;
  }

  .gpp-how-we-work__text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .gpp-how-we-work__inner {
    flex-direction: column;
    gap: 20px;
  }

  .gpp-services__header {
    flex-direction: column;
  }

  .gpp-services__header {
    padding-top: 35px;
    margin-bottom: 23px;
  }

  .gpp-services__header-title {
    font-size: 33px;
    line-height: 43px;
  }

  .gpp-services__header-text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .gpp-services__item {
    flex: auto;
  }
  .gpp-services__item-button {
    position: relative;
    display: block;
    bottom: auto;
  }

  .gpp-projects__header {
    flex-direction: column;
  }
  
  .gpp-projects__header-title {
    font-size: 33px;
    line-height: 64px;
  }

  .gpp-check {
    flex-direction: column;
    gap: 20px;
  }
  
  .gpp-projects__header-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    width: 100%;
  }
  .gpp-projects__header-filters::-webkit-scrollbar { display: none; }

  .gpp-projects__header-filter {
    white-space: nowrap;
  }
  
  .gpp-footer-bottom__inner {
    flex-direction: column;
  }
  
  .gpp-footer-bottom__info {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 41px;
  }
  
  .gpp-footer-bottom_contacts {
    flex-direction: column;
  
  }

  .gpp-questions {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .gpp-questions__title {
    font-size: 33px;
    line-height: 64px;
    margin-bottom: 24px;
  }

  .gpp-questions__description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 17px;
  }

  .gpp-accordion__header h3 {
    font-size: 18px;
  }

  .gpp-map__info {
    margin: -20px -10px
  }

  .gpp-map__overlay {
    position: relative;
  }
  #yandex-map {
    height: 400px;
  }
  .gpp-about {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .gpp-about__title {
    font-size: 33px;
    line-height: 33px;
    margin-bottom: 10px;
  }

  .gpp-about__text p{
    font-size: 14px;
    line-height: 19px;
  }

  .gpp-footer-top {
    height: auto;
  }

  .gpp-footer-bottom {
    height: auto;
    padding-top: 33px;
    padding-bottom: 33px;
  }
  
  .gpp-footer-top__inner {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 23px;
    padding-top: 33px;
    padding-bottom: 33px;
  }
  
  .gpp-footer-bottom__text {
    align-items: center;
  }
  .gpp-footer-bottom_contacts {
    gap: 32px;
  }

  .gpp-footer-bottom__phone {
    align-items: center;
   
  }
  
  .gpp-footer-bottom__phone a {
    font-size: 22px;
  }
  .gpp-footer-bottom__cta {
    font-size: 14px;
    padding: 12px 24px;
    line-height: 14px;
    width: auto;
  }

  .quick-view-panel__cta {
    height: auto;
  }

  .gpp-content h1 {
    font-size: 29px;
    line-height: 33px;
  }

  .gpp-content h2 {
    font-size: 23px;
    line-height: 29px;
  }

  .gpp-content h3 {
    font-size: 19px;
    line-height: 24px;
  }

  .gpp-content p {
    font-size: 16px;
    line-height: 150%;
  }

  .gpp-content ul {
    font-size: 16px;
    line-height: 150%;
  }

  .gpp-content ol {
    font-size: 16px;
    line-height: 150%;
  }

  .gpp-content ol li {
    font-size: 16px;
    line-height: 150%;
  }

  .gpp-content ul li {
    font-size: 16px;
    line-height: 150%;
  }
}

a.gpp-header__cta {
  text-decoration: none;
}


