:root {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color-scheme: dark;
}

[x-cloak] {
  display: none !important;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 137, 0, .1), transparent 22rem),
    radial-gradient(circle at 85% 42%, rgba(29, 126, 170, .13), transparent 30rem),
    #06101a;
  color: white;
}

button,
input {
  font: inherit;
}

.container-wide,
.section {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.section {
  padding-top: 82px;
}

.hero {
  background: url("assets/images/hero.png") center right / cover no-repeat;
}

.hero-shade {
  background:
    linear-gradient(90deg, #050b12 0%, rgba(5, 11, 18, .94) 30%, rgba(5, 11, 18, .58) 48%, rgba(5, 11, 18, .12) 66%, transparent 82%),
    linear-gradient(180deg, rgba(6, 16, 26, .05) 0%, rgba(6, 16, 26, .12) 62%, #06101a 100%);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.08;
  text-transform: uppercase;
}

.logo-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(251, 146, 60, .5);
  border-radius: 14px;
  background: rgba(249, 115, 22, .12);
  color: #fb923c;
}

.logo-icon svg {
  width: 32px;
  height: 32px;
}

.nav-link {
  position: relative;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fb923c;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: #fb923c;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: right;
  font-weight: 950;
}

.header-phone svg {
  width: 20px;
  color: #fb923c;
}

.header-phone small {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 700;
}

.header-phone b {
  color: #fb923c;
}

.messenger,
.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: white;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .28);
}

.messenger-max {
  background: transparent;
  overflow: hidden;
}

.messenger-max img {
  width: 44px;
  height: 44px;
  display: block;
}

.menu-button {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.messenger svg,
.menu-button svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(8, 21, 34, .96);
  padding: 18px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.btn-primary,
.btn-secondary,
.btn-max,
.btn-telegram {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 0 26px;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #ffad24, #ff7a00);
  color: white;
  box-shadow: 0 20px 40px rgba(255, 122, 0, .26);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
  color: white;
}

.btn-secondary svg {
  color: #fb923c;
}

.btn-max,
.btn-telegram {
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
}

.btn-max {
  background: linear-gradient(180deg, #38a8ff, #126df0);
}

.btn-max img {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 999px;
}

.btn-telegram {
  background: linear-gradient(180deg, #39b5ff, #0878c9);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-max:hover,
.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(255, 122, 0, .2);
}

.btn-primary svg,
.btn-secondary svg,
.btn-max svg,
.btn-telegram svg {
  width: 20px;
  height: 20px;
}

.features-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background: rgba(11, 23, 35, .92);
  padding: 16px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.features-bar div {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 0 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 850;
}

.features-bar svg {
  width: 20px;
  min-width: 20px;
  color: #ff8a00;
}

.section-title {
  margin-bottom: 32px;
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: -.02em;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ff8a00, transparent);
  transform: translateX(-50%);
}

.section-lead {
  max-width: 760px;
  margin: -8px auto 32px;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}

.panel,
.benefit-card,
.service-card,
.price-card,
.review-card {
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(135deg, rgba(19, 33, 48, .92), rgba(7, 16, 26, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 22px 48px rgba(0, 0, 0, .24);
}

.panel {
  border-radius: 22px;
}

.benefit-card {
  min-height: 190px;
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
}

.benefit-card svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  color: #ff8a00;
  stroke-width: 1.8;
}

.benefit-card h3 {
  min-height: 46px;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
}

.benefit-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 1.55;
}

.service-card {
  overflow: hidden;
  border-radius: 18px;
}

.service-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  transition: transform .35s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card div {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 950;
  line-height: 1.28;
}

.service-card a,
.service-card button {
  display: grid;
  width: 38px;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid #ff8a00;
  border-radius: 999px;
  background: transparent;
  color: #ff8a00;
  cursor: pointer;
}

.service-card a svg,
.service-card button svg {
  width: 18px;
}

.price-card {
  display: grid;
  min-height: 188px;
  align-content: space-between;
  justify-items: center;
  overflow: hidden;
  border-radius: 16px;
  padding: 20px 16px 0;
  text-align: center;
}

.price-card h3 {
  font-size: 16px;
  font-weight: 950;
}

.price-card strong {
  margin-top: 8px;
  color: #ff8a00;
  font-size: 27px;
  font-weight: 950;
  line-height: 1;
}

.price-card img {
  width: 100%;
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 14px 14px rgba(0, 0, 0, .38));
}

.step {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.step b {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: #ff8a00;
  font-size: 22px;
  font-weight: 950;
}

.step svg {
  width: 32px;
  height: 32px;
}

.step span {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.request-panel {
  position: relative;
  overflow: hidden;
}

.request-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 138, 0, .16);
  filter: blur(8px);
}

.request-panel form {
  position: relative;
  z-index: 1;
}

.field {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(0, 0, 0, .2);
  padding: 0 16px;
  color: white;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.field::placeholder {
  color: rgba(255, 255, 255, .5);
}

.field:focus {
  border-color: rgba(255, 138, 0, .8);
  background: rgba(255, 255, 255, .06);
}

.review-card {
  min-height: 225px;
  border-radius: 14px;
  padding: 20px;
}

.avatar {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #dce6f0, #315a7c);
  color: #08111b;
  font-weight: 950;
}

.avatar.woman {
  background: linear-gradient(135deg, #ffe1d5, #d66b55);
}

.review-card h3 {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 950;
}

.review-card b {
  display: block;
  margin-top: 4px;
  color: #ffb02e;
  letter-spacing: .05em;
}

.review-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.55;
}

.review-card time {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, .38);
  font-size: 12px;
}

.swiper-pagination {
  position: static !important;
  margin-top: 22px;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, .55) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: #ff8a00 !important;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-item button {
  display: flex;
  min-height: 52px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 850;
}

.faq-item button svg {
  width: 18px;
  min-width: 18px;
}

.faq-item p {
  padding: 0 0 18px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.55;
}

.area-list li {
  position: relative;
  padding-left: 22px;
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 9px;
  height: 9px;
  border: 2px solid #ff8a00;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255, 138, 0, .55);
}

.map-image {
  min-height: 310px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  object-fit: cover;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: #0b1723;
  padding: 20px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .24);
}

.cta-icon {
  display: grid;
  width: 64px;
  min-width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffad24, #ff7a00);
}

.cta-icon svg {
  width: 32px;
  height: 32px;
}

.cta-panel h2 {
  font-size: 24px;
  font-weight: 950;
}

.cta-panel p {
  margin-top: 4px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

.cta-phone {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  color: #fb923c;
  font-size: 30px;
  font-weight: 950;
}

.footer {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #050c14;
  padding: 48px 0;
}

.footer-list {
  display: grid;
  align-content: start;
  gap: 12px;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

.footer-list h3 {
  margin-bottom: 8px;
  color: white;
  font-size: 16px;
  font-weight: 950;
}

.footer-list a {
  transition: color .2s ease;
}

.footer-list a:hover {
  color: #ff8a00;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.request-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.request-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 138, 0, .16), transparent 24rem),
    rgba(2, 7, 13, .78);
  backdrop-filter: blur(12px);
}

.request-modal__dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(92vh, 760px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(23, 38, 55, .98), rgba(6, 15, 25, .98)),
    #07101a;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .56);
  padding: 30px;
  transform: translateY(18px) scale(.98);
  transition: transform .24s ease;
}

.request-modal.is-open .request-modal__dialog {
  transform: translateY(0) scale(1);
}

.request-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .72);
}

.request-modal__close svg {
  width: 20px;
  height: 20px;
}

.request-modal__head {
  display: flex;
  gap: 18px;
  padding-right: 48px;
}

.request-modal__icon {
  display: grid;
  width: 64px;
  min-width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffad24, #ff7a00);
  box-shadow: 0 18px 36px rgba(255, 122, 0, .25);
}

.request-modal__icon svg {
  width: 34px;
  height: 34px;
}

.request-modal__head h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 950;
  line-height: 1.08;
}

.request-modal__head p,
.wizard-step p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.6;
}

.request-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.request-steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 22px;
  height: 2px;
  background: rgba(255, 255, 255, .12);
}

.request-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  justify-self: center;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: #0b1723;
  color: rgba(255, 255, 255, .62);
  font-weight: 950;
}

.request-steps span.is-active,
.request-steps span.is-done {
  border-color: #ff8a00;
  background: #ff8a00;
  color: #fff;
  box-shadow: 0 0 0 7px rgba(255, 138, 0, .12);
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
}

.wizard-step h3 {
  font-size: 24px;
  font-weight: 950;
}

.wizard-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.wizard-error {
  min-height: 22px;
  margin-top: 14px;
  color: #fb7185;
  font-size: 14px;
  font-weight: 800;
}

.wizard-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 18px;
}

.wizard-prev {
  display: none;
}

.wizard-submit {
  display: none;
  justify-content: center;
}

.request-wizard[data-step="1"] .wizard-prev,
.request-wizard[data-step="2"] .wizard-prev {
  display: inline-flex;
}

.request-wizard[data-step="2"] .wizard-next {
  display: none;
}

.request-wizard[data-step="2"] .wizard-submit {
  display: inline-flex;
}

body.modal-open {
  overflow: hidden;
}

[data-animate] {
  opacity: 0;
}

@media (max-width: 1180px) {
  .features-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .container-wide,
  .section {
    width: min(100% - 28px, 520px);
  }

  .hero {
    min-height: 640px;
    background-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, #050b12 0%, rgba(5, 11, 18, .9) 56%, rgba(5, 11, 18, .28) 100%),
      linear-gradient(180deg, transparent 70%, #06101a 100%);
  }

  .hero-content {
    min-height: 560px !important;
    align-items: flex-start;
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .hero-title {
    font-size: clamp(36px, 11vw, 44px) !important;
    line-height: 1.07;
  }

  .section {
    padding-top: 62px;
  }

  .features-bar {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .features-bar div {
    min-height: 42px;
  }

  .benefit-card {
    min-height: auto;
  }

  .service-card img {
    height: 210px;
  }

  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-card {
    min-height: auto;
  }

  .step {
    grid-template-columns: 54px 32px 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .step b {
    grid-row: span 1;
  }

  .cta-panel {
    padding: 16px;
  }

  .cta-panel > div:first-child {
    align-items: flex-start;
  }

  .cta-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .cta-panel h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .cta-phone {
    min-height: 60px;
    font-size: clamp(20px, 7vw, 24px);
  }

  .request-modal {
    align-items: end;
    padding: 10px;
  }

  .request-modal__dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 22px;
    padding: 22px;
  }

  .request-modal__head {
    gap: 14px;
    padding-right: 42px;
  }

  .request-modal__icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .wizard-fields,
  .wizard-actions {
    grid-template-columns: 1fr;
  }

  .request-wizard[data-step="1"] .wizard-actions,
  .request-wizard[data-step="2"] .wizard-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 13px;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-max,
  .btn-telegram {
    width: 100%;
    justify-content: center;
    padding-inline: 18px;
  }

  .price-card strong {
    font-size: 24px;
  }

  .request-modal__dialog {
    padding: 18px;
  }

  .request-modal__head {
    display: block;
  }

  .request-modal__icon {
    margin-bottom: 14px;
  }

  .request-wizard[data-step="1"] .wizard-actions,
  .request-wizard[data-step="2"] .wizard-actions {
    grid-template-columns: 1fr;
  }
}
