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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #5A5A5A;
}

h2 {
  font-size: 24px;
  font-weight: 500;
  color: #0B0B0B;
}

h3 {
  font-size: 18px;
  font-weight: 500;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

a {
  text-decoration: none;
  color: #0F0F0F;
}

a, button {
  transition: color .3s, background-color .3s, border-color .3s, opacity .3s, transform .3s;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 168, 18, 0.55);
  outline-offset: 4px;
}

ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo-anchor {
  display: flex !important;
  align-items: center !important;
}
.logo-anchor:hover {
  opacity: 0.5;
}
.logo-anchor img {
  width: 48px !important;
  height: 48px !important;
}
.logo-anchor__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  color: #000 !important;
  font-family: 'Montserrat', sans-serif !important;
  text-align: left !important;
}
.logo-anchor__text-title {
  color: #FFA812;
  font-size: 21px;
  font-weight: 700;
  text-align: left !important;
  line-height: 1 !important;
  letter-spacing: -0.02em;
}
.logo-anchor__text-accent {
  color: #0B0B0B;
}
.logo-anchor__text-subtitle {
  width: fit-content;
  padding: 3px 6px;
  border-radius: 3px;
  background: #0B0B0B;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.logo-anchor.logo-anchor--footer {
  margin-bottom: 24px;
}
.logo-anchor--footer .logo-anchor__text-title {
  color: #FFA812;
}
.logo-anchor--footer .logo-anchor__text-accent {
  color: #fff;
}
.logo-anchor--footer .logo-anchor__text-subtitle {
  background: #FFA812;
  color: #0B0B0B;
}

@media (max-width: 780px) {
  .logo-anchor img {
    width: 40px !important;
    height: 40px !important;
  }
}
.header {
  background-color: #fff;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 33px 0 rgba(0, 0, 0, 0.15);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.header .hr {
  width: 100%;
  height: 1px;
  background-color: rgba(166, 166, 166, 0.24);
}
.header__logo {
  width: 165px;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__contacts-elem__name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0B0B0B;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}
.header__contacts-elem span {
  color: #5A5A5A;
  font-size: 15px;
}
.header__menu {
  padding: 18px 53px;
}
.header__menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-size: 20px;
}
.header__menu ul li a:hover {
  color: #FFA812;
}
.header__switch-button {
  display: none;
}
.header__phone {
  padding: 11px 22px;
  color: #FFF;
  text-align: center;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
  background: #EFBB20 linear-gradient(89deg, rgba(255, 255, 255, 0.2) 22.96%, rgba(0, 0, 0, 0) 69.84%, #EFBB20);
  box-shadow: 6px 4px 17px 0 rgba(0, 0, 0, 0.19);
}
.header__phone:hover {
  background: transparent;
  border-color: #EFBB20;
  color: #EFBB20;
}

.introduction {
  position: relative;
  padding: 90px 0;
  background-image: url(../../assets/images/introduction.webp);
  background-repeat: no-repeat;
  background-position: center 80%;
  background-size: cover;
}
.introduction::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.66) 48%, rgba(10, 10, 10, 0.3) 100%);
  pointer-events: none;
}
.introduction .container {
  position: relative;
  z-index: 1;
}
.introduction__info {
  max-width: 590px;
}
.introduction__info-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.introduction__info-kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: #FFA812;
  flex-shrink: 0;
}
.introduction__info-title {
  max-width: 570px;
  font-size: 42px;
  line-height: 1.14;
  font-weight: 600;
  margin-bottom: 18px;
  color: #FFA812;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}
.introduction__title-break {
  display: none;
}
.introduction__info-text {
  max-width: 560px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.45;
}
.introduction__info-list {
  margin-bottom: 30px;
}
.introduction__info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1.35;
}
.introduction__info-list li + li {
  margin-top: 12px;
}
.introduction__info-list li img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.introduction__info-phone {
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 250px;
  min-height: 52px;
  padding: 10px 28px;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  border: 1px solid transparent;
  border-radius: 26px;
  background: #FFA812;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.introduction__info-phone-icon {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
}
.introduction__info-phone strong {
  font-size: 18px;
  line-height: 1;
}
.introduction__info-note {
  margin-top: 9px;
  font-size: 13px;
  line-height: 18px;
  color: #fff;
}
.introduction__info-phone:hover {
  background-color: #ed9700;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.about {
  padding: 80px 0;
}
.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.about__image {
  width: 48%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}
.about__info {
  max-width: 541px;
}
.about__info-eyebrow {
  margin-bottom: 8px;
  color: #FFA812;
  font-size: 16px;
  font-weight: 600;
}
.about__info-title {
  margin-bottom: 16px;
}
.about__info-text {
  margin-bottom: 28px;
  line-height: 1.5;
}
.about__info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 28px;
}
.about__info-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: #0B0B0B;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}
.about__info-list li .about__list-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFA812;
  border-radius: 50%;
}
.about .about__image--laptop_and_beyond {
  display: none;
}

.quote {
  position: relative;
  overflow: hidden;
  padding: 68px 0 80px;
  background-image: url(../../assets/images/quote.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 1440px;
  margin: 0 auto;
}
.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.76) 0%, rgba(9, 9, 9, 0.64) 50%, rgba(9, 9, 9, 0.3) 100%);
  pointer-events: none;
}
.quote .container {
  position: relative;
  z-index: 1;
}
.quote__info {
  max-width: 1140px;
  width: 100%;
}
.quote__info-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.quote__info-text {
  max-width: 620px;
  margin-bottom: 22px;
  color: #fff;
}
.quote__info-list {
  margin-bottom: 36px;
}
.quote__info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFA812;
}
.quote__info-list li + li {
  margin-top: 15px;
}
.quote__info-phone {
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  padding: 12px 26px;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  border: 1px solid transparent;
  border-radius: 24px;
  background: #FFA812;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.quote__info-phone strong {
  margin-top: 4px;
  font-size: 16px;
}
.quote__info-phone:hover {
  background-color: #ed9700;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

.poster {
  max-width: 1440px;
  position: relative;
  margin: 0 auto;
  background: #EFBB20;
  height: 419px;
}
.poster__info {
  max-width: 540px;
  padding: 77px 0;
}
.poster__info-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}
.poster__info-text {
  margin-bottom: 35px;
}
.poster__info-phone {
  padding: 11px 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 20px;
  background: #0F0F0F;
  border: 1px solid transparent;
  box-shadow: 3px 4px 15px 0 rgba(0, 0, 0, 0.1);
}
.poster__info-phone:hover {
  color: #0F0F0F;
  border-color: #0F0F0F;
  background: transparent;
}
.poster__image {
  position: absolute;
  right: 0;
  top: 0;
}
.poster .poster__image--laptop_and_beyond {
  display: none;
}

.service {
  padding: 90px 0 80px;
}
.service__eyebrow {
  margin-bottom: 8px;
  color: #FFA812;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.service__title {
  margin-bottom: 12px;
  text-align: center;
}
.service__text {
  text-align: center;
  max-width: 847px;
  margin: 0 auto 35px;
  color: #5A5A5A;
}
.service__list {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service__list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 255px;
  min-height: 195px;
  width: 100%;
  padding: 30px 24px 26px;
  position: relative;
  border-radius: 5px;
  border: 1px solid rgba(166, 166, 166, 0.16);
  background: #FFF;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.service__list-item__name {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.service__list-item__description {
  color: #5A5A5A;
  line-height: 1.45;
}
.service__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1110px;
  margin: 35px auto 0;
  padding: 22px 28px;
  border: 1px solid rgba(255, 168, 18, 0.28);
  border-radius: 5px;
  background: rgba(255, 168, 18, 0.07);
}
.service__cta-content h3 {
  margin-bottom: 5px;
  color: #0B0B0B;
  font-size: 20px;
}
.service__cta-content p {
  color: #5A5A5A;
  font-size: 16px;
}
.service__cta-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: #FFA812;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.service__cta-phone strong {
  margin-top: 4px;
  font-size: 15px;
}
.service__cta-phone:hover {
  background: #ed9700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.process {
  padding: 75px 0 80px;
  background: rgba(240, 240, 240, 0.54);
}
.process__heading {
  margin-bottom: 8px;
  color: #FFA812;
  text-align: center;
  font-weight: 500;
}
.process__title {
  margin-bottom: 35px;
  text-align: center;
}
.process__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(166, 166, 166, 0.18);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.055);
}
.process__item {
  position: relative;
  min-height: 158px;
  padding: 32px 28px 28px;
  background: transparent;
}
.process__item + .process__item {
  border-left: 1px solid rgba(166, 166, 166, 0.2);
}
.process__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 168, 18, 0.22);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.process__item h3 {
  position: relative;
  z-index: 1;
  padding: 0 48px 0 14px;
  margin-bottom: 8px;
  color: #0B0B0B;
  font-weight: 600;
}
.process__item h3::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  border-radius: 2px;
  background: #FFA812;
}
.process__item p {
  position: relative;
  z-index: 1;
  padding-left: 14px;
  font-size: 16px;
  line-height: 23px;
}
.process__assurance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  margin: 24px auto 0;
  padding: 11px 15px;
  border: 1px solid rgba(255, 168, 18, 0.24);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
  color: #0B0B0B;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}
.process .container {
  text-align: center;
}
.process__list,
.process__title,
.process__heading {
  text-align: initial;
}
.process__title,
.process__heading {
  text-align: center;
}
.process__assurance img {
  flex-shrink: 0;
}

.price {
  padding: 45px 0 100px;
}
.price__title {
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}
.price__text {
  color: #5A5A5A;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 30px;
}
.price__list-item {
  display: flex;
  justify-content: space-between;
  padding: 18px 30px;
  color: #0B0B0B;
  font-size: 20px;
}
.price__list-item__price {
  font-weight: 500;
}
.price__list-item.odd {
  background-color: #F5F7F9;
}

.advantages {
  background: rgba(240, 240, 240, 0.54);
  padding: 48px 0;
}
.advantages__inner {
  display: flex;
  justify-content: space-between;
}
.advantages__info {
  max-width: 665px;
}
.advantages__info-title {
  margin-bottom: 15px;
  color: #000;
}
.advantages__info-text {
  margin-bottom: 20px;
}
.advantages__info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.advantages__info-list li span {
  font-size: 20px;
  font-weight: 500;
}
.advantages__info-list li + li {
  margin-top: 15px;
}
.advantages__image {
  height: 338px;
}
.advantages .advantages__image--laptop_and_beyond {
  display: none;
}

.faq{
  padding: 80px 0 0;
}

.faq__heading {
  margin-bottom: 8px;
  color: #FFA812;
  font-size: 16px;
  font-weight: 600;
}
.faq__title {
  margin-bottom: 10px;
}
.faq__intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: #5A5A5A;
  line-height: 1.45;
}
.faq__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.faq__image {
  max-height: 493px;
  margin-left: -20px;
  object-fit: cover;
}
.faq__list {
  flex: 1;
  min-width: 0;
}
.faq__list-elem {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(166, 166, 166, 0.2);
  border-left: 3px solid rgba(166, 166, 166, 0.32);
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, padding-bottom 0.28s ease;
}
.faq__list-elem + .faq__list-elem {
  margin-top: 16px;
}
.faq__list-elem__question {
  width: 100%;
  min-height: 70px;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: transparent;
  color: #0B0B0B;
  font: inherit;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
}
.faq__list-elem__question img {
  transform: rotate(0);
  transition: transform 0.2s ease;
}
.faq__list-elem__answer {
  color: #5A5A5A;
  overflow: hidden;
  height: 0;
  padding: 0 20px;
  line-height: 1.45;
  transition: height 0.28s ease;
  will-change: height;
}
.faq__list-elem:hover .faq__list-elem__question {
  color: #EFBB20;
}
.faq__list-elem.opened {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  padding-bottom: 24px;
  border-left-color: #FFA812;
}
.faq__list-elem.opened .faq__list-elem__question {
  color: #EFBB20;
}
.faq__list-elem.opened .faq__list-elem__question img {
  transform: rotate(180deg);
}
.faq__list-elem.opened .faq__list-elem__answer {
  height: unset;
}
.faq .faq__image--laptop_and_beyond {
  display: none;
}

.feedback {
  padding: 80px 0 20px;
  overflow: hidden;
}
.feedback .slick-track {
  display: flex !important;
  justify-content: space-between !important;
  align-items: stretch;
  padding: 20px 0 0;
  gap: 0;
}
.feedback .slick-slide {
  height: auto;
}
.feedback .slick-initialized .slick-slide {
  display: flex;
}
.feedback__slider {
  margin-bottom: 44px;
}
.feedback .slick-dots {
  bottom: -34px;
}
.feedback .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  transition: width 0.2s ease;
}
.feedback .slick-dots li.slick-active {
  width: 26px;
}
.feedback .slick-dots li button {
  width: 100%;
  height: 10px;
  padding: 0;
}
.feedback .slick-dots li button:before {
  width: 10px;
  height: 10px;
  background-color: #D6D6D6;
  border-radius: 50%;
  font-size: 0;
  opacity: 1;
  transition: width 0.2s ease, background-color 0.2s ease, border-radius 0.2s ease;
}
.feedback .slick-dots li.slick-active button:before {
  width: 26px;
  background-color: #FFA812;
  border: none;
  border-radius: 10px;
  font-size: 0;
}
.feedback__heading {
  color: #FFA812;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 500;
}
.feedback__title {
  margin-bottom: 34px;
  text-align: center;
}
.feedback__slider-item {
  min-width: 0;
  height: 100%;
  padding: 0 12px 18px;
}
.feedback__card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 26px;
  border: 1px solid #DADCE0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.1);
}
.feedback__slider-item__user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.feedback__avatar {
  display: flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}
.feedback__avatar--blue {
  background: #E8F0FE;
  color: #1A73E8;
}
.feedback__avatar--green {
  background: #E6F4EA;
  color: #188038;
}
.feedback__avatar--purple {
  background: #F3E8FD;
  color: #9334E6;
}
.feedback__avatar--red {
  background: #FCE8E6;
  color: #D93025;
}
.feedback__user-info {
  min-width: 0;
}
.feedback__slider-item__user .feedback__user-info__name {
  color: #202124;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.feedback__date {
  display: block;
  margin-top: 2px;
  color: #70757A;
  font-size: 12px;
  line-height: 1.35;
}
.feedback__source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  color: #5F6368;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.feedback__google-mark {
  background: conic-gradient(from -45deg, #4285F4 0 25%, #34A853 0 42%, #FBBC05 0 65%, #EA4335 0 82%, #4285F4 0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}
.feedback__slider-item__stars {
  display: block;
  width: 110px;
  height: auto;
  margin-bottom: 16px;
}
.feedback__slider-item__text {
  color: #3C4043;
  font-size: 15px;
  line-height: 1.55;
}

.info {
  padding: 90px 0;
}
.info__title {
  margin-bottom: 25px;
  text-align: center;
}

.contact-us {
  margin-top: 80px;
  margin-bottom: -60px;
  position: relative;
  z-index: 5;
}
.contact-us__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFA812;
  padding: 26px 65px;
  border-radius: 10px;
}
.contact-us__info-title {
  margin-bottom: 15px;
}
.contact-us__phone {
  padding: 11px 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 230px;
  text-align: center;
  border-radius: 20px;
  background: #0B0B0B;
  box-shadow: 3px 4px 15px 0 rgba(0, 0, 0, 0.1);
}
.contact-us__phone strong {
  margin-top: 4px;
  font-size: 16px;
}
.contact-us__phone:hover {
  color: #0F0F0F;
  border-color: #0F0F0F;
  background: #fff;
}

.footer__main {
  background-color: #0F0F0F;
  padding: 93px 0 72px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.footer__inner-logo {
  color: #fff;
  max-width: 570px;
}
.footer__inner-logo__text {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}
.footer__inner-logo__image {
  margin-bottom: 0;
}
.footer__inner-contacts {
  color: #fff;
}
.footer__inner-contacts a {
  color: #fff;
}
.footer__inner-contacts__phone, .footer__inner-contacts__email, .footer__inner-contacts__location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
}
.footer__copyright {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 4px 0;
}

.sticky-call {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity .3s, visibility .3s, transform .3s;
}
.sticky-call.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-call__button {
  position: relative;
  display: inline-flex;
  width: 66px;
  height: 66px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #FFA812 0%, #f59600 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26), 0 0 0 0 rgba(255, 168, 18, 0.42);
  color: #fff;
  overflow: hidden;
}
.sticky-call__button::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -60%;
  width: 34%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) skewX(-18deg);
}
.sticky-call__icon {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 27px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}
.sticky-call.visible .sticky-call__button {
  animation: sticky-call-wave 3s ease-out 2s infinite;
}
.sticky-call.visible .sticky-call__button::before {
  animation: sticky-call-shine 3s ease-in-out 2s infinite;
}
.sticky-call__button:hover {
  border-color: #FFA812;
  background: #0B0B0B;
  color: #fff;
}
@keyframes sticky-call-wave {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26), 0 0 0 0 rgba(255, 168, 18, 0.42);
  }
  24% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26), 0 0 0 14px rgba(255, 168, 18, 0);
  }
}
@keyframes sticky-call-shine {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }
  4% {
    opacity: 0.82;
  }
  22% {
    opacity: 0.82;
    transform: translateX(560%) skewX(-18deg);
  }
  27%, 100% {
    opacity: 0;
    transform: translateX(560%) skewX(-18deg);
  }
}

@media (max-width: 1500px) {
  .introduction {
    background-size: cover;
    background-color: #d1d0d6;
  }
}
@media (max-width: 1110px) {
  .about__info-list li {
    width: 100%;
  }
}
@media (max-width: 1080px) {
  .header__logo {
    font-size: 45px;
    line-height: 54px;
  }
  .header__menu ul li + li {
    margin-left: 15px;
  }
  .header__phone {
    padding: 8px 17px;
  }

  .quote {
    background-position: -400px;
  }
}
@media (max-width: 950px) {
  .header__phone {
    display: none;
  }
  .header__menu {
    padding: 24px 0;
  }
  .header__menu ul {
    font-size: 18px;
  }

  .about__info {
    max-width: unset;
  }

  .process__item {
    min-height: 174px;
    padding: 30px 22px 26px;
  }
  .process__number {
    top: 18px;
    right: 18px;
  }
  .about__info-list {
    justify-content: center;
    gap: 30px;
  }
  .about__info-list li {
    width: unset;
  }
  .about__image {
    display: none;
  }
  .about .about__image--laptop_and_beyond {
    display: block;
    width: 100%;
    height: 320px;
    margin-bottom: 24px;
    object-fit: cover;
    object-position: center;
  }

  .advantages__info {
    max-width: unset;
  }
  .advantages__image {
    display: none;
  }
  .advantages .advantages__image--laptop_and_beyond {
    display: block;
  }

  .faq__image {
    display: none;
  }

  .contacts__inner {
    display: block;
  }
  .contacts__info, .contacts__form {
    max-width: unset;
  }
}
@media (max-width: 780px) {
  .sticky-call {
    display: block;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: auto;
  }
  .sticky-call__button {
    width: 66px;
    height: 66px;
    min-width: 0;
    min-height: 0;
    padding: 0;
  }

  .faq__image,
  .faq .faq__image--laptop_and_beyond {
    display: none;
  }
  .faq__inner {
    display: block;
  }

  .process__list {
    grid-template-columns: 1fr;
  }
  .process__item + .process__item {
    border-top: 1px solid rgba(166, 166, 166, 0.2);
    border-left: 0;
  }
  .process__item {
    min-height: 0;
    padding: 26px 24px 24px;
  }
  .process__number {
    top: 17px;
    right: 20px;
  }

  .header__menu {
    position: fixed;
    top: 69px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0 0 12px 0;
    background: rgba(11, 11, 11, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }
  .header__contacts {
    display: none;
    padding: 30px 0 0;
  }
  .header__contacts.opened {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    background-color: #fff;
    top: 232px;
    z-index: 3;
  }
  .header__contacts.opened .header__contacts-elem {
    width: 100%;
    text-align-last: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }
  .header__contacts.opened .header__contacts-elem__name {
    width: 100%;
    justify-content: center;
  }
  .header__contacts.opened .header__contacts-elem span {
    display: block;
    width: 100%;
  }
  .header__menu ul {
    display: flex;
    position: static;
    width: 100%;
    flex-direction: column;
    padding: 8px;
    margin: 0;
    background-color: #fff;
    border: 1px solid rgba(11, 11, 11, 0.08);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(calc(-100% - 16px));
    transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 18px;
    line-height: 1.25;
  }
  .header__menu.opened {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header__menu.opened ul {
    opacity: 1;
    transform: translateY(0);
  }
  .header__menu.opened ul li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .header__menu.opened ul li + li {
    border-top: 1px solid rgba(11, 11, 11, 0.08);
  }
  .header__menu ul li a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: flex-start;
    padding: 13px 14px;
    border-radius: 9px;
    color: #0B0B0B;
    font-weight: 500;
    text-align: left;
  }
  .header__menu ul li a:hover,
  .header__menu ul li a:focus-visible {
    color: #0B0B0B;
    background: rgba(255, 168, 18, 0.1);
    outline: none;
  }
  .header__switch-button {
    display: block;
    width: 46px;
    height: 46px;
    background: #F7F7F7;
    border: 1px solid #DEDEDE;
    border-radius: 50%;
    padding: 14px 12px;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }
  .header__switch-button span {
    display: block;
    background-color: #0B0B0B;
    border-radius: 4px;
    height: 2px;
    width: 20px;
    transition-property: transform, background-color;
  }
  .header__switch-button .line1 {
    transform-origin: 0 0;
    transition: transform 0.4s ease-in-out, background-color 0.2s ease;
    margin-bottom: 5px;
  }
  .header__switch-button .line2 {
    transition: transform 0.2s ease-in-out, background-color 0.2s ease;
    margin-bottom: 5px;
  }
  .header__switch-button .line3 {
    transform-origin: 0 100%;
    transition: transform 0.4s ease-in-out, background-color 0.2s ease;
  }
  .header__switch-button.opened {
    background: #F1F1F1;
    border-color: #D4D4D4;
    box-shadow: none;
  }
  .header__switch-button.opened span {
    background-color: #0B0B0B;
  }
  .header__switch-button:focus-visible {
    outline: 3px solid rgba(255, 168, 18, 0.34);
    outline-offset: 3px;
  }
  .header__switch-button.opened .line1 {
    transform: translateX(3px) rotate(46deg);
  }
  .header__switch-button.opened .line2 {
    transform: scaleY(0);
  }
  .header__switch-button.opened .line3 {
    transform: translateX(3px) rotate(-47deg);
  }

  .quote {
    background-position: -700px;
  }
  .quote .contact-us {
    margin: unset;
  }
  .quote .contact-us .container {
    max-width: unset;
    padding: 0;
    margin: unset;
  }
  .quote .contact-us__inner {
    border-radius: unset;
    padding: 23px 10px 34px;
  }
}
@media (max-width: 670px) {

  .service__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    text-align: center;
  }
  .service__cta-phone {
    width: 100%;
    max-width: 340px;
    min-width: 0;
    align-self: center;
  }

  .about .about__image--laptop_and_beyond {
    width: 100%;
  }

  .quote {
    background-position: -990px;
  }
}
@media (max-width: 600px) {
  .about__info-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about__info-list li {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .contact-us__inner {
    display: block;
    padding: 26px 22px 28px;
    text-align: center;
  }
  .contact-us__info-title {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.25;
  }
  .contact-us__info-text {
    max-width: 280px;
    margin: 0 auto 22px;
    line-height: 1.4;
  }
  .contact-us__phone {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    padding: 12px 22px;
  }
}
@media (max-width: 480px) {
  p {
    font-size: 16px;
  }

  .container {
    padding: 0 10px;
  }

  .header__logo {
    font-size: 42px;
  }

  .introduction {
    background-image: url(../../assets/images/introduction-mobile-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 560px;
    padding: 52px 0 50px;
  }
  .introduction::before {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.74) 0%, rgba(10, 10, 10, 0.52) 100%);
  }
  .introduction__info {
    color: #fff;
  }
  .introduction__info-kicker,
  .introduction__info-note {
    color: #fff;
  }
  .introduction__info-title {
    font-size: clamp(22px, 6.95vw, 29px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .introduction__title-break {
    display: inline;
  }
  .introduction__info-text {
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .introduction__info-list {
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: 400;
  }
  .introduction__info-list li + li {
    margin-top: 14px;
  }
  .introduction__info-phone {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 11px 24px;
    border-radius: 28px;
  }
  .introduction__info-phone strong {
    font-size: 18px;
  }
  .introduction__info-note {
    width: 100%;
    margin-top: 11px;
    line-height: 19px;
  }

  .about {
    padding: 45px 0 50px;
  }
  .about__info-eyebrow {
    margin-bottom: 6px;
    font-size: 15px;
  }
  .about__info-title {
    margin-bottom: 18px;
  }
  .about .about__image--laptop_and_beyond {
    height: 250px;
    margin-bottom: 15px;
  }
  .about__info-text {
    margin-bottom: 22px;
    line-height: 1.45;
  }
  .about__info-list {
    justify-content: flex-start;
  }

  .quote {
    background-image: url(../../assets/images/quote-mobile-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 36px 0;
  }
  .quote::before {
    background: linear-gradient(90deg, rgba(9, 9, 9, 0.74) 0%, rgba(9, 9, 9, 0.52) 100%);
  }
  .quote__info-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .quote__info-text {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .quote__info-phone {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    padding: 12px 24px;
  }
  .quote__info-list {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .service {
    padding: 45px 0 50px;
  }
  .service__eyebrow {
    margin-bottom: 6px;
    font-size: 15px;
  }
  .service__title {
    margin-bottom: 10px;
  }
  .service__text {
    margin-bottom: 24px;
    line-height: 1.45;
  }
  .service__list {
    gap: 12px;
  }
  .service__list-item {
    display: block;
    min-height: 0;
    max-width: unset;
    padding: 22px 20px 20px;
    text-align: left;
  }
  .service__list-item__name {
    margin-bottom: 5px;
    font-size: 19px;
  }
  .service__list-item__description {
    font-size: 15px;
    line-height: 1.4;
  }
  .service__cta {
    margin-top: 25px;
    padding: 20px 16px;
  }
  .service__cta-content h3 {
    font-size: 19px;
  }
  .service__cta-content p {
    font-size: 15px;
  }

  .process {
    padding: 50px 0;
  }
  .process__title {
    margin-bottom: 20px;
  }
  .process__item {
    padding: 24px 20px 22px;
  }
  .process__number {
    top: 16px;
    right: 18px;
    font-size: 38px;
  }
  .process__item h3 {
    padding-right: 52px;
    margin-bottom: 6px;
    font-size: 19px;
  }
  .process__item p {
    font-size: 15px;
    line-height: 1.4;
  }
  .process__assurance {
    align-items: center;
    margin-top: 22px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
  }

  .advantages__info-title {
    margin-bottom: 20px;
  }
  .advantages__info-list li {
    display: block;
    padding-left: 30px;
    position: relative;
  }
  .advantages__info-list li::before {
    content: url("../../assets/icons/checkmark-grey.svg");
    position: absolute;
    left: 0;
    top: 4px;
  }
  .advantages__info-list li img {
    display: none;
  }
  .advantages .advantages__image--laptop_and_beyond {
    width: 100%;
  }

  .price {
    padding: 50px 0;
  }
  .price__list-item {
    padding: 15px;
    font-size: 16px;
  }

  .faq {
    padding-top: 50px;
  }
  .faq__heading {
    margin-bottom: 6px;
    font-size: 15px;
  }
  .faq__title {
    margin-bottom: 8px;
  }
  .faq__intro {
    margin-bottom: 24px;
    line-height: 1.4;
  }
  .faq__list-elem.opened {
    padding-bottom: 20px;
  }
  .faq__list-elem__question {
    font-size: 16px;
    padding: 14px 11px 16px 11px;
  }
  .faq__list-elem__answer {
    padding: 0 11px;
  }
  .faq .faq__image--laptop_and_beyond {
    display: none;
  }

  .feedback__title {
    margin-bottom: 0;
  }
  .feedback {
    padding-top: 50px;
  }
  .feedback .slick-track {
    align-items: flex-start !important;
    gap: 0;
  }
  .feedback .slick-slide {
    margin-right: 0;
  }
  .feedback__slider-item {
    height: auto;
    min-width: 0;
    padding: 0 6px 16px;
  }
  .feedback__card {
    height: auto;
    padding: 24px 20px;
  }
  .feedback__source {
    font-size: 11px;
  }

  .info {
    padding: 50px 0;
    text-align: center;
  }
  .info__title {
    margin-bottom: 20px;
  }

  .contact-us__phone {
    font-size: 16px;
  }
  .contact-us {
    margin-top: 50px;
  }

  .footer__main {
    padding: 88px 0 32px;
  }
  .footer__inner {
    display: block;
  }
  .footer__inner-menu {
    width: 100%;
  }
  .footer__inner-logo {
    margin-top: 0;
  }
  .footer__inner-contacts {
    margin-top: 26px;
  }
  .footer__inner-contacts__phone,
  .footer__inner-contacts__email,
  .footer__inner-contacts__location {
    justify-content: flex-start;
    margin-bottom: 14px;
  }
  .footer__inner-contacts a {
    overflow-wrap: anywhere;
  }
  .footer__inner-menu__heading {
    margin-bottom: 20px;
  }
  .footer__inner-menu__list li + li {
    margin-top: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media (max-width: 380px) {
  .logo-anchor__text-subtitle {
    font-size: 8px;
    letter-spacing: 0.07em;
  }
}
