/* Hero */
.hero {
  position: relative;
  color: #fff;
  min-height: 680px;
  background: #0d1420 url('/images/bgs/main-bg.webp') center/cover no-repeat;
  padding-top: 250px; /* space for header */
  padding-bottom: 164px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  
}
.hero__content {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 144px;
    padding-bottom: 72px;
  }
}

.hero__title {
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin: 0 0 18px;
  max-width: 910px;
  text-transform: uppercase;
}

.hero__subtitle {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  max-width: 550px;
  color: #FFFFFF;
}

.hero__actions {
  margin-top: 58px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .hero__actions {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(151px, max-content));
  gap: 14px;
  width: 813px;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  background: rgba(0, 0, 0, 0.06);
  color: #fff;
  border-radius: 6px;
  padding: 19px 22px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  text-align: center;
  min-width: 151px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 14px;
  min-height: 158px;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-card__value { 
  font-size: 54px;
  line-height: 66px;
  font-weight: 500; 
  white-space: nowrap;
  color: var(--color-blue);
  width: fit-content;
}
.stat-card__label {
  margin-top: 0; 
  color: #FFFFFF; 
  font-size: 18px;
  line-height: 1; 
  font-weight: 400;
  max-width: 118px;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 100%;
  }
  .hero__subtitle {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    max-width: 100%;
  }
  .hero__actions {
    margin-top: 30px;
  }
  .stat-card {
    padding: 18px 0 16px;
    max-width: 100%;
    width: 100%;
  }
  
}

@media (max-width: 500px) {
  .stat-card__value--36 {
    font-size: 36px;
    line-height: 61px;
  }
}


/* About */
.about {
  padding-top: 45px;
  padding-bottom: 45px;
}

/* Types */
.types {
  padding-top: 45px;
  padding-bottom: 45px;
}

.types__title {
  margin: 0 0 50px;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-text);
}

.types__select {
  display: none;
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #2F3030;
  border-radius: 8px;
  background: transparent;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('/images/select_arrow.svg');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 21px 21px;
  padding-right: 44px; /* room for arrow */
}

/* hide default arrow in legacy Edge/IE */
.types__select::-ms-expand {
  display: none;
}

.types__select:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(58,130,195,0.15);
}

.types__tabs {
  display: flex;
  gap: 39px;
  margin-bottom: 18px;
  position: relative;
}

.types__tab {
  padding: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-text);
  border: 0;
  background: transparent;
  position: relative;
}

.types__tab.is-active {
  color: var(--color-text);
}

.types__indicator {
  position: absolute;
  bottom: -17px;
  left: 0;
  height: 1px;
  width: 0;
  background: #2F3030;
  transition: transform .3s ease-in-out, width .3s ease-in-out;
}

.types__panel {
  display: none;
}

.types__panel.is-active {
  display: block;
}

.types__intro {
  display: flex;
  gap: 24px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 40px;
}

.types__intro p {
  margin: 0;
  max-width: 840px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-text);
}

@media screen and (max-width: 1200px) {
  .types__intro p {
    max-width: 600px;
  }
}

@media screen and (max-width: 950px) {
  .types__intro p {
    max-width: 100%;
  }
  .types__intro {
    flex-direction: column;
  }
}

.types__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 20px 47px;
  align-items: start;
}

@media screen and (max-width: 1200px) {
  .types__grid {
    align-items: start;
  }
}

.types__image {
  border-radius: 6px;
  overflow: hidden;
}

.types__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Accordion */
.acc {
  display: grid;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .acc {
    gap: 12px;
  }
}

.acc__item {
  background: #F0F5FB;
  border-radius: 6px;
  overflow: hidden;
}

.acc__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px 10px;
  border: 0;
  background: #F0F5FB;
  position: relative;
}

@media screen and (max-width: 768px) {
  .acc__header {
    padding: 10px 18px 10px;
  }
}

.acc__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #394253;
  text-align: left;
  max-width: 90%;
}

.acc__chevron {
  position: absolute;
  right: 22px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url('/images/faq_arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 10px;
  transition: transform .2s ease;
  transform: rotate(180deg);
}

.acc__content {
  padding: 0 14px;
  margin: 0 26px 0 22px;
  background: #fff;
  border-radius: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-out, padding .3s ease-in-out, margin .3s ease-in-out;
}

.acc__content p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.acc__item.is-open .acc__content {
  /* CSS fallback; JS выставит точную высоту */
  max-height: 1000px;
  padding: 14px;
  margin: 0 26px 10px 22px;
}

.acc__item.is-open .acc__chevron {
  transform: rotate(0);
}

@media (max-width: 1100px) {
  .types__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .types {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .types__title {
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .types__select {
    display: block;
  }
  .types__tabs {
    display: none;
  }
  .types__indicator {
    display: none;
  }
  .types__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 20px 0 20px;
  }
  .types__grid {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .types__accordion {
    order: 1;
  }
  .types__image {
    order: 2;
  }
  .acc__item.is-open .acc__content {
    margin: 0 18px 10px 18px;
  }
  .types__intro p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
}

.about > .container-1292 {
  display: grid;
  grid-template-columns: 1fr 1.07fr;
  gap: 40px 86px;
  align-items: end;
}

.about__image {
  border-radius: 6px;
  overflow: hidden;
}
.about__image img {
  display: block;
  width: 100%;
  height: auto;
}

.about__title {
  margin: 0 0 32px;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-text);
}

.about__description {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-text);
  max-width: 100%;
}

.about__text {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-text);
}

.about__checklist {
  display: grid;
  gap: 21px;
  margin: 0 0 32px;
}

.about__checklist-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.about__checklist-item-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about__checklist-item-icon img {
  width: 24px;
  height: 24px;
}
.about__checklist-item-title {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text);
}

.about__image_mobile {
  display: none;
}
.about__image_mobile img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1450px) {
  .about > .container-1292 {
    align-items: start;
  }
}

@media (max-width: 1100px) {
  .about > .container-1292 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .about__image {
    display: none;
  }
  .about__title {
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .about__description,
  .about__text,
  .about__checklist-item-title {
    font-size: 16px;
    line-height: 24px;
  }
  .about__checklist-item-title {
    line-height: 28px;
  }
  .about__description,
  .about__text {
    margin-bottom: 20px;
  }
  .about__checklist-item {
    align-items: start;
  }
  .about__checklist-item-icon {
    margin-top: 4px;
  }
  .about__image_mobile {
    display: block;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
  }
}

/* Features */
.features {
  padding-top: 90px;
  padding-bottom: 45px;
}

.features > .container-1292 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 64px;
  align-items: start;
}

@media (max-width: 1200px) {
  .features > .container-1292 {
    gap: 20px 24px;
  }
}

.features__header {
  max-width: 620px;
  padding-top: 47px;
}

.features__title {
  margin: 0 0 32px;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-text);
}

.features__description {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text);
}

.features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: #F0F5FB;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}
.feature-card__icon img {
  width: auto;
  height: 125px;
}

.feature-card__title {
  margin: 14px 0 10px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
}

.feature-card__description {
  margin: 0 auto;
  max-width: 420px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: var(--color-text);
}

@media (max-width: 1100px) {
  .features > .container-1292 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .features {
    padding-top: 48px;
    padding-bottom: 24px;
  }
  .features__title {
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .features__description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
  }
  .features__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .features__header {
    padding-top: 0;
  }
  .feature-card {
    padding: 10px 16px;
  }
  .feature-card__title {
    margin: 10px 0 10px;
  }
}

/* Application areas */
.application_areas {
  padding-top: 45px;
  padding-bottom: 45px;
}

.application_areas__container {
  display: grid;
  grid-template-columns: 1fr 1.09fr;
  gap: 20px 64px;
  align-items: end;
}

.application_areas__title {
  margin: 0 0 44px;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-text);
}

.application_areas__description {
  margin: 0 0 43px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-text);
}

.application_areas__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.application_areas__list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text);
}

.application_areas__icon {
  width: 26px;
  height: auto;
}

.application_areas__gallery {
  display: grid;
  grid-template-columns: 1.34fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  height: 318px;
  align-items: stretch;
}
.application_areas__gallery > * { min-height: 0; }
.application_areas__main { height: 100%; }
.application_areas__thumbs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
}
.application_areas__thumbs > * { min-height: 0; align-self: stretch; justify-self: stretch; }
.application_areas__main img,
.application_areas__thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.application_areas__slider {
  display: none;
}

@media (max-width: 1100px) {
  .application_areas__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .application_areas {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .application_areas__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .application_areas__description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .application_areas__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .application_areas__list-item {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    gap: 14px;
    align-items: start;
  }
  .application_areas__icon {
    width: 24px;
    height: auto;
    margin-top: 2px;
  }
  .application_areas__gallery {
    display: none;
  }
  .application_areas__slider {
    display: block;
  }
  .application_areas__slider .swiper {
    width: 100%;
    max-width: 100%;
    height: 179px;
  }
  /* Keep visual container paddings, allow overflow beyond */
  
  /* Swiper fallback (no forced giant widths) */
  
  /* Visible peek of next slide */
  .application_areas__slider .swiper-slide { width: 89%; }
  .application_areas__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }
  .application_areas__slider {
    display: block;
    width: 100%;
    margin-bottom: 20px;
   
  }
}

/* Estimate (calculator) */
.estimate {
  padding: 45px 0;
}
.estimate__inner {
  background: #F0F5FB;
  padding: 50px 0;
}
.estimate__title {
  margin: 0 0 32px;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-text);
}
.estimate__subtitle {
  max-width: 640px;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text);
}
.estimate__form { margin-top: 32px; }
.estimate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 14px;
  max-width: 1192px;
  margin: 0 50px;
}
.estimate__grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 589px;
  margin: 24px 50px 0;
}
.estimate__field,
.estimate__select {
  height: 52px;
  padding: 0 16px;
  border: 1px solid #2F3030;
  border-radius: 6px;
  background: transparent;
  font-size: 16px;
  line-height: 1;
  color: var(--color-text);
  outline: none;
}
.estimate__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('/images/form_select_arrow.svg');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px 10px;
  padding-right: 16px;
  outline: none;
}
.estimate__field::placeholder { color: #8A93A3; }

.estimate__field:focus,
.estimate__select:focus {
  border: 2px solid #3A82C3; /* здесь твой цвет */
}

.estimate__actions {
  display: flex;
  margin-top: 44px;
  margin-left: 50px;
}

@media (max-width: 1100px) {
  .estimate__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .estimate__inner { padding: 16px 0; }
  .estimate__title { font-size: 32px; margin-bottom: 20px; }
  .estimate__subtitle { font-size: 16px; line-height: 24px; max-width: 100%; margin-bottom: 20px; }
  .estimate__grid { grid-template-columns: 1fr; gap: 12px; max-width: none; }
  .estimate {
    padding: 24px 0;
  }
  .estimate__form {
    margin: 0;
  }
  .estimate__grid {
    margin: 0;
  }
  .estimate__grid-small {
    margin: 0;
    grid-template-columns: 1fr 1fr;
    gap: 12px 11px;
    margin-top: 12px;
  }
  .estimate__actions {
    margin-left: 0;
    margin-top: 20px;
  }
}

/* Trust */
.trust {
  padding: 45px 0;
}
.trust__inner {
  position: relative;
  background: #0d1420 url('/images/bgs/trust-us-bg.webp') center/cover no-repeat;
  color: #fff;
  padding: 110px 0;
}
.trust__container { position: relative; z-index: 1; }
.trust__title {
  margin: 0 0 52px;
  font-size: 46px;
  line-height: 56px;
  font-weight: 700;
  color: #fff;
  max-width: 1100px;
  text-transform: uppercase;
  max-width: 851px;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 14px;
  max-width: 1066px;
  position: relative;
}
.trust-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 15px;
  border: 1px solid rgba(255,255,255,0.3);
  background-color: rgba(25, 23, 21, 0.76);
  backdrop-filter: blur(4px);
}
.trust-card__icon {
  width: 22px; 
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-card__icon img { 
  display: block; 
  width: 10px;
  height: auto;
}
.trust-card__title { font-size: 16px; line-height: 1; font-weight: 400; margin-bottom: 12px; }
.trust-card__text { font-size: 14px; line-height: 1; color: #FFFFFF; font-weight: 400; }

.trust__big-check {
  position: absolute;
  right: -324px;
  top: 0;
  width: 184px;
  height: auto;
  pointer-events: none;
}

/* Projects slider */
.projects { padding: 45px 0; }
.projects__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 68px;
}
.projects__title {
  margin: 0;
  font-size: 48px;
  line-height: normal;
  font-weight: 500;
  color: var(--color-text);
  max-width: 700px;
}
.projects__all {
  white-space: nowrap;
}

/* Reviews slider */
.reviews {
  padding: 45px 0;
}
.reviews__inner {
  padding: 50px 0;
  background: #F0F5FB;
}
.reviews__header {
  margin-bottom: 68px;
}
.reviews__title {
  margin: 0;
  font-size: 48px;
  line-height: normal;
  font-weight: 500;
  color: var(--color-text);
}
.reviews__slider { position: relative; }
.reviews__slider .swiper { overflow: visible; }
.reviews__slider .swiper-wrapper { align-items: stretch; }
.reviews__slider .swiper-slide { width: 424px; }

.review-card {
  width: 424px;
  height: 607px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #D9E3F2;
  background: #fff;
}
.review-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.reviews__controls {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 20px;
}
.reviews__nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #D9E3F2;
}
.reviews__nav img { width: 100%; height: auto; display: block; }

@media (max-width: 768px) {
  .reviews { padding: 24px 0; }
  .reviews__title { font-size: 32px; }
  .reviews__slider .swiper-slide { width: 100% !important; }
  .review-card { width: 100%; height: 523px; }
  .reviews__inner {
    padding: 16px 0;
  }
  .reviews__header {
    margin-bottom: 20px;
  }
  .reviews__nav {
    width: 24px;
    height: 24px;
  }
  .reviews__controls {
    gap: 12px;
  }
}

.projects__slider {
  position: relative;
  margin-bottom: 20px;
}
.projects__slider .swiper {
  overflow: visible;
}
.projects__slider .swiper-wrapper {
  align-items: stretch;
}
.projects__slider .swiper-slide {
  width: 467px;
}

.project-card {
  box-sizing: border-box;
  width: 467px;
  height: 687px;
  display: flex;
  flex-direction: column;
  padding: 18px 24px 31px;
  background: #fff;
  border: 1px solid #3A82C3;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.project-card__title { font-size: 28px; line-height: 1; font-weight: 500; color: var(--color-text); margin: 0 0 26px; }
.project-card__img { margin-bottom: 43px; }
.project-card__img img { width: 100%; height: 314px; object-fit: cover; border-radius: 6px; display: block; }
.project-card__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.project-card__list li {
  font-size: 20px;
  line-height: normal;
  color: var(--color-text);
  display: flex;
  gap: 12px;
  align-items: center;
}
.project-card__list li b {
  font-weight: 500;
}
.project-card__icon { width: 25px; height: 25px; background: url('/images/projects_check.png') center/18px 18px no-repeat; display: inline-block; }
.project-card__btn { 
  margin: 26px 0 0; 
  align-self: start; 
  width: 100%;
  height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--color-blue);
  color: #fff;
}

.projects__controls {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 20px;
}
.projects__nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.projects__nav img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1100px) {
  .projects__title { font-size: 28px; }
}

@media (max-width: 768px) {
  .projects { padding: 24px 0; }
  .projects__slider .swiper-slide { width: 100% !important; }
  .project-card__img img { height: 218px; }
  .projects__nav { bottom: -28px; }
  .projects__title {
    font-size: 32px;
    line-height: normal;
    font-weight: 500;
  }
}

@media (max-width: 1100px) {
  .trust__title { font-size: 44px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__big-check { width: 200px; right: 20px; }
}

@media (max-width: 768px) {
  .trust { padding: 24px 0; }
  .trust__title { font-size: 30px; line-height: normal; margin-bottom: 60px; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 11px 11px; }
  .trust__inner {
    padding: 82px 0 115px;
  }
  .trust-card__text {
    font-size: 13px;
    line-height: normal;
  }
  .trust__big-check {
    position: absolute;
    right: 21px;
    top: -153px;
    width: 116px;
    height: auto;
    pointer-events: none;
  }
  .trust__inner {
    background-position: 70% center;
    background-size: 0.5;
  }
  .projects__header {
    margin-bottom: 20px;
  }
  .projects__controls {
    margin-top: 12px;
    margin-bottom: 24px;
    gap: 12px;
  }
  .projects__nav {
    width: 24px;
    height: 24px;
  }
  .project-card {
    width: 100%;
    height: 523px;
  }
  .project-card__title {
    font-size: 20px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 18px;
  }
  .project-card__img {
    margin-bottom: 18px;
  }
  .project-card__btn {
    margin-top: 18px;
  }
  .project-card__icon {
    width: 21px;
    height: 21px;
  }
  .project-card__list li {
    font-size: 16px;
    gap: 10px;
  }
}

/* Geography */
.geography {
  padding: 45px 0;
}
.geography__title {
  font-size: 48px;
  line-height: normal;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 49px;
}
.geography__map {
  width: 100%;
  height: 692px;
  border-radius: 6px;
  overflow: hidden;
}
.geography__map__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .geography {
    padding: 24px 0;
  }
  .geography__title {
    font-size: 32px;
    line-height: normal;
    margin-bottom: 24px;
  }
  .geography__map {
    height: 180px;
  }
  .geography > .container-1435 {
    padding: 0;
  }
}

/* Partners */
.partners {
  padding: 45px 0;
}
.partners__title {
  font-size: 48px;
  line-height: normal;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 35px;
}
.partners__description {
  font-size: 24px;
  line-height: normal;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 66px;
}
.partners__list {
  display: block;
}
.partners__list .owl-stage {
  display: flex;
  align-items: center;
}
.partners__item {
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Скрываем навигацию и точки Owl Carousel */
.partners__list .owl-nav {
  display: none;
}
.partners__list .owl-dots {
  display: none;
}

/* FAQ */
.faq {
  padding: 45px 0 90px;
}
.faq__title {
  font-size: 48px;
  line-height: normal;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 50px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px 100px;
  align-items: start;
}
.faq__media {
  margin-top: 67px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq__media img {
  width: 60%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* Breadcrumbs */
.breadcrumbs { padding: 74px 0 0; }
.breadcrumbs__nav { font-size: 14px; line-height: 20px; color: var(--color-text); }
.breadcrumbs__nav a { color: var(--color-text); }
.breadcrumbs__sep { margin: 0 6px; color: var(--color-text); }
.breadcrumbs__current { color: var(--color-text); font-weight: 500; }

@media (max-width: 1100px) {
  .faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .faq { padding: 24px 0 48px; }
  .faq__title { font-size: 32px; margin-bottom: 20px; }
  .faq__media {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .partners {
    padding: 24px 0;
  }
  .partners__title {
    font-size: 32px;
    line-height: normal;
    margin-bottom: 20px;
  }
  .partners__description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 34px;
  }
  .partners__item {
    width: 62px;
    height: 62px;
    overflow: hidden;
  }
  .partners__list .owl-stage {
    align-items: center;
  }
}

/* Project map */

.projects-map {
  padding: 74px 0 45px;
}
.projects-map__title {
  font-size: 48px;
  line-height: normal;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 70px;
}
.projects-map__img {
  width: 100%;
  height: auto;
  display: block;
  height: 692px;
}

.project-detail { padding: 74px 0 90px; }
.project-detail__title {
  font-size: 48px;
  line-height: normal;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 28px;
}
.project-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 20px 39px;
  align-items: start;
}
.project-detail__image img {
  width: 100%;
  height: 466px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.project-detail__thumbs { display: flex; gap: 8px; margin-top: 18px; }
.project-detail__thumb { flex: 1 1 0; }
.project-detail__thumb img { width: 100%; height: 151px; object-fit: cover; border-radius: 6px; display: block; }

.project-detail__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.detail-card { 
  background: #F0F5FB;   
  padding: 34px 24px 35px; 
}
.detail-card__icon { 
  width: 22px; 
  height: 22px; 
  display: flex; 
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-card__title { font-size: 16px; line-height: normal; font-weight: 400; margin: 14px 0 12px; color: var(--color-text); }
.detail-card__text { font-size: 14px; line-height: 18px; font-weight: 400; color: var(--color-text); }

@media (max-width: 1100px) {
  .project-detail__grid { grid-template-columns: 1fr; }
  .project-detail__image img { height: 420px; }
  .project-detail__cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .project-detail { padding: 24px 0 32px; }
  .project-detail__title { font-size: 32px; }
  .project-detail__image img { height: 260px; }
  .project-detail__thumb img { height: 86px; }
}

.projects-list { padding: 45px 0 90px; }
.projects-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 467px);
  column-gap: 0;
  row-gap: 22px;
  justify-content: space-between;
}
@media (max-width: 1450px) {
  .projects-list__grid {
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    column-gap: 22px;
  }
  .projects-list__grid .project-card { width: 100%; }
}
@media (max-width: 1100px) {
  .projects-list__grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    column-gap: 22px;
  }
  .projects-list__grid .project-card { width: 100%; }
}
@media (max-width: 768px) {
  .projects-list { padding: 20px 0 32px; }
  .projects-list__grid { grid-template-columns: 1fr; row-gap: 16px; }
  .projects-list .project-card { width: 100%; }
}

@media (max-width: 768px) {
  .projects-map {
    padding: 28px 0 24px; 
  }
  .projects-map__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .container-1435.projects-map__img-container {
    padding: 0;
  }
  .projects-map__img {
    height: 280px;
  }
}

@media screen and (max-width: 520px) {
  .projects-map__img {
    height: 180px;
  }
}

/* Project detail */

@media screen and (max-width: 1100px) {
  .project-detail__grid {
    grid-template-columns: 1fr;
  }
  .project-detail__image img { height: 420px; }
  .project-detail__cards { grid-template-columns: 1fr; }
  .project-detail {
    padding: 28px 24px 48px;
  }
}
@media screen and (max-width: 768px) {
  .project-detail { padding: 28px 0 48px; }
  .project-detail__title { font-size: 32px; margin-bottom: 20px; }
  .project-detail__image img { height: 260px; }
  .project-detail__thumb img { height: 86px; }
  .project-detail__media {
    display: none;
  }
}

/* Project detail mobile slider */
.project-detail__slider { display: none; margin: 0; }
.project-detail__slider .swiper { width: 100%; height: 246px; overflow: hidden; position: relative; }
/* Fallback to prevent huge slide widths */
.project-detail__slider .swiper-wrapper { display: flex; box-sizing: border-box; }
.project-detail__slider .swiper-slide { flex-shrink: 0; width: 100% !important; box-sizing: border-box; }
.project-detail__slider .swiper-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; display: block; }
.pdetail-controls { display: flex; gap: 12px; margin-top: 12px; }
.pdetail-nav { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.pdetail-nav img { width: 100%; height: auto; display: block; }

@media (max-width: 768px) {
  .project-detail__slider { display: block; }
}