:root {
  --orange: #ff7a00;
  --orange-light: #ffb039;
  --orange-soft: #fff4e8;
  --navy: #17224d;
  --text: #172033;
  --muted: #5d6573;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --border: #e7e9ee;
  --shadow-sm: 0 8px 24px rgba(23, 32, 51, 0.08);
  --shadow-md: 0 16px 40px rgba(23, 32, 51, 0.13);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 94px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

p {
  font-size: 17px;
}

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

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

button {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 30px, 1140px);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.section-heading__eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-heading__eyebrow--light,
.section-heading--light,
.section-heading--light > p:last-child {
  color: #fff;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 38px;
  text-align: center;
}

.section-cta--light {
  color: #fff;
}

.button {
  min-height: 50px;
  padding: 13px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.button--primary {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.28);
}

.button--primary:hover {
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.36);
}

.button--light {
  color: #1f2633;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button--light:hover {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffd500;
  outline-offset: 4px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 5px 22px rgba(23, 32, 51, 0.11);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo-anchor {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-anchor img {
  width: 64px;
  height: 48px;
  margin-right: 5px;
  object-fit: contain;
}

.logo-anchor__text {
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.logo-anchor:hover {
  opacity: 0.78;
}

.header__menu {
  margin-left: auto;
}

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

.header__menu a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.header__menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.header__menu a:hover {
  color: var(--orange);
}

.header__menu a:hover::after {
  transform: scaleX(1);
}

.header__phone {
  min-height: 44px;
  padding: 11px 20px;
  flex: 0 0 auto;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.22);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.header__phone:hover {
  box-shadow: 0 11px 24px rgba(255, 122, 0, 0.32);
}

.header__switch-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--orange-soft);
  cursor: pointer;
}

.header__switch-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.header__switch-button span + span {
  margin-top: 5px;
}

.header__switch-button.opened .line1 {
  transform: translateY(7px) rotate(45deg);
}

.header__switch-button.opened .line2 {
  opacity: 0;
}

.header__switch-button.opened .line3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.introduction {
  position: relative;
  max-width: 1440px;
  min-height: 610px;
  margin: 0 auto;
  padding: 88px 0 165px;
  display: flex;
  align-items: center;
  background-image: url(../../assets/images/introduction-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.introduction::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 18, 35, 0.8), rgba(8, 18, 35, 0.45));
}

.introduction__main-info {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.hero-location {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffd08c;
  border: 1px solid rgba(255, 193, 101, 0.42);
  border-radius: 999px;
  background: rgba(10, 20, 37, 0.38);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-location__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

.introduction__main-info__title {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.5vw, 66px);
  font-weight: 700;
}

.introduction__main-info__lead {
  max-width: 730px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

.introduction__main-info__list {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
}

.introduction__main-info__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
}

.introduction__main-info__list img {
  width: 21px;
  height: 21px;
}

.introduction__main-info__phone {
  min-width: 290px;
  flex-direction: column;
}

.introduction__main-info__phone strong {
  font-size: 18px;
}

.introduction__main-info__note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

/* Benefits */
.advantages {
  position: relative;
  z-index: 2;
  margin-top: -87px;
  padding-bottom: 28px;
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.advantages__list-item {
  min-width: 0;
  padding: 25px 20px 22px;
  text-align: center;
  border: 1px solid var(--border);
  border-bottom: 4px solid var(--orange);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.advantages__list-item__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
}

.advantages__list-item h2 {
  margin-bottom: 8px;
  font-size: 18px;
}

.advantages__list-item p {
  color: var(--muted);
  font-size: 14px;
}

/* Process */
.process {
  padding: 78px 0 88px;
}

.process__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process__list::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.process__item {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.process__number {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 6px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.24);
  font-size: 22px;
  font-weight: 700;
}

.process__item h3 {
  margin-bottom: 10px;
}

.process__item p {
  color: var(--muted);
  font-size: 15px;
}

/* About */
.about {
  padding: 84px 0;
  background: var(--surface-soft);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 64px;
}

.about__info-title {
  max-width: 650px;
  margin-bottom: 22px;
}

.about__info-text {
  max-width: 680px;
  padding-left: 18px;
  color: var(--muted);
  border-left: 3px solid var(--orange);
}

.about__info-text + .about__info-text {
  margin-top: 14px;
}

.about__info-phone {
  margin-top: 28px;
}

.about__image {
  width: 100%;
  max-width: 379px;
  height: auto;
  justify-self: end;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about__image--mobile {
  display: none;
}

/* Emergency trust */
.stats {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  color: #fff;
  background-image: linear-gradient(rgba(13, 25, 46, 0.88), rgba(13, 25, 46, 0.88)),
    url(../../assets/images/stats-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.stats__inner {
  padding: 74px 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 50px;
}

.stats__info-title {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 38px);
}

.stats__info-text {
  color: rgba(255, 255, 255, 0.82);
}

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

.stats__list-elem {
  min-height: 125px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stats__list-elem strong {
  margin-bottom: 5px;
  color: #ffb34c;
  font-size: 26px;
  line-height: 1.1;
}

.stats__list-elem span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

/* Services */
.service {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 82px 0 90px;
  overflow: hidden;
}

.service__background-fill {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #f67400, #ff9e1f);
}

.service__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service__list-item {
  min-height: 195px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 30px rgba(76, 38, 0, 0.14);
}

.service__list-item__name {
  margin-bottom: 16px;
}

.service__list-item__description {
  color: var(--muted);
  font-size: 14px;
}

.service__button-container {
  display: none;
  justify-content: center;
}

.service__button {
  min-height: 48px;
  margin-top: 25px;
  padding: 12px 24px;
  color: var(--orange);
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  cursor: pointer;
}

/* Warning signs */
.info {
  padding: 88px 0;
}

.info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info__grid article {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.info__grid article::before {
  content: "";
  width: 34px;
  height: 5px;
  margin-bottom: 19px;
  display: block;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.info__grid h3 {
  margin-bottom: 10px;
}

.info__grid p {
  color: var(--muted);
  font-size: 15px;
}

.info__notice {
  max-width: 850px;
  margin: 28px auto 0;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #ffdcb7;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  font-size: 15px;
}

/* Reviews */
.feedback {
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--surface-soft);
}

.feedback .slick-track {
  display: flex;
  align-items: stretch;
  padding: 8px 0 28px;
}

.feedback .slick-slide {
  height: auto !important;
  margin: 0 10px;
  display: flex !important;
  flex-direction: column;
}

.feedback .slick-slide > div {
  width: 100%;
  height: auto;
  display: flex;
  flex: 1 1 auto;
}

.feedback .slick-dots {
  bottom: -42px;
}

.feedback .slick-dots li {
  width: 32px;
  height: 8px;
  margin: 0 6px;
}

.feedback .slick-dots li button {
  width: 32px;
  height: 8px;
}

.feedback .slick-dots li button::before {
  width: 32px;
  height: 8px;
  border-radius: 10px;
  color: transparent;
  background: #c7cbd2;
  opacity: 1;
}

.feedback .slick-dots li.slick-active button::before {
  color: transparent;
  background: var(--orange);
}

.feedback__slider-item {
  width: 100%;
  height: auto;
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feedback__slider-item__user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.feedback__slider-item__user img {
  width: 65px;
  height: 65px;
  border: 3px solid var(--orange-soft);
  border-radius: 50%;
  object-fit: cover;
}

.feedback__user-info__name {
  margin-bottom: 4px;
  font-size: 19px;
  font-weight: 700;
}

.feedback__user-info__position {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
}

.feedback__slider-item__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* CTA */
.contact-us {
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(100deg, #e96600, var(--orange-light));
}

.contact-us__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.contact-us__eyebrow {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
}

.contact-us__info-title {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 44px);
}

.contact-us__info-text {
  font-size: 20px;
}

.contact-us__phone {
  min-width: 285px;
  flex-direction: column;
}

.contact-us__phone strong {
  font-size: 17px;
}

/* FAQ */
.faq {
  padding: 88px 0 100px;
}

.faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 18px;
}

.faq__list-column {
  display: grid;
  gap: 12px;
}

.faq__list-elem {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__list-elem.opened {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq__list-elem h3 {
  font-size: inherit;
}

.faq__list-elem__question {
  width: 100%;
  min-height: 88px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq__list-elem__question:hover {
  color: var(--orange);
}

.faq__toggle {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid #c5cad3;
  border-radius: 50%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #7d8592;
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__list-elem.opened .faq__toggle {
  border-color: var(--orange);
  transform: rotate(45deg);
}

.faq__list-elem.opened .faq__toggle::before,
.faq__list-elem.opened .faq__toggle::after {
  background: var(--orange);
}

.faq__list-elem__answer {
  height: 0;
  padding: 0 76px 0 24px;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
}

.faq__list-elem.opened .faq__list-elem__answer {
  padding-bottom: 24px;
}

/* Footer */
.footer__main {
  padding: 54px 0 48px;
  color: #fff;
  background: #172033;
}

.footer a {
  color: #fff;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr 1.2fr;
  gap: 35px;
}

.footer .logo-anchor__text {
  color: #fff;
}

.logo-anchor--footer {
  margin-bottom: 16px;
}

.logo-anchor--footer img {
  filter: brightness(0) invert(1);
}

.footer__availability {
  max-width: 330px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer__inner-logo__phone,
.footer__inner-logo__email {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__inner-logo__phone {
  margin-bottom: 12px;
}

.footer__inner-logo__phone img,
.footer__inner-logo__email img {
  width: 28px;
  height: 28px;
}

.footer__inner-logo__phone a {
  font-weight: 700;
}

.footer__inner-menu__heading {
  margin-bottom: 17px;
  color: #fff;
  font-size: 18px;
}

.footer__inner-menu__list {
  display: grid;
  gap: 9px;
}

.footer__inner-menu__list a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer__inner-menu__list a:hover {
  color: #fff;
}

.footer__inner-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer__copyright {
  padding: 12px 15px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  text-align: center;
}

.mobile-call {
  display: none;
}

@media (max-width: 1080px) {
  .header__menu ul {
    gap: 14px;
  }

  .header__menu a {
    font-size: 14px;
  }

  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer__inner-text {
    grid-column: 1 / -1;
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .header {
    padding: 10px 0;
  }

  .header__menu {
    position: fixed;
    inset: 64px 0 auto;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 30px rgba(23, 32, 51, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .header__menu.opened {
    max-height: calc(100vh - 69px);
    opacity: 1;
    visibility: visible;
  }

  .header__menu ul {
    padding: 20px 15px 28px;
    display: grid;
    gap: 0;
    text-align: center;
  }

  .header__menu li {
    border-bottom: 1px solid var(--border);
  }

  .header__menu a {
    padding: 14px;
    display: block;
    font-size: 16px;
  }

  .header__menu a::after {
    display: none;
  }

  .header__switch-button {
    display: block;
    order: 3;
  }

  .header__phone {
    margin-left: auto;
  }

  .stats__inner {
    grid-template-columns: 1fr;
  }

  .about__inner {
    gap: 35px;
  }

  .faq__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 82px;
  }

  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 30;
    min-height: 64px;
    padding: 9px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    box-shadow: 0 12px 34px rgba(38, 26, 12, 0.34);
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .mobile-call.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-call img {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
  }

  .mobile-call__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
  }

  .mobile-call__text > span {
    font-size: 13px;
  }

  .mobile-call__text strong {
    margin-top: 2px;
    font-size: 18px;
  }

  .introduction {
    min-height: auto;
    padding: 72px 0 125px;
  }

  .advantages {
    margin-top: -70px;
  }

  .process,
  .about,
  .info,
  .feedback,
  .faq,
  .service {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .process__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process__list::before {
    top: 25px;
    bottom: 25px;
    left: 30px;
    width: 2px;
    height: auto;
  }

  .process__item {
    min-height: 78px;
    padding: 0 0 0 84px;
    text-align: left;
  }

  .process__number {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    margin: 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__image {
    display: none;
  }

  .about__image--mobile {
    width: 100%;
    height: auto;
    margin-bottom: 22px;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .info__grid {
    grid-template-columns: 1fr;
  }

  .contact-us__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-us__phone {
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner-logo,
  .footer__inner-text {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .header__phone {
    display: none;
  }

  .logo-anchor__text {
    font-size: 17px;
  }

  .introduction {
    padding: 62px 0 112px;
    background-image: url(../../assets/images/introduction-mobile-bg.webp);
  }

  .introduction::before {
    background: rgba(8, 18, 35, 0.66);
  }

  .introduction__main-info {
    text-align: left;
  }

  .hero-location {
    margin-right: 0;
    margin-left: 0;
    justify-content: flex-start;
    font-size: 14px;
  }

  .introduction__main-info__title {
    font-size: clamp(34px, 10vw, 44px);
  }

  .introduction__main-info__lead {
    font-size: 17px;
  }

  .introduction__main-info__list {
    display: grid;
    justify-content: start;
    gap: 12px;
  }

  .introduction__main-info__phone {
    width: 100%;
    min-width: 0;
  }

  .introduction__main-info__note {
    text-align: center;
  }

  .advantages {
    margin-top: -62px;
  }

  .advantages__list {
    gap: 12px;
  }

  .advantages__list-item {
    padding: 20px 12px 18px;
  }

  .advantages__list-item__icon {
    width: 50px;
    height: 50px;
  }

  .advantages__list-item h2 {
    font-size: 16px;
  }

  .advantages__list-item p {
    font-size: 12px;
  }

  .service__list {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .service__list-item {
    min-height: 0;
    display: none;
  }

  .service__list-item.opened {
    display: flex;
  }

  .service__button-container {
    display: flex;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .section-cta .button {
    width: 100%;
  }

  .stats__list {
    gap: 10px;
  }

  .stats__list-elem {
    min-height: 112px;
    padding: 16px 10px;
  }

  .stats__list-elem strong {
    font-size: 21px;
  }

  .faq__list-elem__question {
    min-height: 80px;
    padding: 18px;
    font-size: 15px;
  }

  .faq__list-elem__answer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .info__notice {
    flex-direction: column;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner-logo,
  .footer__inner-text {
    grid-column: auto;
  }
}

@media (max-width: 380px) {
  .logo-anchor img {
    width: 54px;
    height: 42px;
  }

  .logo-anchor__text {
    font-size: 15px;
  }

  .advantages__list {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
