:root {
  --av-black: #080b10;
  --av-graphite: #10151c;
  --av-graphite-light: #171e27;
  --av-navy: #102a47;
  --av-blue: #1677c8;
  --av-blue-light: #3da9ff;
  --av-orange: #f26f21;
  --av-orange-light: #ff9a4a;
  --av-white: #ffffff;
  --av-text: #17202a;
  --av-muted: #687482;
  --av-line: #dce2e8;
  --av-radius: 14px;
}

body {
  overflow-x: hidden;
  color: var(--av-text);
  background: #f4f6f8;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

/* Верхняя строка */

.header-top {
  color: #aab6c4;
  background: #080b10;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.header-top__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
}

.header-top__inner p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.header-top__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--av-orange);
  box-shadow: 0 0 0 5px rgb(242 111 33 / 12%);
  animation: pulse-dot 2s infinite;
}

.header-top__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-top__links a {
  color: var(--av-white);
  font-weight: 800;
}

.header-top__links a:hover {
  color: var(--av-orange-light);
}

/* Шапка */

.site-header {
  position: relative;
  z-index: 20;
  background: rgb(8 11 16 / 97%);
  box-shadow: 0 8px 30px rgb(0 0 0 / 12%);
  backdrop-filter: blur(16px);
}

.header-main {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 30px;
}

/* Логотип */

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #ffffff !important;
}

.logo:hover {
  color: #ffffff !important;
}

.logo__mark {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 10px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--av-orange) 0 49%, transparent 50%),
    var(--av-blue);
  box-shadow: 0 7px 24px rgb(242 111 33 / 25%);
  transform: skew(-6deg);
}

.logo__mark::after {
  position: absolute;
  right: -13px;
  bottom: -15px;
  width: 34px;
  height: 34px;
  border: 2px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  content: "";
}

.logo__mark span {
  position: relative;
  z-index: 1;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transform: skew(6deg);
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo__text strong {
  color: #ff792f !important;
  font-family: Oswald, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-shadow: 0 0 18px rgb(242 111 33 / 18%);
}

.logo__text small {
  color: #aab6c3 !important;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.logo:hover .logo__text strong {
  color: #ff9a4a !important;
}

/* Навигация */

.desktop-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  justify-content: center;
  gap: clamp(13px, 1.8vw, 27px);
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  color: #aeb8c3;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--av-orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--av-white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Телефон в шапке */

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--av-white);
}

.header-phone:hover {
  color: var(--av-orange-light);
}

.header-phone__icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgb(61 169 255 / 35%);
  border-radius: 50%;
  color: var(--av-blue-light);
  font-size: 15px;
}

.header-phone small,
.header-phone strong {
  display: block;
}

.header-phone small {
  margin-bottom: 3px;
  color: #8492a1;
  font-size: 9px;
}

.header-phone strong {
  font-size: 13px;
}

/* Мобильная кнопка */

.menu-toggle {
  display: none;
}

/* Кнопки */

.button {
  min-height: 46px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button b,
.button span {
  margin-left: 7px;
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--av-orange), #d94d10);
  box-shadow: 0 12px 28px rgb(242 111 33 / 25%);
}

.button--primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #ff8538, var(--av-orange));
  box-shadow: 0 15px 34px rgb(242 111 33 / 38%);
}

.button--ghost {
  color: #ffffff;
  border: 1px solid rgb(255 255 255 / 35%);
  background: rgb(255 255 255 / 7%);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  color: #ffffff;
  border-color: var(--av-blue-light);
  background: rgb(22 119 200 / 40%);
}

.button--outline-light {
  color: #ffffff;
  border: 1px solid rgb(255 255 255 / 27%);
  background: transparent;
}

.button--outline-light:hover {
  color: #ffffff;
  border-color: var(--av-orange);
  background: rgb(242 111 33 / 15%);
}

.button--dark {
  color: #ffffff;
  background: var(--av-navy);
}

.button--dark:hover {
  color: #ffffff;
  background: var(--av-blue);
}

.button--light {
  color: var(--av-navy);
  background: #ffffff;
  box-shadow: 0 12px 28px rgb(0 0 0 / 18%);
}

.button--light:hover {
  color: var(--av-navy);
  background: #f1f7ff;
}

/* Главный экран */

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background:
    radial-gradient(circle at 70% 25%, rgb(22 119 200 / 17%), transparent 32%),
    #080b10;
}

/*
  Фотография теперь занимает правую часть.
  Благодаря этому первый экран выглядит компактнее
  и не растягивается одной большой картинкой на всю ширину.
*/

.hero__media {
  position: absolute;
  z-index: -4;
  top: 0;
  right: 0;
  bottom: 0;
  left: 17%;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(8 11 16 / 88%) 0%,
    rgb(8 11 16 / 32%) 42%,
    rgb(8 11 16 / 7%) 100%
  );
  content: "";
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.8) contrast(1.06) brightness(0.7);
  animation: hero-image 16s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(5 8 12 / 100%) 0%,
      rgb(5 8 12 / 94%) 20%,
      rgb(5 8 12 / 48%) 57%,
      rgb(5 8 12 / 22%) 100%
    ),
    linear-gradient(
      0deg,
      rgb(5 8 12 / 84%) 0%,
      transparent 58%
    );
}

.hero__blue-glow {
  position: absolute;
  z-index: -2;
  top: 3%;
  right: 5%;
  width: 37vw;
  height: 37vw;
  border-radius: 50%;
  background: rgb(22 119 200 / 18%);
  filter: blur(100px);
  pointer-events: none;
  animation: glow-move 8s ease-in-out infinite alternate;
}

.hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
  opacity: 0.27;
}

.hero__content {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 42px 84px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 7px 11px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 100px;
  color: #c7d3df;
  background: rgb(255 255 255 / 7%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--av-orange);
  box-shadow: 0 0 0 5px rgb(242 111 33 / 16%);
}

.eyebrow {
  color: var(--av-orange-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #ffffff;
  font-family: Oswald, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--av-orange-light);
}

.hero__lead {
  max-width: 560px;
  margin: 0 0 19px;
  color: #c5d0db;
  font-size: 13px;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero__actions .button {
  min-width: 185px;
}

.hero__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 15px;
}

.hero__quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b9c6d3;
  font-size: 10px;
  font-weight: 700;
}

.hero__quick-links a:hover {
  color: #ffffff;
}

.hero__quick-links b {
  color: var(--av-orange-light);
  font-size: 15px;
}

.quick-link__icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgb(61 169 255 / 45%);
  border-radius: 6px;
  color: var(--av-blue-light);
  font-size: 8px;
  font-weight: 800;
}

/* Четыре направления */

.hero-services {
  display: grid;
  width: min(680px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.hero-service {
  position: relative;
  display: flex;
  min-height: 82px;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 19%);
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(
    145deg,
    rgb(16 25 36 / 82%),
    rgb(5 9 14 / 67%)
  );
  backdrop-filter: blur(10px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.hero-service::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--av-orange),
    var(--av-blue-light)
  );
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-service:hover {
  border-color: rgb(255 154 74 / 68%);
  color: #ffffff;
  background: linear-gradient(
    145deg,
    rgb(47 34 30 / 90%),
    rgb(12 25 40 / 88%)
  );
  box-shadow: 0 15px 35px rgb(0 0 0 / 20%);
  transform: translateY(-4px);
}

.hero-service:hover::before {
  opacity: 1;
}

.hero-service__number {
  position: absolute;
  top: 9px;
  right: 11px;
  color: rgb(255 255 255 / 30%);
  font-family: Oswald, sans-serif;
  font-size: 9px;
}

.hero-service__icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgb(242 111 33 / 50%);
  border-radius: 7px;
  color: var(--av-orange-light);
  background: rgb(242 111 33 / 12%);
}

.hero-service__icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-service__text strong,
.hero-service__text small {
  display: block;
}

.hero-service__text strong {
  font-size: 10px;
  font-weight: 800;
}

.hero-service__text small {
  margin-top: 3px;
  color: #9eacba;
  font-size: 8px;
}

.hero-service__arrow {
  position: absolute;
  right: 11px;
  bottom: 9px;
  color: var(--av-blue-light);
  font-size: 14px;
}

/* Факты внизу */

.hero__facts {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  display: grid;
  width: min(calc(100% - 48px), 1240px);
  grid-template-columns: repeat(3, 1fr);
  margin-inline: auto;
  border-top: 1px solid rgb(255 255 255 / 20%);
}

.hero__facts div {
  min-width: 0;
  padding: 11px 20px 0 0;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  color: #ffffff;
  font-size: 11px;
}

.hero__facts span {
  margin-top: 3px;
  color: #93a2b1;
  font-size: 9px;
}

/* Заголовки секций */

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 39px;
}

.section-heading > div {
  max-width: 670px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--av-muted);
  font-size: 13px;
  line-height: 1.7;
}

.eyebrow--dark {
  color: var(--av-blue);
}

.eyebrow--orange {
  color: var(--av-orange);
}

h2 {
  margin: 10px 0 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(34px, 4vw, 57px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

/* Блок направлений */

.service-index {
  position: relative;
  padding: 100px 0 110px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgb(22 119 200 / 6%),
      transparent 28%
    ),
    #f3f6f8;
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--av-radius);
  color: #ffffff;
  background: var(--av-graphite);
  box-shadow: 0 15px 35px rgb(13 29 45 / 8%);
  isolation: isolate;
}

.service-card > img,
.service-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2, .7, .2, 1);
}

.service-card:hover > img {
  transform: scale(1.08);
}

.service-card__shade {
  z-index: -1;
  background:
    linear-gradient(
      0deg,
      rgb(3 7 12 / 98%) 3%,
      rgb(4 8 13 / 73%) 51%,
      rgb(4 8 13 / 8%) 100%
    ),
    linear-gradient(
      135deg,
      rgb(8 54 93 / 30%),
      transparent 55%
    );
}

.service-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px;
}

.service-card__content > span {
  color: var(--av-orange-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 280px;
  margin: 11px 0 12px;
  color: #ffffff;
  font-family: Oswald, sans-serif;
  font-size: 25px;
  line-height: 1.08;
}

.service-card p {
  max-width: 290px;
  margin: 0 0 19px;
  color: #c2ccd6;
  font-size: 11px;
  line-height: 1.6;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.service-card a b {
  color: var(--av-orange-light);
  font-size: 17px;
  transition: transform 180ms ease;
}

.service-card a:hover {
  color: var(--av-orange-light);
}

.service-card a:hover b {
  transform: translateX(4px);
}

/* Преимущества */

.advantages {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #ffffff;
  background:
    linear-gradient(
      115deg,
      #080c12 0%,
      #0d1723 58%,
      #102a47 100%
    );
}

.advantages::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      transparent 30%,
      rgb(61 169 255 / 8%) 30.2%,
      transparent 30.5%
    ),
    linear-gradient(
      135deg,
      transparent 55%,
      rgb(242 111 33 / 8%) 55.2%,
      transparent 55.5%
    );
  content: "";
  pointer-events: none;
}

.advantages__decor {
  position: absolute;
  border: 1px solid rgb(61 169 255 / 18%);
  border-radius: 50%;
  pointer-events: none;
}

.advantages__decor--one {
  top: -190px;
  right: -120px;
  width: 560px;
  height: 560px;
}

.advantages__decor--two {
  top: -125px;
  right: -55px;
  width: 425px;
  height: 425px;
}

.advantages__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.advantages__intro h2 {
  color: #ffffff;
}

.advantages__intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 24px 0 30px;
  color: #abb8c5;
  font-size: 14px;
  line-height: 1.75;
}

.advantages__list article {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 23px;
  padding: 23px 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.advantages__list article:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.advantages__list article > span {
  color: var(--av-orange-light);
  font-family: Oswald, sans-serif;
  font-size: 14px;
}

.advantages__list h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 17px;
}

.advantages__list p {
  max-width: 500px;
  margin: 0;
  color: #9daab8;
  font-size: 12px;
  line-height: 1.65;
}

/* Блок о компании */

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 680px;
  background: #ffffff;
}

.about-band__image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: var(--av-graphite);
}

.about-band__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 60%,
    rgb(255 255 255 / 10%)
  );
  content: "";
  pointer-events: none;
}

.about-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.06);
  transition: transform 700ms ease;
}

.about-band:hover .about-band__image img {
  transform: scale(1.035);
}

.about-band__image-label {
  position: absolute;
  z-index: 1;
  bottom: 35px;
  left: 35px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 20px;
  border-left: 3px solid var(--av-orange);
  color: #ffffff;
  background: rgb(5 9 14 / 72%);
  backdrop-filter: blur(12px);
}

.about-band__image-label span {
  font-family: Oswald, sans-serif;
  font-size: 24px;
  letter-spacing: .08em;
}

.about-band__image-label small {
  color: #aebdca;
  font-size: 10px;
}

.about-band__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(35px, 7vw, 105px);
}

.about-band__content h2 {
  color: var(--av-navy);
}

.about-band__content > p:not(.eyebrow) {
  max-width: 570px;
  margin: 21px 0 0;
  color: var(--av-muted);
  font-size: 14px;
  line-height: 1.75;
}

.about-band__stats {
  display: grid;
  gap: 0;
  max-width: 570px;
  margin-top: 29px;
}

.about-band__stats div {
  padding: 15px 0;
  border-top: 1px solid var(--av-line);
}

.about-band__stats strong,
.about-band__stats span {
  display: block;
}

.about-band__stats strong {
  color: var(--av-navy);
  font-size: 13px;
}

.about-band__stats span {
  margin-top: 4px;
  color: var(--av-muted);
  font-size: 11px;
}

.about-band__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 25px;
}

.text-link--dark {
  color: var(--av-blue);
}

.text-link--dark:hover {
  color: var(--av-orange);
}

/* Адрес */

.location-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(110deg, #111a24, #0a0d12);
}

.location-section::before {
  position: absolute;
  top: -160px;
  right: 10%;
  width: 460px;
  height: 460px;
  border: 1px solid rgb(61 169 255 / 18%);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgb(61 169 255 / 3%),
    0 0 0 110px rgb(61 169 255 / 2%);
  content: "";
  pointer-events: none;
}

.location-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 80px;
  min-height: 450px;
  padding-block: 80px;
}

.location-section__content h2 {
  color: #ffffff;
}

.location-section__content > p:not(.eyebrow) {
  max-width: 550px;
  margin: 22px 0;
  color: #aebbc8;
  font-size: 14px;
  line-height: 1.7;
}

.location-address {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  font-size: 15px;
}

.location-address__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgb(242 111 33 / 55%);
  border-radius: 50%;
  color: var(--av-orange-light);
  font-size: 20px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.location-section__card {
  position: relative;
  padding: 31px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--av-radius);
  background: linear-gradient(
    145deg,
    rgb(24 39 56 / 90%),
    rgb(9 14 21 / 90%)
  );
  box-shadow: 0 22px 45px rgb(0 0 0 / 18%);
}

.location-section__card::before {
  position: absolute;
  top: 0;
  left: 31px;
  width: 65px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--av-orange),
    var(--av-blue-light)
  );
  content: "";
}

.location-section__card-label {
  display: block;
  margin-bottom: 22px;
  color: var(--av-orange-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-section__phone {
  display: block;
  color: #ffffff;
  font-family: Oswald, sans-serif;
  font-size: 31px;
  letter-spacing: .02em;
}

.location-section__phone:hover {
  color: var(--av-orange-light);
}

.location-section__mail {
  display: inline-block;
  margin-top: 9px;
  color: #a8c8e4;
  font-size: 13px;
}

.location-section__mail:hover {
  color: #ffffff;
}

.location-section__socials {
  display: grid;
  gap: 0;
  margin-top: 25px;
  border-top: 1px solid rgb(255 255 255 / 13%);
}

.location-section__socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
  color: #c6d1dc;
  font-size: 12px;
  font-weight: 700;
}

.location-section__socials a:hover {
  color: var(--av-orange-light);
}

.location-section__socials span {
  color: var(--av-blue-light);
  font-size: 17px;
}

/* CTA */

.cta-strip {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(
    110deg,
    var(--av-orange),
    #d74d12 46%,
    #bd3d0a
  );
}

.cta-strip::after {
  position: absolute;
  top: -100px;
  right: 12%;
  width: 340px;
  height: 340px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgb(255 255 255 / 5%);
  content: "";
  pointer-events: none;
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 230px;
  padding-block: 48px;
}

.cta-strip .eyebrow {
  color: rgb(255 255 255 / 70%);
}

.cta-strip h2 {
  max-width: 680px;
  color: #ffffff;
}

.cta-strip__text {
  max-width: 580px;
  margin: 13px 0 0;
  color: rgb(255 255 255 / 79%);
  font-size: 13px;
  line-height: 1.6;
}

/* Футер */

.site-footer {
  color: #aab7c4;
  background: #080b10;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding-block: 70px 55px;
}

.logo--footer {
  margin-bottom: 20px;
}

.footer-brand > p {
  max-width: 310px;
  margin: 0;
  color: #7f8c9b;
  font-size: 12px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.footer-socials a {
  padding: 8px 11px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 6px;
  color: #aebbc7;
  font-size: 10px;
  font-weight: 800;
  transition: 180ms ease;
}

.footer-socials a:hover {
  border-color: var(--av-orange);
  color: var(--av-orange-light);
  background: rgb(242 111 33 / 8%);
}

.footer-column,
.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3,
.footer-contacts h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 12px;
}

.footer-column a,
.footer-contacts a,
.footer-contacts p {
  margin: 0;
  color: #82909f;
  font-size: 11px;
  line-height: 1.5;
}

.footer-column a:hover,
.footer-contacts a:hover {
  color: var(--av-orange-light);
}

.footer-contacts .footer-phone {
  color: #ffffff;
  font-family: Oswald, sans-serif;
  font-size: 25px;
}

.footer-contacts p {
  max-width: 210px;
  margin: 3px 0 10px;
}

.footer-contacts .button {
  min-height: 42px;
  margin-top: 4px;
  padding-inline: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #687582;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

/* Анимации */

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgb(242 111 33 / 12%);
  }

  50% {
    box-shadow: 0 0 0 9px rgb(242 111 33 / 2%);
  }
}

@keyframes hero-image {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

@keyframes glow-move {
  from {
    transform: translate3d(0, 0, 0);
    opacity: .65;
  }

  to {
    transform: translate3d(-30px, 25px, 0);
    opacity: 1;
  }
}

/* Планшеты */

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .service-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 460px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contacts {
    grid-column: 3;
  }
}

@media (max-width: 900px) {
  .header-main {
    min-height: 70px;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 8px;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 4px;
    background: #ffffff;
  }

  .mobile-menu {
    border-top: 1px solid rgb(255 255 255 / 10%);
    background: #0b0f15;
  }

  .mobile-menu nav {
    display: grid;
    padding: 18px 24px;
  }

  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgb(255 255 255 / 9%);
    color: #c4d0dc;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-menu__actions {
    display: grid;
    gap: 9px;
    padding: 0 24px 24px;
  }

  .hero,
  .hero__content {
    min-height: 660px;
  }

  .hero__media {
    left: 8%;
  }

  .hero__content {
    padding-block: 42px 100px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(42px, 7vw, 62px);
  }

  .hero-services {
    max-width: 640px;
  }

  .advantages__layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .location-section__inner {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
}

/* Телефоны */

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 1240px);
  }

  .header-top__inner {
    min-height: 33px;
  }

  .header-top__inner > p {
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-top__links span {
    display: none;
  }

  .header-top__links {
    flex: 0 0 auto;
  }

  .header-top__links a {
    font-size: 10px;
  }

  .logo__mark {
    width: 37px;
    height: 37px;
  }

  .logo__text strong {
    font-size: 20px;
  }

  .logo__text small {
    font-size: 7px;
  }

  .hero,
  .hero__content {
    min-height: 720px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-block: 40px 128px;
  }

  .hero__media {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    clip-path: none;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__media::after {
    background:
      linear-gradient(
        90deg,
        rgb(4 7 11 / 97%),
        rgb(5 11 19 / 67%)
      ),
      linear-gradient(
        0deg,
        rgb(5 8 12 / 96%),
        transparent 58%
      );
  }

  .hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgb(4 7 11 / 45%),
        transparent
      ),
      linear-gradient(
        0deg,
        rgb(5 8 12 / 83%),
        transparent 58%
      );
  }

  .hero__grid {
    background-size: 45px 45px;
    opacity: .18;
  }

  .hero__label {
    margin-bottom: 17px;
    font-size: 8px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 17px;
    font-size: clamp(38px, 11vw, 54px);
    line-height: .98;
  }

  .hero__lead {
    margin-bottom: 21px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__quick-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    margin-top: 13px;
  }

  .hero__quick-links a {
    font-size: 10px;
  }

  .hero-services {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 17px;
  }

  .hero-service {
    min-height: 76px;
    padding: 9px;
  }

  .hero-service__text strong {
    font-size: 9px;
  }

  .hero-service__text small {
    font-size: 7.5px;
  }

  .hero__facts {
    right: 16px;
    bottom: 17px;
    left: 16px;
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    display: none;
  }

  .hero__facts div:first-child {
    display: block;
    padding-top: 11px;
  }

  .section-heading {
    display: block;
    margin-bottom: 27px;
  }

  .section-heading > p {
    margin-top: 17px;
  }

  .service-index,
  .advantages {
    padding: 73px 0 78px;
  }

  .service-grid--four {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 430px;
  }

  .advantages__intro > p:not(.eyebrow) {
    font-size: 13px;
  }

  .about-band {
    grid-template-columns: 1fr;
  }

  .about-band__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about-band__image-label {
    bottom: 20px;
    left: 20px;
  }

  .about-band__content {
    padding: 67px 24px;
  }

  .about-band__content > p:not(.eyebrow) {
    font-size: 13px;
  }

  .location-section__inner {
    display: block;
    min-height: auto;
    padding-block: 73px;
  }

  .location-section__card {
    margin-top: 42px;
  }

  .location-section__phone {
    font-size: 27px;
  }

  .cta-strip__inner {
    display: block;
    min-height: auto;
    padding-block: 65px;
  }

  .cta-strip__inner .button {
    width: 100%;
    margin-top: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 22px;
    padding-block: 55px 40px;
  }

  .footer-brand,
  .footer-contacts {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
    padding-block: 17px;
  }

  .footer-bottom p + p {
    margin-top: 8px;
  }
}

/* Маленькие телефоны */

@media (max-width: 420px) {
  .hero,
  .hero__content {
    min-height: 700px;
  }

  .hero__content {
    padding-bottom: 119px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero__lead {
    font-size: 11.5px;
  }

  .hero__quick-links {
    display: grid;
    gap: 9px;
  }

  .hero__quick-links a {
    justify-content: space-between;
  }

  .hero-service {
    min-height: 72px;
  }

  .hero-service__icon {
    width: 24px;
    height: 24px;
  }

  .hero-service__text strong {
    font-size: 9px;
  }

  .hero-service__text small {
    font-size: 7px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .button {
    width: 100%;
  }

  .about-band__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}