body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

@media (min-width: 1200px) {
  body {
    font-size: 12px;
  }
}

body.home .container-width,
body.home .full-width .ubermenu-nav,
body.home .container,
body.home .row {
  max-width: 100% !important;
}

.header-bg-color {
  background-color: transparent !important;
}

.nav > li.has-icon > a > i {
  font-size: 30px;
  color: #fff;
}

.header-shadow .header-wrapper,
.header-wrapper.stuck,
.layout-shadow #wrapper {
  box-shadow: none !important;
}

.off-canvas-right .mfp-content,
.off-canvas-left .mfp-content {
  width: 500px;
  background-color: #333;
  padding: 100px 100px;
}

.off-canvas .sidebar-menu {
  padding: 0;
}

.off-canvas:not(.off-canvas-center) .nav-vertical li {
  border: 0;
}

.off-canvas:not(.off-canvas-center) .nav-vertical li > a {
  font-size: 1.5em;
  color: #fff;
  text-decoration: none;
  text-transform: none;
  font-weight: 400;
  padding-left: 0;
  padding-right: 0;
}

#header,
.sticky-jump .stuck:not(.ux-no-animation) {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.8)
  ) !important;
}

#project-list {
  padding-top: 30px;
}

/* advantage */
.advantage {
  background-color: rgba(27, 27, 27, 1);
  padding: 12em 5em;
  color: #ffff;
}

.advantage__container {
}

.advantage__title {
  margin-bottom: 3em;
  text-transform: uppercase;
  font-size: 2.4em;
  font-weight: 300;
  letter-spacing: 3px;
  color: #ffff;
}

.advantage__list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  list-style: none;
}

.advantage__item {
  padding: 0 50px;
  border-right: 1px solid rgba(215, 182, 150, 0.6);
  margin: 0;
}

.advantage__item:first-child {
  padding-left: 0;
}

.advantage__item:last-child {
  border: none;
  padding-right: 0;
}

.advantage__item-title {
  text-transform: uppercase;
  font-size: 1.5em;
  margin-bottom: 1.8em;
  padding-bottom: 0.7em;
  font-weight: 400;
  color: #635f5f;
  transition: all ease-in-out 0.5s;
}

.advantage__item:hover .advantage__item-title {
  color: #ffffff;
}

.advantage__item-subtitle {
  line-height: 150%;
  font-weight: 100;
  font-size: 1em;
  padding-bottom: 2em;
}

/* video */
.video-presentation {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
  background: linear-gradient(
    180deg,
    rgb(27, 27, 27) 0%,
    rgba(27, 27, 27, 0.95) 50%,
    rgba(27, 27, 27, 0.8) 100%
  );
  overflow: hidden;
}

.video-presentation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.video-presentation__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-presentation__container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
}

video {
  max-width: 100%;
  max-height: 100%;
}

.video-presentation__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  filter: contrast(1.08) saturate(1.1) brightness(0.95);
}

.video-presentation__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  opacity: 1;
  pointer-events: all;
  z-index: 5;
}

.video-presentation__play-button {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(20, 20, 20, 0.9) 100%
  );
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 40px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin: 0;
  line-height: 1;
}

.video-presentation__play-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.video-presentation__play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  transform: translate(-50%, -50%);
  animation: pulse-soft 3s ease-in-out infinite;
  z-index: -1;
}

.video-presentation__play-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

@keyframes pulse-soft {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

.projects-card-section {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: rgba(27, 27, 27, 1);
  color: #fff;
  line-height: 1.5;
  padding-bottom: 30px;
}

/* Container для адаптивности */
.projects-card-container {
  width: 95vw;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero section */
.projects-header {
  position: relative;
  height: 50vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)),
    url("https://placehold.co/1920x1080");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.projects-header__content {
  text-align: center;
  padding: 0 20px;
  max-width: 1000px;
}

.projects-header__subtitle {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.projects-header__title {
  font-size: 72px;
  font-weight: 200;
  margin-bottom: 30px;
  line-height: 1;
  color: #fff;
}

.projects-header__description {
  font-size: 22px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Фильтры для проектов */
.projects-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-button {
  margin: 0;
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid #333;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.filter-button:hover {
  border-color: #fff;
  color: #fff;
}

.filter-button.active {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

/* Галерея проектов - изменена на 2 колонки */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.project-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.project-card:hover .project-card__image {
  transform: scale(1.05);
}

.project-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.6) 60%,
    transparent
  );
  transition: all 0.3s ease;
}

.project-card:hover .project-card__overlay {
  padding-bottom: 40px;
}

.project-card__tag {
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.project-card__title {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #fff;
}

.project-card__location {
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 5px;
}

.location-icon {
  width: 14px;
  height: 14px;
}

/* Стили для модального окна */
.project-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  background-color: #1b1b1b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.4s ease forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image:hover {
  transform: scale(1.05);
}

.image-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.thumbnail {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  transform: translateY(-3px);
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta-label {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.info-description {
  color: #ddd;
  font-size: 15px;
  line-height: 1.7;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 15px;
}

.info-description h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #fff;
}

.info-description p {
  margin-bottom: 15px;
}

.info-description ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.info-description li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.info-description li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
}

/* Адаптивные стили для планшетов */
@media screen and (max-width: 992px) {
  .projects-header__title {
    font-size: 56px;
  }

  .projects-header__description {
    font-size: 18px;
  }

  .projects-filter {
    gap: 10px;
  }

  .filter-button {
    padding: 10px 18px;
    font-size: 13px;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .info-meta {
    flex-wrap: wrap;
  }

  .meta-item {
    flex-basis: calc(33.33% - 15px);
  }
}

/* Адаптивные стили для мобильных устройств */
@media screen and (max-width: 768px) {
  .projects-header {
    height: 60vh;
    margin-bottom: 50px;
  }

  .projects-header__subtitle {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .projects-header__title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .projects-header__description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .projects-filter {
    gap: 8px;
    margin-bottom: 40px;
  }

  .filter-button {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Изменение галереи на 1 колонку для мобильных */
  .projects-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card {
    height: 350px;
  }

  .project-card__title {
    font-size: 20px;
  }

  .main-image-container {
    height: 300px;
  }

  .info-meta {
    flex-direction: column;
    gap: 15px;
  }

  .meta-item {
    flex-basis: 100%;
  }
}

/* Стили для маленьких мобильных устройств */
@media screen and (max-width: 480px) {
  .projects-header {
    height: 50vh;
  }

  .projects-header__title {
    font-size: 32px;
  }

  .projects-filter {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .filter-button {
    width: 80%;
    text-align: center;
  }

  .project-card {
    height: 280px;
  }

  .project-card__overlay {
    padding: 20px 15px;
  }

  .project-card__tag {
    font-size: 10px;
  }

  .project-card__title {
    font-size: 18px;
  }

  .project-card__location {
    font-size: 12px;
  }

  .modal-content {
    width: 95%;
    margin: 30px auto;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .modal-body {
    padding: 20px;
  }
}

/* price */
/* Премиальные стили для секции цен на тёмном фоне */
.price {
  background-color: rgba(18, 18, 20, 1);
  background-image: linear-gradient(
    170deg,
    rgba(30, 30, 35, 0.7) 0%,
    rgba(12, 12, 14, 1) 100%
  );
  color: #fff;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  padding: 120px 0 100px;
  position: relative;
  font-weight: 300;
  overflow: hidden;
}

.price__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.price__grid-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08) 50%,
    transparent
  );
  width: 100%;
  height: 1px;
}

.price__grid-line:nth-child(1) {
  top: 20%;
}

.price__grid-line:nth-child(2) {
  top: 40%;
}

.price__grid-line:nth-child(3) {
  top: 60%;
}

.price__grid-line:nth-child(4) {
  top: 80%;
}

.price__container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 40px;
}

.price__main {
  margin: 0 0 70px;
  position: relative;
}

.price__title {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2.5em;
  margin-bottom: 25px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: #fff;
}

.price__title-accent {
  position: relative;
  font-weight: 600;
  color: #fff;
  z-index: 1;
}

.price__title-accent::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  z-index: -1;
}

.price__subtitle {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 70%;
}

.price__tabs {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.price__tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1em;
  padding: 15px 30px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.price__tab:hover {
  color: #fff;
}

.price__tab--active {
  color: #fff;
  font-weight: 500;
}

.price__tab--active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
}

.price__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 80px;
  position: relative;
}

.price__block {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 3px;
  background: rgba(30, 30, 35, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.4s ease;
  min-height: 650px;
}

.price__block:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(38, 38, 45, 0.6);
}

.price__block--highlighted {
  background: linear-gradient(
    170deg,
    rgba(50, 50, 60, 0.6),
    rgba(38, 38, 45, 0.8)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price__block--highlighted:hover {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 255, 255, 0.08);
}

.price__block-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 15px;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  font-weight: 400;
}

.price__block-badge--featured {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08)
  );
  color: #fff;
  font-weight: 500;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.price__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

.price__block-title {
  text-transform: uppercase;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  color: #fff;
}

.price__block-subtitle {
  font-size: 0.95em;
  font-weight: 300;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  flex-grow: 0;
}

.price__block-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 30px;
  flex-grow: 1;
}

.price__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price__feature-icon {
  color: #69f0ae;
  font-size: 1em;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
}

.price__feature-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95em;
  line-height: 1.4;
}

.price__block-price {
  font-size: 2.2em;
  font-weight: 600;
  margin: 15px 0 25px;
  color: #fff;
  display: block;
}

.price__price-unit {
  font-size: 0.5em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 3px;
}

.price__block-details {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 15px;
  font-size: 0.85em;
  cursor: pointer;
  margin: 10px 0 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 2px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.price__block-details:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.price__block-details .details-icon {
  font-size: 1.2em;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.price__block-list-wrapper {
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease;
}

.price__block-list-wrapper.open {
  height: auto;
}

.price__block-list {
  display: flex;
  flex-direction: column;
  margin: 0 0 25px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.price__block-item {
  font-size: 0.85em;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.price__block-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}

.price__block-p {
  font-weight: 500;
  margin: 15px 0 10px;
  color: #fff;
  font-size: 1em;
}

.price__block-lower {
  margin-top: auto;
  padding-top: 20px;
}

.price__block-button {
  font-size: 0.95em;
  font-weight: 500;
  padding: 15px 30px;
  color: #000;
  background: #fff;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
}

.price__block-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(255, 255, 255, 0.1);
}

.price__block-button .btn-icon {
  transition: transform 0.3s ease;
}

.price__block-button:hover .btn-icon {
  transform: translateX(5px);
}

.price__block-button--highlighted {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3sease;
  transition: all 0.3sease;
}

.price__block-button--highlighted:hover {
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(223, 249, 236, 0.4);
}

.price__block-text {
  display: block;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Секция процесса работы */
.price__process {
  margin: 50px 0 80px;
  padding: 50px;
  background: rgba(30, 30, 35, 0.4);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.price__process-title {
  text-align: center;
  font-size: 1.8em;
  font-weight: 400;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.price__step {
  position: relative;
  padding: 30px;
  background: rgba(38, 38, 45, 0.6);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
}

.price__step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

.price__step::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.price__step:last-child::after {
  display: none;
}

.price__step-number {
  font-size: 3em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.price__step-title {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.price__step-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
  line-height: 1.6;
}

/* CTA секция */
.price__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background: linear-gradient(
    90deg,
    rgba(50, 50, 60, 0.6),
    rgba(38, 38, 45, 0.8)
  );
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.price__cta-title {
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 10px;
}

.price__cta-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1em;
  line-height: 1.6;
  max-width: 600px;
}

.price__cta-button {
  font-size: 1em;
  font-weight: 500;
  padding: 15px 30px;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3sease;
  transition: all 0.3sease;
}

.price__cta-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(223, 233, 249, 0.4);
}

.price__cta-button .btn-icon {
  transition: transform 0.3s ease;
}

.price__cta-button:hover .btn-icon {
  transform: translateX(5px);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1200px) {
  .price__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .price__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .price__step::after {
    display: none;
  }

  .price__subtitle {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .price__list {
    grid-template-columns: 1fr;
  }

  .price__cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .price__cta-button {
    width: 100%;
    justify-content: center;
  }

  .price__tabs {
    flex-direction: column;
    border-bottom: none;
  }

  .price__tab {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .price__tab--active::after {
    width: 50px;
    left: 30px;
  }

  .price__steps {
    grid-template-columns: 1fr;
  }

  .price {
    padding: 80px 0 60px;
  }

  .price__container {
    padding: 0 5px;
  }

  .price__process {
    padding: 30px 20px;
  }

  .price__block {
    padding: 30px;
  }
}

/* compare */
.compare {
  margin: 100px 0 0 0; /* Убираем нижний отступ - только верхний 100px */
  position: relative;
  width: 100%;
}

/* Стили заголовка */
.compare__title {
  font-size: 2.5em;
  font-weight: 700;
  margin: 1.5em auto;
  color: #333;
  text-align: center;
}

/* Стили для описания */
.compare__description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.compare__container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Соотношение сторон 16:9 */
  overflow: hidden;
}

.before,
.after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block; /* Убирает любые возможные отступы под изображением */
}

/** FAQ **/
.faq {
  background-color: rgb(27, 27, 27);
  backdrop-filter: blur(5px);
  color: white;
  padding-top: 8em;
  padding-bottom: 5em;
}

.faq__subtitle {
  font-size: 2em;
  line-height: 94.5%;
  font-weight: 300;
  margin-bottom: 33px;
}

.faq__discr {
  font-size: 1.1em;
  line-height: 156.5%;
  margin-bottom: 75px;
}

.faq__item {
  margin-bottom: 5px;
}

.faq__item-info {
  visibility: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
}

.faq__item-info.ac-active {
  visibility: visible;
  max-height: 1000px;
}

.faq__item-title {
  margin-bottom: 10px;
}

.faq__item-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 2em 1em;
  border: none;
  border-radius: 8px;
  background: inherit;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  font-size: 1em;
  transition: transform 0.3s ease;
}

.faq__item-button:hover {
  transform: scale(1.01); /* Увеличение карточки */
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); /* Добавление тени при наведении */
}

.faq__item-btn-rotate {
  transition: transform 0.3s ease;
  transform: rotate(90deg); /* Поворачиваем иконку на 90 градусов */
}

.faq__item-text {
  text-align: left;
  max-width: 75%;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}

.faq__item-btn {
  width: 25px;
  height: 25px;
}

.faq__item-discr {
  min-height: 248px;
  font-size: 1em;
  line-height: 180%;
  padding: 2em 2em;
  border-radius: 8px;
  background: inherit;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.faq__item-discr *:last-child {
  margin-bottom: 0;
}

.faq__questions-block {
  padding: 56px 0 43px 60px;
  border-radius: 16px;
  background: rgba(93, 85, 85, 0.05);
  backdrop-filter: blur(8.5px);
  margin-bottom: 50px;
}

.faq__questions-title {
  font-size: 2.25em;
  line-height: 43px;
  margin-bottom: 8px;
}

.faq__qustions-subtitle {
  color: #fff;
  font-size: 1.1em;
  line-height: 32px;
  margin-bottom: 24px;
}

.faq__questions-form {
  max-width: 600px;
  padding-right: 45px;
}

.faq__questions-input {
  padding: 15px;
  color: white;
  font-size: 1em;
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 14px;
  background: rgb(36, 36, 38);
  box-shadow: 0px 4px 41px 0px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  margin-bottom: 16px;
}

.faq__questions-text {
  font-size: 1.1em;
  line-height: 3em;
}

.faq__questions-area {
  padding: 15px;
  color: white;
  font-size: 1em;
  width: 100%;
  border-radius: 14px;
  background: var(--white-white-10, rgba(255, 255, 255, 0.1));
  box-shadow: 0px 4px 41px 0px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  margin-bottom: 48px;
}

.faq__questions-submit {
  border: none;
  color: #534e4e;
  font-size: 1.25em;
  width: 40%;
  height: 63.078px;
  border-radius: 14px;
  background: #ffac30;
  transition: all 0.2s ease-in-out;
}

.faq__questions-submit:hover {
  background: #fa9c10;
  color: #fff;
  border: 2px solid #fff;
}

.faq__questions-submit:focus {
  background: #fa9c10;
  color: #fff;
  border: 2px solid #fff;
}

.faq__questions-submit:active {
  background: #fa9c10;
  color: #fff;
  border: 2px solid #fff;
}

.faq__slogan {
  color: #fff;
  text-align: center;
  font-size: 1.6em;
  line-height: 2em;
  text-transform: uppercase;
  padding-left: 40px;
}

ul.faq__list {
  list-style: none;
}

.faq.container {
  padding: 0 200px;
  padding-top: 8em;
  padding-bottom: 5em;
}

.smi {
  background-color: rgba(27, 27, 27, 1);
  color: rgba(216, 216, 216, 1);
  padding: 150px 50px;
}

.smi__title {
  font-size: 2.5em;
  margin-bottom: 70px;
  font-weight: 600;
  color: #fff;
}
.smi__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}

.smi__item {
  width: 20vw;
  margin-bottom: 80px;
}
.smi__item-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 20vw;
  margin-bottom: 25px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  transition: all ease-in-out 0.5s;
}

.smi__item-link svg {
  width: 10vw;
  height: 10vh;
}

/* Эффект при наведении */
.smi__item:hover .smi__item-link {
  transform: scale(1.02); /* Увеличение карточки */
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); /* Добавление тени при наведении */
}

.smi__item:hover .smi__item-text {
  color: rgb(255, 255, 255);
}

.smi__item-img {
  width: 100%;
  padding: 100px;
  border: 1px solid #ffff;
  margin-bottom: 30px;
}
.smi__item-text {
  color: rgba(216, 216, 216, 1);
  font-size: 0.7em;
  font-weight: 100;
  transition: all ease-in-out 0.5s;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

video {
  max-width: 100%;
  max-height: 100%;
}

.executives {
  background: rgba(27, 27, 27, 1);
  padding: 8rem 0;
  position: relative;
}

.arch-heading {
  color: #e3e3e3;
  text-transform: uppercase;
  margin: 0 2em 3em;
  position: relative;
}

.dual-leadership {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8em;
  max-width: 1440px;
  margin: 0 auto;
}

.architect-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-bottom: 2px solid #2a2a2a;
  padding-bottom: 3rem;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.architect-profile:hover {
  border-color: #7a7a7a;
}

.profile-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.geometric-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 60%,
    rgba(255, 255, 255, 0.03) 60.2%,
    rgba(255, 255, 255, 0.03) 70%,
    transparent 70.2%
  );
  mix-blend-mode: soft-light;
}

.arch-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(110%) brightness(90%);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.architect-profile:hover .arch-portrait {
  transform: scale(1.03);
}

.profile-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.name-title {
  font:
    400 2.25rem/1.1 "Inter",
    sans-serif;
  color: #fff;
  margin: 0 0 0.5rem;
}

.role {
  font:
    600 0.9rem/1.5 "Inter",
    sans-serif;
  color: #888;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.achievement-list p {
  font-weight: 200;
  color: #ccc;
  margin: 0;
  padding-left: 1.5rem;
  border-left: 2px solid #333;
}

.arch-signature {
  font:
    400 2.5rem/1 "Syne",
    sans-serif;
  color: #444;
  margin-top: 2rem;
  align-self: end;
}

.geometric-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.6) 60%,
    transparent
  );
  transition: all 0.3s ease;
}

/* Адаптивные стили */
@media screen and (max-width: 1024px) {
  .dual-leadership {
    gap: 4em;
  }
}

@media screen and (max-width: 768px) {
  /* Сохраняем две колонки для фотографий */
  .dual-leadership {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
    padding: 0 1em;
  }

  /* Внутри каждого профиля оставляем только фотографию и название */
  .architect-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-frame {
    aspect-ratio: auto;
  }

  .profile-content {
    align-items: center;
  }

  /* Скрываем лишнее */
  .arch-signature,
  .achievement-list {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .executives {
    padding: 4rem 0;
  }

  .dual-leadership {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    padding: 0 1em;
  }

  .architect-profile {
    border: none;
    padding: 0;
  }

  .name-title {
    font-size: 1em;
  }

  .role {
    font-size: 0.7em;
  }
}

.stage {
  margin: 100px 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  background-color: #ffffff;
  color: #333333;
}

.stage__main {
  margin: 50px 50px 20px 50px;
}

.stage__title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2.3em;
  max-width: 80vw;
  margin-bottom: 20px;
  color: #222222;
}

.stage__subtitle {
  font-weight: 300;
  color: #555555;
}

.stage__container-stage {
  display: flex;
  align-items: baseline;
  padding: 50px 50px;
}

.stage__container-title {
  font-size: 2em;
  font-weight: 600;
  padding: 0 20px 0 0;
  color: #333333;
  margin-bottom: 0;
}

.stage__container-time {
  font-weight: 100;
  font-size: 0.7em;
  color: #777777;
}

.stage__block-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

.stage__block-item {
  width: 25vw;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 50px 80px 50px;
  border-right: 1px solid #eeeeee;
  margin-bottom: 0;
}

.stage__block-item:last-child {
  border-right: none;
}

.stage__block-item::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="28"><path fill="%23333" d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: -3px;
  top: 30%;
  transform: translateY(-50%);
  width: 24px;
  height: 28px;
  transition: all ease-in-out 0.3s;
}

.stage__block-item:first-child::after {
  content: none;
}

.stage__block-title {
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 15px;
  font-weight: 500;
  color: #222222;
}

.stage__block-subtitle {
  font-size: 0.7em;
  font-weight: 300;
  margin-bottom: 30px;
  color: #555555;
  line-height: 1.6;
}

.stage__block-button {
  font-size: 0.8em;
  font-weight: 400;
  padding: 10px 20px;
  color: #ffffff;
  background: #2d333e;
  box-shadow: 0px 18.62px 0px 0px rgba(255, 255, 255, 0.1) inset;
  transition: all ease-in-out 0.3s;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.stage__block-button:hover {
  transform: scale(1.01);
  background: #232731;
}

.stage-2 .stage__container-stage {
  left: 0px;
  top: 0px;
  align-items: center;
  position: absolute;
}

.stage__container.stage-2 {
  position: relative;
  background-color: #f5f5f7;
  color: #333333;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stage-2 .stage__block-item {
  padding-top: 150px;
  border-right: 1px solid #dddddd;
}

.stage-2 .stage__block-item:last-child {
  border-right: none;
}

.stage-2 .stage__block-item::after {
  top: 50%;
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="28"><path fill="%23555" d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>');
}

.stage-2 .stage__block-item:first-child::after {
  content: none;
}

.stage__block-item:hover::after {
  transform: translateY(-50%) scale(1.3);
  opacity: 0.8;
}

.stage-2 .stage__block-item::after {
  top: 50%;
  content: "";
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.stage-2 .stage__block-item:hover::after {
  transform: translateY(-50%) scale(1.3) translateX(10%);
  opacity: 0.8;
}

.stage-2 .stage__container-title {
  color: #333333;
}

.stage-2 .stage__container-time {
  color: #777777;
}

.stage-2 .stage__block-title {
  color: #222222;
}

.stage-2 .stage__block-subtitle {
  color: #555555;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
  .stage__block-list {
    flex-wrap: wrap;
  }

  .stage__block-item {
    width: 50%;
    border-bottom: 1px solid #eeeeee;
  }

  .stage-2 .stage__block-item {
    border-bottom: 1px solid #dddddd;
  }

  .stage__block-item:nth-child(even) {
    border-right: none;
  }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .stage__block-item {
    width: 100%;
    border-right: none;
  }

  .stage__title {
    font-size: 1.8em;
  }

  .stage__container-stage {
    padding: 30px 20px;
  }

  .stage__block-item {
    padding: 0 20px 60px 20px;
  }

  .stage-2 .stage__block-item {
    padding-top: 100px;
  }
}

/* Основные стили для футера */
.footer {
  border-top: 0.5px solid #a6a3a3;
  padding-top: 50px;
  background-color: rgb(27, 27, 27);
  color: #fff;
  line-height: 1.5;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.footer a {
  transition: all ease-in-out 0.4s;
}

.footer a:hover {
  color: #fff;
  transform: scale(1.005);
}

.footer__container {
  margin: 0 auto;
  padding: 0 80px;
}

/* Секция заголовка */
.footer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
}

.footer__header-left {
  width: 50%;
}

.footer__header-right {
  width: 40%;
}

.footer__title {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
  color: #fff;
}

.footer__subtitle {
  font-size: 16px;
  color: #aaa;
  font-weight: 300;
}

.footer__call-button {
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 20px 30px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-weight: normal;
  transition: all ease-in-out 0.5s;
  line-height: 1;
}

.footer__call-button:hover {
  transform: scale(1.01);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Секция контактов */
.footer__contact-section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  margin: 15px 0;
  padding: 15px 0;
}

.footer__contact-title {
  color: #aaa;
  font-size: 14px;
  font-weight: 300;
}

.footer__contact-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* Сетка сервисов */
.footer__services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin: 80px 0 60px 0;
}

.footer__service-category {
  width: 100%;
}

.footer__service-title {
  font-size: 12px;
  margin-bottom: 20px;
  color: #aaa;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__service-links {
  display: flex;
  flex-direction: column;
}

.footer__service-link {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Разделитель */
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 30px 0;
}

/* Социальные ссылки */
.footer__social-links {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 40px 0;
}

.footer__social-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social-text {
  font-size: 14px;
  color: #fff;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
}

.footer__social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer__social-icon svg path {
  transition: fill 0.3s ease;
}

.footer__social-icon:hover svg path {
  fill: #fff;
}

/* Копирайт */
.footer__copyright {
  padding: 50px 0 100px 0;
  font-size: 12px;
  color: #666;
}

.footer__copyright-text {
  margin-bottom: 5px;
}

/* Плавающие кнопки */
.footer__back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #444;
}

.devider-mobile {
  display: none;
}

.messenger-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.messenger-button {
  max-width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  transition: all var(--animation-speed) ease;
  overflow: hidden;
  position: relative;
}

.messenger-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.8s ease;
}

.messenger-button:hover::before {
  left: 100%;
}

.messenger-button--whatsapp:hover {
  background-color: #25d366;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.messenger-button--telegram:hover {
  background-color: #0088cc;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 136, 204, 0.3);
}

.messenger-button__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.testimonials-section {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.3s;
}

.testimonials-title {
  font-size: 2.3em;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  margin-bottom: 30px;
}

.testimonials-track {
  display: flex;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.testimonial-card {
  flex: 0 0 auto;
  width: calc(33.333% - 30px);
  min-width: 320px;
  margin-right: 30px;
  background-color: var(--bg-color);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 45px 40px;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.testimonial-card:hover {
  transform: translateY(-10px) translateZ(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 8em;
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.07;
  font-family: serif;
  pointer-events: none;
  z-index: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-info {
  flex: 1;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 6px;
}

.star {
  color: #ffd700;
  font-size: 1em;
  margin-right: 2px;
}

.testimonial-name {
  font-size: 1.1em;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-date {
  font-size: 0.8em;
  color: var(--text-light);
  opacity: 0.8;
  font-weight: 300;
}

.testimonial-text {
  font-size: 1em;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 15px;
  position: relative;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  z-index: 2;
  font-weight: 300;
}

.testimonial-text.truncated {
  max-height: 220px;
  overflow: hidden;
  position: relative;
}

.testimonial-text.truncated::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  pointer-events: none;
}

.read-more {
  color: var(--accent-color);
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  padding: 5px 0;
  position: relative;
  z-index: 2;
}

.read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--accent-hover);
}

.read-more:hover::after {
  transform: scaleX(1);
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.testimonials-background::before,
.testimonials-background::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
}

.testimonials-background::before {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -100px;
}

.testimonials-background::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
}

@keyframes scrollInfinite {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .testimonial-card {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-title {
    font-size: 1.8em;
  }

  .testimonials-subtitle {
    font-size: 16px;
  }

  .testimonial-card {
    width: calc(100% - 30px);
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-title {
    font-size: 1.5em;
  }

  .testimonial-card {
    padding: 30px 25px;
    min-height: 380px;
  }
}

/*  */
/* Calculator Component Styles */
/* Основные стили для калькулятора */
.calculator {
  background-color: rgba(18, 18, 20, 1);
  background-image: linear-gradient(
    170deg,
    rgba(30, 30, 35, 0.7) 0%,
    rgba(12, 12, 14, 1) 100%
  );
  color: #fff;
  padding: 6em 0;
  position: relative;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  overflow: hidden;
}

.calculator .container {
  padding: 0 200px;
}

.calculator input,
.calculator select {
  min-height: 40px;
  box-shadow: none !important;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 0;
}

.calculator__label {
  font-weight: 400;
}

/* Фоновые линии сетки */
.calculator__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.05;
}

.calculator__grid-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08) 50%,
    transparent
  );
  width: 100%;
  height: 1px;
}

.calculator__grid-line:nth-child(1) {
  top: 20%;
}

.calculator__grid-line:nth-child(2) {
  top: 40%;
}

.calculator__grid-line:nth-child(3) {
  top: 60%;
}

.calculator__grid-line:nth-child(4) {
  top: 80%;
}

/* Заголовок */

.calculator__header {
  text-align: center;
  margin-bottom: 4em;
}

.calculator__main-title {
  font-size: 2.5em;
  font-weight: 400;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding: 0 1em;
  color: #fff;
}

.calculator__main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(215, 182, 150, 0),
    rgba(215, 182, 150, 0.7),
    rgba(215, 182, 150, 0)
  );
}

.calculator__subtitle {
  font-size: 1.1em;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

/* Прогресс-бар */
.calculator__progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3em;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.calculator__progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 150px;
}

.calculator__progress-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(215, 182, 150, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.calculator__progress-text {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  transition: all 0.3s ease;
}

.calculator__progress-step.active .calculator__progress-circle,
.calculator__progress-step.completed .calculator__progress-circle {
  background: rgba(215, 182, 150, 0.2);
  border-color: rgba(215, 182, 150, 0.8);
  color: #fff;
}

.calculator__progress-step.active .calculator__progress-text,
.calculator__progress-step.completed .calculator__progress-text {
  color: #fff;
}

.calculator__progress-separator {
  flex-grow: 1;
  height: 1px;
  background: rgba(215, 182, 150, 0.3);
  position: relative;
  z-index: 1;
}

/* Контейнер для формы и результатов */
.calculator__wrapper {
  position: relative;
}

.calculator__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Стили формы */
.calculator__form {
  background: rgba(30, 30, 35, 0.3);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.calculator__step {
  display: none;
}

.calculator__step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calculator__step-title {
  font-size: 1.4em;
  font-weight: 400;
  margin-bottom: 1.5em;
  color: #fff;
  position: relative;
  padding-bottom: 0.5em;
}

.calculator__step-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: rgba(215, 182, 150, 0.5);
}

.calculator__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

/* Стили для инпутов */
.calculator__input-group {
  margin-bottom: 10px;
}

.calculator__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.9);
}

.calculator__input-wrapper {
  position: relative;
}

.calculator__input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  font-size: 1em;
  transition: all 0.3s ease;
}

.calculator__input--with-icon {
  padding-left: 40px;
}

.calculator__input:focus {
  border-color: rgba(215, 182, 150, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

.calculator__input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}

.calculator__input-icon-left {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(215, 182, 150, 0.8);
}

/* Стили для select */
.calculator__select-wrapper {
  position: relative;
}

.calculator__select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  font-size: 1em;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calculator__select:focus {
  border-color: rgba(215, 182, 150, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

.calculator__select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(215, 182, 150, 0.8);
  pointer-events: none;
}

/* Чекбоксы и радио-кнопки */
.calculator__checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calculator__checkbox-container--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.calculator__checkbox,
.calculator__radio {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}

.calculator__checkbox--premium {
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.calculator__checkbox--premium:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(215, 182, 150, 0.3);
  transform: translateY(-2px);
}

.calculator__checkbox input,
.calculator__radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.calculator__checkbox-mark,
.calculator__radio-mark {
  position: relative;
  min-width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 10px;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.calculator__checkbox-mark {
  border-radius: 3px;
}

.calculator__radio-mark {
  border-radius: 50%;
}

.calculator__checkbox input:checked ~ .calculator__checkbox-mark,
.calculator__radio input:checked ~ .calculator__radio-mark {
  background: rgba(215, 182, 150, 0.2);
  border-color: rgba(215, 182, 150, 0.8);
}

.calculator__checkbox-mark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid rgba(215, 182, 150, 1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.calculator__radio-mark:after {
  content: "";
  position: absolute;
  display: none;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(215, 182, 150, 1);
}

.calculator__checkbox input:checked ~ .calculator__checkbox-mark:after,
.calculator__radio input:checked ~ .calculator__radio-mark:after {
  display: block;
}

.calculator__checkbox-text,
.calculator__radio-text {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.calculator__checkbox-content,
.calculator__radio-content {
  display: flex;
  flex-direction: column;
}

.calculator__checkbox-info,
.calculator__radio-info {
  font-size: 0.8em;
  color: rgba(215, 182, 150, 0.8);
  margin-top: 3px;
}

.calculator__radio-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Соглашение */
.calculator__agreement {
  margin-top: 15px;
}

.calculator__link {
  color: rgba(215, 182, 150, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.calculator__link:hover {
  color: rgba(215, 182, 150, 1);
  text-decoration: underline;
}

/* Навигационные кнопки */
.calculator__navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.calculator__prev,
.calculator__next,
.calculator__submit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 0.95em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.calculator__prev {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator__prev svg,
.calculator__next svg,
.calculator__submit svg {
  width: 18px;
  height: 18px;
}

.calculator__prev:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.calculator__next {
  background: rgba(215, 182, 150, 0.2);
  color: rgba(215, 182, 150, 1);
  border: 1px solid rgba(215, 182, 150, 0.3);
}

.calculator__next:hover {
  background: rgba(215, 182, 150, 0.3);
}

.calculator__submit {
  background: linear-gradient(
    90deg,
    rgba(215, 182, 150, 0.8),
    rgba(215, 182, 150, 0.6)
  );
  color: #111;
  display: none;
}

.calculator__submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.2),
    0 0 5px rgba(215, 182, 150, 0.3);
}

/* Блок с результатами */
.calculator__summary {
  background: rgba(30, 30, 35, 0.3);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 30px;
}

.calculator__summary-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calculator__summary-title {
  font-size: 1.2em;
  font-weight: 500;
  margin: 0;
}

.calculator__summary-badge {
  font-size: 0.8em;
  background: rgba(215, 182, 150, 0.15);
  color: rgba(215, 182, 150, 0.9);
  padding: 8px 10px;
  border-radius: 10px;
}

.calculator__summary-content {
  padding: 20px;
}

.calculator__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator__total-label {
  font-size: 1.1em;
  font-weight: 400;
}

.calculator__total-price {
  font-size: 1.6em;
  font-weight: 600;
  color: rgba(215, 182, 150, 0.9);
}

.calculator__details {
  margin-bottom: 25px;
}

.calculator__details-title {
  font-size: 1em;
  font-weight: 500;
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.8);
}

.calculator__detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.calculator__detail-label {
  color: rgba(255, 255, 255, 0.7);
}

.calculator__detail-value {
  font-weight: 500;
}

.calculator__stages,
.calculator__extras {
  margin-bottom: 20px;
}

.calculator__project-timeline {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  margin-bottom: 20px;
}

.calculator__timeline-icon {
  width: 40px;
  height: 40px;
  color: rgba(215, 182, 150, 0.8);
}

.calculator__timeline-info {
  flex-grow: 1;
}

.calculator__timeline-label {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.calculator__timeline-value {
  font-weight: 500;
}

.calculator__disclaimer {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* project */
.project1 {
  padding: 60px 0 30px;
}

.project1 .title h3 {
  width: fit-content;
  background-color: #f8f8f8;
  min-width: 120px;
  text-align: center;
}

.project1 .large-7::before {
  content: "";
  position: absolute;
  border-left: 1px solid #e1e1e1;
  left: 0;
  height: 80px;
}

.project2 table {
  border-collapse: collapse;
}

.project2 table td {
  padding: 15px;
  width: 60%;
  font-size: 16px;
  text-transform: none;
  color: #000;
}

.project2 table td:first-child {
  font-weight: 700;
  width: 40%;
  border-right: 1px solid #000;
  padding-left: 0;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .calculator__content {
    grid-template-columns: 1fr;
  }

  .calculator__summary {
    position: static;
    margin-top: 30px;
  }

  .calculator__checkbox-container--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .calculator {
    padding: 4em 0;
  }

  .calculator .container {
    padding: 0;
  }

  .calculator__main-title {
    font-size: 2em;
    padding: 0;
  }

  .calculator__progress {
    overflow-x: auto;
    padding-bottom: 15px;
    margin-bottom: 2em;
  }

  .calculator__form {
    padding: 25px;
  }

  .calculator__step-title {
    font-size: 1.2em;
  }

  .calculator__checkbox-container--grid {
    grid-template-columns: 1fr;
  }

  .calculator__navigation {
    flex-direction: column;
    gap: 15px;
  }

  .calculator__prev,
  .calculator__next,
  .calculator__submit {
    width: 100%;
    justify-content: center;
  }
}
