:root {
  --page-max: 1920px;
  --color-slate-950: #0f172a;
  --color-slate-700: #0f172a;
  --color-slate-600: #334155;
  --color-slate-500: #64748b;
  --color-slate-400: #94a3b8;
  --color-slate-300: #c6cfda;
  --color-slate-200: #e7ecf2;
  --color-slate-50: #f8fafc;
  --color-amber-300: #ffbf43;
  --color-amber-400: #e6a72e;
  --color-white: #ffffff;
  --color-header-border: rgba(100, 116, 139, 0.72);
  --color-hero-overlay-flat: rgba(15, 16, 65, 0.5);
  --color-hero-overlay-accent: rgba(15, 16, 65, 0.4);
  --color-hero-shadow: rgba(255, 191, 67, 0.24);
  --radius-m: 8px;
  --transition-fast: 180ms ease;
  --container-max: 1520px;
  --container-gutter: 200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Roboto", sans-serif;
  color: var(--color-slate-50);
  background: var(--color-white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--color-amber-300);
  outline-offset: 4px;
}

.page {
  width: 100%;
  overflow-x: clip;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 787px;
  background: var(--color-slate-950);
}

.hero__bg {
  position: absolute;
  top: 56px;
  left: 50%;
  overflow: hidden;
  width: 1920px;
  height: 731px;
  background: var(--color-slate-950);
  transform: translateX(-50%);
}

.hero__bg-house {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__bg-overlay {
  position: absolute;
  top: -186px;
  left: 0;
  width: 1972px;
  height: 1299px;
  background: rgba(0, 0, 0, 0.2);
}

.hero__bg-layer {
  position: absolute;
  top: 0;
  right: 0;
  width: 1950px;
  height: 731px;
  background:
    linear-gradient(287.642deg, var(--color-hero-overlay-accent) 26.604%, rgba(15, 16, 65, 0) 50.357%),
    linear-gradient(90deg, var(--color-hero-overlay-flat) 0%, var(--color-hero-overlay-flat) 100%);
}

.hero__bg-png {
  position: absolute;
  top: 96px;
  left: 0;
  width: 1920px;
  height: 635px;
}

.hero__bg-light {
  position: absolute;
  max-width: none;
}

.hero__bg-light--large {
  top: 30px;
  right: -222px;
  width: 394px;
  height: 394px;
}

.hero__bg-light--small {
  top: 290px;
  right: 32px;
  width: 317px;
  height: 317px;
}

.hero__bg-worker {
  position: absolute;
  top: 1px;
  right: 172px;
  width: 423px;
  height: 634px;
  object-fit: cover;
  object-position: bottom center;
}

@media (min-width: 1920px) {
  .hero__bg {
    width: 100vw;
  }

  .hero__bg-house {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center center;
  }

  .hero__bg-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero__bg-layer {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero__bg-png {
    left: 50%;
    transform: translateX(-50%);
  }
}

.hero-header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-slate-500);
}

.hero-header__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 16px 200px;
  color: var(--color-slate-700);
}

.hero-header__top::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--color-slate-50);
  z-index: -1;
}

.hero-header__top-links,
.hero-header__meta,
.hero-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-header__meta {
  justify-content: flex-end;
  flex: 0 0 809.5px;
  width: 809.5px;
}

.hero-header__top-links a,
.hero-header__meta-item,
.hero-header__nav a,
.hero-header__logo-text,
.button {
  font-family: "Montserrat", sans-serif;
}

.hero-header__top-links a,
.hero-header__meta-item,
.hero-header__nav a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.hero-header__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-header__cta,
.hero-header__cta span,
.button {
  white-space: nowrap;
}

.hero-header__meta-item img {
  width: 24px;
  height: 24px;
  padding: 3px;
  box-sizing: border-box;
}

.hero-header__bottom {
  position: relative;
  width: 100%;
  height: 48px;
  color: var(--color-slate-50);
}

.hero-header__nav {
  position: absolute;
  top: 16px;
  left: 200px;
  height: 16px;
  width: auto;
}

.hero-header__nav a {
  display: block;
  height: 16px;
  line-height: 16px;
}

.hero-header__logo {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 198px;
  height: 60px;
  transform: translateX(-50%);
}

.hero-header__logo-mark {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75.851px;
  height: 38.217px;
  transform: translateX(-50%) scaleX(-1);
  transform-origin: center;
}

.hero-header__logo-mark > img {
  display: block;
  width: 75.851px;
  height: 38.217px;
}

.hero-header__logo-text {
  position: absolute;
  left: 50%;
  bottom: 9.55px;
  color: var(--color-slate-50);
  width: 197.984px;
  transform: translate(-50%, 100%);
  font-size: 9.518px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9518px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.hero-header__cta {
  position: absolute;
  top: 0;
  right: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 48px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 16px;
}

.hero-header__cta.button--ghost {
  border-color: var(--color-slate-50);
}

.hero-header__menu {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-header__menu-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.hero-header__menu-bar {
  position: absolute;
  left: 3px;
  display: block;
  background: var(--color-slate-50);
}

.hero-header__menu-bar--top {
  top: 3px;
  width: 18px;
  height: 2px;
}

.hero-header__menu-bar--middle {
  top: 9px;
  left: 6px;
  width: 12px;
  height: 2px;
}

.hero-header__menu-bar--bottom {
  top: 15px;
  width: 18px;
  height: 2px;
}

.hero-header__drawer {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-m);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.button:hover {
  transform: translateY(-1px);
}

.button--ghost {
  border-style: dashed;
  border-color: var(--color-slate-400);
  color: var(--color-slate-50);
  background: transparent;
}

.button--ghost:hover {
  background: rgba(248, 250, 252, 0.08);
}

.button--ghost-dark {
  border-style: dashed;
  border-color: var(--color-slate-400);
  color: var(--color-slate-700);
  background: transparent;
}

.button--ghost-dark:hover {
  background: rgba(15, 23, 42, 0.04);
}

.button--primary {
  color: var(--color-slate-950);
  background: var(--color-amber-300);
  box-shadow: 0 14px 32px var(--color-hero-shadow);
}

.button--primary:hover {
  background: var(--color-amber-400);
}

.hero__banner {
  position: absolute;
  z-index: 1;
  top: 152px;
  left: 50%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 48px;
  width: 1920px;
  height: 635px;
  padding: 160px 200px;
  transform: translateX(-50%);
}

.hero__banner-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 877px;
  color: var(--color-slate-50);
}

.hero__title {
  width: 877px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero__text {
  width: 877px;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.hero__banner-button {
  box-shadow: none;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 80px;
  padding: 120px 200px;
  color: var(--color-slate-700);
  background: var(--color-slate-50);
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 80px;
  width: 1520px;
  margin: 0 auto;
}

.about__content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 1520px;
  height: 457px;
}

.about__image {
  position: relative;
  width: 748px;
  height: 457px;
  flex: 0 0 748px;
}

.about__image-frame {
  position: absolute;
  top: 0;
  left: 88px;
  width: 572px;
  height: 457px;
}

.about__mask-group {
  position: absolute;
  overflow: hidden;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

.about__mask-group--left {
  top: 81px;
  left: 0;
  width: 180px;
  height: 376px;
  -webkit-mask-image: url("../assets/images/about-strip-left.png");
  mask-image: url("../assets/images/about-strip-left.png");
}

.about__mask-group--center {
  top: 0;
  left: 196px;
  width: 180px;
  height: 457px;
  -webkit-mask-image: url("../assets/images/about-strip-center.png");
  mask-image: url("../assets/images/about-strip-center.png");
}

.about__mask-group--right {
  top: 78px;
  left: 392px;
  width: 180px;
  height: 379px;
  -webkit-mask-image: url("../assets/images/about-strip-right.png");
  mask-image: url("../assets/images/about-strip-right.png");
}

.about__mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.about__mask-source {
  position: absolute;
  top: 0;
  left: -7px;
  display: block;
  width: 608px;
  max-width: none;
  height: 472px;
  object-fit: cover;
}

@media (min-width: 1600px) {
  .about__image-frame {
    background: url("../assets/images/about_house_crop_1920.webp") left top / 572px 457px no-repeat;
  }

  .about__mask-group,
  .about__mask,
  .about__mask-source {
    display: none;
  }
}

.about__text {
  display: flex;
  flex: 0 0 748px;
  flex-direction: column;
  gap: 40px;
  width: 748px;
}

.about__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.about__heading-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.section-heading__eyebrow-mark {
  width: 12px;
  height: 12px;
  background: var(--color-slate-400);
}

.section-heading__eyebrow-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate-400);
}

.about__title {
  margin: 0;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.about__lead {
  margin: 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-slate-600);
}

.about__advantages {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.about__advantages-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.about__advantages-columns {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.about__advantages-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 362px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 362px;
  min-height: 32px;
}

.about__feature-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: url("../assets/icons/badge-check.svg") center/24px 24px no-repeat;
}

.about__feature-text {
  width: 322px;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-slate-600);
}

.about__stats {
  position: relative;
  display: flex;
  width: 1262px;
  height: 109px;
  margin: 0 auto;
}

.about__stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--color-slate-300);
}

.about__stats-ui {
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 9px;
  pointer-events: none;
}

.about__stats-marker {
  position: absolute;
  top: 0;
  width: 9px;
  height: 9px;
  background: var(--color-amber-300);
}

.about__stats-marker--first {
  left: 310px;
}

.about__stats-marker--second {
  left: 626px;
}

.about__stats-marker--third {
  left: 942px;
}

.about__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 315.5px;
  padding-top: 32px;
  text-align: center;
}

.about__stat:not(:last-child) {
  border-right: 1px solid var(--color-slate-300);
}

.about__stat strong {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.about__stat span {
  width: 100%;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-slate-600);
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 120px 0;
  background: var(--color-slate-200);
}

.services__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 792px;
  text-align: center;
}

.services__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 792px;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.services__title {
  width: 792px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.services__lead {
  width: 792px;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-slate-600);
}

.services__cards {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 1200px;
}

.service-card {
  display: flex;
  flex: 0 0 282px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 282px;
  min-height: 248px;
  padding: 24px 16px;
  text-align: center;
  background: var(--color-slate-50);
  border-radius: var(--radius-m);
  box-shadow:
    0 1px 4px rgba(15, 23, 42, 0.1),
    0 1px 4px rgba(15, 23, 42, 0.05);
}

.service-card__icon {
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--color-amber-300);
  border-radius: var(--radius-m);
}

.service-card__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.service-card__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.service-card__text {
  margin: 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-slate-500);
}

.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 120px 0;
  background: var(--color-slate-50);
}

.projects__header {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 1200px;
  min-height: 74px;
}

.projects__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 1099px;
}

.projects__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.projects__title {
  width: 353px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.projects__links {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 393px;
  padding-top: 42px;
}

.projects__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-slate-400);
  background: transparent;
  cursor: pointer;
}

.projects__tab-label {
  white-space: nowrap;
}

.projects__tab--active {
  color: var(--color-amber-300);
  font-weight: 600;
  gap: 8px;
}

.projects__tab-count {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 999px;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-slate-50);
  background: var(--color-amber-300);
}

.projects__cards {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 1200px;
}

.project-card {
  display: flex;
  flex: 0 0 282px;
  flex-direction: column;
  align-items: flex-start;
  width: 282px;
}

.project-card__image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 280px;
  border-radius: var(--radius-m);
  background: var(--color-slate-700);
}

.project-card__image {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-card__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 282px;
  padding: 0 16px;
  transform: translateY(-50%);
}

.project-card__arrow {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--color-amber-300);
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
  cursor: pointer;
}

.project-card__arrow:hover {
  background: var(--color-amber-400);
  transform: translateY(-1px);
}

.project-card__arrow--ghost {
  border: 1px solid var(--color-amber-300);
  background: transparent;
}

.project-card__arrow--ghost:hover {
  background: rgba(255, 191, 67, 0.12);
}

.project-card__arrow img {
  width: 5.38px;
  height: 10.5px;
  flex: 0 0 auto;
}

.project-card__arrow--prev img {
  transform: rotate(180deg);
}

.project-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding-top: 16px;
}

.project-card__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.project-card__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.project-card__description {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-slate-500);
}

.project-card__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-slate-700);
  background: transparent;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.project-card__link:hover {
  color: var(--color-amber-400);
}

.project-card__link img {
  width: 24px;
  height: 24px;
  padding: 3px;
  box-sizing: border-box;
}

.projects__footer {
  display: flex;
  justify-content: center;
  width: 100%;
}

.projects__more {
  min-width: 235px;
}

.project-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.project-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.project-popup__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 40px 24px;
}

.project-popup__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1006px;
  min-height: 1282px;
  margin: 0 auto;
  padding: 40px;
  color: var(--color-slate-700);
  background: var(--color-slate-50);
  border-radius: var(--radius-m);
  box-shadow:
    0 1px 4px rgba(15, 23, 42, 0.1),
    0 1px 4px rgba(15, 23, 42, 0.05);
}

.project-popup__general,
.project-popup__description,
.project-popup__results {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 926px;
}

.project-popup__general {
  gap: 24px;
}

.project-popup__general-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 926px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-slate-300);
}

.project-popup__title {
  width: 580px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.project-popup__label {
  width: 533px;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-slate-500);
}

.project-popup__general-content {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 926px;
  height: 208px;
}

.project-popup__cover {
  position: relative;
  overflow: hidden;
  flex: 0 0 451px;
  width: 451px;
  height: 208px;
  border-radius: var(--radius-m);
  background: var(--color-slate-700);
}

.project-popup__cover img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 451px;
  height: 224px;
  transform: translateX(-50%);
  object-fit: cover;
}

.project-popup__details-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  overflow: hidden;
  flex: 0 0 451px;
  width: 451px;
  height: 208px;
  padding: 24px;
  background: #fff3d6;
  border-radius: var(--radius-m);
  box-shadow:
    0 1px 4px rgba(15, 23, 42, 0.1),
    0 1px 4px rgba(15, 23, 42, 0.05);
}

.project-popup__details-title,
.project-popup__section-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.project-popup__details-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.3;
  font-size: 16px;
}

.project-popup__details-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-popup__details-key,
.project-popup__details-value {
  margin: 0;
  position: relative;
  z-index: 1;
}

.project-popup__details-key {
  font-weight: 600;
  color: var(--color-slate-700);
}

.project-popup__details-value {
  color: var(--color-slate-600);
}

.project-popup__details-illustration {
  position: absolute;
  top: 46px;
  right: 0;
  width: 182.307px;
  height: 165.791px;
}

.project-popup__details-illustration img {
  width: 100%;
  height: 100%;
}

.project-popup__description,
.project-popup__results {
  gap: 16px;
  justify-content: center;
}

.project-popup__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 926px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-slate-500);
}

.project-popup__text-block p {
  width: 100%;
  margin: 0;
}

.project-popup__gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 926px;
}

.project-popup__gallery-frame {
  position: relative;
  overflow: hidden;
  width: 926px;
  height: 300px;
  border-radius: var(--radius-m);
  background: var(--color-slate-700);
}

.project-popup__gallery-bg {
  position: absolute;
  inset: 0;
}

.project-popup__gallery-bg img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 926px;
  height: 630px;
  transform: translateY(calc(-50% + 88px));
  object-fit: cover;
}

.project-popup__gallery-arrows {
  position: absolute;
  top: 138px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 926px;
  padding: 0 16px;
}

.project-popup__gallery-arrow,
.project-popup__pagination-arrow {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 4px;
}

.project-popup__gallery-arrow {
  border: 0;
  background: var(--color-amber-300);
  cursor: pointer;
}

.project-popup__gallery-arrow--prev {
  border: 1px solid var(--color-amber-300);
  background: var(--color-slate-50);
}

.project-popup__gallery-arrow img,
.project-popup__pagination-arrow img {
  width: 5.38px;
  height: 10.5px;
}

.project-popup__gallery-arrow--prev img,
.project-popup__pagination-arrow--prev img {
  transform: rotate(180deg);
}

.project-popup__stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-popup__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-slate-400);
  background: transparent;
  cursor: pointer;
}

.project-popup__step--active {
  font-weight: 600;
  color: var(--color-slate-50);
  background: var(--color-amber-300);
}

.project-popup__stepper-divider {
  width: 141.5px;
  height: 1px;
}

.project-popup__stepper-divider img {
  display: block;
  width: 141.5px;
  height: 1px;
}

.project-popup__steps {
  display: flex;
  align-items: center;
}

.project-popup__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 926px;
  padding-top: 24px;
  border-top: 1px solid var(--color-slate-300);
}

.project-popup__pagination-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate-700);
  background: transparent;
  cursor: pointer;
}

.project-popup__pagination-link--prev {
  justify-content: flex-start;
}

.project-popup__pagination-arrow {
  flex: 0 0 auto;
  border: 1px solid var(--color-amber-300);
  background: var(--color-slate-50);
}

.project-popup__pagination-link:not(.project-popup__pagination-link--prev) .project-popup__pagination-arrow {
  border: 0;
  background: var(--color-amber-300);
}

.project-popup__close {
  position: absolute;
  top: 40px;
  right: 40px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.project-popup__close img {
  width: 18px;
  height: 18px;
}

body.project-popup--locked {
  overflow: hidden;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 477px;
  overflow: hidden;
  background: var(--color-slate-700);
}

.banner__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 477px;
  transform: translateX(-50%);
}

.banner__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.banner__bg-layer {
  position: absolute;
  top: -122px;
  left: 0;
  width: 1920px;
  height: 720px;
  background: linear-gradient(287.64deg, rgba(15, 16, 65, 0.4) 26.604%, rgba(15, 16, 65, 0) 50.357%);
}

.banner__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 1006px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.banner__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: var(--color-slate-50);
  width: 1006px;
}

.banner__title {
  margin: 0;
  width: 1006px;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.banner__lead {
  margin: 0;
  width: 1006px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-slate-50);
}

.banner__button {
  box-shadow: none;
}

@media (min-width: 1920px) {
  .banner__bg {
    width: 100vw;
  }

  .banner__bg-layer {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.process {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 80px;
  padding: 120px 0;
  background: var(--color-slate-200);
}

.process__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}

.process__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 451px;
  min-height: 114px;
}

.process__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.process__eyebrow-mark {
  width: 12px;
  height: 12px;
  background: var(--color-slate-400);
}

.process__eyebrow-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate-400);
}

.process__title {
  margin: 0;
  width: 451px;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.process__cards {
  display: flex;
  align-items: center;
  gap: 24px;
}

.process__cards--top {
  width: 588px;
}

.process__cards--bottom {
  width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 282px;
  min-width: 282px;
  min-height: 183px;
  padding: 16px;
}

.process-card__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 282px;
  height: 183px;
  border-radius: var(--radius-m);
  background: var(--color-slate-50);
  box-shadow:
    0 1px 4px rgba(15, 23, 42, 0.1),
    0 1px 4px rgba(15, 23, 42, 0.05);
}

.process-card__icon,
.process-card__heading,
.process-card__text {
  position: relative;
  z-index: 1;
}

.process-card__icon {
  position: absolute;
  top: -16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  overflow: clip;
  border-radius: var(--radius-m);
  background: var(--color-slate-50);
}

.process-card__icon img {
  width: 36px;
  height: 36px;
  display: block;
}

.process-card__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.process-card__heading-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.process-card__title {
  width: 100%;
  margin: 0;
  font-family: inherit;
  font-size: 20px;
  font-weight: inherit;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.process-card__number {
  font-family: inherit;
  font-size: 48px;
  font-weight: inherit;
  line-height: 1.2;
  letter-spacing: -1px;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-slate-300);
  text-stroke: 1px var(--color-slate-300);
}

.process-card__divider {
  width: 80px;
  height: 3px;
  display: block;
}

.process-card__text {
  margin: 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-slate-500);
}

@media (min-width: 1280px) {
  .process-card__icon {
    background: var(--color-slate-50);
    outline: 1px solid #ffbf43;
    outline-offset: -0.5px;
  }
}

.advantages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 120px;
  background: var(--color-slate-50);
}

.advantages__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 792px;
}

.advantages__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.advantages__eyebrow-mark {
  width: 12px;
  height: 12px;
  background: var(--color-slate-400);
}

.advantages__eyebrow-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate-400);
}

.advantages__title {
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--color-slate-700);
}

.advantages__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 1200px;
}

.advantages__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.advantages__row--bottom {
  align-items: center;
  justify-content: center;
}

.advantage-item {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.advantage-item--bottom {
  width: 384px;
  flex: 0 0 384px;
}

.advantage-item__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.advantage-item__index {
  width: 35px;
  margin: 0;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--color-amber-300);
}

.advantage-item__line {
  width: 24px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.advantage-item__title {
  flex: 1 0 0;
  min-width: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.advantage-item__text-wrap {
  width: 100%;
  padding-left: 75px;
}

.advantage-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-slate-500);
}

.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 120px;
  background: var(--color-slate-200);
}

.reviews__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 1200px;
}

.reviews__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__eyebrow-mark {
  width: 12px;
  height: 12px;
  background: var(--color-slate-400);
}

.reviews__eyebrow-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate-400);
}

.reviews__heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.reviews__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.reviews__stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reviews__stepper-line {
  display: none;
}

.reviews__stepper-line img {
  display: none;
}

.reviews__steps {
  display: inline-flex;
  align-items: center;
}

.reviews__step {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  border: 0;
  background: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-slate-400);
  cursor: pointer;
}

.reviews__step--active {
  border-radius: 999px;
  font-weight: 600;
  color: var(--color-slate-50);
  background: var(--color-amber-300);
}

.reviews__slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1200px;
}

.reviews__viewport {
  width: 1200px;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  width: 100%;
  transition: transform 0.35s ease;
}

.reviews__slide {
  display: flex;
  flex: 0 0 1200px;
  gap: 24px;
  width: 1200px;
}

.review-card {
  display: flex;
  flex: 0 0 588px;
  align-items: center;
  gap: 24px;
  padding: 24px 16px;
  background: var(--color-slate-50);
  border-radius: var(--radius-m);
  box-shadow:
    0 1px 4px rgba(15, 23, 42, 0.1),
    0 1px 4px rgba(15, 23, 42, 0.05);
}

.review-card__content {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}

.review-card__title {
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.review-card__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-card__stars img {
  display: block;
  width: 24px;
  height: 24px;
}

.review-card__text,
.review-card__author {
  width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.review-card__text {
  color: var(--color-slate-500);
}

.review-card__author {
  color: var(--color-slate-700);
}

.review-card__media {
  flex: 1 0 0;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-m);
}

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

.reviews__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 72px;
}

.reviews__arrows--tablet,
.reviews__stepper--tablet {
  display: none;
}

.reviews__arrow {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-s);
  background: var(--color-amber-300);
  cursor: pointer;
}

.reviews__arrow img {
  display: block;
  width: 5.38px;
  height: 10.5px;
}

.reviews__arrow--prev {
  border: 1px solid var(--color-amber-300);
  background: transparent;
}

.reviews__arrow--prev img {
  transform: rotate(180deg);
}

.faq {
  padding: 0 120px 120px;
  background: var(--color-slate-200);
}

.faq__section {
  position: relative;
  width: 1200px;
  height: 820px;
  margin: 0 auto;
}

.faq__media {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 792px;
  height: 820px;
  border-radius: var(--radius-m);
  background: var(--color-slate-700);
}

.faq__media img {
  position: absolute;
  top: 0;
  left: -16.58%;
  width: 157.9%;
  max-width: none;
  height: 101.59%;
}

.faq__panel {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 588px;
  padding: 40px;
  background: var(--color-slate-50);
  border-radius: var(--radius-m);
  box-shadow:
    0 1px 4px rgba(15, 23, 42, 0.1),
    0 1px 4px rgba(15, 23, 42, 0.05);
  transform: translateY(-50%);
}

.faq__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.faq__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq__eyebrow-mark {
  width: 12px;
  height: 12px;
  background: var(--color-slate-400);
}

.faq__eyebrow-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate-400);
}

.faq__title {
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

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

.faq-item {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border: 1px solid var(--color-slate-300);
  border-radius: var(--radius-m);
  background: var(--color-slate-50);
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.faq-item--open {
  border-color: transparent;
  background: var(--color-slate-200);
  box-shadow:
    0 1px 4px rgba(15, 23, 42, 0.1),
    0 1px 4px rgba(15, 23, 42, 0.05);
}

.faq-item__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.faq-item__index {
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-slate-300);
  text-stroke: 1px var(--color-slate-300);
}

.faq-item--open .faq-item__index {
  color: var(--color-slate-300);
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.faq-item__question {
  flex: 1 0 0;
  min-width: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.faq-item__toggle {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: var(--color-amber-300);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.faq-item__toggle:hover {
  background: var(--color-amber-400);
  transform: translateY(-1px);
}

.faq-item__toggle img {
  width: 5.38px;
  height: 10.5px;
  transform: rotate(90deg);
  transition: transform var(--transition-fast);
}

.faq-item--open .faq-item__toggle img {
  transform: rotate(-90deg);
}

.faq-item__answer {
  padding-top: 12px;
}

.faq-item__answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-slate-500);
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 120px;
  background: var(--color-slate-50);
}

.contact__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 792px;
}

.contact__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact__eyebrow-mark {
  width: 12px;
  height: 12px;
  background: var(--color-slate-400);
}

.contact__eyebrow-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate-400);
}

.contact__title {
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--color-slate-700);
}

.contact__content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 996px;
}

.contact__list {
  display: flex;
  flex: 0 0 486px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 486px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.contact-item__icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border: 1px solid var(--color-amber-300);
  border-radius: var(--radius-m);
  background: var(--color-slate-50);
}

.contact-item__icon img {
  display: block;
  width: 36px;
  height: 36px;
}

.contact-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 264px;
  white-space: nowrap;
}

.contact-item__content--address {
  width: auto;
  min-width: 0;
  white-space: normal;
}

.contact-item__label {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate-400);
}

.contact-item__value {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.contact-item__value--underlined {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.contact__form-card {
  display: flex;
  flex: 0 0 486px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 486px;
  min-width: 486px;
  padding: 32px;
  overflow: clip;
  background: var(--color-slate-200);
  border-radius: var(--radius-m);
  box-shadow:
    0 1px 4px rgba(15, 23, 42, 0.1),
    0 1px 4px rgba(15, 23, 42, 0.05);
}

.contact__form-title {
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-slate-700);
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.contact-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form__label {
  width: 100%;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate-600);
}

.contact-form__input {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border: 1px dashed var(--color-slate-300);
  border-radius: var(--radius-s);
  font: inherit;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-slate-700);
  background: var(--color-slate-50);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contact-form__input::placeholder {
  color: var(--color-slate-400);
}

.contact-form__input:focus-visible {
  outline: none;
  border-color: var(--color-amber-400);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.contact-form__input--error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: var(--radius-m);
  background: var(--color-amber-300);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--color-slate-700);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.contact-form__submit:hover {
  transform: translateY(-1px);
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-form__status {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form__status--success {
  color: #166534;
}

.contact-form__status--error {
  color: #b91c1c;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 120px 24px;
  color: var(--color-slate-50);
  background: var(--color-slate-700);
  border-top: 1px solid var(--color-slate-600);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1200px;
}

.site-footer__logo {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  width: 233px;
  height: 42px;
}

.site-footer__logo img {
  display: block;
  width: 80px;
  height: 41px;
  transform: scaleX(-1);
  transform-origin: center;
}

.site-footer__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 792px;
}

.site-footer__links {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 406px;
}

.site-footer__links-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 204px;
}

.site-footer__links-column a,
.site-footer__contact span {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.site-footer__links-column a {
  color: var(--color-slate-50);
  transition: color var(--transition-fast);
}

.site-footer__links-column a:hover {
  color: var(--color-amber-300);
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 386px;
}

.site-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--color-slate-50);
}

.site-footer__contact img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.site-footer__contact--underlined span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 233px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.site-footer__social-link img {
  display: block;
  width: 30px;
  height: 30px;
}

.site-footer__social-link--rounded img {
  border-radius: 2px;
}

.site-footer__divider {
  width: 1200px;
  height: 1px;
}

.site-footer__divider img {
  display: block;
  width: 1200px;
  height: 1px;
}

.site-footer__copyright {
  width: 100%;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  color: var(--color-slate-300);
}

.scroll-top {
  position: fixed;
  right: max(24px, calc(((100vw - var(--page-max)) / 2) + 120px));
  bottom: 32px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--color-amber-300);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast);
}

.scroll-top:hover {
  background: var(--color-amber-400);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-top__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transform: rotate(-90deg);
}

.scroll-top img {
  display: block;
  width: 22.5px;
  height: 22.5px;
}

@media (max-width: 1599px) {
  :root {
    --container-gutter: 96px;
  }

  .hero {
    min-height: 653px;
  }

  .hero__bg {
    top: 0;
    width: 1440px;
    height: 653px;
  }

  .hero__bg-house {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
  }

  .hero__bg-overlay {
    width: 1440px;
    height: 949px;
  }

  .hero__bg-layer {
    top: 40px;
    width: 1708px;
    height: 640px;
  }

  .hero__bg-png {
    top: 145px;
    width: 1440px;
    height: 508px;
  }

  .hero__bg-light--large {
    top: 23.823px;
    right: -177.227px;
    width: 315.315px;
    height: 315.315px;
  }

  .hero__bg-light--small {
    top: 231.899px;
    right: 26.047px;
    width: 253.693px;
    height: 253.693px;
  }

  .hero__bg-worker {
    top: 0.614px;
    right: 138.287px;
    width: 338.324px;
    height: 507.685px;
  }

  .hero-header {
    width: 1440px;
    gap: 24px;
    padding-bottom: 24px;
  }

  .hero-header__top {
    padding: 16px 120px;
  }

  .hero-header__top-links,
  .hero-header__meta,
  .hero-header__nav {
    gap: 16px;
  }

  .hero-header__meta {
    width: 809.5px;
    flex-basis: 809.5px;
  }

  .hero-header__top-links a,
  .hero-header__meta-item,
  .hero-header__nav a {
    font-size: 14px;
    line-height: 1;
  }

  .hero-header__bottom {
    height: 40px;
  }

  .hero-header__nav {
    top: 13px;
    left: 120px;
    gap: 16px;
    height: 14px;
  }

  .hero-header__nav a {
    height: 14px;
    line-height: 14px;
  }

  .hero-header__logo {
    width: 158.476px;
    height: 48px;
  }

  .hero-header__logo-mark {
    transform: translateX(-50%) scaleX(-1);
    transform-origin: center;
  }

  .hero-header__logo-mark,
  .hero-header__logo-mark > img {
    width: 60.715px;
    height: 30.591px;
  }

  .hero-header__logo-text {
    bottom: 7.619px;
    width: 158.476px;
    transform: translate(-50%, 100%);
    font-size: 7.619px;
    line-height: 1;
    letter-spacing: 0.7619px;
  }

  .hero-header__cta {
    right: 120px;
  }

  .hero__banner {
    top: 144px;
    width: 1440px;
    height: 509px;
    padding: 120px;
    gap: 40px;
  }

  .hero__banner-text {
    gap: 16px;
    width: 690px;
  }

  .hero__title,
  .hero__text {
    width: 690px;
  }

  .hero__title {
    font-size: 40px;
    letter-spacing: 0;
  }

  .about {
    gap: 80px;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-right: 0;
    padding-left: 0;
  }

  .about__inner {
    width: 1200px;
  }

  .about__content {
    width: 1200px;
    height: 438px;
  }

  .about__image,
  .about__text {
    flex: 0 0 auto;
    min-width: auto;
  }

  .about__image {
    width: 588px;
    height: 438px;
    flex-basis: 588px;
  }

  .about__image-frame {
    top: 18px;
    left: 42px;
    width: 504px;
    height: 402.671px;
    background: url("../assets/images/about_house_crop_1440.webp") left top / 504px 402.671px no-repeat;
  }

  .about__mask-group--left {
    top: 71.371px;
    width: 158.601px;
    height: 331.301px;
  }

  .about__mask-group--center {
    left: 172.699px;
    width: 158.601px;
    height: 402.671px;
  }

  .about__mask-group--right {
    top: 68.729px;
    left: 345.398px;
    width: 158.601px;
    height: 333.944px;
  }

  .about__mask-source {
    top: 0;
    left: -38.9%;
    width: 177.47%;
    height: 100%;
  }

  .about__mask-group,
  .about__mask,
  .about__mask-source {
    display: none;
  }

  .about__stats {
    width: 1200px;
  }

  .about__text,
  .about__heading,
  .about__heading-block,
  .about__title,
  .about__lead,
  .about__advantages,
  .about__advantages-columns {
    width: 588px;
  }

  .about__text {
    width: 588px;
    flex-basis: 588px;
  }

  .about__advantages-column {
    width: 282px;
  }

  .about__feature {
    width: 282px;
    align-items: flex-start;
  }

  .about__feature-text {
    width: 242px;
  }

  .about__stats-marker--first {
    left: 295px;
  }

  .about__stats-marker--second {
    left: 595px;
  }

  .about__stats-marker--third {
    left: 895px;
  }

  .about__stat {
    width: 300px;
  }

  .services {
    padding-right: 0;
    padding-left: 0;
  }

  .projects {
    padding-right: 0;
    padding-left: 0;
  }

  .process {
    padding-right: 0;
    padding-left: 0;
  }

  .process__top,
  .process__cards--bottom {
    width: 1200px;
  }

}

@media (max-width: 1279px) {
  :root {
    --container-gutter: 32px;
  }

  .hero-header__top,
  .hero-header__bottom {
    gap: 24px;
  }

  .hero-header__top {
    flex-wrap: wrap;
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero-header__bottom {
    min-height: 120px;
  }

  .hero {
    min-height: auto;
  }

  .hero__bg {
    top: 56px;
    height: calc(100% - 56px);
  }

  .hero__banner {
    gap: 40px;
    top: 120px;
    padding: 120px 32px 104px;
  }

  .hero-header__nav {
    left: 32px;
  }

  .hero-header__logo {
    top: 28px;
  }

  .hero-header__cta {
    left: auto;
    right: 32px;
  }

  .hero__title {
    font-size: 40px;
  }

  .about {
    gap: 56px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .about__content {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
  }

  .about__image {
    width: min(748px, 100%);
    flex: 0 0 auto;
  }

  .about__image-frame {
    position: relative;
    left: auto;
    margin: 0 auto;
  }

  .about__text {
    flex: 0 0 auto;
    width: min(748px, 100%);
  }

  .about__feature,
  .about__feature-text {
    width: auto;
  }

  .about__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(760px, 100%);
    height: auto;
  }

  .about__stats-ui {
    display: none;
  }

  .about__stat {
    width: auto;
  }

  .about__stat:nth-child(2) {
    border-right: none;
  }

  .about__stat:nth-child(3),
  .about__stat:nth-child(4) {
    border-top: 1px solid var(--color-slate-300);
  }

  .services {
    gap: 56px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .services__heading,
  .services__title-block,
  .services__title,
  .services__lead {
    width: min(100%, 1006px);
  }

  .services__cards {
    flex-wrap: wrap;
    width: 100%;
  }

  .service-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .projects {
    gap: 32px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .projects__header {
    flex-direction: column;
    align-items: start;
    gap: 24px;
    width: 100%;
  }

  .projects__links {
    flex-wrap: wrap;
    width: 100%;
    padding-top: 0;
  }

  .projects__cards {
    flex-wrap: wrap;
    width: 100%;
  }

  .project-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .project-card__arrows {
    width: 100%;
  }

  .banner__text,
  .banner__copy,
  .banner__title,
  .banner__lead {
    width: min(100%, 1006px);
  }

  .process {
    gap: 56px;
    padding: 120px 32px 96px;
  }

  .process__top {
    flex-direction: column;
    gap: 56px;
  }

  .process__heading,
  .process__title,
  .process__cards--top,
  .process__cards--bottom {
    width: 100%;
  }

  .process__cards {
    flex-wrap: wrap;
  }

  .advantages {
    gap: 56px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .advantages__title-block {
    width: min(100%, 1006px);
  }

  .advantages__row {
    flex-wrap: wrap;
  }

  .advantage-item,
  .advantage-item--bottom {
    width: 100%;
    flex: 1 1 100%;
  }

  .reviews {
    gap: 32px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .reviews__heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .reviews__slide {
    flex-direction: column;
  }

  .review-card {
    flex: 0 0 auto;
    width: 100%;
  }

  .reviews {
    gap: 32px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .reviews__heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .reviews__heading,
  .reviews__slider,
  .reviews__viewport,
  .reviews__slide {
    width: 100%;
  }

  .reviews__slide {
    flex-direction: column;
  }

  .review-card {
    flex: 0 0 auto;
    width: 100%;
  }

  .faq {
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 96px;
  }

  .faq__section {
    display: grid;
    gap: 32px;
    min-height: 0;
  }

  .faq__media,
  .faq__panel {
    position: static;
    width: 100%;
  }

  .faq__media {
    height: 480px;
  }

  .faq__media img {
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-position: center top;
  }

  .faq__panel {
    transform: none;
  }

  .contact {
    gap: 56px;
    padding: 96px 32px;
  }

  .contact__content {
    flex-direction: column;
  }

  .contact__form-card,
  .contact__list {
    width: min(100%, 640px);
  }

  .site-footer {
    gap: 32px;
    padding: 40px 32px 24px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .site-footer__content {
    width: 100%;
    gap: 32px;
  }

  .site-footer__links {
    width: min(444px, 100%);
  }

  .site-footer__social {
    width: auto;
    justify-content: start;
  }

  .scroll-top {
    right: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .hero {
    min-height: 584px;
  }

  .hero__bg {
    top: 56px;
    width: 768px;
    height: 528px;
  }

  .hero__bg-house {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero__bg-overlay {
    top: 0;
    left: 0;
    width: 768px;
    height: 528px;
  }

  .hero__bg-layer {
    top: 0;
    left: -49px;
    right: auto;
    width: 1407px;
    height: 528px;
  }

  .hero__bg-png {
    top: 72px;
    width: 768px;
    height: 456px;
  }

  .hero__bg-light--large {
    top: 0;
    right: -9.906px;
    width: 282.906px;
    height: 282.906px;
  }

  .hero__bg-light--small {
    top: 239px;
    right: 106px;
    width: 188px;
    height: 188px;
  }

  .hero__bg-worker {
    top: 0.551px;
    right: 0.082px;
    width: 303.55px;
    height: 455.504px;
  }

  .hero-header {
    gap: 16px;
    width: 768px;
    padding-bottom: 16px;
  }

  .hero-header__top {
    justify-content: flex-end;
    gap: 16px;
    padding: 16px 32px;
  }

  .hero-header__top-links {
    display: none;
  }

  .hero-header__meta {
    width: auto;
    flex: 0 0 auto;
    gap: 16px;
  }

  .hero-header__top-links a,
  .hero-header__meta-item,
  .hero-header__nav a {
    font-size: 14px;
    line-height: 1;
  }

  .hero-header__bottom {
    position: relative;
    height: 40px;
    min-height: 0;
  }

  .hero-header__nav {
    display: none;
  }

  .hero-header__logo {
    top: -56px;
    left: 32px;
    width: 88px;
    height: 24px;
    transform: none;
  }

  .hero-header__logo-mark {
    top: 50%;
    left: 0.44px;
    width: 57.558px;
    height: 29px;
    transform: translateY(-50%) scaleX(-1);
    transform-origin: center;
  }

  .hero-header__logo-mark > img {
    width: 57.558px;
    height: 29px;
    filter: brightness(0) saturate(100%);
  }

  .hero-header__logo-text {
    display: none;
  }

  .hero-header__menu {
    position: absolute;
    top: 50%;
    left: 32px;
    display: block;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
  }

  .hero-header__menu[aria-expanded="true"] .hero-header__menu-bar--top {
    top: 11px;
    transform: rotate(45deg);
  }

  .hero-header__menu[aria-expanded="true"] .hero-header__menu-bar--middle {
    opacity: 0;
  }

  .hero-header__menu[aria-expanded="true"] .hero-header__menu-bar--bottom {
    top: 11px;
    transform: rotate(-45deg);
  }

  .hero-header__cta {
    top: 0;
    right: 32px;
    width: auto;
    height: 40px;
    min-height: 40px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
  }

  .hero-header__drawer[hidden] {
    display: none;
  }

  .hero-header__drawer {
    position: absolute;
    top: 128px;
    left: 0;
    z-index: 4;
    display: block;
    width: 768px;
    height: 258px;
    padding: 32px;
    overflow: hidden;
    background: var(--color-slate-50);
    border-top: 1px solid var(--color-slate-300);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-header__drawer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 704px;
    height: 194px;
    gap: 16px;
  }

  .hero-header__drawer-nav a {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-slate-700);
  }

  .hero-header__drawer-nav a[href="#contacts"] {
    order: 6;
  }

  .hero-header__drawer-nav a[href="#faq"] {
    order: 7;
  }

  .hero__banner {
    top: 128px;
    width: 768px;
    height: 456px;
    padding: 80px 32px;
    gap: 40px;
  }

  .hero__banner-text,
  .hero__title,
  .hero__text {
    width: 431px;
  }

  .hero__banner-text {
    gap: 16px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .hero__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero__banner-button,
  .banner__button,
  .projects__more {
    min-height: 40px;
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: 0;
  }

  .about {
    gap: 64px;
    padding: 80px 32px;
  }

  .about__inner {
    width: 704px;
    gap: 64px;
  }

  .about__content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 64px;
    width: 704px;
    height: auto;
  }

  .about__text,
  .about__heading,
  .about__heading-block,
  .about__title,
  .about__lead,
  .about__advantages,
  .about__advantages-columns {
    width: 704px;
  }

  .about__text {
    flex: 0 0 auto;
    gap: 32px;
  }

  .about__heading {
    gap: 16px;
  }

  .about__heading-block {
    gap: 8px;
  }

  .about__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .about__lead,
  .about__feature-text,
  .about__stat span {
    font-size: 14px;
    line-height: 1.4;
  }

  .about__advantages {
    gap: 16px;
  }

  .about__advantages-title {
    font-size: 16px;
  }

  .about__advantages-columns {
    gap: 24px;
  }

  .about__advantages-column {
    width: 340px;
    gap: 4px;
  }

  .about__feature {
    width: 340px;
    min-height: 32px;
    align-items: center;
  }

  .about__feature-text {
    width: 300px;
  }

  .about__image {
    width: 704px;
    height: 405px;
  }

  .about__image-frame {
    top: 1px;
    left: 100px;
    width: 504px;
    height: 402.671px;
    margin: 0;
  }

  .about__stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 352px);
    width: 704px;
    height: 238px;
    overflow: hidden;
  }

  .about__stats::before {
    display: block;
    top: calc(50% - 0.5px);
    left: 0;
    width: 704px;
    border-top: 1px solid var(--color-slate-300);
  }

  .about__stats::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 0.5px);
    width: 0;
    height: 238px;
    border-left: 1px solid var(--color-slate-300);
  }

  .about__stats-ui {
    display: block;
    top: 0;
    width: 704px;
    height: 238px;
  }

  .about__stats-marker--first {
    top: calc(50% - 4.5px);
    left: calc(50% - 4.5px);
  }

  .about__stats-marker--second,
  .about__stats-marker--third {
    display: none;
  }

  .about__stat {
    width: 352px;
    padding: 24px 32px;
    gap: 16px;
    border: 0;
  }

  .about__stat:not(:last-child) {
    border-right: none;
  }

  .about__stat:nth-child(1),
  .about__stat:nth-child(3) {
    border-right: none;
  }

  .about__stat:nth-child(1),
  .about__stat:nth-child(2) {
    border-bottom: none;
  }

  .about__stat:nth-child(3),
  .about__stat:nth-child(4) {
    border-top: none;
  }

  .about__stat strong {
    font-size: 28px;
  }

  .services {
    gap: 64px;
    padding: 80px 32px;
  }

  .services__heading,
  .services__title-block,
  .services__title,
  .services__lead {
    width: 704px;
  }

  .services__heading,
  .services__title-block {
    gap: 16px;
  }

  .services__title {
    font-size: 28px;
    line-height: 1.25;
    text-align: center;
  }

  .services__lead {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }

  .services__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 704px;
  }

  .service-card {
    flex: 0 0 340px;
    width: 340px;
    min-height: 208px;
    padding: 24px 16px;
  }

  .service-card__icon {
    width: 64px;
    height: 64px;
  }

  .service-card__icon img {
    width: 43.886px;
    height: 43.886px;
  }

  .service-card__body {
    gap: 12px;
  }

  .service-card__title {
    font-size: 16px;
  }

  .service-card__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .projects {
    gap: 64px;
    padding: 80px 32px;
  }

  .projects__header,
  .projects__heading,
  .projects__cards {
    width: 704px;
  }

  .projects__header {
    align-items: center;
    gap: 16px;
    min-height: 129px;
  }

  .projects__heading {
    gap: 8px;
  }

  .projects__title {
    width: auto;
    font-size: 28px;
    line-height: 1.25;
  }

  .projects__links {
    justify-content: space-between;
    width: 393px;
    padding-top: 0;
  }

  .projects__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 20px;
  }

  .project-card {
    flex: 0 0 342px;
    width: 342px;
  }

  .project-card__image-wrap {
    height: 280px;
  }

  .project-card__arrows {
    width: 342px;
    padding: 0 16px;
  }

  .project-card__title {
    font-size: 16px;
  }

  .project-card__description,
  .project-card__link {
    font-size: 14px;
    line-height: 1.4;
  }

  .projects__more {
    min-width: 188px;
  }

  .banner {
    min-height: 409px;
  }

  .banner__bg {
    width: 768px;
    height: 409px;
  }

  .banner__bg-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
  }

  .banner__bg::after {
    background: rgba(0, 0, 0, 0.72);
  }

  .banner__bg-layer {
    top: 0;
    left: 50%;
    width: 1091px;
    height: 409px;
    transform: translateX(-50%);
  }

  .banner__text {
    gap: 40px;
    width: 522px;
    padding: 80px 0;
  }

  .banner__copy,
  .banner__title,
  .banner__lead {
    width: 522px;
  }

  .banner__copy {
    gap: 24px;
  }

  .banner__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .banner__lead {
    font-size: 14px;
    line-height: 1.4;
  }

  .process {
    position: relative;
    gap: 64px;
    padding: 80px 32px;
    height: 844px;
    box-sizing: border-box;
  }

  .process__top {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 704px;
    height: 96px;
  }

  .process__heading {
    gap: 8px;
    width: 431px;
    min-height: 96px;
  }

  .process__title {
    width: 431px;
    font-size: 28px;
    line-height: 1.25;
  }

  .process__cards--top,
  .process__cards--bottom {
    width: 704px;
    margin: 0;
  }

  .process__cards--top {
    position: absolute;
    top: 160px;
    left: 0;
    gap: 24px;
    height: 148px;
  }

  .process__cards--bottom {
    position: absolute;
    top: 428px;
    left: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 24px;
    align-items: flex-start;
    height: 336px;
  }

  .process-card {
    width: 340px;
    min-width: 340px;
    min-height: 0;
    height: 148px;
    padding: 16px;
    box-sizing: border-box;
  }

  .process__cards--bottom .process-card:last-child {
    width: 342px;
    min-width: 342px;
  }

  .process-card__bg {
    width: 340px;
    height: 148px;
  }

  .process-card__icon {
    top: -12px;
    width: 64px;
    height: 64px;
    background: var(--color-slate-50);
    outline: 1px solid #ffbf43;
    outline-offset: -0.5px;
  }

  .process-card__icon img {
    width: 32.915px;
    height: 32.915px;
  }

  .process-card__title {
    font-size: 16px;
  }

  .process-card__number {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .process-card__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .process__cards--top .process-card:first-child .process-card__text,
  .process__cards--bottom .process-card:first-child .process-card__text,
  .process__cards--bottom .process-card:nth-child(2) .process-card__text {
    font-size: 0;
    line-height: 0;
    color: transparent;
  }

  .process__cards--top .process-card:first-child .process-card__text::before,
  .process__cards--bottom .process-card:first-child .process-card__text::before,
  .process__cards--bottom .process-card:nth-child(2) .process-card__text::before {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-slate-500);
  }

  .process__cards--top .process-card:first-child .process-card__text::before {
    content: "Обговорюємо завдання та оцінюємо обсяг";
  }

  .process__cards--bottom .process-card:first-child .process-card__text::before {
    content: "Фото та відео з об'єкта на кожному етапі";
  }

  .process__cards--bottom .process-card:nth-child(2) .process-card__text::before {
    content: "Щоденний нагляд за якістю та виконанням";
  }

  .advantages {
    gap: 64px;
    padding: 80px 32px;
  }

  .advantages__title-block {
    gap: 8px;
    width: 704px;
  }

  .advantages__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .advantages__cards {
    display: grid;
    grid-template-columns: repeat(2, 340px);
    align-items: flex-start;
    gap: 40px 24px;
    width: 704px;
  }

  .advantages__row {
    display: contents;
  }

  .advantages__row--bottom {
    align-items: initial;
    justify-content: initial;
  }

  .advantage-item,
  .advantage-item--bottom {
    flex: 0 0 auto;
    width: 340px;
  }

  .advantages__cards .advantage-item:last-child,
  .advantages__cards .advantage-item--bottom:last-child {
    width: 342px;
  }

  .advantage-item__title {
    font-size: 16px;
  }

  .advantage-item__text-wrap {
    padding-left: 75px;
  }

  .advantage-item__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .reviews {
    position: relative;
    gap: 40px;
    min-height: 785px;
    padding: 80px 32px;
  }

  .reviews__heading {
    position: relative;
    gap: 8px;
    width: 704px;
  }

  .reviews__heading-row {
    flex-direction: row;
    position: relative;
    align-items: flex-start;
    justify-content: space-between;
    width: 704px;
    min-height: 35px;
  }

  .reviews__title {
    width: 640px;
    font-size: 28px;
    line-height: 1.25;
  }

  .reviews__arrows--tablet {
    position: static;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 64px;
  }

  .reviews__slider > .reviews__arrows {
    display: none;
  }

  .reviews__slider {
    gap: 0;
    width: 704px;
  }

  .reviews__viewport {
    width: 704px;
  }

  .reviews__slide {
    display: grid;
    grid-template-columns: repeat(2, 340px);
    flex: 0 0 704px;
    width: 704px;
    gap: 24px;
  }

  .review-card {
    box-sizing: border-box;
    flex: 0 0 340px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 340px;
    height: 452px;
    padding: 16px;
  }

  .review-card__content {
    gap: 16px;
    width: 100%;
  }

  .review-card__title {
    font-size: 16px;
  }

  .review-card__rating {
    gap: 8px;
  }

  .reviews__slide .review-card:first-child .review-card__text,
  .reviews__slide .review-card:last-child .review-card__text {
    font-size: 0;
    line-height: 0;
    color: transparent;
  }

  .reviews__slide .review-card:first-child .review-card__text::before,
  .reviews__slide .review-card:last-child .review-card__text::before {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-slate-500);
  }

  .reviews__slide .review-card:first-child .review-card__text::before {
    content: "“Рівень виконання перевищив очікування. Продумано кожен етап, ідеальна якість робіт та сервісу. Рекомендую!”";
  }

  .reviews__slide .review-card:last-child .review-card__text::before {
    content: "“Дуже задоволені ремонтом! Все зроблено акуратно, красиво і саме так, як ми уявляли.”";
  }

  .review-card__media {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
  }

  .review-card__media img {
    position: absolute;
    top: calc(50% + 19px);
    left: 50%;
    width: 325px;
    height: 298px;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: fill;
  }

  .review-card__media--bathroom img {
    top: 50%;
    width: 382px;
    height: 350px;
  }

  .reviews__heading-row > .reviews__stepper {
    display: none;
  }

  .reviews__stepper--tablet {
    display: inline-flex;
    align-items: center;
    align-self: center;
    width: 285.5px;
  }

  .faq {
    padding: 0 0 80px;
  }

  .faq__section {
    width: 768px;
    height: 1041px;
  }

  .faq__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 768px;
    height: 380px;
    border-radius: 0;
  }

  .faq__media img {
    top: -334px;
    left: -127.33px;
    width: 1212.67px;
    max-width: none;
    height: 808.48px;
  }

  .faq__panel {
    position: absolute;
    z-index: 1;
    top: 280px;
    right: auto;
    left: 32px;
    width: 704px;
    height: 681px;
    padding: 32px;
    box-sizing: border-box;
    transform: none;
  }

  .faq__heading {
    gap: 8px;
    width: 640px;
  }

  .faq__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .faq__items {
    width: 640px;
    height: 516px;
  }

  .faq-item {
    width: 640px;
    height: 64px;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .faq-item--open {
    height: 116px;
    min-height: 116px;
  }

  .faq-item__header {
    align-items: center;
  }

  .faq-item:nth-child(2) .faq-item__header {
    align-items: flex-start;
  }

  .faq-item__question {
    font-size: 16px;
  }

  .faq-item__answer p {
    font-size: 14px;
    line-height: 1.4;
  }

  .contact {
    gap: 64px;
    padding: 80px 32px;
  }

  .contact__title-block {
    gap: 8px;
    width: 704px;
  }

  .contact__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .contact__content {
    flex-direction: column;
    gap: 64px;
    width: 704px;
    height: 510px;
  }

  .contact__list {
    display: grid;
    grid-template-columns: repeat(2, 340px);
    flex: 0 0 auto;
    gap: 24px;
    height: 56px;
    width: 704px;
  }

  .contact-item {
    gap: 16px;
    width: 340px;
  }

  .contact-item:nth-child(1) {
    order: 1;
  }

  .contact-item:nth-child(2) {
    order: 2;
  }

  .contact-item__icon {
    width: 56px;
    height: 56px;
  }

  .contact-item__icon img {
    display: block;
    width: 28.8px;
    height: 28.8px;
  }

  .contact-item__icon::before {
    content: none;
  }

  .contact-item__content {
    gap: 8px;
    width: 268px;
  }

  .contact-item__content--address {
    width: 268px;
    white-space: nowrap;
  }

  .contact-item__content--address .contact-item__value {
    font-size: 0;
    line-height: 0;
  }

  .contact-item__content--address .contact-item__value::after {
    content: "вул. Зарічанська, 18А";
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-slate-700);
  }

  .contact-item__value {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }

  .contact__form-card {
    flex: 0 0 auto;
    gap: 40px;
    height: 390px;
    width: 704px;
    min-width: 0;
    padding: 32px;
  }

  .contact__form-title {
    width: 640px;
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
  }

  .contact-form {
    align-items: center;
    gap: 40px;
    height: 236px;
    width: 640px;
  }

  .contact-form__fields {
    width: 640px;
  }

  .contact-form__field {
    gap: 8px;
  }

  .contact-form__input {
    height: 40px;
    font-size: 14px;
    line-height: 1.4;
  }

  .contact-form__submit {
    width: 120px;
    height: 40px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .site-footer {
    gap: 32px;
    padding: 32px 32px 16px;
  }

  .site-footer__top {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo social"
      "content content";
    row-gap: 32px;
    width: 704px;
  }

  .site-footer__logo {
    grid-area: logo;
    width: 233px;
    height: 54px;
    align-items: center;
  }

  .site-footer__logo img {
    width: 79.689px;
    height: 40.15px;
    transform: scaleX(-1);
    transform-origin: center;
  }

  .site-footer__social {
    grid-area: social;
    justify-self: end;
    width: auto;
  }

  .site-footer__social-link {
    width: 32px;
    height: 32px;
  }

  .site-footer__social-link img {
    width: 24px;
    height: 24px;
  }

  .site-footer__content {
    position: relative;
    display: grid;
    grid-template-columns: 328px 328px;
    column-gap: 48px;
    grid-area: content;
    width: 704px;
  }

  .site-footer__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 0.5px);
    width: 1px;
    height: 100%;
    background: var(--color-slate-600);
  }

  .site-footer__links,
  .site-footer__contacts {
    width: 328px;
  }

  .site-footer__links {
    justify-content: flex-start;
    gap: 24px;
  }

  .site-footer__links-column {
    flex: 1 0 0;
    width: auto;
  }

  .site-footer__links-column:last-child a[href="#faq"] {
    font-size: 0;
    line-height: 0;
  }

  .site-footer__links-column:last-child a[href="#faq"]::after {
    content: "Поширені питання";
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-slate-50);
    white-space: nowrap;
  }

  .site-footer__divider {
    width: 704px;
  }

  .site-footer__divider img {
    width: 704px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-gutter: 16px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-header {
    width: 390px;
    height: 56px;
    padding-bottom: 0;
    gap: 0;
  }

  .hero-header__top-links,
  .hero-header__meta,
  .hero-header__nav {
    display: none;
  }

  .hero-header__top {
    display: none;
  }

  .hero-header__bottom {
    position: relative;
    height: 56px;
    min-height: 56px;
    padding: 16px;
  }

  .hero-header__logo {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 88px;
    height: 24px;
    margin: 0;
    transform: none;
    order: 0;
  }

  .hero-header__logo-mark {
    top: 50%;
    left: 0.4px;
    width: 51.604px;
    height: 26px;
    transform: translateY(-50%) scaleX(-1);
    transform-origin: center;
    background: url("../assets/icons/logo-header-mobile-390.svg") center center / 51.604px 26px no-repeat;
  }

  .hero-header__logo-mark > img {
    display: none;
  }

  .hero-header__logo-text,
  .hero-header__cta {
    display: none;
  }

  .hero-header__menu {
    position: absolute;
    top: 16px;
    right: 16px;
    left: auto;
    display: block;
    width: 24px;
    height: 24px;
    transform: none;
  }

  .hero-header__menu-bar {
    background: var(--color-slate-50);
  }

  .hero-header__menu[aria-expanded="true"] .hero-header__menu-bar--top {
    top: 11px;
    transform: rotate(45deg);
  }

  .hero-header__menu[aria-expanded="true"] .hero-header__menu-bar--middle {
    opacity: 0;
  }

  .hero-header__menu[aria-expanded="true"] .hero-header__menu-bar--bottom {
    top: 11px;
    transform: rotate(-45deg);
  }

  .hero-header__drawer[hidden] {
    display: none;
  }

  .hero-header__drawer {
    position: absolute;
    top: 56px;
    left: 0;
    z-index: 4;
    display: block;
    width: 390px;
    height: 258px;
    padding: 32px 16px;
    overflow: hidden;
    background: var(--color-slate-50);
    border-top: 1px solid var(--color-slate-300);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-header__drawer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 358px;
    height: 194px;
    gap: 16px;
  }

  .hero-header__drawer-nav a {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-slate-700);
  }

  .hero-header__drawer-nav a[href="#contacts"] {
    order: 6;
  }

  .hero-header__drawer-nav a[href="#faq"] {
    order: 7;
    font-size: 0;
    line-height: 0;
  }

  .hero-header__drawer-nav a[href="#faq"]::after {
    content: "Питання та відповіді";
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-slate-700);
  }

  .hero__bg {
    top: 0;
    width: 390px;
    height: 580px;
  }

  .hero__bg-house {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero__bg-overlay {
    top: 0;
    left: 0;
    width: 390px;
    height: 580px;
    background: rgba(0, 0, 0, 0.2);
  }

  .hero__bg-layer {
    top: 0;
    left: -183px;
    right: auto;
    width: 1547px;
    height: 580px;
    background:
      linear-gradient(-72.359862deg, rgba(15, 16, 65, 0.4) 26.604%, rgba(15, 16, 65, 0) 50.357%),
      linear-gradient(90deg, rgba(15, 16, 65, 0.5) 0%, rgba(15, 16, 65, 0.5) 100%);
  }

  .hero__bg-png,
  .hero__bg-light--large,
  .hero__bg-light--small,
  .hero__bg-worker {
    display: none;
  }

  .hero__banner {
    top: 56px;
    width: 390px;
    height: 524px;
    gap: 40px;
    padding: 120px 16px 128px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .hero__banner-text,
  .hero__title,
  .hero__text {
    width: 358px;
  }

  .hero__banner-text {
    height: 196px;
    gap: 16px;
  }

  .hero__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero__banner-button {
    width: 358px;
    min-height: 40px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
  }

  .about {
    gap: 32px;
    padding: 64px 16px;
  }

  .about__inner {
    width: 358px;
    gap: 32px;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 358px;
    height: auto;
  }

  .about__text,
  .about__heading,
  .about__heading-block,
  .about__title,
  .about__lead,
  .about__advantages,
  .about__advantages-columns,
  .about__image,
  .about__stats {
    width: 358px;
  }

  .about__image {
    order: 2;
    height: 286px;
    flex: 0 0 auto;
  }

  .about__text {
    order: 1;
    flex: 0 0 auto;
    height: 444px;
    gap: 24px;
  }

  .about__heading {
    height: 172px;
    gap: 16px;
  }

  .about__heading-block {
    height: 76px;
    gap: 8px;
  }

  .about__title {
    font-size: 20px;
    line-height: 1.25;
  }

  .about__lead,
  .about__feature-text,
  .about__stat span {
    font-size: 14px;
    line-height: 1.4;
  }

  .about__advantages {
    height: 248px;
    gap: 16px;
  }

  .about__advantages-title {
    font-size: 16px;
    line-height: 1.25;
  }

  .about__advantages-columns {
    flex-direction: column;
    height: 212px;
    gap: 4px;
  }

  .about__advantages-column {
    width: 358px;
    gap: 4px;
  }

  .about__feature {
    width: 358px;
    min-height: 32px;
    align-items: center;
  }

  .about__feature-text {
    width: 318px;
  }

  .about__image-frame {
    top: 0;
    left: 0;
    width: 358px;
    height: 286.024px;
    margin: 0;
    background: url("../assets/images/about_house_crop.webp") left top / 358px 286.024px no-repeat;
  }

  .about__mask-group,
  .about__mask,
  .about__mask-source {
    display: none;
  }

  .about__stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 179px);
    width: 358px;
    height: 178px;
    overflow: hidden;
  }

  .about__stats::before {
    display: block;
    top: calc(50% - 0.5px);
    left: 0;
    width: 358px;
    border-top: 1px solid var(--color-slate-300);
  }

  .about__stats::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 0.5px);
    width: 0;
    height: 178px;
    border-left: 1px solid var(--color-slate-300);
  }

  .about__stats-ui {
    display: block;
    top: 0;
    width: 358px;
    height: 178px;
  }

  .about__stats-marker--first {
    top: calc(50% - 4.5px);
    left: calc(50% - 5px);
  }

  .about__stats-marker--second,
  .about__stats-marker--third {
    display: none;
  }

  .about__stat {
    width: 179px;
    padding: 16px;
    gap: 12px;
    border: 0;
  }

  .about__stat:not(:last-child) {
    border-right: none;
  }

  .about__stat:nth-child(1),
  .about__stat:nth-child(3) {
    border-right: none;
  }

  .about__stat:nth-child(1),
  .about__stat:nth-child(2) {
    border-bottom: none;
  }

  .about__stat:nth-child(3),
  .about__stat:nth-child(4) {
    border-top: none;
  }

  .about__stat strong {
    font-size: 20px;
    line-height: 1.25;
  }

  .services {
    gap: 32px;
    padding: 64px 16px;
  }

  .services__heading,
  .services__title-block,
  .services__title,
  .services__lead {
    width: 358px;
  }

  .services__heading {
    gap: 16px;
    height: 132px;
  }

  .services__title-block {
    gap: 8px;
    height: 76px;
  }

  .services__title {
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
  }

  .services__title br {
    display: none;
  }

  .services__lead {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }

  .services__cards {
    flex-direction: column;
    gap: 16px;
    width: 358px;
    height: 860px;
  }

  .service-card {
    flex: 0 0 auto;
    width: 358px;
    min-height: 0;
    padding: 24px 16px;
    gap: 24px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(4) {
    height: 208px;
  }

  .service-card:nth-child(3) {
    height: 188px;
  }

  .service-card__icon {
    width: 64px;
    height: 64px;
  }

  .service-card__icon img {
    width: 32.915px;
    height: 32.915px;
  }

  .service-card__body {
    gap: 12px;
  }

  .service-card__title {
    font-size: 16px;
    line-height: 1.25;
  }

  .service-card__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .projects {
    gap: 0;
    padding: 64px 16px;
  }

  .projects__links {
    flex-wrap: nowrap;
    gap: 24px;
    width: 358px;
    padding-top: 0;
    overflow: visible;
  }

  .projects__header,
  .projects__heading,
  .projects__title {
    width: 358px;
  }

  .projects__header {
    align-items: flex-start;
    gap: 16px;
    min-height: 119px;
    margin-bottom: 16px;
  }

  .projects__heading {
    gap: 8px;
    width: 358px;
    min-height: 51px;
  }

  .projects__title {
    width: 221px;
    font-size: 20px;
    line-height: 1.25;
  }

  .projects__tab {
    flex: 0 0 auto;
  }

  .projects__tab-label {
    white-space: nowrap;
  }

  .projects__cards {
    flex-direction: column;
    gap: 16px;
    width: 358px;
    height: 1244px;
  }

  .project-card {
    flex: 0 0 auto;
    width: 358px;
    height: 404px;
  }

  .project-card__image-wrap {
    height: 280px;
  }

  .project-card__arrows {
    width: 358px;
    padding: 0 16px;
  }

  .project-card__body {
    gap: 16px;
    padding-top: 16px;
  }

  .project-card__heading {
    gap: 8px;
  }

  .project-card__title {
    font-size: 16px;
    line-height: 1.25;
  }

  .project-card__description,
  .project-card__link {
    font-size: 14px;
    line-height: 1.4;
  }

  .projects__cards > .project-card:nth-child(4) {
    display: none;
  }

  .projects__more,
  .button--ghost-dark {
    width: 100%;
    min-height: 40px;
    height: 40px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
  }

  .projects__footer {
    margin-top: 32px;
  }

  .banner {
    min-height: 331px;
  }

  .banner__bg {
    width: 390px;
    height: 331px;
  }

  .banner__bg-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
  }

  .banner__bg::after {
    background: rgba(0, 0, 0, 0.68);
  }

  .banner__bg-layer {
    top: 0;
    left: -176px;
    width: 882px;
    height: 331px;
    transform: none;
    background: linear-gradient(-72.375923deg, rgba(15, 16, 65, 0.4) 26.604%, rgba(15, 16, 65, 0) 50.357%);
  }

  .banner__text {
    gap: 32px;
    width: 390px;
    height: 331px;
    padding: 64px 16px;
  }

  .banner__copy,
  .banner__title,
  .banner__lead {
    width: 358px;
  }

  .banner__copy {
    gap: 16px;
    height: 131px;
  }

  .banner__title {
    font-size: 20px;
    line-height: 1.25;
  }

  .banner__title br {
    display: none;
  }

  .banner__lead {
    font-size: 14px;
    line-height: 1.4;
  }

  .banner__button {
    width: 358px;
    min-height: 40px;
    height: 40px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
  }

  .process {
    gap: 40px;
    padding: 64px 16px;
    min-height: 1124px;
    box-sizing: border-box;
  }

  .process__top {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    width: 358px;
    margin: 0;
  }

  .process__heading {
    gap: 8px;
    width: 358px;
    min-height: 76px;
  }

  .process__cards {
    align-items: flex-start;
  }

  .process__title {
    width: 358px;
    font-size: 20px;
    line-height: 1.25;
  }

  .process__cards--top,
  .process__cards--bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 358px;
    margin: 0;
  }

  .process-card {
    width: 358px;
    min-width: 358px;
    min-height: 0;
    height: 144px;
    padding: 16px;
    box-sizing: border-box;
  }

  .process-card__bg {
    width: 358px;
    height: 144px;
  }

  .process-card__icon {
    top: -16px;
    left: 16px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: var(--color-slate-50);
    outline: 1px solid #ffbf43;
    outline-offset: -0.5px;
  }

  .process-card__icon img {
    width: 32.915px;
    height: 32.915px;
  }

  .process-card__heading {
    gap: 8px;
  }

  .process-card__heading-stack {
    gap: 0;
  }

  .process-card__title {
    font-size: 16px;
    line-height: 1.25;
  }

  .process-card__number {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .process-card__divider {
    width: 80px;
    height: 3px;
  }

  .process-card__text {
    font-size: 0;
    line-height: 0;
    color: transparent;
  }

  .process-card__text::before {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-slate-500);
  }

  .process__cards--top .process-card:first-child .process-card__text::before {
    content: "Обговорюємо завдання та оцінюємо обсяг";
  }

  .process__cards--top .process-card:nth-child(2) .process-card__text::before {
    content: "Готуємо детальний план роботи та бюджет";
  }

  .process__cards--bottom .process-card:first-child .process-card__text::before {
    content: "Фото та відео з об'єкта на кожному етапі";
  }

  .process__cards--bottom .process-card:nth-child(2) .process-card__text::before {
    content: "Щоденний нагляд за якістю та виконанням";
  }

  .process__cards--bottom .process-card:nth-child(3) .process-card__text::before {
    content: "Перевірка якості та здача об’єкта замовнику";
  }

  .advantages {
    gap: 32px;
    padding: 64px 16px;
    min-height: 747px;
    box-sizing: border-box;
  }

  .advantages__title-block {
    gap: 8px;
    width: 358px;
    min-height: 51px;
  }

  .advantages__title {
    width: 358px;
    font-size: 20px;
    line-height: 1.25;
  }

  .advantages__cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 358px;
    height: 536px;
  }

  .advantages__row,
  .advantages__row--bottom {
    display: contents;
  }

  .advantage-item,
  .advantage-item--bottom {
    flex: 0 0 auto;
    gap: 16px;
    width: 358px;
  }

  .advantages__row:first-child .advantage-item:nth-child(1),
  .advantages__row:first-child .advantage-item:nth-child(2),
  .advantages__row--bottom .advantage-item--bottom:first-child {
    min-height: 96px;
  }

  .advantages__row:first-child .advantage-item:nth-child(3) {
    min-height: 76px;
  }

  .advantages__row--bottom .advantage-item--bottom:last-child {
    min-height: 76px;
    width: 342px;
  }

  .advantage-item__text-wrap {
    width: 100%;
    padding-left: 75px;
  }

  .advantage-item__heading {
    flex-wrap: nowrap;
    row-gap: 0;
    align-items: center;
  }

  .advantages__cards .advantage-item:nth-child(3) .advantage-item__heading {
    align-items: flex-start;
  }

  .advantage-item__title {
    font-size: 16px;
    line-height: 1.25;
  }

  .advantage-item__text {
    font-size: 0;
    line-height: 0;
    color: transparent;
  }

  .advantage-item__text::before {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-slate-500);
    white-space: pre-line;
  }

  .advantages__row:first-child .advantage-item:nth-child(1) .advantage-item__text::before {
    content: "Ми допомагаємо оптимально розподілити\A кошти на ремонт та уникнути\A непередбачених витрат";
  }

  .advantages__row:first-child .advantage-item:nth-child(2) .advantage-item__text::before {
    content: "Регулярні звіти з фотографіями робіт\A на кожному етапі для повного контролю\A процесу";
  }

  .advantages__row:first-child .advantage-item:nth-child(3) .advantage-item__text::before {
    content: "Чіткі умови співпраці та прозорі\A розрахунки, без прихованих платежів";
  }

  .advantages__row--bottom .advantage-item--bottom:first-child .advantage-item__text::before {
    content: "Ви завжди маєте контактну особу, яка\A координує всі роботи та відповідає\A на питання";
  }

  .advantages__row--bottom .advantage-item--bottom:last-child .advantage-item__text::before {
    content: "Ми надаємо офіційну гарантію на всі\A виконані роботи та матеріали";
  }

  .reviews {
    gap: 32px;
    padding: 64px 16px;
    min-height: 727px;
    box-sizing: border-box;
  }

  .reviews__heading {
    gap: 8px;
    width: 358px;
    min-height: 51px;
  }

  .reviews__title {
    width: 224px;
    font-size: 20px;
    line-height: 1.25;
  }

  .reviews__heading-row {
    width: 358px;
    min-height: 25px;
  }

  .reviews__heading-row > .reviews__stepper,
  .reviews__arrows--tablet {
    display: none;
  }

  .reviews__slider {
    gap: 32px;
    width: 358px;
  }

  .reviews__viewport {
    width: 358px;
    height: 452px;
  }

  .reviews__slide {
    display: flex;
    flex: 0 0 358px;
    width: 358px;
    height: 452px;
    gap: 0;
  }

  .reviews__slide .review-card:last-child {
    display: none;
  }

  .review-card {
    box-sizing: border-box;
    flex: 0 0 358px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    align-self: stretch;
    width: 358px;
    height: 452px;
    min-height: 452px;
    padding: 16px;
  }

  .review-card__content {
    gap: 16px;
    width: 100%;
  }

  .reviews__slide .review-card:first-child .review-card__title {
    font-size: 0;
    line-height: 0;
    color: transparent;
  }

  .reviews__slide .review-card:first-child .review-card__title::before {
    content: "Ремонт двокімнатної квартири\A з нуля";
    display: block;
    font-size: 16px;
    line-height: 1.25;
    color: var(--color-slate-700);
    white-space: pre-line;
  }

  .review-card__rating {
    gap: 8px;
  }

  .reviews__slide .review-card:first-child .review-card__text {
    font-size: 0;
    line-height: 0;
    color: transparent;
  }

  .reviews__slide .review-card:first-child .review-card__text::before {
    content: "“Рівень виконання перевищив очікування. Продумано кожен етап, ідеальна якість робіт та сервісу. Рекомендую!”";
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-slate-500);
  }

  .review-card__media {
    position: relative;
    flex: 0 0 auto;
    width: 326px;
    min-height: 0;
    height: 220px;
  }

  .review-card__media img {
    position: absolute;
    top: calc(50% + 19px);
    left: calc(50% + 0.5px);
    width: 325px;
    height: 298px;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: fill;
  }

  .review-card__media--bathroom img {
    top: 50%;
    left: 50%;
    width: 382px;
    height: 350px;
    transform: translate(-50%, -50%);
  }

  .reviews__stepper--tablet {
    display: inline-flex;
    align-items: center;
    align-self: center;
    width: 285.5px;
  }

  .reviews__slider > .reviews__arrows {
    display: flex;
    width: 358px;
    justify-content: space-between;
  }

  .reviews__stepper--tablet .reviews__stepper-line,
  .reviews__stepper--tablet .reviews__stepper-line img {
    width: 141.5px;
    height: 1px;
  }

  .faq {
    padding: 0;
    min-height: 1051px;
  }

  .faq__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 390px;
    height: 380px;
    border-radius: 0;
  }

  .faq__section {
    width: 390px;
    height: 1051px;
  }

  .faq__media img {
    top: -47.37%;
    left: -45.44%;
    width: 220.26%;
    max-width: none;
    height: 150.62%;
  }

  .faq__panel {
    position: absolute;
    top: 240px;
    left: 16px;
    right: auto;
    z-index: 1;
    width: 358px;
    min-height: 747px;
    height: auto;
    gap: 32px;
    padding: 24px 16px;
    box-sizing: border-box;
    transform: none;
  }

  .faq__heading {
    gap: 8px;
    width: 326px;
  }

  .faq__title {
    width: 326px;
    font-size: 20px;
    line-height: 1.25;
  }

  .faq__items {
    width: 326px;
    min-height: 616px;
    height: auto;
  }

  .faq-item {
    width: 326px;
    min-height: 64px;
    height: auto;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .faq-item--open {
    width: 326px;
    min-height: 156px;
    height: auto;
  }

  .faq-item:not(.faq-item--open):nth-child(2) {
    min-height: 104px;
  }

  .faq-item:not(.faq-item--open):nth-child(4) {
    min-height: 84px;
  }

  .faq-item__header {
    align-items: center;
  }

  .faq-item:nth-child(2) .faq-item__header,
  .faq-item:nth-child(4) .faq-item__header {
    align-items: flex-start;
  }

  .faq-item__index {
    font-size: 32px;
    line-height: 1.25;
  }

  .faq-item__question {
    font-size: 16px;
    line-height: 1.25;
  }

  .faq-item__toggle {
    width: 24px;
    height: 24px;
  }

  .contact {
    gap: 32px;
    padding: 64px 16px 40px;
    min-height: auto;
    box-sizing: border-box;
  }

  .contact__title-block {
    gap: 8px;
    width: 358px;
    min-height: 76px;
  }

  .contact__title {
    width: 358px;
    font-size: 20px;
    line-height: 1.25;
  }

  .contact__content {
    flex-direction: column;
    gap: 32px;
    width: 358px;
    height: auto;
  }

  .contact__list {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 16px;
    width: 358px;
    height: 128px;
  }

  .contact-item {
    gap: 16px;
    align-items: center;
    width: 358px;
    height: 56px;
  }

  .contact-item__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .contact-item__icon img {
    display: block;
    width: 28.8px;
    height: 28.8px;
  }

  .contact-item__value {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }

  .contact-item__content {
    gap: 8px;
    width: 286px;
  }

  .contact-item__content--address {
    width: 286px;
    white-space: nowrap;
  }

  .contact-item__content--address .contact-item__value {
    font-size: 0;
    line-height: 0;
  }

  .contact-item__content--address .contact-item__value::after {
    content: "вул. Зарічанська, 18А";
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-slate-700);
  }

  .contact-item__content--address .contact-item__value br {
    display: none;
  }

  .contact__form-card {
    flex: 0 0 auto;
    gap: 32px;
    width: 358px;
    height: auto;
    min-height: 348px;
    padding: 24px 16px;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact__form-title {
    width: 326px;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
  }

  .contact-form {
    gap: 32px;
    width: 326px;
    align-items: flex-start;
  }

  .contact-form__fields {
    gap: 24px;
    width: 326px;
    height: 156px;
  }

  .contact-form__field {
    gap: 8px;
    width: 326px;
    height: 66px;
  }

  .contact-form__label {
    font-size: 13px;
    line-height: 1.4;
  }

  .contact-form__input {
    width: 326px;
    height: 40px;
    font-size: 14px;
    line-height: 1.4;
  }

  .contact-form__submit {
    width: 326px;
    min-height: 40px;
    height: 40px;
  }

  .project-popup__viewport {
    padding: 0;
  }

  .project-popup__dialog {
    gap: 24px;
    width: 390px;
    min-height: 1324px;
    max-width: none;
    padding: 64px 16px 24px;
    border-radius: var(--radius-m);
  }

  .project-popup__general,
  .project-popup__description,
  .project-popup__results,
  .project-popup__gallery,
  .project-popup__general-heading,
  .project-popup__general-content,
  .project-popup__text-block {
    width: 358px;
  }

  .project-popup__general {
    gap: 16px;
    height: 434px;
  }

  .project-popup__general-heading {
    gap: 12px;
    height: 114px;
    padding-bottom: 12px;
  }

  .project-popup__title {
    width: 358px;
    font-size: 20px;
    line-height: 1.25;
  }

  .project-popup__label {
    width: 358px;
    font-size: 14px;
    line-height: 1.4;
  }

  .project-popup__general-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    height: 304px;
  }

  .project-popup__cover {
    flex: 0 0 auto;
    width: 358px;
    height: 152px;
  }

  .project-popup__cover img {
    top: -6px;
    left: 0;
    width: 358px;
    height: 178px;
    transform: none;
  }

  .project-popup__details-card {
    gap: 16px;
    flex: 0 0 auto;
    width: 358px;
    height: 136px;
    padding: 16px;
  }

  .project-popup__details-title,
  .project-popup__section-title {
    font-size: 16px;
  }

  .project-popup__details-list {
    gap: 4px;
    font-size: 14px;
    line-height: 1.4;
  }

  .project-popup__details-illustration {
    top: 9.4px;
    right: -0.32px;
    width: 135.949px;
    height: 123.633px;
  }

  .project-popup__description,
  .project-popup__results {
    gap: 12px;
    height: 180px;
  }

  .project-popup__text-block {
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  .project-popup__gallery {
    gap: 12px;
    width: 358px;
    height: 306px;
  }

  .project-popup__gallery-frame {
    width: 358px;
    height: 230px;
  }

  .project-popup__gallery-bg img {
    left: 0;
    top: -14px;
    width: 358px;
    height: 244px;
    transform: none;
  }

  .project-popup__gallery-arrows {
    display: none;
  }

  .project-popup__stepper {
    width: 285.5px;
    height: 32px;
  }

  .project-popup__pagination {
    width: 358px;
    height: 40px;
    padding-top: 16px;
  }

  .project-popup__pagination-link {
    gap: 0;
    font-size: 0;
    line-height: 0;
  }

  .project-popup__pagination-link span:not(.project-popup__pagination-arrow) {
    display: none;
  }

  .project-popup__close {
    top: 16px;
    right: 16px;
  }

  .site-footer {
    padding: 32px 16px 16px;
    gap: 32px;
    min-height: 574px;
    box-sizing: border-box;
  }

  .site-footer__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 358px;
    gap: 32px;
  }

  .site-footer__logo {
    width: 233px;
    height: 42px;
  }

  .site-footer__content {
    position: relative;
    display: block;
    width: 358px;
    height: 309px;
  }

  .site-footer__content::before {
    content: "";
    position: absolute;
    top: 144px;
    left: 0;
    width: 358px;
    height: 1px;
    background: var(--color-slate-600);
  }

  .site-footer__links {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 358px;
    height: 112px;
    gap: 16px;
  }

  .site-footer__links-column {
    width: 171px;
    gap: 12px;
  }

  .site-footer__links-column:first-child {
    height: 112px;
  }

  .site-footer__links-column:last-child {
    height: 80px;
  }

  .site-footer__links-column:last-child a[href="#faq"] {
    font-size: 0;
    line-height: 0;
  }

  .site-footer__links-column:last-child a[href="#faq"]::after {
    content: "Поширені питання";
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-slate-50);
  }

  .site-footer__links-column a,
  .site-footer__contact span {
    font-size: 14px;
  }

  .site-footer__contacts {
    position: absolute;
    top: 177px;
    left: 0;
    width: 358px;
    height: 132px;
    gap: 12px;
  }

  .site-footer__contact {
    align-items: center;
    width: 358px;
    min-height: 24px;
  }

  .site-footer__contact img {
    width: 18px;
    height: 18px;
  }

  .site-footer__social {
    width: 358px;
    justify-content: center;
    gap: 8px;
  }

  .site-footer__social-link {
    width: 32px;
    height: 32px;
  }

  .site-footer__social-link img {
    width: 24px;
    height: 24px;
  }

  .site-footer__divider,
  .site-footer__divider img {
    width: 358px;
    height: 1px;
  }

  .site-footer__copyright {
    width: 358px;
    text-align: center;
    font-size: 12px;
    line-height: 1.35;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 766px) {
  .process {
    align-items: center;
  }

  .process__top {
    align-items: center;
    width: min(358px, 100%);
    margin: 0 auto;
  }

  .process__heading,
  .process__title {
    width: 100%;
  }

  .process__heading {
    align-self: stretch;
  }

  .process__cards--top,
  .process__cards--bottom {
    align-items: center;
    width: min(358px, 100%);
    margin: 0 auto;
  }

  .process-card,
  .process__cards--bottom .process-card:last-child {
    width: 100%;
    min-width: 0;
    min-height: 144px;
    height: auto;
  }

  .process-card__bg {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }
}

@media (max-width: 1280px) {
  .hero__bg {
    left: 0;
    width: 100%;
    transform: none;
  }

  .hero__bg-overlay,
  .hero__bg-layer {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero__bg-layer {
    right: auto;
  }

  .hero__bg-png {
    left: 0;
    width: 100%;
    transform: none;
  }

  .banner__bg {
    left: 0;
    width: 100%;
    transform: none;
  }

  .banner__bg-layer {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
}
