:root {
  --bubble-radius: 24px;
  --bubble-radius-sm: 16px;
  --bubble-radius-lg: 32px;
  --bubble-radius-xl: 40px;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 16px;
  --bubble-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  --bubble-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

@-webkit-keyframes typing-cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.35; }
}
@keyframes typing-cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.35; }
}

@-webkit-keyframes lead-magnet-text-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
}
@keyframes lead-magnet-text-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
}

@-webkit-keyframes lead-magnet-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes lead-magnet-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@-webkit-keyframes lead-magnet-cta-glass {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes lead-magnet-cta-glass {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Подсказка при наведении (что такое «Муж на час») */
.hint-block {
  position: relative;
  cursor: help;
}
.hint-block::after {
  content: attr(data-hint);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: 10px;
  padding: 12px 16px;
  max-width: 320px;
  width: max-content;
  font-family: "Circe", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  background: #373841;
  border-radius: var(--bubble-radius-sm);
  box-shadow: var(--bubble-shadow);
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 20;
  pointer-events: none;
}
.hint-block:hover::after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767.98px) {
  .hint-block::after {
    max-width: 260px;
    font-size: 12px;
    padding: 10px 12px; } }

.services__list-item-title.hint-block::after {
  bottom: auto;
  top: 100%;
  margin-bottom: 0;
  margin-top: 10px;
}

.btn-yellow {
  font-family: "Circe Bold";
  font-size: 16px;
  color: #000;
  background: #f2a208;
  border-radius: var(--bubble-radius-sm);
  box-shadow: var(--bubble-shadow);
  -webkit-transition: box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease; }
  .btn-yellow:hover {
    background: #c18106;
    color: #000;
    box-shadow: var(--bubble-shadow-hover);
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px); }

.btn-black-bordered {
  font-family: "Circe Bold";
  font-size: 14px;
  color: #000;
  background: transparent;
  border: 1px solid #000;
  border-radius: var(--bubble-radius-sm);
  -webkit-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease; }
  .btn-black-bordered:hover {
    background: #f2a208;
    border-color: #f2a208;
    color: #000;
    box-shadow: var(--bubble-shadow); }

/* Модалка по центру; отступ за счёт margin у диалога — слой как у бэкдропа, без «другого размера» при закрытии */
.modal.show,
.modal[aria-hidden="false"] {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  box-sizing: border-box; }
.modal.show .modal-dialog,
.modal[aria-hidden="false"] .modal-dialog {
  margin: 15px; }

.modal-content {
  position: relative;
  border-radius: var(--bubble-radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(var(--glass-blur));
          backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05) inset; }
  .modal-content .modal-wrap {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: 0;
    background: transparent; }

/* Фикс: диалог не «разъезжается» при закрытии */
#callback .modal-dialog,
#success .modal-dialog {
  max-width: 440px;
  width: 100%; }

.modal-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 48px 24px 32px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
/* Переопределяем Bootstrap: .modal-header по умолчанию имеет justify-content: space-between */
.modal-wrap .modal-header {
  width: 100%;
  padding: 0 0 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center; }
.modal-wrap .modal-title {
  width: 100%;
  margin: 0 0 8px;
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word; }
.modal-wrap .modal-title .modal-title__service {
  display: block;
  margin-top: 2px; }
.modal-wrap .modal-subtitle {
  width: 100%;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word; }
.modal-wrap .modal-body {
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
.modal-wrap .modal-body .sltop__form {
  width: 100%;
  max-width: 260px; }
.modal-wrap .modal-body .sltop__form .form-control-wrap {
  margin-bottom: 12px; }
.modal-wrap .modal-body .sltop__form .form-control-wrap:last-of-type {
  margin-bottom: 20px; }
.modal-wrap .modal-body .sltop__form .modal__submit {
  margin-top: 0;
  width: 100%; }
.modal-wrap .modal-body .btn.modal__submit {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  min-height: 44px; }

@media (min-width: 768px) {
  .modal-dialog.modal-lg.modal-dialog-centered {
    margin: 0 auto;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

@keyframes header-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; } }

@keyframes header-title-slide {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(72px); }
  50% { transform: translateX(0); }
  75% { transform: translateX(-90px); } }

@keyframes header-title-drift {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(12px); }
  50% { transform: translateX(0); }
  75% { transform: translateX(-12px); } }

@keyframes header-title-shine {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; } }

@keyframes neon-border-pulse {
  0%, 100% {
    box-shadow: 0 0 4px #fff, 0 0 12px rgba(255,255,255,0.7), 0 0 20px #f2a208, 0 0 28px rgba(242,162,8,0.4);
    border-color: rgba(255,255,255,0.9); }
  50% {
    box-shadow: 0 0 8px #fff, 0 0 20px rgba(255,255,255,0.9), 0 0 35px #f2a208, 0 0 50px rgba(242,162,8,0.6);
    border-color: #fff; } }

@keyframes neon-text-glow {
  0%, 100% {
    text-shadow: 0 0 4px #fff, 0 0 10px rgba(255,255,255,0.8), 0 0 18px #f2a208, 0 0 24px rgba(242,162,8,0.5); }
  50% {
    text-shadow: 0 0 8px #fff, 0 0 18px rgba(255,255,255,0.95), 0 0 28px #f2a208, 0 0 38px rgba(242,162,8,0.7); } }

@keyframes logo-border-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 2px 8px rgba(0,0,0,0.08); }
  50% { box-shadow: 0 0 0 1px rgba(242,162,8,0.35), 0 2px 12px rgba(242,162,8,0.08); } }

.modal .close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease; }
.modal .close:hover {
  opacity: 1; }
.modal .close span {
  display: block;
  line-height: 40px;
  text-align: center; }

.modal-header {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 0; }

.modal-title {
  display: block;
  width: 100%;
  font-size: 24px;
  font-family: "Circe Bold";
  color: #1a1a1a; }
@media (min-width: 480px) {
  .modal-title {
    font-size: 28px; } }

.modal-subtitle {
  display: block;
  width: 100%;
  font-size: 15px;
  font-family: "Circe", sans-serif;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.45; }
@media (min-width: 480px) {
  .modal-subtitle {
    font-size: 16px; } }

.modal form {
  width: 100%;
  margin: 0;
  padding: 0; }

.modal .form-control {
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  text-align: center;
  background: #fff;
  font-size: 15px;
  border-radius: var(--bubble-radius-sm);
  -webkit-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.modal .form-control:focus {
  border-color: #f2a208;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(242, 162, 8, 0.15); }
.modal .form-control::-webkit-input-placeholder {
  color: #999; }
.modal .form-control::placeholder {
  color: #999; }

.modal .btn.modal__submit,
.modal .btn {
  display: block;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 20px;
  font-family: "Circe Bold";
  font-size: 15px;
  border-radius: var(--bubble-radius-sm);
  cursor: pointer;
  border: 0;
  -webkit-transition: background 0.2s ease, transform 0.05s ease;
  transition: background 0.2s ease, transform 0.05s ease; }

.modal .form-text {
  text-align: center;
  color: #000; }
.modal .form-text__line {
  white-space: nowrap; }

.form-control {
  -webkit-box-shadow: none;
          box-shadow: none; }

#order .modal-title {
  font-size: 18px;
  line-height: 1.15; }

#order .modal-header {
  padding-bottom: 0; }

.modal-problem {
  margin-bottom: 10px;
  padding: 40px 0;
  border: 1px solid #007bff;
  border-radius: var(--bubble-radius);
  text-align: center; }
  .modal-problem-itself {
    font-size: 13px; }
  .modal-problem-cost {
    font-size: 16px;
    color: #007bff; }

@font-face {
  font-family: 'Circe Light';
  src: local("Circe Light"), local("Circe-Light"), url("../fonts/Circe-Light.woff2") format("woff2"), url("../fonts/Circe-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: block; }

@font-face {
  font-family: 'Circe';
  src: local("Circe"), local("Circe-Regular"), url("../fonts/Circe-Regular.woff2") format("woff2"), url("../fonts/Circe-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

@font-face {
  font-family: 'Circe Thin';
  src: local("Circe Thin"), local("Circe-Thin"), url("../fonts/Circe-Thin.woff2") format("woff2"), url("../fonts/Circe-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: block; }

@font-face {
  font-family: 'Circe Bold';
  src: local("Circe Bold"), local("Circe-Bold"), url("../fonts/Circe-Bold.woff2") format("woff2"), url("../fonts/Circe-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: block; }

@font-face {
  font-family: 'Circe ExtraBold';
  src: local("Circe ExtraBold"), local("Circe-ExtraBold"), url("../fonts/Circe-ExtraBold.woff2") format("woff2"), url("../fonts/Circe-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: block; }

@font-face {
  font-family: 'Circe ExtraLight';
  src: local("Circe ExtraLight"), local("Circe-ExtraLight"), url("../fonts/Circe-ExtraLight.woff2") format("woff2"), url("../fonts/Circe-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: block; }

* {
  outline: none !important; }

body {
  padding-right: 0 !important;
  overflow-x: hidden;
  background: #fff;
  margin-bottom: 0;
  padding-bottom: 0; }
html {
  background: #000; }

.yellow {
  color: #f2a208; }

.block-title {
  position: relative;
  margin-bottom: 45px;
  font-size: 32px;
  line-height: 1.15;
  font-family: "Circe ExtraBold";
  text-transform: uppercase;
  color: #000;
  text-align: center;
  z-index: 10; }
  .block-title small {
    display: block;
    font-family: "Circe";
    font-size: 16px;
    text-transform: none; }
    @media (max-width: 767.98px) {
      .block-title small {
        font-size: 14px; }
        .block-title small br {
          display: none; } }
  @media (max-width: 767.98px) {
    .block-title {
      margin-bottom: 30px;
      font-size: 25px;
      line-height: 1.1;
      text-align: center; } }
  .block-title--capitalized {
    font-size: 27px;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .block-title--capitalized {
        font-size: 20px; } }
  .block-title--large-margin {
    margin-bottom: 90px; }
    @media (max-width: 991.98px) {
      .block-title--large-margin {
        margin-bottom: 40px; } }

.header {
  position: relative;
  min-height: 470px;
  padding-top: 68px;
  padding-bottom: 150px;
  background: #000000;
  overflow: hidden;
  border-radius: 0 0 var(--bubble-radius-xl) var(--bubble-radius-xl); }
  .header__master {
    position: absolute;
    right: 0;
    left: auto;
    bottom: 0;
    z-index: 1;
    max-width: 520px;
    width: 52%; }
    @media (max-width: 1199.98px) {
      .header__master {
        max-width: 440px;
        width: 48%; } }
    @media (max-width: 991.98px) {
      .header__master {
        display: none; } }
    .header__master img {
      display: block;
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }
  @media (max-width: 991.98px) {
    .header {
      min-height: 0;
      padding-top: 60px;
      padding-bottom: 60px;
      background-image: none !important;
      background: #202028; } }
  @media (max-width: 767.98px) {
    .header {
      min-height: 0;
      padding-bottom: 60px; } }
  .header__offer {
    position: relative;
    margin-top: 45px;
    z-index: 1; }
    @media (max-width: 991.98px) {
      .header__offer {
        margin-top: 25px; } }
    @media (max-width: 767.98px) {
      .header__offer {
        margin-top: 20px; } }
    .header__offer-backtitle {
      position: relative;
      margin: 0 0 30px 0;
      padding-top: 50px;
      padding-left: 15px;
      padding-right: 15px;
      font-family: "Circe ExtraBold";
      font-size: 136px;
      line-height: 1.15;
      color: #fff;
      text-align: center;
      text-transform: uppercase;
      z-index: 0;
      box-sizing: border-box; }
      .header__offer-backtitle-text {
        display: inline-block;
        background: linear-gradient(90deg, #fff 0%, #f2a208 20%, #fff 40%, #f2a208 60%, #fff 80%, #f2a208 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        animation: header-title-drift 6s ease-in-out infinite, header-title-shine 8s ease-in-out infinite; }
      .header__offer-backtitle-city {
        display: block;
        font-size: 0.35em;
        line-height: 1.3;
        margin-top: 0.1em;
        letter-spacing: 0.02em;
        color: rgba(255,255,255,0.92);
        text-shadow: 0 0 6px rgba(255,255,255,0.3);
        animation: none; }
      @media (max-width: 1199.98px) {
        .header__offer-backtitle {
          font-size: 120px; } }
      @media (max-width: 991.98px) {
        .header__offer-backtitle {
          padding-top: 25px;
          font-size: 45px; }
          .header__offer-backtitle br {
            display: none; } }
      @media (max-width: 767.98px) {
        .header__offer-backtitle {
          padding-top: 20px;
          font-size: 30px;
          padding-left: 10px;
          padding-right: 10px; } }
    .header__offer-tagline {
      position: relative;
      margin-bottom: 55px;
      font-size: 29px;
      line-height: 1.35;
      color: #fff;
      z-index: 2; }
      @media (max-width: 991.98px) {
        .header__offer-tagline {
          margin-bottom: 38px; } }
      @media (max-width: 767.98px) {
        .header__offer-tagline {
          margin-bottom: 25px;
          font-size: 20px; } }
  .header .form-inline {
    position: relative;
    width: 100%;
    max-width: 465px;
    z-index: 2; }
    @media (max-width: 991.98px) {
      .header .form-inline {
        max-width: 333px;
        margin: 0 auto; } }
    .header .form-inline .form-control {
      width: 263px;
      height: 41px;
      padding-left: 24px;
      font-size: 14px;
      border: 1px solid #f2a208;
      background: transparent;
      color: #fff;
      border-radius: var(--bubble-radius-sm); }
      .header .form-inline .form-control::-webkit-input-placeholder {
        color: #fff;
        opacity: 1; }
      .header .form-inline .form-control::-moz-placeholder {
        color: #fff;
        opacity: 1; }
      .header .form-inline .form-control:-ms-input-placeholder {
        color: #fff;
        opacity: 1; }
      .header .form-inline .form-control::-ms-input-placeholder {
        color: #fff;
        opacity: 1; }
      .header .form-inline .form-control::placeholder {
        color: #fff;
        opacity: 1; }
      @media (max-width: 991.98px) {
        .header .form-inline .form-control {
          width: 171px;
          padding-left: 15px; } }
      @media (max-width: 767.98px) {
        .header .form-inline .form-control {
          width: 100%;
          text-align: center;
          font-size: 16px; }
          .header .form-inline .form-control-wrap {
            display: block;
            width: 100%;
            max-width: 450px; } }
    .header .form-inline .btn {
      width: 180px;
      height: 41px;
      border-radius: var(--bubble-radius-sm); }
      @media (max-width: 991.98px) {
        .header .form-inline .btn {
          width: 150px; } }
      @media (max-width: 767.98px) {
        .header .form-inline .btn {
          width: 100%;
          max-width: 450px; } }
    .header .form-inline .form-text {
      width: 75%;
      margin-top: 0;
      font-size: 14px;
      color: #fff; }
      @media (max-width: 991.98px) {
        .header .form-inline .form-text {
          width: 100%; } }
      @media (max-width: 767.98px) {
        .header .form-inline .form-text {
          max-width: 400px;
          text-align: center; } }

.navigation {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding-top: 17px;
  padding-bottom: 17px;
  background: transparent;
  z-index: 800;
  -webkit-transition: background 0.2s ease, padding 0.2s ease;
  transition: background 0.2s ease, padding 0.2s ease; }
  @media (max-width: 991.98px) {
    .navigation {
      position: fixed;
      -webkit-transition: none;
      transition: none;
      background: #fff;
      border-radius: 0 0 var(--bubble-radius-xl) var(--bubble-radius-xl); } }
  @media (max-width: 767.98px) {
    .navigation {
      padding-top: 10px;
      padding-bottom: 10px; } }
  @media (max-width: 991.98px) {
    .navigation .logo__text {
      color: #000; }
      .navigation .logo__text small {
        color: #000; } }
  @media (max-width: 991.98px) {
    .navigation .logo {
      background: rgba(0, 0, 0, 0.06);
      border-color: rgba(0, 0, 0, 0.1);
      animation: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
    .navigation .logo:hover {
      background: rgba(0, 0, 0, 0.1);
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .navigation .logo__text {
      color: #000; } }
  .navigation.active .logo {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
    animation: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
  .navigation.active .logo:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .navigation.active .logo__text {
    color: #000; }
  .navigation--static {
    position: static !important; }
  .navigation--scrolled {
    position: fixed;
    background: rgba(25, 25, 25, 0.85);
    -webkit-backdrop-filter: blur(var(--glass-blur));
            backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 var(--bubble-radius-xl) var(--bubble-radius-xl); }
    .navigation--scrolled .navigation__city-picker-col {
      visibility: hidden;
      pointer-events: none; }
    .navigation--scrolled .navigation__contacts {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transform: none;
              transform: none; }
      .navigation--scrolled .navigation__contacts-phone {
        margin-right: 10px;
        padding: 5px 10px;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        white-space: nowrap; }
      .navigation--scrolled .navigation__contacts .btn {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        -webkit-box-shadow: 0px 3px 3.85px 1.15px rgba(38, 38, 38, 0.14);
                box-shadow: 0px 3px 3.85px 1.15px rgba(38, 38, 38, 0.14); }
  .navigation.active {
    background: #fff;
    border-radius: 0 0 var(--bubble-radius-xl) var(--bubble-radius-xl); }
  @media (max-width: 991.98px) {
    .navigation .navigation__city-picker-col {
      display: none; } }
  @media (max-width: 991.98px) {
    .navigation .navigation__list-col {
      display: none; } }
  .navigation__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    padding: 0;
    list-style: none; }
    @media (max-width: 991.98px) {
      .navigation__list-header .navigation__contacts {
        display: none; } }
    @media (min-width: 992px) {
      .navigation__list-header .container,
      .footer .container {
        padding-left: 20px;
        padding-right: 20px; } }
    .navigation__list-item {
      position: relative;
      margin-right: 14px;
      -webkit-transition: opacity 0.2s ease;
      transition: opacity 0.2s ease;
      cursor: pointer; }
      .navigation__list-item:last-of-type {
        margin-right: 0 !important; }
      .navigation__list-item a {
        font-family: "Circe Bold";
        font-size: 14px;
        color: #fff; }
      .navigation__list-item:last-of-type {
        margin-right: 0; }
      .navigation__list-item:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -3px;
        height: 2px;
        background: #f2a208;
        opacity: 0; }
      .navigation__list-item:hover:before {
        opacity: 1; }
      .navigation__list-item:hover a {
        color: #fff;
        text-decoration: none; }
      .navigation__list-item.active:before {
        opacity: 1; }
      .navigation__list-item.active a {
        color: #fff; }
  @media (max-width: 1199.98px) {
    .navigation .city-picker label {
      display: none; } }
  .navigation .city-picker select {
    -webkit-box-shadow: none;
            box-shadow: none; }
  .navigation__contacts-phone {
    display: inline-block;
    font-family: "Circe Bold";
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
  white-space: nowrap;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 2px 8px rgba(0,0,0,0.06);
    -webkit-transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.2s ease, -webkit-transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: logo-border-glow 4s ease-in-out infinite; }
    @media (max-width: 1199.98px) {
      .navigation__contacts-phone {
        font-size: 14px;
        margin-right: 0; } }
    @media (max-width: 991.98px) {
      .navigation__contacts-phone {
        color: #000;
        background: rgba(0, 0, 0, 0.06);
        border-color: rgba(0, 0, 0, 0.1);
        animation: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06); } }
  .navigation__contacts-phone-icon {
    display: inline-block;
    margin-right: 4px;
    font-size: 18px;
    line-height: 1; }
    @media (max-width: 767.98px) {
    .navigation__contacts-phone {
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 40px;
      height: 40px;
      padding: 0;
      border-radius: 50%;
      font-size: 18px; }
    .navigation__contacts-phone-text {
      display: none; }
    .navigation__contacts-phone-icon {
      margin: 0;
      font-size: 22px; }
    .navigation__contacts-col {
      -webkit-box-align: center !important;
          -ms-flex-align: center !important;
              align-items: center !important;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      column-gap: 12px; } }
    .navigation__contacts-phone:hover {
      color: #fff;
      text-decoration: none;
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(242, 162, 8, 0.4);
      box-shadow: 0 0 0 1px rgba(242,162,8,0.2), 0 4px 16px rgba(0,0,0,0.12);
      -webkit-transform: scale(1.03);
              transform: scale(1.03); }
    .navigation__contacts-phone:active {
      -webkit-transform: scale(0.98);
              transform: scale(0.98); }
    @media (max-width: 991.98px) {
      .navigation__contacts-phone:hover {
        background: rgba(0, 0, 0, 0.1);
        border-color: rgba(0, 0, 0, 0.15);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        color: #000; } }
    .navigation__contacts-phone svg, .navigation__contacts-phone img {
      display: inline-block;
      padding-bottom: 2px;
      width: 11px;
      height: 11px;
      fill: #f2a208; }
  .navigation__callback {
    margin-right: 12px;
    font-family: "Circe", sans-serif;
    font-size: 13px;
    color: #f2a208;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: color 0.2s ease, opacity 0.2s ease;
    transition: color 0.2s ease, opacity 0.2s ease; }
  .navigation__callback:hover {
    color: #ffb81e;
    text-decoration: none;
    opacity: 0.95; }
  @media (max-width: 991.98px) {
    .navigation__callback {
      color: #333;
      margin-right: 10px; }
    .navigation__callback:hover {
      color: #f2a208; } }
  .navigation__list-header .navigation__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transform: none;
            transform: none; }
  .navigation__contacts .btn {
    width: 195px;
    height: 39px;
    margin-bottom: 8px;
    font-size: 14px;
    border-radius: var(--bubble-radius-sm); }
  .navigation__hamburger {
    position: relative;
    display: none;
    vertical-align: middle;
    cursor: pointer; }
    @media (max-width: 991.98px) {
      .navigation__hamburger {
        display: inline-block;
        margin-left: 12px;
        background: transparent;
        border: none;
        box-shadow: none;
        width: auto;
        height: auto;
      }
    }
    @media (max-width: 767.98px) {
      .navigation__hamburger {
        margin-left: 0;
      }
    }
  .navigation__hamburger span {
    position: relative;
    width: 36px;
    height: 3px;
    background: #000;
    display: block;
    margin-bottom: 8px;
    -webkit-transition: 0.35s;
    transition: 0.35s; }
      .navigation__hamburger span:nth-child(1) {
        -webkit-transform-origin: left;
                transform-origin: left; }
      .navigation__hamburger span:nth-child(2) {
        -webkit-transform-origin: center;
                transform-origin: center; }
      .navigation__hamburger span:nth-child(3) {
        margin-bottom: 0;
        -webkit-transform-origin: left;
                transform-origin: left; }
    .navigation__hamburger.navigation__hamburger--active span:nth-child(1) {
      -webkit-transform: rotate(43deg);
              transform: rotate(43deg);
      left: 2px; }
    .navigation__hamburger.navigation__hamburger--active span:nth-child(2) {
      -webkit-transform: rotate(317deg);
              transform: rotate(317deg);
      right: 3px; }
    .navigation__hamburger.navigation__hamburger--active span:nth-child(3) {
      -webkit-transform: scaleX(0);
              transform: scaleX(0); }
  .navigation__mobile {
    position: fixed;
    left: 0;
    top: 62px;
    right: 0;
    bottom: 0;
    display: none;
    padding: 25px 0;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(var(--glass-blur));
            backdrop-filter: blur(var(--glass-blur));
    border-left: 1px solid var(--glass-border);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    border-radius: var(--bubble-radius-xl);
    overflow: hidden; }
    .navigation__mobile.active {
      display: block; }
    .navigation__mobile .navigation__list {
      margin-bottom: 20px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .navigation__mobile .navigation__list--mobile .navigation__list-item {
        width: 100%;
        margin-bottom: 8px;
        text-align: center;
        margin-right: 0; }
        .navigation__mobile .navigation__list--mobile .navigation__list-item:before {
          display: none; }
        .navigation__mobile .navigation__list--mobile .navigation__list-item a {
          display: -webkit-inline-flex;
          display: -ms-inline-flexbox;
          display: inline-flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          padding: 8px 14px;
          font-size: 15px;
          font-weight: 600;
          color: #1a1a1a;
          text-decoration: none;
          background: #fff;
          border: 1px solid rgba(0, 0, 0, 0.08);
          border-radius: var(--bubble-radius);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
          -webkit-transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
          transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; }
          .navigation__mobile .navigation__list--mobile .navigation__list-item a:hover {
            background: rgba(242, 162, 8, 0.1);
            border-color: rgba(242, 162, 8, 0.3);
            box-shadow: var(--bubble-shadow-hover);
            color: #000; }
        .navigation__mobile .nav-mobile-icon {
          margin-right: 8px;
          font-size: 1.1em;
          line-height: 1; }
    .navigation__mobile .city-picker {
      margin-bottom: 20px;
      text-align: center; }
      .navigation__mobile .city-picker .custom-select {
        background-color: #fff;
        color: #000; }
    .navigation__mobile .navigation__contacts {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      text-align: center; }
    .navigation__mobile .btn {
      margin: 0 auto;
      margin-top: 15px;
      width: 100%;
      max-width: 240px;
      font-size: 14px; }

.navigation__mobile .navigation__contacts-phone {
  width: auto;
  height: auto;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navigation__mobile .navigation__contacts-phone-text {
  display: inline;
}
.navigation__mobile .navigation__contacts-phone-icon {
  margin-right: 8px;
  font-size: 18px;
}

.logo {
  position: relative;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 8px;
  padding: 5px 10px 5px 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 2px 8px rgba(0,0,0,0.06);
  -webkit-transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: logo-border-glow 4s ease-in-out infinite; }
  .logo:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(242, 162, 8, 0.4);
    box-shadow: 0 0 0 1px rgba(242,162,8,0.2), 0 4px 16px rgba(0,0,0,0.12);
    -webkit-transform: scale(1.03);
            transform: scale(1.03); }
  .logo:active {
    -webkit-transform: scale(0.98);
            transform: scale(0.98); }
.logo__img {
  width: 28px;
  height: 32px;
  margin-right: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.logo:hover .logo__img {
  -webkit-transform: rotate(-6deg) scale(1.05);
          transform: rotate(-6deg) scale(1.05); }
    .logo__img img {
      display: block;
      max-width: 100%;
      max-height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }
  .logo__text {
    font-family: "Circe Bold";
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #fff;
    -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
    transition: color 0.2s ease, transform 0.2s ease; }
  .logo:hover .logo__text {
    color: #fff; }

.city-picker label {
  display: inline-block;
  margin-right: 13px;
  color: #fff;
  font-family: "Circe Bold";
  font-size: 14px; }

.city-picker .custom-select {
  display: inline-block;
  width: 180px;
  height: 35px;
  font-family: "Circe Bold";
  font-size: 14px;
  color: #fff;
  border: 1px solid #f2a208;
  border-radius: var(--bubble-radius-sm);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: url("../img/icons/select.png") no-repeat right 0.75rem center/7px 4px, transparent; }
  .city-picker .custom-select option {
    color: #000; }

.services {
  padding: 60px 0; }
  @media (max-width: 767.98px) {
    .services {
      padding-bottom: 20px; }
      .services__list > .services__list-item:nth-of-type(2) {
        margin: 0;
      }
    }
  .services__trust {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 32px; }
  .services__trust-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 220px;
            flex: 1 1 220px;
    max-width: 320px;
    padding: 16px 18px;
    border-radius: var(--bubble-radius-sm);
  background: #f9fafc;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03); }
  .services__trust-title {
    margin-bottom: 6px;
    font-family: "Circe Bold";
    font-size: 16px; }
  .services__trust-text {
    margin: 0;
    font-family: "Circe";
    font-size: 14px;
    line-height: 1.4;
    color: #555; }
  @media (max-width: 767.98px) {
    .services__trust {
      margin-bottom: 24px; }
    .services__trust-item {
      max-width: none; } }
  .services__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px; }
    .services__list > .services__list-item:nth-of-type(2) {
      margin: 0;
    }
    @media (max-width: 767px) {
      .services__list > .services__list-item:nth-of-type(2) {
        margin: 0;
      }
    }
    @media (max-width: 991.98px) {
      .services__list {
        width: 70%;
        margin: 0 auto; } }
    @media (max-width: 767.98px) {
      .services__list {
        width: 100%; } }
    .services__list-item {
      width: calc(33.333% - 16px);
      -webkit-box-shadow: 0 4px 20px rgba(0,0,0,0.08);
              box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border-radius: var(--bubble-radius);
      overflow: hidden;
      background: #fff; }
      @media (max-width: 991.98px) {
        .services__list-item {
          width: calc(50% - 12px);
          margin-bottom: 0; } }
      @media (max-width: 767.98px) {
        .services__list-item {
          width: 100%;
          margin-bottom: 0; } }
      .services__list-item-img {
        height: 200px;
        border: none;
        border-radius: 0;
        border-bottom: 3px solid #f2a208;
        overflow: hidden; }
        .services__list-item-img img {
          display: block;
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; }

      .services__list-item--with-explain .services__list-item-img-wrap {
        position: relative;
        height: 200px;
        overflow: hidden;
        border-bottom: 3px solid #f2a208; }
      .services__list-item--with-explain.is-explain-open .services__list-item-img-wrap {
        overflow: hidden; }
      .services__list-item--with-explain .services__list-item-img {
        position: relative;
        border-bottom: none;
        cursor: pointer;
        -webkit-transition: opacity 0.25s ease;
        transition: opacity 0.25s ease; }
      .services__list-item--with-explain .services__list-item-img::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 36px;
        background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        opacity: 0;
        -webkit-transition: opacity 0.2s ease;
        transition: opacity 0.2s ease;
        pointer-events: none; }
      .services__list-item--with-explain .services__list-item-img:hover::after {
        opacity: 1; }
      .services__list-item--with-explain.is-explain-open .services__list-item-img::after {
        display: none; }
      .services__list-item--with-explain.is-explain-open .services__list-item-img {
        opacity: 0;
        pointer-events: none; }
      .services__list-item--with-explain.is-explain-open {
        z-index: 10; }
      .services__list-item-explain {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 20px 16px;
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
        will-change: transform;
        z-index: 2;
        border-radius: var(--bubble-radius) var(--bubble-radius) 0 0;
        overflow: hidden;
        background: rgba(35, 36, 42, 0.92);
        -webkit-backdrop-filter: blur(20px) saturate(140%);
                backdrop-filter: blur(20px) saturate(140%);
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: none;
        cursor: pointer; }
      .services__list-item--with-explain.is-explain-open .services__list-item-explain {
        -webkit-transform: translateY(0);
                transform: translateY(0); }
      .services__list-item-explain-inner {
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        overflow: hidden; }
      .services__list-item--with-explain.is-explain-open .services__list-item-explain-inner {
        overflow: visible; }
      .services__list-item-explain-text {
        margin: 0;
        padding: 0;
        -webkit-box-flex: 1;
            -ms-flex: 1 1 0%;
                flex: 1 1 0%;
        min-height: 0;
        overflow-y: auto;
        font-size: 15px;
        line-height: 1.45;
        color: #ffffff;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        -webkit-overflow-scrolling: touch; }
      .services__list-item--with-explain.is-explain-open .services__list-item-explain-text {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        overflow: visible; }
      .services__list-item-explain-text br {
        display: block;
        margin-bottom: 0.25em; }
      .services__list-item-explain-text br.explain-p {
        margin-bottom: 0.5em; }
      .services__list-item-explain-text .services__explain-accent {
        color: #ffc233;
        font-weight: 700;
        font-style: normal;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }
      .services__list-item-explain-text .services__explain-highlight {
        color: #ffc233;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }
      .services__list-item-explain-text em {
        font-style: italic;
        color: #ffffff;
        font-weight: 500;
        opacity: 1; }
      .services__list-item-explain-text .typing-cursor {
        display: inline;
        font-size: 1.35em;
        font-weight: 300;
        line-height: 1.2;
        vertical-align: middle;
        opacity: 1;
        -webkit-animation: typing-cursor-blink 0.53s ease-in-out infinite;
                animation: typing-cursor-blink 0.53s ease-in-out infinite; }
        @media (max-width: 767.98px) {
          .services__list-item-explain-text {
            font-size: 14px;
            line-height: 1.4; } }

      .services__list-item-content {
        padding: 24px 20px; }
        @media (max-width: 1199.98px) {
          .services__list-item-content {
            padding: 24px 0; } }
      .services__list-item-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 100%;
        margin-bottom: 8px;
        height: 41px;
        padding: 0 15px;
        font-family: "Circe Bold";
        font-size: 14px;
        line-height: 1.1;
        text-align: center;
        color: #000;
        background: #f2a208;
        border-radius: var(--bubble-radius-sm); }
        @media (max-width: 767.98px) {
          .services__list-item-title {
            padding: 0 45px; } }
      .services__list-item .btn {
        width: 100%;
        height: 41px;
        border-radius: var(--bubble-radius-sm); }

.services__more {
  margin-top: 24px;
  text-align: center; }
  .services__more .btn {
    min-width: 220px; }

.services__list--extra {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: max-height 0.35s ease, opacity 0.3s ease, -webkit-transform 0.35s ease;
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.35s ease; }
  .services__list--extra.services__list--extra-visible {
    max-height: 2000px;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }

.how-we-work {
  padding: 50px 0;
  background: #fff;
}
.how-we-work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.how-we-work__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 220px;
          flex: 1 1 220px;
  max-width: 260px;
  padding: 20px;
  border-radius: var(--bubble-radius-sm);
  background: #f9fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.how-we-work__num {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  line-height: 32px;
  text-align: center;
  font-family: "Circe Bold";
  font-size: 16px;
  color: #fff;
  background: #373841;
  border-radius: 50%;
}
.how-we-work__title {
  margin-bottom: 8px;
  font-family: "Circe Bold";
  font-size: 16px;
  color: #000;
}
.how-we-work__text {
  margin: 0;
  font-family: "Circe";
  font-size: 14px;
  line-height: 1.45;
  color: #555;
}
@media (max-width: 767.98px) {
  .how-we-work {
    padding: 35px 0;
  }
  .how-we-work__item {
    max-width: none;
  }
}

.price {
  padding: 40px 0;
  background: #f5f5f5; }
  .price__features {
    margin-bottom: 25px;
    padding: 0 60px; }
    @media (max-width: 991.98px) {
      .price__features {
        padding: 0;
        padding-right: 15px; } }
    @media (max-width: 767.98px) {
      .price__features {
        padding-right: 0; } }
    .price__features-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      @media (max-width: 767.98px) {
        .price__features-list {
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          width: 86%;
          margin: 0 auto; } }
      .price__features-list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        @media (max-width: 767.98px) {
          .price__features-list-item {
            width: 100%;
            margin-bottom: 15px; } }
        .price__features-list-item-icon {
          width: 34px;
          height: 34px; }
          .price__features-list-item-icon img {
            display: block;
            width: 100%;
            height: 100%;
            -o-object-fit: contain;
               object-fit: contain; }
        .price__features-list-item-title {
          width: calc(100% - 45px);
          font-family: "Circe Bold";
          font-size: 20px;
          line-height: 1.1;
          white-space: nowrap; }
          @media (max-width: 991.98px) {
            .price__features-list-item-title {
              font-size: 16px; } }
  .price__list {
    border-radius: var(--bubble-radius);
    overflow: hidden;
    box-shadow: var(--bubble-shadow); }
.price__cta {
  margin-bottom: 22px;
  padding: 16px 20px;
  border-radius: var(--bubble-radius);
  background: #fff7e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px; }
.price__cta-text {
  font-family: "Circe";
  font-size: 15px;
  line-height: 1.4;
  color: #373841; }
@media (max-width: 767.98px) {
  .price__cta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 14px 14px;
    margin-bottom: 18px; }
  .price__cta-text {
    font-size: 14px; }
  .price__cta .btn {
    width: 100%; } }
  .price__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #000;
    background: #373841; }
    .price__list-item:first-child {
      border-radius: var(--bubble-radius) var(--bubble-radius) 0 0; }
    .price__list-item:last-child {
      border-radius: 0 0 var(--bubble-radius) var(--bubble-radius);
      border-bottom: 0; }
    .price__list-item--heading {
      background: #15120b; }
      .price__list-item--heading .price__list-item-col--full {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        border-right: none;
        font-size: 17px;
        color: #f2a208; }
        @media (max-width: 767.98px) {
          .price__list-item--heading .price__list-item-col--full {
            padding-left: 12px;
            padding-right: 12px;
            font-size: 15px; } }
    .price__list-item-col {
      padding: 18px 15px;
      font-family: "Circe Bold";
      font-size: 16px;
      line-height: 1.12;
      color: #fff; }
      @media (max-width: 767.98px) {
        .price__list-item-col {
          font-size: 14px;
          padding: 12px 12px; } }
      .price__list-item-col:nth-of-type(1) {
        width: 71%;
        padding-left: 60px;
        border-right: 1px solid #000; }
        @media (max-width: 767.98px) {
          .price__list-item-col:nth-of-type(1) {
            width: 57%;
            padding-left: 12px; } }
      .price__list-item-col:nth-of-type(2) {
        width: 8%;
        text-align: center;
        border-right: 1px solid #000; }
        @media (max-width: 767.98px) {
          .price__list-item-col:nth-of-type(2) {
            width: 15%; } }
      .price__list-item-col:nth-of-type(3) {
        width: 21%;
        text-align: center; }
        @media (max-width: 767.98px) {
          .price__list-item-col:nth-of-type(3) {
            width: 28%; } }
  .price__more {
    padding-top: 25px;
    padding-left: 60px; }
    @media (max-width: 767.98px) {
      .price__more {
        padding-left: 0; } }
    .price__more a {
      font-family: "Circe Bold";
      font-size: 16px;
      color: #373841;
      -webkit-transition: color 0.2s ease-in-out;
      transition: color 0.2s ease-in-out;
      text-decoration: underline; }
      .price__more a:hover {
        color: #f2a208; }

  .price__note {
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    color: #373841; }
    @media (max-width: 767.98px) {
      .price__note {
        font-size: 13px;
        padding: 0 15px; } }

.lead-magnet {
  position: relative;
  background: #f5f5f5; }
  @media (max-width: 767.98px) {
    .lead-magnet {
      background: #000; } }
  .lead-magnet__wrap {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border-radius: var(--bubble-radius-xl); }
    @media (min-width: 992px) {
      .lead-magnet__wrap {
        min-height: 320px;
        align-items: stretch !important; } }
  .lead-magnet__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .lead-magnet__img {
    margin-left: auto;
    margin-right: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding-left: 0 !important;
    padding-right: 0 !important; }
    @media (max-width: 991.98px) {
      .lead-magnet__img {
        display: none; } }
    @media (min-width: 992px) {
      .lead-magnet__img {
        height: 100%;
        margin-bottom: 0;
        margin-right: 0;
        transform: translateX(-40px);
        overflow: visible;
        position: relative;
        box-sizing: border-box;
        border: 2px solid rgba(255,255,255,0.85);
        border-radius: 60px;
        box-shadow: 0 0 4px #fff, 0 0 12px rgba(255,255,255,0.7), 0 0 20px #f2a208, 0 0 28px rgba(242,162,8,0.4);
        animation: neon-border-pulse 2.5s ease-in-out infinite; } }
    .lead-magnet__img.text-lg-right {
      text-align: right; }
    .lead-magnet__img-wrap {
      position: relative;
      height: 100%;
      overflow: hidden;
      cursor: pointer;
      border-radius: inherit; }
    @media (min-width: 992px) {
      .lead-magnet__img-wrap {
        border-radius: 58px; } }
    .lead-magnet__img-inner {
      position: relative;
      height: 100%;
      -webkit-transition: opacity 0.25s ease;
      transition: opacity 0.25s ease; }
    .lead-magnet__img-wrap.is-open .lead-magnet__img-inner {
      opacity: 0;
      pointer-events: none; }
    .lead-magnet__explain {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100%;
      color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 24px 20px;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      -webkit-transition: -webkit-transform 0.35s ease;
      transition: transform 0.35s ease;
      z-index: 2;
      border-radius: 24px 24px 0 0;
      overflow: hidden;
      background: rgba(35, 36, 42, 0.92);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
              backdrop-filter: blur(20px) saturate(140%);
      -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-bottom: none;
      cursor: pointer; }
    .lead-magnet__img-wrap.is-open .lead-magnet__explain {
      -webkit-transform: translateY(0);
              transform: translateY(0); }
    .lead-magnet__explain-inner {
      width: 100%;
      overflow: hidden;
      display: block;
      text-align: left; }
    .lead-magnet__explain-text {
      margin: 0;
      padding: 0;
      font-size: 20px;
      line-height: 1.5;
      font-weight: 500;
      -webkit-overflow-scrolling: touch;
      opacity: 0;
      -webkit-transform: translateY(14px);
              transform: translateY(14px);
      -webkit-transition: none;
      transition: none;
      color: #ffffff;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }
    .lead-magnet__img-wrap.is-open .lead-magnet__explain-text {
      -webkit-animation: lead-magnet-text-in 0.5s ease-out forwards;
              animation: lead-magnet-text-in 0.5s ease-out forwards; }
    .lead-magnet__explain-text br {
      display: block;
      margin-bottom: 0.35em; }
    .lead-magnet__explain-text br.explain-p {
      margin-bottom: 0.9em; }
    .lead-magnet__explain-text .lead-magnet__explain-title {
      display: block;
      text-align: center;
      font-weight: 700;
      background: linear-gradient(90deg, #ffffff 0%, #ffd54f 20%, #ffc233 40%, #f2a208 60%, #ffc233 80%, #ffffff 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text;
              background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: none; }
    .lead-magnet__img-wrap.is-open .lead-magnet__explain-text .lead-magnet__explain-title {
      -webkit-animation: lead-magnet-gradient 5s ease-in-out infinite 0.5s;
              animation: lead-magnet-gradient 5s ease-in-out infinite 0.5s; }
    .lead-magnet__explain-text .nowrap {
      white-space: nowrap; }
    .lead-magnet__explain-text .lead-magnet__explain-highlight {
      font-weight: 600;
      background: linear-gradient(90deg, #ffffff 0%, #ffd54f 20%, #ffc233 40%, #f2a208 60%, #ffc233 80%, #ffffff 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text;
              background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: none; }
    .lead-magnet__img-wrap.is-open .lead-magnet__explain-text .lead-magnet__explain-highlight {
      -webkit-animation: lead-magnet-gradient 5s ease-in-out infinite 0.5s;
              animation: lead-magnet-gradient 5s ease-in-out infinite 0.5s; }
    .lead-magnet__explain-text em {
      font-style: italic;
      font-weight: 500;
      opacity: 1;
      color: #ffffff; }
    .lead-magnet__explain-text .lead-magnet__explain-cta-wrap {
      display: block;
      margin-top: 0.5em;
      padding: 10px 14px;
      border-radius: var(--bubble-radius-sm);
      background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,236,210,0.15) 40%, rgba(255,213,79,0.2) 70%, rgba(255,255,255,0.1) 100%);
      -webkit-backdrop-filter: blur(10px);
              backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.3);
      -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 10px rgba(0,0,0,0.12);
              box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 10px rgba(0,0,0,0.12); }
    .lead-magnet__explain-text .lead-magnet__explain-cta {
      font-style: italic;
      font-weight: 500;
      display: block;
      margin: 0;
      padding: 0;
      border: none;
      border-radius: 0;
      background: linear-gradient(90deg, #ffffff 0%, #ffecd2 20%, #ffd54f 45%, #ffc233 55%, #ffecd2 80%, #ffffff 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text;
              background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: none;
      -webkit-animation: lead-magnet-cta-glass 5s ease-in-out infinite;
              animation: lead-magnet-cta-glass 5s ease-in-out infinite; }
    .lead-magnet__img img {
      display: block;
      max-width: 100%;
      width: auto;
      height: auto;
      margin-left: auto;
      -o-object-fit: contain;
         object-fit: contain;
      -o-object-position: bottom;
         object-position: bottom; }
    @media (min-width: 992px) {
      .lead-magnet__img img {
        height: 100%;
        width: 100%;
        min-height: 100%;
        max-height: 100%;
        margin-left: auto;
        margin-right: 0;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: right center;
           object-position: right center;
        transform: none;
        border-radius: 58px; } }
  .lead-magnet__title {
    margin-bottom: 5px;
    font-family: "Circe ExtraBold";
    font-size: 32px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
    text-align: center; }
    @media (max-width: 767.98px) {
      .lead-magnet__title {
        font-size: 20px; } }
  .lead-magnet__offer {
    margin-bottom: 18px;
    font-size: 21px;
    line-height: 1.2;
    text-align: center;
    color: #fff; }
    @media (max-width: 767.98px) {
      .lead-magnet__offer {
        font-size: 16px; } }
  .lead-magnet form {
    width: 100%;
    max-width: 264px;
    margin: 0 auto; }
    @media (max-width: 767.98px) {
      .lead-magnet form {
        max-width: none; } }
    .lead-magnet form .form-control {
      width: 100%;
      height: 41px;
      padding-left: 24px;
      font-size: 14px;
      border: 1px solid #f2a208;
      background: transparent;
      color: #fff;
      border-radius: var(--bubble-radius-sm); }
      .lead-magnet form .form-control::-webkit-input-placeholder {
        color: #fff;
        opacity: 1; }
      .lead-magnet form .form-control::-moz-placeholder {
        color: #fff;
        opacity: 1; }
      .lead-magnet form .form-control:-ms-input-placeholder {
        color: #fff;
        opacity: 1; }
      .lead-magnet form .form-control::-ms-input-placeholder {
        color: #fff;
        opacity: 1; }
      .lead-magnet form .form-control::placeholder {
        color: #fff;
        opacity: 1; }
      .lead-magnet form .form-control:focus,
      .lead-magnet form .form-control:-webkit-autofill,
      .lead-magnet form .form-control:-webkit-autofill:hover,
      .lead-magnet form .form-control:-webkit-autofill:focus {
        color: #fff;
        -webkit-text-fill-color: #fff; }
      .lead-magnet form .form-control:-webkit-autofill,
      .lead-magnet form .form-control:-webkit-autofill:hover,
      .lead-magnet form .form-control:-webkit-autofill:focus {
        color: #000;
        -webkit-text-fill-color: #000;
        -webkit-box-shadow: 0 0 0 1000px #fff inset;
        box-shadow: 0 0 0 1000px #fff inset;
        transition: background-color 5000s ease-in-out 0s; }
      @media (max-width: 767.98px) {
        .lead-magnet form .form-control {
          text-align: center;
          font-size: 16px; }
          .lead-magnet form .form-control-wrap {
            display: block;
            width: 100%; } }
    .lead-magnet form .btn {
      width: 100%;
      height: 41px;
      border-radius: var(--bubble-radius-sm); }
    .lead-magnet form .form-text {
      width: 100%;
      margin-top: 11px;
      font-size: 14px;
      line-height: 1.15;
      color: #fff;
      text-align: center; }
    .lead-magnet form .form-text__line {
      white-space: nowrap; }

.cases {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f5f5f5; }
  @media (max-width: 991.98px) {
    .cases {
      padding-top: 45px; } }
  .cases .block-title {
    margin-bottom: 20px; }
  .cases__container {
    position: relative;
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    padding: 0 85px; }
    @media (max-width: 767.98px) {
      .cases__container {
        padding: 0; } }
  .cases .swiper-slide {
    height: auto; }
  .cases__item {
    border: 1px solid #000;
    border-radius: var(--bubble-radius);
    overflow: hidden; }
    .cases__item img {
      display: block;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .cases .swiper-button-prev-unique,
  .cases .swiper-button-next-unique {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 12px;
    cursor: pointer;
    opacity: 0.9;
    background: #000;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    z-index: 20;
    border-radius: 50%; }
    @media (max-width: 767.98px) {
      .cases .swiper-button-prev-unique,
      .cases .swiper-button-next-unique {
        opacity: 0.65; } }
    .cases .swiper-button-prev-unique svg,
    .cases .swiper-button-next-unique svg {
      display: block;
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }
      .cases .swiper-button-prev-unique svg path, .cases .swiper-button-prev-unique svg polygon,
      .cases .swiper-button-next-unique svg path,
      .cases .swiper-button-next-unique svg polygon {
        fill: #fff; }
    .cases .swiper-button-prev-unique:hover,
    .cases .swiper-button-next-unique:hover {
      opacity: 1; }
  .cases .swiper-button-prev-unique {
    left: 0; }
    @media (max-width: 767.98px) {
      .cases .swiper-button-prev-unique {
        left: 15px; } }
    .cases .swiper-button-prev-unique svg {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .cases .swiper-button-next-unique {
    right: 0; }
    @media (max-width: 767.98px) {
      .cases .swiper-button-next-unique {
        right: 15px; } }
    .cases .swiper-button-next-unique svg {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg); }
  .cases .swiper-pagination {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    .cases .swiper-pagination-bullet {
      width: 13px;
      height: 13px;
      margin-right: 10px; }
      @media (max-width: 575.98px) {
        .cases .swiper-pagination-bullet {
          width: 10px;
          height: 10px; } }
      .cases .swiper-pagination-bullet:last-of-type {
        margin-right: 0; }

.features {
  padding-bottom: 50px;
  background: #f5f5f5; }
  .features__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 85px 200px;
    background: #000;
    border-radius: var(--bubble-radius-lg);
    box-shadow: var(--bubble-shadow); }
    @media (max-width: 1199.98px) {
      .features__wrap {
        padding: 85px 150px; } }
    @media (max-width: 991.98px) {
      .features__wrap {
        padding: 85px 40px; } }
    @media (max-width: 767.98px) {
      .features__wrap {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 40px 20px; } }
  .features__icon {
    width: 78px; }
    @media (max-width: 767.98px) {
      .features__icon {
        margin-bottom: 20px; } }
    .features__icon img {
      display: block;
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }
  .features__text {
    width: calc(100% - 110px);
    font-size: 16px;
    line-height: 1.24;
    color: #fff; }
    @media (max-width: 767.98px) {
      .features__text {
        width: 100%;
        text-align: center; } }

.reviews {
  padding-bottom: 45px;
  background: #f5f5f5; }
  @media (max-width: 767.98px) {
    .reviews {
      padding-bottom: 10px; } }
  .reviews__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 35px; }
    .reviews__list-item-img {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 96px;
              flex: 0 0 96px;
      width: 96px;
      height: 96px;
      border-radius: 50%;
      overflow: hidden;
      background: #eee; }
      @media (max-width: 767.98px) {
        .reviews__list-item-img {
          -ms-flex: 0 0 72px;
              flex: 0 0 72px;
          width: 72px;
          height: 72px; } }
      .reviews__list-item-img img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .reviews__list-item-content {
      width: calc(100% - 120px);
      padding: 24px 0; }
      @media (max-width: 767.98px) {
        .reviews__list-item-content {
          width: calc(100% - 88px); } }
    .reviews__list-item-title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: 12px; }
    .reviews__list-item-name {
      font-family: "Circe ExtraBold";
      font-size: 16px; }
      .reviews__list-item-name span {
        display: inline-block;
        margin-left: 15px;
        font-family: "Circe Light"; }
    .reviews__list-item-date {
      font-family: "Circe Bold";
      font-size: 12px; }
    .reviews__list-item-problem {
      margin-bottom: 13px;
      font-family: "Circe Light";
      font-size: 16px;
      line-height: 1.15; }
    .reviews__list-item-desc {
      font-size: 14px;
      line-height: 1.2; }

.contacts {
  padding-top: 50px;
  padding-bottom: 70px;
  background: #000; }
  @media (max-width: 991.98px) {
    .contacts {
      padding-bottom: 20px; } }
  .contacts .block-title {
    color: #fff; }
  .contacts__text {
    font-size: 16px;
    color: #fff;
    line-height: 1.2; }
    @media (max-width: 991.98px) {
      .contacts__text {
        margin-bottom: 35px; } }
    @media (max-width: 767.98px) {
      .contacts__text {
        text-align: center; } }
  .contacts__callus {
    text-align: center; }
    @media (max-width: 991.98px) {
      .contacts__callus {
        width: 100%;
        max-width: 290px;
        margin: 0 auto; } }
  .contacts__title {
    margin-bottom: 2px;
    font-family: "Circe Light";
    font-size: 16px;
    color: #fff; }
  .contacts__phone {
    display: inline-block;
    margin-bottom: 12px;
    font-family: "Circe ExtraBold";
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    padding: 6px 12px 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 2px 8px rgba(0,0,0,0.06);
    -webkit-transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: logo-border-glow 4s ease-in-out infinite; }
    .contacts__phone:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(242, 162, 8, 0.4);
      box-shadow: 0 0 0 1px rgba(242,162,8,0.2), 0 4px 16px rgba(0,0,0,0.12);
      -webkit-transform: scale(1.03);
              transform: scale(1.03); }
    .contacts__phone:active {
      -webkit-transform: scale(0.98);
              transform: scale(0.98); }
  .contacts .btn {
    width: 100%;
    height: 41px;
    margin-bottom: 10px;
    border-radius: var(--bubble-radius-sm); }
  .contacts__policy {
    font-size: 14px;
    line-height: 1.2;
    color: #fff; }

.footer {
  padding-top: 25px;
  padding-bottom: 10px;
  background: #000;
  border-radius: var(--bubble-radius-xl) var(--bubble-radius-xl) 0 0; }
  @media (max-width: 991.98px) {
    .footer {
      padding-top: 50px; } }
  @media (max-width: 991.98px) {
    .footer {
      padding-top: 30px; } }
  .footer .logo__text {
    color: #fff; }
    .footer .logo__text small {
      color: #fff; }
  .footer__offer {
    margin-top: 18px;
    font-size: 12px;
    color: #fff; }
  .footer__worktime {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7); }
    @media (max-width: 767.98px) {
      .footer__offer {
        display: block;
        text-align: center; } }
  .footer__policy {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
    text-decoration: underline; }
    @media (max-width: 767.98px) {
      .footer__policy {
        display: block;
        text-align: center; } }
    .footer__policy:hover, .footer__policy:focus {
      color: white; }
  .footer .navigation {
    padding-top: 0;
    background: transparent !important; }
    .footer .navigation__list-item {
    margin-right: 28px; }
    .footer .navigation__list-item:last-of-type {
      margin-right: 0; }
      @media (max-width: 991.98px) {
        .footer .navigation__list-item {
          margin-right: 20px; } }
      .footer .navigation__list-item a {
        color: #fff;
        font-size: 14px; }
      .footer .navigation__list-item:hover a {
        color: #fff; }
      .footer .navigation__list-item.active a {
        color: #fff; }
    .footer .navigation__contacts {
      display: inline-block;
      -webkit-transform: none;
              transform: none; }
      .footer .navigation__contacts-phone {
        margin-right: 10px;
        color: #fff;
        font-size: 14px;
        padding: 5px 10px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 999px;
        -webkit-backdrop-filter: blur(8px);
                backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 2px 8px rgba(0,0,0,0.06);
        -webkit-transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        animation: logo-border-glow 4s ease-in-out infinite; }
        .footer .navigation__contacts-phone:hover {
          background: rgba(255, 255, 255, 0.12);
          border-color: rgba(242, 162, 8, 0.4);
          box-shadow: 0 0 0 1px rgba(242,162,8,0.2), 0 4px 16px rgba(0,0,0,0.12);
          -webkit-transform: scale(1.03);
                  transform: scale(1.03);
          color: #fff; }
        .footer .navigation__contacts-phone:active {
          -webkit-transform: scale(0.98);
                  transform: scale(0.98); }
        @media (max-width: 1199.98px) {
          .footer .navigation__contacts-phone {
            margin-right: 0; } }
        .footer .navigation__contacts-phone svg path {
          fill: #f2a208; }
      .footer .navigation__contacts .btn {
        width: 168px; }
  .footer .navigation__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

/* Сохраняем фон логотипа "Профи Мэн" в нижнем футере на мобильных,
   переопределяя мобильные стили .navigation .logo только для футера */
@media (max-width: 991.98px) {
  .footer .navigation .logo {
    margin-left: 8px;
    padding: 5px 10px 5px 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 2px 8px rgba(0,0,0,0.06);
  }

  .footer .logo__text {
    color: #fff;
  }
}

@media (max-width: 991.98px) {
  .footer .navigation .row.justify-content-between {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .navigation__contacts-col {
    margin-top: 0 !important;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .navigation__contacts-phone {
    margin-right: 10px;
  }
  .footer__callback {
    margin-right: 12px;
    font-family: "Circe", sans-serif;
    font-size: 13px;
    color: #f2a208;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: color 0.2s ease, opacity 0.2s ease;
    transition: color 0.2s ease, opacity 0.2s ease; }
  .footer__callback:hover {
    color: #ffb81e;
    text-decoration: none;
    opacity: 0.95;
    color: #fff; }
}


@media (max-width: 767.98px) {
  .footer .navigation__contacts-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 12px;
    margin-top: 0;
  }

  .footer .navigation__contacts-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 14px;
    padding: 5px 10px;
    margin-right: 0;
  }
}/* Sticky кнопка «Позвонить» на мобильных */
.sticky-call {
  display: none;
  position: fixed;
  right: 12px;
  bottom: 16px;
  z-index: 700;
  padding: 10px 16px;
  font-family: "Circe Bold";
  font-size: 14px;
  color: #000;
  background: #f2a208;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(242, 162, 8, 0.45);
  text-decoration: none;
  -webkit-transition: background 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.sticky-call:hover {
  color: #000;
  background: #e59507;
  box-shadow: 0 6px 24px rgba(242, 162, 8, 0.5);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
@media (max-width: 991.98px) {
  .sticky-call {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .sticky-call {
    display: none !important;
  }
}

/*# sourceMappingURL=style.css.map*/
